summaryrefslogtreecommitdiff
path: root/server/src/commands/bot/Fuwn.ts
blob: 31da43ea75c3a9d92e48eea5a941dfe3efa72ead (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
29
30
31
32
33
34
35
import { Command } from "discord-akairo";
import { Message } from "discord.js";
import { colour } from ""../../Config";
import { stripIndents } from 'common-tags';

export default class FuwnBot extends Command {
    public constructor() {
        super("fuwn", {
            aliases: ["fuwn", "dev", "developer", "fun"],
            category: "bot",
            description: {
                content: 'Will get you more information about Fuwn, the lead developer.',
                usage: "",
                examples: [
                    ""
                ]
            },
            ratelimit: 3
        });
    }
    
    public exec(msg: Message): Promise<Message> {
        const embed = this.client.util.embed()
            .setColor(colour)
            .addField("Fuwn\'s Stuff", stripIndents`
                💎 [GitHub](https://github.com/8cy)
                🎀 [NPM](https://www.npmjs.com/~sinny)
                🎨 [Twitter](https://twitter.com/_fuwn)
                🎁 [Website](https://fuwn.me)
                ✨ [YouTube](https://youtube.com/Fuwny)
                🎐 [Top.gg Vote](https://discordbots.org/bot/699473263998271489/vote)
            `, false)
        return msg.channel.send(embed);
    }
}