const Command = require('../../structures/Command'); const MessageEmbed = require('../../structures/MessageEmbed'); module.exports = class EmbedCommand extends Command { constructor(client) { super(client, { name: 'embed', group: 'text-edit', memberName: 'embed', description: 'Sends text in an embed.', clientPermissions: ['EMBED_LINKS'], args: [ { key: 'text', prompt: 'What text would you like to embed?', type: 'string' } ] }); } run(msg, { text }) { return msg.embed(new MessageEmbed().setDescription(text)); } };