summaryrefslogtreecommitdiff
path: root/src/commands/fun/uwufy.ts
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-17 02:21:36 -0700
committer8cy <[email protected]>2020-04-17 02:21:36 -0700
commitb377c28dc5f0df933ec5d96edd62bc1e3db8af62 (patch)
tree4a89fbd8a63f2a68fa916685094e2f4bdaacf26d /src/commands/fun/uwufy.ts
parentadd missing +, v7.0.1 (diff)
downloaddep-core-b377c28dc5f0df933ec5d96edd62bc1e3db8af62.tar.xz
dep-core-b377c28dc5f0df933ec5d96edd62bc1e3db8af62.zip
add anime cmd group, v7.1.0
Diffstat (limited to 'src/commands/fun/uwufy.ts')
-rw-r--r--src/commands/fun/uwufy.ts36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/commands/fun/uwufy.ts b/src/commands/fun/uwufy.ts
deleted file mode 100644
index db0f19b..0000000
--- a/src/commands/fun/uwufy.ts
+++ /dev/null
@@ -1,36 +0,0 @@
-import { Command, CommandoMessage } from 'discord.js-commando';
-import emoji from 'emoji-random';
-
-module.exports = class UwufyFun extends Command {
- constructor(client) {
- super(client, {
- name: 'uwufy',
- aliases: ['uwu', 'owofy', 'owo'],
- group: 'fun',
- memberName: 'uwufy',
- description: 'Uwufys anything you send.',
- args: [
- {
- key: 'userMsg',
- prompt: 'What would you like to uwufy?',
- type: 'string'
- }
- ],
- examples: [
- 'uwu!uwufy please uwufy this',
- 'uwu!uwu can u uwufy this',
- 'uwu!owofy this thx',
- 'uwu!owo nice now this'
- ],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- });
- }
- run(msg: CommandoMessage, { userMsg }) {
- var m = userMsg;
- var u1 = m.replace('r', 'w');
- var u2 = u1.replace('l', 'w');
- msg.reply(u2 + ' ' + emoji.random());
- msg.delete();
- }
-}; \ No newline at end of file