2021-02-02 23:56:33 -06:00
|
|
|
module.exports = {
|
|
|
|
|
2021-02-06 12:15:55 -06:00
|
|
|
name: "snuggle",
|
|
|
|
description: "Snuggle an user!",
|
|
|
|
execute(client, message, args) {
|
|
|
|
const messageAuthor = message.author
|
|
|
|
const taggedUser = message.mentions.users.first();
|
|
|
|
|
|
|
|
// --------------------------------------
|
|
|
|
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
|
|
|
|
2021-02-06 12:15:55 -06:00
|
|
|
];
|
|
|
|
const index = Math.floor(Math.random() * (gifchoices.length - 1) + 1);
|
|
|
|
var gif = (gifchoices[index]);
|
|
|
|
// ---------------------------------------
|
2021-02-02 23:56:33 -06:00
|
|
|
|
2021-02-06 12:15:55 -06:00
|
|
|
const embed = {
|
|
|
|
"title": "<:BlobSnuggleCat:806759753450782731> Snuggle",
|
|
|
|
"description": "<@" + taggedUser + ">" + " You have been snuggled by " + "<@" + messageAuthor + ">!",
|
|
|
|
"color": 9442302,
|
|
|
|
"footer": {
|
|
|
|
"icon_url": "https://media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png",
|
2021-07-21 16:03:29 -05:00
|
|
|
"text": "Made with ❤ in Illinois | Anitrox by IDeletedSystem64"
|
2021-02-06 12:15:55 -06:00
|
|
|
},
|
|
|
|
"image": {
|
|
|
|
"url": gif
|
2021-02-02 23:56:33 -06:00
|
|
|
}
|
2021-02-06 12:15:55 -06:00
|
|
|
}
|
2021-02-02 23:56:33 -06:00
|
|
|
|
|
|
|
|
2021-02-06 12:15:55 -06:00
|
|
|
message.channel.send({ embed: embed });
|
|
|
|
}
|
|
|
|
}
|