mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-14 08:08:34 +02:00
Add blush, merge some rp commands, remove others
This commit is contained in:
@@ -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}**._`;
|
||||
}
|
||||
};
|
||||
@@ -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!_`;
|
||||
}
|
||||
};
|
||||
@@ -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._`;
|
||||
}
|
||||
};
|
||||
@@ -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.',
|
||||
|
||||
@@ -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}**._`;
|
||||
}
|
||||
};
|
||||
@@ -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.',
|
||||
|
||||
Reference in New Issue
Block a user