diff options
Diffstat (limited to 'src/commands/roleplay/inhale.ts')
| -rw-r--r-- | src/commands/roleplay/inhale.ts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/commands/roleplay/inhale.ts b/src/commands/roleplay/inhale.ts new file mode 100644 index 0000000..4765a86 --- /dev/null +++ b/src/commands/roleplay/inhale.ts @@ -0,0 +1,30 @@ +import { Command, CommandoMessage } from 'discord.js-commando'; +import emoji from 'emoji-random'; + +module.exports = class InhaleRoleplay extends Command { + constructor(client) { + super(client, { + name: 'inhale', + group: 'roleplay', + memberName: 'inhale', + description: 'Inhale a specified user.', + examples: ['uwu!inhale @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 inhale?', + type: 'user' + } + ] + }); + } + run(msg: CommandoMessage, { uUser }) { + msg.say(`_**${msg.author.username}** inhales **${uUser.username}** but gained no abilities._` + ' ' + emoji.random()) + } +};
\ No newline at end of file |