mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-17 08:17:35 +02:00
Wink Command
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
const RoleplayCommand = require('../../structures/commands/Roleplay');
|
||||
const { WINK_ALBUM_ID } = process.env;
|
||||
|
||||
module.exports = class WinkCommand extends RoleplayCommand {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'wink',
|
||||
group: 'roleplay',
|
||||
memberName: 'wink',
|
||||
description: 'Winks at a user.',
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
albumID: WINK_ALBUM_ID,
|
||||
args: [
|
||||
{
|
||||
key: 'user',
|
||||
prompt: 'What user do you want to roleplay with?',
|
||||
type: 'user'
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
generateText(msg, user) {
|
||||
return `_**${msg.author.username}** winks at **${user.username}**._`;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user