Files
xiao/commands/roleplay/evolve.js
T
Daniel Odendahl Jr e305180781 Fix Evolve
2017-07-28 15:23:15 +00:00

29 lines
590 B
JavaScript

const Command = require('../../structures/Command');
const { stripIndents } = require('common-tags');
module.exports = class EvolveCommand extends Command {
constructor(client) {
super(client, {
name: 'evolve',
group: 'roleplay',
memberName: 'evolve',
description: 'Evolves a user.',
args: [
{
key: 'user',
prompt: 'What user do you want to roleplay with?',
type: 'user'
}
]
});
}
run(msg, args) {
const { user } = args;
return msg.say(stripIndents`
**${user.username}** *is evolving!*
https://i.imgur.com/gkdDk4P.gif
`);
}
};