38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
module.exports = {
|
|
|
|
name: "poke",
|
|
description: "Pokes an user!",
|
|
execute(client, message, args) {
|
|
const messageAuthor = message.author
|
|
const taggedUser = message.mentions.users.first();
|
|
|
|
// --------------------------------------
|
|
const gifchoices = [
|
|
"https://i.pinimg.com/originals/b4/95/fb/b495fb19f4b9a1b04f48297b676c497b.gif",
|
|
"https://i.imgur.com/H7Ok5tn.gif",
|
|
"https://media1.tenor.com/images/8fe23ec8e2c5e44964e5c11983ff6f41/tenor.gif?itemid=5600215"
|
|
|
|
|
|
];
|
|
const index = Math.floor(Math.random() * (gifchoices.length - 1) + 2);
|
|
var gif = (gifchoices[index]);
|
|
// ---------------------------------------
|
|
|
|
const embed = {
|
|
"title": "👉 Poke!",
|
|
"description": "<@" + taggedUser + "> You have been poked by <@" + messageAuthor + ">!",
|
|
"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": {
|
|
"url": gif
|
|
}
|
|
}
|
|
|
|
|
|
message.channel.send({ embed: embed });
|
|
}
|
|
}
|