diff options
Diffstat (limited to 'server/src/commands/emma/UglyCat.ts')
| -rw-r--r-- | server/src/commands/emma/UglyCat.ts | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/server/src/commands/emma/UglyCat.ts b/server/src/commands/emma/UglyCat.ts new file mode 100644 index 0000000..95193fe --- /dev/null +++ b/server/src/commands/emma/UglyCat.ts @@ -0,0 +1,27 @@ +import { Command } from 'discord-akairo'; +import { Message } from 'discord.js'; +import { colour } from '../../Config'; + +export default class UglyCatEmma extends Command { + public constructor() { + super('uglycat', { + aliases: ['uglycat', 'ugycat'], + category: 'fun', + description: { + content: 'Ugly Cat.', + usage: '', + examples: [ + '' + ] + }, + ratelimit: 3 + }); + } + + public exec(msg: Message): Promise<Message> { + const embed = this.client.util.embed() + .setColor(colour) + .setImage('https://i.pinimg.com/originals/4d/19/0f/4d190f1307b35e7155bb4b898e19d545.jpg'); + return msg.channel.send(embed); + } +}
\ No newline at end of file |