JaBa/commands/Economy/slots.js

242 lines
7.9 KiB
JavaScript
Raw Normal View History

2024-09-19 23:58:06 +05:00
const { SlashCommandBuilder, InteractionContextType, ApplicationIntegrationType } = require("discord.js");
2022-08-09 23:48:33 +05:00
const BaseCommand = require("../../base/BaseCommand");
class Slots extends BaseCommand {
/**
*
2023-11-05 16:03:23 +05:00
* @param {import("../base/Client")} client
2022-08-09 23:48:33 +05:00
*/
constructor(client) {
2022-08-09 23:48:33 +05:00
super({
command: new SlashCommandBuilder()
.setName("slots")
.setDescription(client.translate("economy/slots:DESCRIPTION"))
.setDescriptionLocalizations({
2023-07-05 00:58:06 +05:00
uk: client.translate("economy/slots:DESCRIPTION", null, "uk-UA"),
ru: client.translate("economy/slots:DESCRIPTION", null, "ru-RU"),
})
2024-09-19 23:58:06 +05:00
.setIntegrationTypes([ApplicationIntegrationType.GuildInstall])
2024-09-14 19:52:56 +05:00
.setContexts([InteractionContextType.Guild])
2023-07-05 00:58:06 +05:00
.addIntegerOption(option =>
option
.setName("amount")
.setDescription(client.translate("common:INT"))
.setDescriptionLocalizations({
uk: client.translate("common:INT", null, "uk-UA"),
ru: client.translate("common:INT", null, "ru-RU"),
})
.setRequired(true),
),
dirname: __dirname,
ownerOnly: false,
});
}
2022-08-09 23:48:33 +05:00
/**
*
2023-11-05 16:03:23 +05:00
* @param {import("../../base/Client")} client
2022-08-09 23:48:33 +05:00
* @param {import("discord.js").ChatInputCommandInteraction} interaction
*/
2024-02-09 23:26:57 +05:00
async execute(client, interaction) {
2022-08-09 23:48:33 +05:00
await interaction.deferReply();
2024-02-09 23:26:57 +05:00
const { member: memberData, user: userData } = interaction.data,
amount = interaction.options.getInteger("amount");
if (amount > memberData.money)
2023-07-05 00:58:06 +05:00
return interaction.error("economy/slots:NOT_ENOUGH", {
money: `**${amount}** ${client.functions.getNoun(amount, interaction.translate("misc:NOUNS:CREDIT:1"), interaction.translate("misc:NOUNS:CREDIT:2"), interaction.translate("misc:NOUNS:CREDIT:5"))}`,
}, { edit: true });
const fruits = ["🍎", "🍐", "🍌", "🍇", "🍉", "🍒", "🍓"];
2023-07-05 00:58:06 +05:00
let i1 = 0,
j1 = 0,
k1 = 0,
i2 = 1,
j2 = 1,
k2 = 1,
i3 = 2,
j3 = 2,
k3 = 2;
2023-07-05 00:58:06 +05:00
const colonnes = [client.functions.shuffle(fruits), client.functions.shuffle(fruits), client.functions.shuffle(fruits)];
function getCredits(number, isJackpot) {
if (!isJackpot) number = number * 1.5;
else if (isJackpot) number = number * 5;
return Math.round(number);
}
editMsg();
const interval = setInterval(editMsg, 1000);
setTimeout(() => {
clearInterval(interval);
2022-08-09 23:48:33 +05:00
end();
}, 4000);
async function end() {
2023-09-08 19:26:36 +05:00
let msg = "[ :slot_machine: | **SLOTS** ]\n------------------\n";
2023-07-05 00:58:06 +05:00
i1 = i1 < fruits.length - 1 ? i1 + 1 : 0;
i2 = i2 < fruits.length - 1 ? i2 + 1 : 0;
i3 = i3 < fruits.length - 1 ? i3 + 1 : 0;
j1 = j1 < fruits.length - 1 ? j1 + 1 : 0;
j2 = j2 < fruits.length - 1 ? j2 + 1 : 0;
j3 = j3 < fruits.length - 1 ? j3 + 1 : 0;
k1 = k1 < fruits.length - 1 ? k1 + 1 : 0;
k2 = k2 < fruits.length - 1 ? k2 + 1 : 0;
k3 = k3 < fruits.length - 1 ? k3 + 1 : 0;
msg += colonnes[0][i1] + " : " + colonnes[1][j1] + " : " + colonnes[2][k1] + "\n";
msg += colonnes[0][i2] + " : " + colonnes[1][j2] + " : " + colonnes[2][k2] + " **<**\n";
msg += colonnes[0][i3] + " : " + colonnes[1][j3] + " : " + colonnes[2][k3] + "\n------------------\n";
2023-07-05 00:58:06 +05:00
if (colonnes[0][i2] == colonnes[1][j2] && colonnes[1][j2] == colonnes[2][k2]) {
msg += "| : : : **" + interaction.translate("common:VICTORY").toUpperCase() + "** : : : |";
2022-08-09 23:48:33 +05:00
await interaction.editReply({
content: msg,
2022-08-09 23:48:33 +05:00
});
const credits = getCredits(amount, true);
2022-08-09 23:48:33 +05:00
interaction.followUp({
2023-07-05 00:58:06 +05:00
content:
2023-09-21 13:26:40 +05:00
"**!! JACKPOT !!**\n" +
2023-07-05 00:58:06 +05:00
interaction.translate("economy/slots:VICTORY", {
money: `**${amount}** ${client.functions.getNoun(amount, interaction.translate("misc:NOUNS:CREDIT:1"), interaction.translate("misc:NOUNS:CREDIT:2"), interaction.translate("misc:NOUNS:CREDIT:5"))}`,
won: `**${credits}** ${client.functions.getNoun(credits, interaction.translate("misc:NOUNS:CREDIT:1"), interaction.translate("misc:NOUNS:CREDIT:2"), interaction.translate("misc:NOUNS:CREDIT:5"))}`,
user: interaction.member.toString(),
}),
});
const toAdd = credits - amount;
const info = {
2022-08-09 23:48:33 +05:00
user: interaction.translate("economy/slots:DESCRIPTION"),
amount: toAdd,
date: Date.now(),
type: "got",
};
2023-07-03 19:30:47 +05:00
2024-02-09 23:26:57 +05:00
memberData.money += toAdd;
memberData.transactions.push(info);
2024-02-09 23:26:57 +05:00
if (!userData.achievements.slots.achieved) {
userData.achievements.slots.progress.now += 1;
if (userData.achievements.slots.progress.now === userData.achievements.slots.progress.total) {
userData.achievements.slots.achieved = true;
2022-08-09 23:48:33 +05:00
interaction.followUp({
2023-07-05 00:58:06 +05:00
files: [
{
name: "achievement_unlocked4.png",
attachment: "./assets/img/achievements/achievement_unlocked4.png",
},
],
});
}
}
2023-10-19 22:48:38 +05:00
2024-02-09 23:26:57 +05:00
await memberData.save();
2023-07-03 19:30:47 +05:00
return;
}
if (colonnes[0][i2] == colonnes[1][j2] || colonnes[1][j2] == colonnes[2][k2] || colonnes[0][i2] == colonnes[2][k2]) {
2023-07-05 00:58:06 +05:00
msg += "| : : : **" + interaction.translate("common:VICTORY").toUpperCase() + "** : : : |";
2022-08-09 23:48:33 +05:00
await interaction.editReply({
content: msg,
2022-08-09 23:48:33 +05:00
});
const credits = getCredits(amount, false);
2022-08-09 23:48:33 +05:00
interaction.followUp({
content: interaction.translate("economy/slots:VICTORY", {
money: `**${amount}** ${client.functions.getNoun(amount, interaction.translate("misc:NOUNS:CREDIT:1"), interaction.translate("misc:NOUNS:CREDIT:2"), interaction.translate("misc:NOUNS:CREDIT:5"))}`,
won: `**${credits}** ${client.functions.getNoun(credits, interaction.translate("misc:NOUNS:CREDIT:1"), interaction.translate("misc:NOUNS:CREDIT:2"), interaction.translate("misc:NOUNS:CREDIT:5"))}`,
user: interaction.member.toString(),
}),
});
const toAdd = credits - amount;
const info = {
2022-08-09 23:48:33 +05:00
user: interaction.translate("economy/slots:DESCRIPTION"),
amount: toAdd,
date: Date.now(),
type: "got",
};
2023-07-03 19:30:47 +05:00
2024-02-09 23:26:57 +05:00
memberData.money += toAdd;
memberData.transactions.push(info);
2023-07-03 19:30:47 +05:00
2024-02-09 23:26:57 +05:00
if (!userData.achievements.slots.achieved) {
userData.achievements.slots.progress.now += 1;
if (userData.achievements.slots.progress.now === userData.achievements.slots.progress.total) {
userData.achievements.slots.achieved = true;
2022-08-09 23:48:33 +05:00
interaction.followUp({
2023-07-05 00:58:06 +05:00
files: [
{
name: "achievement_unlocked4.png",
attachment: "./assets/img/achievements/achievement_unlocked4.png",
},
],
});
}
}
2023-10-19 22:48:38 +05:00
2024-02-09 23:26:57 +05:00
await memberData.save();
2023-10-19 22:48:38 +05:00
return;
}
2023-07-05 00:58:06 +05:00
msg += "| : : : **" + interaction.translate("common:DEFEAT").toUpperCase() + "** : : : |";
2022-08-09 23:48:33 +05:00
interaction.followUp({
content: interaction.translate("economy/slots:DEFEAT", {
money: `**${amount}** ${client.functions.getNoun(amount, interaction.translate("misc:NOUNS:CREDIT:1"), interaction.translate("misc:NOUNS:CREDIT:2"), interaction.translate("misc:NOUNS:CREDIT:5"))}`,
user: interaction.member.toString(),
}),
});
const info = {
2022-08-09 23:48:33 +05:00
user: interaction.translate("economy/slots:DESCRIPTION"),
amount: amount,
date: Date.now(),
type: "send",
};
2023-07-03 19:30:47 +05:00
2024-02-09 23:26:57 +05:00
memberData.money -= amount;
memberData.transactions.push(info);
2023-07-03 19:30:47 +05:00
2024-05-24 23:02:12 +05:00
if (!userData.achievements.slots.achieved) userData.achievements.slots.progress.now = 0;
2023-10-19 22:48:38 +05:00
2024-02-09 23:26:57 +05:00
await memberData.save();
2023-10-19 22:48:38 +05:00
return;
}
2022-08-09 23:48:33 +05:00
async function editMsg() {
2023-09-08 19:26:36 +05:00
let msg = "[ :slot_machine: | **SLOTS** ]\n------------------\n";
2023-07-05 00:58:06 +05:00
i1 = i1 < fruits.length - 1 ? i1 + 1 : 0;
i2 = i2 < fruits.length - 1 ? i2 + 1 : 0;
i3 = i3 < fruits.length - 1 ? i3 + 1 : 0;
j1 = j1 < fruits.length - 1 ? j1 + 1 : 0;
j2 = j2 < fruits.length - 1 ? j2 + 1 : 0;
j3 = j3 < fruits.length - 1 ? j3 + 1 : 0;
k1 = k1 < fruits.length - 1 ? k1 + 1 : 0;
k2 = k2 < fruits.length - 1 ? k2 + 1 : 0;
k3 = k3 < fruits.length - 1 ? k3 + 1 : 0;
msg += colonnes[0][i1] + " : " + colonnes[1][j1] + " : " + colonnes[2][k1] + "\n";
msg += colonnes[0][i2] + " : " + colonnes[1][j2] + " : " + colonnes[2][k2] + " **<**\n";
msg += colonnes[0][i3] + " : " + colonnes[1][j3] + " : " + colonnes[2][k3] + "\n";
2022-08-09 23:48:33 +05:00
await interaction.editReply({
content: msg,
2022-08-09 23:48:33 +05:00
});
}
}
}
2023-07-05 00:58:06 +05:00
module.exports = Slots;