This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
anitrox/commands/hug.js

25 lines
921 B
JavaScript

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 });
}
}