diff options
Diffstat (limited to 'src/commands/fun/insult.ts')
| -rw-r--r-- | src/commands/fun/insult.ts | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/commands/fun/insult.ts b/src/commands/fun/insult.ts deleted file mode 100644 index 47643e7..0000000 --- a/src/commands/fun/insult.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { Command, CommandoMessage } from 'discord.js-commando'; -import insult from 'insult'; -import emoji from 'emoji-random'; - -module.exports = class InsultFun extends Command { - constructor(client) { - super(client, { - name: 'insult', - aliases: ['insults', 'roast', 'roasts'], - group: 'fun', - memberName: 'insult', - description: 'Gives you a random insult.', - userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], - clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], - throttling: { - usages: 5, - duration: 30 - }, - examples: ['uwu!insult', 'uwu!insults'] - }); - } - run(msg: CommandoMessage) { - msg.reply(insult.Insult() + ' ' + emoji.random()) - } -};
\ No newline at end of file |