Add blush, merge some rp commands, remove others

This commit is contained in:
Dragon Fire
2018-09-03 15:49:51 -04:00
parent 01da85ff86
commit 0b9c8241bb
9 changed files with 13 additions and 97 deletions
@@ -1,16 +1,15 @@
const RoleplayCommand = require('../../structures/commands/Roleplay');
const { BREAK_UP_ALBUM_ID } = process.env;
const { BLUSH_ALBUM_ID } = process.env;
module.exports = class BreakUpCommand extends RoleplayCommand {
module.exports = class BlushCommand extends RoleplayCommand {
constructor(client) {
super(client, {
name: 'break-up',
aliases: ['divorce'],
name: 'blush',
group: 'roleplay',
memberName: 'break-up',
description: 'Breaks up with a user.',
description: 'Blushes at a user.',
clientPermissions: ['ATTACH_FILES'],
albumID: BREAK_UP_ALBUM_ID,
albumID: BLUSH_ALBUM_ID,
args: [
{
key: 'user',
@@ -22,6 +21,6 @@ module.exports = class BreakUpCommand extends RoleplayCommand {
}
generateText(msg, user) {
return `_**${msg.author.username}** breaks up with **${user.username}**._`;
return `_**${msg.author.username}** blushes at **${user.username}**._`;
}
};
-27
View File
@@ -1,27 +0,0 @@
const RoleplayCommand = require('../../structures/commands/Roleplay');
const { EVOLVE_ALBUM_ID } = process.env;
module.exports = class EvolveCommand extends RoleplayCommand {
constructor(client) {
super(client, {
name: 'evolve',
group: 'roleplay',
memberName: 'evolve',
description: 'Evolves a user.',
clientPermissions: ['ATTACH_FILES'],
albumID: EVOLVE_ALBUM_ID,
args: [
{
key: 'user',
prompt: 'What user do you want to roleplay with?',
type: 'user',
default: msg => msg.author
}
]
});
}
generateText(msg, user) {
return `_**${user.username}** is evolving!_`;
}
};
-26
View File
@@ -1,26 +0,0 @@
const RoleplayCommand = require('../../structures/commands/Roleplay');
const { HIT_WITH_SHOVEL_ALBUM_ID } = process.env;
module.exports = class HitWithShovelCommand extends RoleplayCommand {
constructor(client) {
super(client, {
name: 'hit-with-shovel',
group: 'roleplay',
memberName: 'hit-with-shovel',
description: 'Hits a user with a shovel.',
clientPermissions: ['ATTACH_FILES'],
albumID: HIT_WITH_SHOVEL_ALBUM_ID,
args: [
{
key: 'user',
prompt: 'What user do you want to roleplay with?',
type: 'user'
}
]
});
}
generateText(msg, user) {
return `_**${msg.author.username}** hits **${user.username}** with a shovel._`;
}
};
+1
View File
@@ -5,6 +5,7 @@ module.exports = class KissCommand extends RoleplayCommand {
constructor(client) {
super(client, {
name: 'kiss',
aliases: ['marry'],
group: 'roleplay',
memberName: 'kiss',
description: 'Kisses a user.',
-26
View File
@@ -1,26 +0,0 @@
const RoleplayCommand = require('../../structures/commands/Roleplay');
const { MARRY_ALBUM_ID } = process.env;
module.exports = class MarryCommand extends RoleplayCommand {
constructor(client) {
super(client, {
name: 'marry',
group: 'roleplay',
memberName: 'marry',
description: 'Marries a user.',
clientPermissions: ['ATTACH_FILES'],
albumID: MARRY_ALBUM_ID,
args: [
{
key: 'user',
prompt: 'What user do you want to roleplay with?',
type: 'user'
}
]
});
}
generateText(msg, user) {
return `_**${msg.author.username}** marries **${user.username}**._`;
}
};
+1
View File
@@ -5,6 +5,7 @@ module.exports = class SlapCommand extends RoleplayCommand {
constructor(client) {
super(client, {
name: 'slap',
aliases: ['break-up', 'divorce'],
group: 'roleplay',
memberName: 'slap',
description: 'Slaps a user.',