blob: 9ca74ca87f7004a9066621af5d13bd2b121e20e8 (
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
|
import { Command, CommandoMessage } from 'discord.js-commando';
import { MessageEmbed } from 'discord.js';
module.exports = class DouseZeroTwo extends Command {
constructor(client) {
super(client, {
name: 'douse',
group: 'fun',
memberName: 'douse',
description: 'Douses Zero Two.',
examples: [
'uwu!douse'
],
userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
});
}
run(msg: CommandoMessage) {
let emb = new MessageEmbed()
.setColor(0xFFD0DF)
.setDescription('And I oop-')
.setImage('https://i.pinimg.com/originals/6a/c8/26/6ac826e3d0cbd64eb4f42c12a73fcdb8.gif')
msg.say(emb)
}
};
|