This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
anitrox/commands/snuggle.js

37 lines
1.3 KiB
JavaScript
Raw Normal View History

const gifchoices = [
'https://media.discordapp.net/attachments/803658122299572255/806775382995894282/anime-couple-snuggle-gif-5.gif?width=450&height=238',
'https://media.discordapp.net/attachments/803658122299572255/806775411928989726/snuggl1.gif',
'https://cdn.discordapp.com/attachments/803658122299572255/806775422833786911/ImpureDeepAmbushbug-small.gif'
];
2021-02-02 23:56:33 -06:00
module.exports = {
name: require('path').parse(__filename).name,
description: 'Snuggle an user!',
async execute (client, message, _, config) {
2021-02-06 12:15:55 -06:00
const taggedUser = message.mentions.users.first();
const avatarURL = message.author.displayAvatarURL();
if (!taggedUser) {
await message.channel.send(client.generateErrorMessage('You need to @mention a user!', avatarURL));
} else {
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
await message.channel.send({
embeds: [{
title: '<:BlobSnuggleCat:806759753450782731> Snuggle',
description: `${taggedUser} You have been snuggled by ${message.author}!`,
color: 9442302,
footer: {
icon_url: avatarURL,
text: config.footerTxt
},
image: {
url: gif
}
}]
});
}
}
};