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.
2021-02-25 00:48:40 -06:00
|
|
|
module.exports = {
|
|
|
|
name: "avatar",
|
|
|
|
description: "Gets a users avatar.",
|
|
|
|
execute(client, message, args) {
|
|
|
|
const user = message.mentions.users.first()
|
|
|
|
|
|
|
|
const embed = {
|
|
|
|
"title": ":frame_photo: " + user.username + "'s Avatar",
|
|
|
|
"description": "Here is " + user.username + "'s avatar!",
|
|
|
|
"color": 9442302,
|
|
|
|
"footer": {
|
2021-05-07 11:22:40 -05:00
|
|
|
"icon_url": "https://media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png",
|
|
|
|
"text": "Made with ❤ in Illinois | Anitrox © IDeletedSystem64 2018-2021"
|
2021-02-25 00:48:40 -06:00
|
|
|
},
|
|
|
|
"image": {
|
|
|
|
"url": user.displayAvatarURL()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
message.channel.send({ embed });
|
|
|
|
}
|
|
|
|
}
|