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

25 lines
643 B
JavaScript

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