blob: 367c0101e3cf92b503052e6e0b4c6b216811601a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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: 'emma',
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);
}
}
|