mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
29 lines
590 B
JavaScript
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
|
|
`);
|
|
}
|
|
};
|