Inhale Command

This commit is contained in:
Dragon Fire
2020-04-25 22:34:45 -04:00
parent 83f87c1b5c
commit 33142b497f
4 changed files with 30 additions and 2 deletions
+26
View File
@@ -0,0 +1,26 @@
const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum');
const { INHALE_ALBUM_ID } = process.env;
module.exports = class InhaleCommand extends ImgurAlbumCommand {
constructor(client) {
super(client, {
name: 'inhale',
group: 'roleplay',
memberName: 'inhale',
description: 'Inhales a user.',
clientPermissions: ['ATTACH_FILES'],
albumID: INHALE_ALBUM_ID,
args: [
{
key: 'user',
prompt: 'What user do you want to roleplay with?',
type: 'user'
}
]
});
}
generateText(msg, user) {
return `_**${msg.author.username}** inhales **${user.username}** but gained no ability._`;
}
};