From 23733da854fe196291570a00ebe5cd8b509a3d9c Mon Sep 17 00:00:00 2001 From: 8cy <50817549+8cy@users.noreply.github.com> Date: Tue, 7 Jul 2020 20:07:29 -0700 Subject: ugly cat command --- src/commands/fun/uglycat.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/commands/fun/uglycat.ts (limited to 'src/commands') 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 -- cgit v1.2.3