JaBa/commands/General/ping.js

58 lines
1.3 KiB
JavaScript
Raw Normal View History

2023-01-05 15:19:20 +05:00
const { SlashCommandBuilder, EmbedBuilder } = require("discord.js");
const BaseCommand = require("../../base/BaseCommand");
class Ping extends BaseCommand {
/**
*
2023-11-05 16:03:23 +05:00
* @param {import("../base/Client")} client
*/
constructor(client) {
super({
command: new SlashCommandBuilder()
.setName("ping")
.setDescription(client.translate("general/ping:DESCRIPTION"))
.setDescriptionLocalizations({
2023-07-05 00:58:06 +05:00
uk: client.translate("general/ping:DESCRIPTION", null, "uk-UA"),
ru: client.translate("general/ping:DESCRIPTION", null, "ru-RU"),
})
.setDMPermission(true),
aliases: [],
dirname: __dirname,
ownerOnly: false,
});
}
/**
*
2023-11-05 16:03:23 +05:00
* @param {import("../../base/Client")} client
*/
async onLoad() {
//...
}
/**
*
2023-11-05 16:03:23 +05:00
* @param {import("../../base/Client")} client
* @param {import("discord.js").ChatInputCommandInteraction} interaction
2022-08-09 23:48:33 +05:00
* @param {Object} data
*/
async execute(client, interaction) {
2023-01-05 15:19:20 +05:00
const embed = new EmbedBuilder()
.setColor(client.config.embed.color)
.setFooter(client.config.embed.footer)
2023-01-05 15:19:20 +05:00
.setAuthor({
name: interaction.translate("general/ping:PONG"),
iconURL: client.user.avatarURL(),
})
2023-07-05 00:58:06 +05:00
.setDescription(
interaction.translate("general/ping:PING", {
ping: Math.round(client.ws.ping),
}),
);
2023-01-05 15:19:20 +05:00
interaction.reply({
embeds: [embed],
});
}
}
2023-07-05 00:58:06 +05:00
module.exports = Ping;