mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
|
const { SlashCommandBuilder } = require("discord.js");
|
||
|
const BaseCommand = require("../../base/BaseCommand");
|
||
|
|
||
|
class Avatar extends BaseCommand {
|
||
|
/**
|
||
|
*
|
||
|
* @param {import("../base/JaBa")} client
|
||
|
*/
|
||
|
constructor(client) {
|
||
|
super({
|
||
|
command: new SlashCommandBuilder()
|
||
|
.setName("avatar")
|
||
|
.setDescription(client.translate("general/avatar:DESCRIPTION"))
|
||
|
.addUserOption(option => option.setName("user")
|
||
|
.setDescription(client.translate("common:USER"))),
|
||
|
aliases: [],
|
||
|
dirname: __dirname,
|
||
|
guildOnly: true,
|
||
|
ownerOnly: false
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
*
|
||
|
* @param {import("../../base/JaBa")} client
|
||
|
*/
|
||
|
async onLoad() {
|
||
|
//...
|
||
|
}
|
||
|
/**
|
||
|
*
|
||
|
* @param {import("../../base/JaBa")} client
|
||
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
||
|
* @param {Array} data
|
||
|
*/
|
||
|
async execute(client, interaction) {
|
||
|
const user = interaction.options.getUser("user") || interaction.user;
|
||
|
const avatarURL = user.displayAvatarURL({
|
||
|
size: 512
|
||
|
});
|
||
|
|
||
|
interaction.reply({
|
||
|
files: [{
|
||
|
attachment: avatarURL
|
||
|
}]
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Avatar;
|