Reaction/Emotion pt2
This commit is contained in:
parent
b930f6e8bb
commit
4565a79645
|
@ -0,0 +1,24 @@
|
||||||
|
module.exports = {
|
||||||
|
|
||||||
|
name: "cuddle",
|
||||||
|
description: "Cuddle an user!",
|
||||||
|
execute(client, message, args) {
|
||||||
|
const messageAuthor = message.author
|
||||||
|
const taggedUser = message.mentions.users.first();
|
||||||
|
const embed = {
|
||||||
|
"title": ":heart: Cuddle",
|
||||||
|
"description": taggedUser + " You have been cuddled 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://media.tenor.com/images/7199fdd26fc2c07cd49a34fda3fc37a8/tenor.gif"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
message.channel.send({ embed: embed });
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
module.exports = {
|
||||||
|
|
||||||
|
name: "hug",
|
||||||
|
description: "Hugs an user!",
|
||||||
|
execute(client, message, args) {
|
||||||
|
const messageAuthor = message.author
|
||||||
|
const taggedUser = message.mentions.users.first();
|
||||||
|
const embed = {
|
||||||
|
"title": "<a:ABlobCatHuggle:801232248035999784> Hug",
|
||||||
|
"description": taggedUser + " You have been hugged 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.imgur.com/r9aU2xv.gif?noredirect"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
message.channel.send({ embed: embed });
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
module.exports = {
|
||||||
|
|
||||||
|
name: "pat",
|
||||||
|
description: "Pats an user!",
|
||||||
|
execute(client, message, args) {
|
||||||
|
const messageAuthor = message.author
|
||||||
|
const taggedUser = message.mentions.users.first();
|
||||||
|
const embed = {
|
||||||
|
"title": "<:pats:801238281286713355> Pat",
|
||||||
|
"description": taggedUser + " You have been patted 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://media1.giphy.com/media/ARSp9T7wwxNcs/giphy.gif"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
message.channel.send({ embed: embed });
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
module.exports = {
|
||||||
|
|
||||||
|
name: "slap",
|
||||||
|
description: "Slaps an user!",
|
||||||
|
execute(client, message, args) {
|
||||||
|
const messageAuthor = message.author
|
||||||
|
const taggedUser = message.mentions.users.first();
|
||||||
|
const embed = {
|
||||||
|
"title": ":anger: Slap",
|
||||||
|
"description": taggedUser + " You have been slapped 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://media1.tenor.com/images/b6d8a83eb652a30b95e87cf96a21e007/tenor.gif?itemid=10426943"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
message.channel.send({ embed: embed });
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue