Files
xiao/commands/roleplay/fist-bump.js
T
2017-05-23 16:14:48 +00:00

25 lines
678 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class FistBumpCommand extends Command {
constructor(client) {
super(client, {
name: 'fist-bump',
group: 'roleplay',
memberName: 'fist-bump',
description: 'Fistbumps something/someone.',
args: [
{
key: 'thing',
prompt: 'What do you want to roleplay with?',
type: 'string'
}
]
});
}
run(msg, args) {
const { thing } = args;
return msg.say(`${msg.author} *fist-bumps* ${thing} *badalalala*`);
}
};