Files
xiao/commands/guild-info/emoji-image.js
T
Daniel Odendahl Jr 0f3d9abd83 More info stuffs
2017-10-06 01:50:18 +00:00

27 lines
621 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class EmojiImageCommand extends Command {
constructor(client) {
super(client, {
name: 'emoji-image',
aliases: ['bigify-emoji', 'emoji-url', 'big-emoji'],
group: 'guild-info',
memberName: 'emoji-image',
description: 'Responds with an emoji\'s full-scale image.',
guildOnly: true,
clientPermissions: ['ATTACH_FILES'],
args: [
{
key: 'emoji',
prompt: 'Which emoji would you like to get the image of?',
type: 'emoji'
}
]
});
}
run(msg, { emoji }) {
return msg.say({ files: [emoji.url] });
}
};