summaryrefslogtreecommitdiff
path: root/commands/commands.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/commands.js')
-rw-r--r--commands/commands.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/commands/commands.js b/commands/commands.js
new file mode 100644
index 0000000..e78ae45
--- /dev/null
+++ b/commands/commands.js
@@ -0,0 +1,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);
+ }
+} \ No newline at end of file