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
+26
View File
@@ -0,0 +1,26 @@
const RoleplayCommand = require('../../structures/commands/Roleplay');
const { BLUSH_ALBUM_ID } = process.env;
module.exports = class BlushCommand extends RoleplayCommand {
constructor(client) {
super(client, {
name: 'blush',
group: 'roleplay',
memberName: 'break-up',
description: 'Blushes at a user.',
clientPermissions: ['ATTACH_FILES'],
albumID: BLUSH_ALBUM_ID,
args: [
{
key: 'user',
prompt: 'What user do you want to roleplay with?',
type: 'user'
}
]
});
}
generateText(msg, user) {
return `_**${msg.author.username}** blushes at **${user.username}**._`;
}
};