mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 15:56:52 +02:00
25 lines
683 B
JavaScript
25 lines
683 B
JavaScript
const { Command } = require('discord.js-commando');
|
|
|
|
module.exports = class FalconPunchCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'falcon-punch',
|
|
group: 'roleplay',
|
|
memberName: 'falcon-punch',
|
|
description: 'Falcon Punches 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} *falcon punches* ${thing}`);
|
|
}
|
|
};
|