2021-01-19 18:08:38 -06:00
|
|
|
module.exports = {
|
|
|
|
|
|
|
|
name: "nom",
|
|
|
|
description: "Noms an user!",
|
|
|
|
execute(client, message, args) {
|
|
|
|
const messageAuthor = message.author
|
|
|
|
const taggedUser = message.mentions.users.first();
|
2021-01-26 14:03:02 -06:00
|
|
|
|
|
|
|
// --------------------------------------
|
|
|
|
const gifchoices = [
|
|
|
|
"https://i.imgur.com/Ns1RBzX.gif",
|
|
|
|
"https://cdn.lowgif.com/full/2027501b8fa5225c-.gif",
|
|
|
|
"https://i.gifer.com/36Nx.gif",
|
|
|
|
"https://media.tenor.com/images/e8bbe712a5f36bbe9545930894b08bf9/tenor.gif"
|
|
|
|
|
|
|
|
|
|
|
|
];
|
|
|
|
const index = Math.floor(Math.random() * (gifchoices.length - 1) + 1);
|
|
|
|
var gif = (gifchoices[index]);
|
|
|
|
// ---------------------------------------
|
|
|
|
|
|
|
|
const embed = {
|
2021-01-19 18:08:38 -06:00
|
|
|
"title": "<:BlobNomBlob:801241117919805510> Nom",
|
2021-01-23 01:08:05 -06:00
|
|
|
"description": "<@" + taggedUser + "> You have been nommed by <@" + messageAuthor + ">!",
|
2021-01-19 18:08:38 -06:00
|
|
|
"color": 8311585,
|
|
|
|
"footer": {
|
|
|
|
"icon_url": "https://media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png",
|
|
|
|
"text": "Made with ❤ in Illinois | Anitrox © IDeletedSystem64 2018-2021"
|
|
|
|
},
|
|
|
|
"image": {
|
2021-01-26 14:03:02 -06:00
|
|
|
"url": gif
|
2021-01-19 18:08:38 -06:00
|
|
|
}
|
|
|
|
}
|
2021-01-23 01:08:05 -06:00
|
|
|
|
|
|
|
|
|
|
|
message.channel.send({ embed: embed });
|
2021-01-19 18:08:38 -06:00
|
|
|
}
|
|
|
|
}
|