mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 13:14:58 +05:00
58 lines
1.7 KiB
JavaScript
58 lines
1.7 KiB
JavaScript
const { SlashCommandBuilder } = require("discord.js");
|
|
const BaseCommand = require("../../base/BaseCommand");
|
|
|
|
class Avatar extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../base/Client")} client
|
|
*/
|
|
constructor(client) {
|
|
super({
|
|
command: new SlashCommandBuilder()
|
|
.setName("avatar")
|
|
.setDescription(client.translate("general/avatar:DESCRIPTION"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("general/avatar:DESCRIPTION", null, "uk-UA"),
|
|
ru: client.translate("general/avatar:DESCRIPTION", null, "ru-RU"),
|
|
})
|
|
.setDMPermission(true)
|
|
.addUserOption(option =>
|
|
option
|
|
.setName("user")
|
|
.setDescription(client.translate("common:USER"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("common:USER", null, "uk-UA"),
|
|
ru: client.translate("common:USER", null, "ru-RU"),
|
|
}),
|
|
)
|
|
.addBooleanOption(option =>
|
|
option
|
|
.setName("server")
|
|
.setDescription(client.translate("general/avatar:SERVER"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("general/avatar:SERVER", null, "uk-UA"),
|
|
ru: client.translate("general/avatar:SERVER", null, "ru-RU"),
|
|
}),
|
|
),
|
|
dirname: __dirname,
|
|
ownerOnly: false,
|
|
});
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {import("../../base/Client")} client
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
*/
|
|
async execute(client, interaction) {
|
|
const member = interaction.options.getMember("user") || interaction.member;
|
|
const avatarURL = interaction.options.getBoolean("server") ? member.displayAvatarURL({ size: 2048 }) : member.user.displayAvatarURL({ size: 2048 });
|
|
const embed = client.embed({ image: avatarURL });
|
|
|
|
interaction.reply({
|
|
embeds: [embed],
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = Avatar;
|