Files
xiao/commands/roleplay/fist-bump.js
T
Daniel Odendahl Jr 7802bb49cb Clean-Ups
2017-05-31 04:41:01 +00:00

25 lines
679 B
JavaScript

const Command = require('../../structures/Command');
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*`);
}
};