2024-09-14 19:52:56 +05:00
|
|
|
const { SlashCommandBuilder, InteractionContextType } = require("discord.js");
|
2022-08-09 23:48:33 +05:00
|
|
|
const BaseCommand = require("../../base/BaseCommand");
|
|
|
|
|
|
|
|
class Divorce 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) {
|
|
|
|
super({
|
|
|
|
command: new SlashCommandBuilder()
|
|
|
|
.setName("divorce")
|
2022-10-13 00:05:36 +05:00
|
|
|
.setDescription(client.translate("economy/divorce:DESCRIPTION"))
|
2023-06-15 19:46:27 +05:00
|
|
|
.setDescriptionLocalizations({
|
2023-07-05 00:58:06 +05:00
|
|
|
uk: client.translate("economy/divorce:DESCRIPTION", null, "uk-UA"),
|
|
|
|
ru: client.translate("economy/divorce:DESCRIPTION", null, "ru-RU"),
|
2023-06-15 19:46:27 +05:00
|
|
|
})
|
2024-09-14 19:52:56 +05:00
|
|
|
.setContexts([InteractionContextType.Guild]),
|
2022-08-09 23:48:33 +05:00
|
|
|
dirname: __dirname,
|
2022-12-15 21:02:38 +05:00
|
|
|
ownerOnly: false,
|
2022-08-09 23:48:33 +05:00
|
|
|
});
|
|
|
|
}
|
2024-02-06 21:45:53 +05:00
|
|
|
|
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) {
|
|
|
|
const userData = interaction.data.user;
|
2022-08-09 23:48:33 +05:00
|
|
|
|
2024-02-09 23:26:57 +05:00
|
|
|
if (!userData.lover) return interaction.error("economy/divorce:NOT_MARRIED");
|
|
|
|
const user = client.users.cache.get(userData.lover) || await client.users.fetch(userData.lover);
|
2023-09-25 21:42:43 +05:00
|
|
|
|
2024-02-09 23:26:57 +05:00
|
|
|
userData.lover = null;
|
|
|
|
|
|
|
|
await userData.save();
|
2022-08-09 23:48:33 +05:00
|
|
|
|
2024-05-24 23:11:03 +05:00
|
|
|
const oldLover = await client.getUserData(user.id);
|
2022-08-09 23:48:33 +05:00
|
|
|
oldLover.lover = null;
|
2023-09-25 21:42:43 +05:00
|
|
|
|
2022-08-09 23:48:33 +05:00
|
|
|
await oldLover.save();
|
|
|
|
|
|
|
|
interaction.success("economy/divorce:DIVORCED", {
|
2022-12-15 21:02:38 +05:00
|
|
|
user: user.toString(),
|
2022-08-09 23:48:33 +05:00
|
|
|
});
|
|
|
|
|
2024-02-09 23:26:57 +05:00
|
|
|
try {
|
|
|
|
user.send({
|
|
|
|
content: interaction.translate("economy/divorce:DIVORCED_U", {
|
|
|
|
user: interaction.member.toString(),
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
} catch (e) { /**/ }
|
2022-08-09 23:48:33 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-05 00:58:06 +05:00
|
|
|
module.exports = Divorce;
|