Merge falcon punch with punch

This commit is contained in:
Dragon Fire
2018-09-03 12:44:09 -04:00
parent 553868c727
commit 905df40d98
5 changed files with 3 additions and 30 deletions
-26
View File
@@ -1,26 +0,0 @@
const RoleplayCommand = require('../../structures/commands/Roleplay');
const { FALCON_PUNCH_ALBUM_ID } = process.env;
module.exports = class FalconPunchCommand extends RoleplayCommand {
constructor(client) {
super(client, {
name: 'falcon-punch',
group: 'roleplay',
memberName: 'falcon-punch',
description: 'Falcon Punches a user.',
clientPermissions: ['ATTACH_FILES'],
albumID: FALCON_PUNCH_ALBUM_ID,
args: [
{
key: 'user',
prompt: 'What user do you want to roleplay with?',
type: 'user'
}
]
});
}
generateText(msg, user) {
return `_**${msg.author.username}** falcon punches **${user.username}**._`;
}
};
+1
View File
@@ -5,6 +5,7 @@ module.exports = class PunchCommand extends RoleplayCommand {
constructor(client) {
super(client, {
name: 'punch',
aliases: ['falcon-punch'],
group: 'roleplay',
memberName: 'punch',
description: 'Punches a user.',