summaryrefslogtreecommitdiff
path: root/src/commands/roleplay/celebrate.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/roleplay/celebrate.ts')
-rw-r--r--src/commands/roleplay/celebrate.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/commands/roleplay/celebrate.ts b/src/commands/roleplay/celebrate.ts
new file mode 100644
index 0000000..6924b39
--- /dev/null
+++ b/src/commands/roleplay/celebrate.ts
@@ -0,0 +1,23 @@
+import { Command, CommandoMessage } from 'discord.js-commando';
+import emoji from 'emoji-random';
+
+module.exports = class CelebrateRoleplay extends Command {
+ constructor(client) {
+ super(client, {
+ name: 'celebrate',
+ group: 'roleplay',
+ memberName: 'celebrate',
+ description: 'Celebrate.',
+ examples: ['uwu!celebrate'],
+ userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
+ clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
+ throttling: {
+ usages: 5,
+ duration: 30
+ }
+ });
+ }
+ run(msg: CommandoMessage) {
+ msg.say(`_**${msg.author.username}** celebrates._` + ' ' + emoji.random())
+ }
+}; \ No newline at end of file