mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
72 lines
1.8 KiB
JavaScript
72 lines
1.8 KiB
JavaScript
const { SlashCommandBuilder, EmbedBuilder } = require("discord.js");
|
|
const BaseCommand = require("../../base/BaseCommand");
|
|
|
|
class Eightball extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../base/JaBa")} client
|
|
*/
|
|
constructor(client) {
|
|
super({
|
|
command: new SlashCommandBuilder()
|
|
.setName("8ball")
|
|
.setDescription(client.translate("fun/8ball:DESCRIPTION"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("fun/8ball:DESCRIPTION", null, "uk-UA"),
|
|
ru: client.translate("fun/8ball:DESCRIPTION", null, "ru-RU"),
|
|
})
|
|
.setDMPermission(true)
|
|
.addStringOption(option =>
|
|
option
|
|
.setName("question")
|
|
.setDescription(client.translate("fun/8ball:QUESTION"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("fun/8ball:QUESTION", null, "uk-UA"),
|
|
ru: client.translate("fun/8ball:QUESTION", null, "ru-RU"),
|
|
})
|
|
.setRequired(true),
|
|
),
|
|
aliases: [],
|
|
dirname: __dirname,
|
|
ownerOnly: false,
|
|
});
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
*/
|
|
async onLoad() {
|
|
//...
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
* @param {Object} data
|
|
*/
|
|
async execute(client, interaction) {
|
|
await interaction.deferReply();
|
|
|
|
const question = interaction.options.getString("question");
|
|
const embed = new EmbedBuilder()
|
|
.setFields(
|
|
{
|
|
name: interaction.translate("fun/8ball:QUESTION"),
|
|
value: question,
|
|
},
|
|
{
|
|
name: interaction.translate("fun/8ball:ANSWER"),
|
|
value: interaction.translate(`fun/8ball:RESPONSE_${client.functions.randomNum(1, 20)}`),
|
|
},
|
|
)
|
|
.setColor(client.config.embed.color)
|
|
.setFooter(client.config.embed.footer)
|
|
.setTimestamp();
|
|
|
|
await client.wait(5000);
|
|
|
|
interaction.editReply({ embeds: [embed] });
|
|
}
|
|
}
|
|
|
|
module.exports = Eightball;
|