Do I need to explain?

This commit is contained in:
Anthony M 2021-01-19 18:08:38 -06:00 committed by GitHub
parent b18f8cbb2b
commit b8c2cc66f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 48 additions and 0 deletions

24
commands/kiss.js Normal file
View File

@ -0,0 +1,24 @@
module.exports = {
name: "kiss",
description: "Kisses an user!",
execute(client, message, args) {
const messageAuthor = message.author
const taggedUser = message.mentions.users.first();
const embed = {
"title": ":heart: Kiss",
"description": taggedUser + " You have been kissed 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": "https://i.pinimg.com/originals/e3/4e/31/e34e31123f8f35d5c771a2d6a70bef52.gif"
}
}
message.channel.send({ embed: embed });
}
}

24
commands/nom.js Normal file
View File

@ -0,0 +1,24 @@
module.exports = {
name: "nom",
description: "Noms an user!",
execute(client, message, args) {
const messageAuthor = message.author
const taggedUser = message.mentions.users.first();
const embed = {
"title": "<:BlobNomBlob:801241117919805510> Nom",
"description": taggedUser + " You have been nommed 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": "https://data.whicdn.com/images/279560594/original.gif"
}
}
message.channel.send({ embed: embed });
}
}