summaryrefslogtreecommitdiff
path: root/src/commands/zerotwo/douse.ts
blob: d9cdca31c196cac890654c40af0a3e20b1b8b2a3 (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
28
import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
import { MessageEmbed } from 'discord.js';

module.exports = class DouseZeroTwo extends Command {
    constructor(client: CommandoClient) {
        super(client, {
            name: 'douse',
            group: 'zerotwo',
            memberName: 'douse',
            description: 'Douses Zero Two.',
            examples: [
                'uwu!douse'
            ],
            userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
            clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
            throttling: {
                usages: 5,
                duration: 30
            },
        });
    }
    run(msg: CommandoMessage) {
        let emb = new MessageEmbed()
            .setColor(0xFFD0DF)
            .setImage('https://i.pinimg.com/originals/6a/c8/26/6ac826e3d0cbd64eb4f42c12a73fcdb8.gif')
        return msg.say(emb)
    }
};