More info stuffs

This commit is contained in:
Daniel Odendahl Jr
2017-10-06 01:50:18 +00:00
parent 292ff007e5
commit 0f3d9abd83
8 changed files with 109 additions and 8 deletions
+38
View File
@@ -0,0 +1,38 @@
const { Command } = require('discord.js-commando');
const { MessageEmbed } = require('discord.js');
module.exports = class EmojiInfoCommand extends Command {
constructor(client) {
super(client, {
name: 'emoji-info',
aliases: ['emoji'],
group: 'guild-info',
memberName: 'emoji-info',
description: 'Responds with detailed information on an emoji.',
guildOnly: true,
clientPermissions: ['EMBED_LINKS'],
args: [
{
key: 'emoji',
prompt: 'Which emoji would you like to get information on?',
type: 'emoji'
}
]
});
}
run(msg, { emoji }) {
const embed = new MessageEmbed()
.setColor(0x00AE86)
.setThumbnail(emoji.url)
.addField(' Name',
emoji.name, true)
.addField(' ID',
emoji.id, true)
.addField(' Creation Date',
emoji.createdAt.toDateString(), true)
.addField(' External',
emoji.managed ? 'Yes' : 'No', true);
return msg.embed(embed);
}
};