Bite Command

This commit is contained in:
Dragon Fire
2020-09-21 09:06:25 -04:00
parent b129793d1f
commit e7dfc864ec
4 changed files with 31 additions and 2 deletions
+27
View File
@@ -0,0 +1,27 @@
const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum');
const { BITE_ALBUM_ID } = process.env;
module.exports = class BiteCommand extends ImgurAlbumCommand {
constructor(client) {
super(client, {
name: 'bite',
aliases: ['nom'],
group: 'roleplay',
memberName: 'bite',
description: 'Bites a user.',
clientPermissions: ['ATTACH_FILES'],
albumID: BITE_ALBUM_ID,
args: [
{
key: 'user',
prompt: 'What user do you want to roleplay with?',
type: 'user'
}
]
});
}
generateText(msg, user) {
return `_**${msg.author.username}** bites **${user.username}**._`;
}
};