diff --git a/commands/cuddle.js b/commands/cuddle.js new file mode 100644 index 0000000..90a156b --- /dev/null +++ b/commands/cuddle.js @@ -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 }); + } + } diff --git a/commands/hug.js b/commands/hug.js new file mode 100644 index 0000000..1501c84 --- /dev/null +++ b/commands/hug.js @@ -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": " 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 }); + } + } diff --git a/commands/pat.js b/commands/pat.js new file mode 100644 index 0000000..92be259 --- /dev/null +++ b/commands/pat.js @@ -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 }); + } + } diff --git a/commands/slap.js b/commands/slap.js new file mode 100644 index 0000000..b1f0c37 --- /dev/null +++ b/commands/slap.js @@ -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 }); + } + }