summaryrefslogtreecommitdiff
path: root/server/src/commands/bot/Sin.ts
blob: 66e1f2ff31e4ee1151d35988d62dd82cd749c1a3 (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 SinBot extends Command {
    public constructor() {
        super('sin', {
            aliases: ['sin'],
            category: 'bot',
            description: {
                content: 'Will get you more information about Sin, the lead developer.',
                usage: '',
                examples: [
                    ''
                ]
            },
            ratelimit: 3
        });
    }
    
    public exec(msg: Message): Promise<Message> {
        const embed = this.client.util.embed()
            .setColor(colour)
            .addField('Sin\'s Stuff', stripIndents`
                💎 [GitHub](https://github.com/8cy)
                🎀 [NPM](https://www.npmjs.com/~sinny)
                🎨 [Twitter](https://twitter.com/__cpuid)
                🎁 [Website](https://kyzer.co)
                ✨ [YouTube](https://youtube.com/s1nny)
                🎐 [Top.gg Vote](https://discordbots.org/bot/699473263998271489/vote)
            `, false)
        return msg.channel.send(embed);
    }
}