1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
module.exports = class UglyCatFun extends Command {
constructor(client: CommandoClient) {
super(client, {
name: 'uglycat',
aliases: ['ugycat'],
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'] })
}
};
|