60 lines
2.8 KiB
JavaScript
60 lines
2.8 KiB
JavaScript
const { MessageEmbed } = require("discord.js");
|
|
|
|
const gifchoices = [
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803833954750038066/gif5.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803833959338475550/gif12.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834034135236628/gif9.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834082034843658/gif18.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834094063583302/gif8.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834099869024296/gif10.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834132035665950/gif16.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834146413084713/gif13.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834249425715210/gif22.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834323898990592/gif11.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834328848793650/gif14.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834391226351676/gif17.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834391226351676/gif17.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834498714304522/gif15.gif",
|
|
"https://cdn.discordapp.com/attachments/793537380330111028/803834514269798460/gif19.gif"
|
|
];
|
|
|
|
module.exports = {
|
|
|
|
name: "leskiss",
|
|
description: "Lesbian kiss <:lesbian:803831629428686849>",
|
|
async execute(_0, message, _1, footerTxt) {
|
|
const taggedUser = message.mentions.users.first();
|
|
|
|
if(!taggedUser) {
|
|
await message.channel.send(new MessageEmbed({
|
|
"title": "<:AnitroxError:809651936563429416> Error",
|
|
"color": 9442302,
|
|
"footer": {
|
|
"icon_url": message.author.displayAvatarURL(),
|
|
"text": footerTxt
|
|
},
|
|
"fields": [
|
|
{
|
|
"name": "Well that happened...",
|
|
"value": "You need to @mention an user!"
|
|
}
|
|
]
|
|
}));
|
|
} else {
|
|
const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)];
|
|
await message.channel.send(new MessageEmbed({
|
|
"title": ":heart: <:lesbian:803831629428686849> Kiss",
|
|
"description": "<@" + taggedUser + ">" + " You have been kissed by <@" + message.author + ">! <:lesbian:803831629428686849>",
|
|
"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
|
|
}
|
|
}));
|
|
}
|
|
}
|
|
}
|