mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
27 lines
647 B
JavaScript
27 lines
647 B
JavaScript
const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum');
|
|
const { HIGH_FIVE_ALBUM_ID } = process.env;
|
|
|
|
module.exports = class HighFiveCommand extends ImgurAlbumCommand {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'high-five',
|
|
group: 'roleplay',
|
|
memberName: 'high-five',
|
|
description: 'High Fives a user.',
|
|
clientPermissions: ['ATTACH_FILES'],
|
|
albumID: HIGH_FIVE_ALBUM_ID,
|
|
args: [
|
|
{
|
|
key: 'user',
|
|
prompt: 'What user do you want to roleplay with?',
|
|
type: 'user'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
generateText(msg, user) {
|
|
return `_**${msg.author.username}** high-fives **${user.username}**._`;
|
|
}
|
|
};
|