Files
xiao/commands/roleplay/kill.js
T
Daniel Odendahl Jr 877f720cfc msg
2017-04-30 22:56:59 +00:00

23 lines
596 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class KillCommand extends Command {
constructor(client) {
super(client, {
name: 'kill',
group: 'roleplay',
memberName: 'kill',
description: 'Kills 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} *kills* ${thing}`);
}
};