diff options
Diffstat (limited to 'src/commands/roleplay/highfive.ts')
| -rw-r--r-- | src/commands/roleplay/highfive.ts | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/commands/roleplay/highfive.ts b/src/commands/roleplay/highfive.ts deleted file mode 100644 index 28187ef..0000000 --- a/src/commands/roleplay/highfive.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando'; -//@ts-ignore no types -import emoji from 'emoji-random'; - -module.exports = class HighFiveRoleplay extends Command { - constructor(client: CommandoClient) { - super(client, { - name: 'highfive', - aliases: ['high-five'], - group: 'roleplay', - memberName: 'highfive', - description: 'High-fave a specified user.', - examples: ['uwu!highfive @sin#1337'], - userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], - clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], - throttling: { - usages: 5, - duration: 30 - }, - args: [ - { - key: 'uUser', - prompt: 'Which user would you like to high-five?', - type: 'user' - } - ] - }); - } - run(msg: CommandoMessage, { uUser }: any) { - msg.delete(); - return msg.say(`***${msg.author.username}** high-fives **${uUser.username}**.*` + ' ' + emoji.random()) - } -};
\ No newline at end of file |