summaryrefslogtreecommitdiff
path: root/commands/commands.js
blob: 47af2e677e0bd1074e4df2e1617d6a15b53a4775 (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
const Discord = require('discord.js');

module.exports = {
    name: 'commands',
    description: '',
    execute(msg, args, bot) {
        let emb = new Discord.RichEmbed()

            .setAuthor('s5nical\'s commands', `${msg.guild.iconURL}`)
            .setThumbnail(`${msg.guild.iconURL}`)
            .setDescription(`to view the commands in each group use:\n\`s5n!commands <group>\``)
            .addField(`:shield: moderation`, '13 commands.', true)
            .addField(`:robot: automation`, '5 commands.', true)
            .addField(`:gem: features`, '8 commands.', true)
            .addField(`:lock: permissions`, '10 commands.', true)
            .addField(`:mag_right: search`, '14 commands.', true)
            .addField(`:wrench: utlity`, '20 commands.', true)
            .addField(`:information_source: information`, '6 commands.', true)
            .addField(`:smirk: fun`, '17 commands.', true)
            .addField(`:moneybag: economy`, '8 commands.', true)
            .addField(`:game_die: gambling`, '3 commands.', true)
            .addField(`:smiley: profiles`, '4 commands.', true)
            .addField(`:hammer_pick: skills`, '4 commands.', true)
            .addField(`:frame_photo: image`, '3 commands.', true)
            .addField(`:blue_heart: reaction`, '8 commands.', true)
            .addField(`:chart_with_upwards_trend: counter`, '9 commands.', true)
            .addField(`:sailboat: ship`, '2 commands.', true)
            .setColor(0xF97DAE);

        msg.channel.send(RichEmbed = emb);
    }
};