47 lines
1.5 KiB
JavaScript
47 lines
1.5 KiB
JavaScript
const { ApplicationCommandOptionType } = require('discord.js');
|
|
|
|
const gifchoices = [
|
|
'https://cdn.discordapp.com/attachments/803658122299572255/803708174293008474/tenor.gif',
|
|
'https://community.gamepress.gg/uploads/default/original/3X/0/a/0a762099c5ad6de9ca5f13dd22a7e45884a99eb3.gif',
|
|
'https://media1.giphy.com/media/ARSp9T7wwxNcs/giphy.gif'
|
|
];
|
|
|
|
module.exports = {
|
|
|
|
name: require('path').parse(__filename).name,
|
|
description: 'Pats a user!',
|
|
options: [{
|
|
name: 'user',
|
|
description: 'The user to pat',
|
|
required: true,
|
|
type: ApplicationCommandOptionType.User
|
|
}],
|
|
|
|
async parseMessage (client, config, message) {
|
|
await message.channel.send(this.handle(client, config, message.author, message.mentions.users.first()));
|
|
},
|
|
|
|
async parseInteraction (client, config, interaction) {
|
|
await interaction.reply(this.handle(client, config, interaction.user, interaction.options.getUser('user')));
|
|
},
|
|
|
|
handle (client, config, user, target) {
|
|
if (!target) return client.generateErrorMessage('You need to @mention a user!', user.displayAvatarURL());
|
|
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
|
|
return {
|
|
embeds: [{
|
|
title: '<:pats:801238281286713355> Pat',
|
|
description: `${target} You have been patted by ${user}!`,
|
|
color: 8311585,
|
|
footer: {
|
|
icon_url: user.displayAvatarURL(),
|
|
text: config.footerTxt
|
|
},
|
|
image: {
|
|
url: gif
|
|
}
|
|
}]
|
|
};
|
|
}
|
|
};
|