diff options
| author | 8cy <[email protected]> | 2020-07-07 20:07:29 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-07-07 20:07:29 -0700 |
| commit | 23733da854fe196291570a00ebe5cd8b509a3d9c (patch) | |
| tree | 8347b8a1c120978954c794a83542dfe17ed1ad2f /src/commands | |
| parent | delete rp init msgs (diff) | |
| download | dep-core-23733da854fe196291570a00ebe5cd8b509a3d9c.tar.xz dep-core-23733da854fe196291570a00ebe5cd8b509a3d9c.zip | |
ugly cat command
Diffstat (limited to 'src/commands')
| -rw-r--r-- | src/commands/fun/uglycat.ts | 22 |
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 |