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/nom.js

34 lines
1.1 KiB
JavaScript
Raw Normal View History

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"
];
2021-01-23 01:08:05 -06:00
module.exports = {
2021-01-23 01:08:05 -06:00
name: "nom",
description: "Noms an user!",
2022-03-29 13:51:43 -05:00
async execute(client, message, _, config) {
const taggedUser = message.mentions.users.first();
if(!taggedUser) {
await message.channel.send(client.generateErrorMessage("You need to @mention a user!", message.author.displayAvatarURL()));
} else {
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
await message.channel.send({embed: {
"title": "<:BlobNomBlob:801241117919805510> Nom",
2022-03-26 13:20:32 -05:00
"description": `${taggedUser} You have been nommed by ${message.author}!`,
"color": 8311585,
"footer": {
"icon_url": message.author.displayAvatarURL(),
2022-03-29 13:51:43 -05:00
"text": config.footerTxt
},
"image": {
"url": gif
}
}});
2021-01-19 18:08:38 -06:00
}
}
}