summaryrefslogtreecommitdiff
path: root/src/commands/fun
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/fun')
-rw-r--r--src/commands/fun/uglycat.ts22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/commands/fun/uglycat.ts b/src/commands/fun/uglycat.ts
new file mode 100644
index 0000000..27a31fb
--- /dev/null
+++ b/src/commands/fun/uglycat.ts
@@ -0,0 +1,22 @@
+import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
+
+module.exports = class UglyCatFun extends Command {
+ constructor(client: CommandoClient) {
+ super(client, {
+ name: 'uglycat',
+ group: 'fun',
+ memberName: 'uglycat',
+ description: 'Sends an ugly cat.',
+ userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY', 'EMBED_LINKS'],
+ clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY', 'EMBED_LINKS'],
+ examples: ['uwu!uglycat'],
+ throttling: {
+ usages: 5,
+ duration: 30
+ },
+ });
+ }
+ run(msg: CommandoMessage) {
+ return msg.say({ files: ['https://i.pinimg.com/originals/4d/19/0f/4d190f1307b35e7155bb4b898e19d545.jpg'] })
+ }
+}; \ No newline at end of file