summaryrefslogtreecommitdiff
path: root/src/commands/roleplay/wave.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/roleplay/wave.ts')
-rw-r--r--src/commands/roleplay/wave.ts32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/commands/roleplay/wave.ts b/src/commands/roleplay/wave.ts
deleted file mode 100644
index 779e56e..0000000
--- a/src/commands/roleplay/wave.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
-//@ts-ignore no types
-import emoji from 'emoji-random';
-
-module.exports = class WaveRoleplay extends Command {
- constructor(client: CommandoClient) {
- super(client, {
- name: 'wave',
- group: 'roleplay',
- memberName: 'wave',
- description: 'Wave at a specified user.',
- examples: ['uwu!wave @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 wave at?',
- type: 'user'
- }
- ]
- });
- }
- run(msg: CommandoMessage, { uUser }: any) {
- msg.delete();
- return msg.say(`***${msg.author.username}** waves at **${uUser.username}**.*` + ' ' + emoji.random())
- }
-}; \ No newline at end of file