2023-09-03 20:27:29 +01:00
|
|
|
import { ActionRowBuilder, AttachmentBuilder, ButtonBuilder, ButtonStyle, CommandInteraction, EmbedBuilder, SlashCommandBuilder } from "discord.js";
|
|
|
|
import { Command } from "../type/command";
|
|
|
|
import CardDropHelper from "../helpers/CardDropHelper";
|
|
|
|
import { CardRarityToColour, CardRarityToString } from "../constants/CardRarity";
|
|
|
|
import { readFileSync } from "fs";
|
|
|
|
import { CoreClient } from "../client/client";
|
|
|
|
import { v4 } from "uuid";
|
|
|
|
|
|
|
|
export default class Drop extends Command {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
|
|
|
super.CommandBuilder = new SlashCommandBuilder()
|
|
|
|
.setName('drop')
|
|
|
|
.setDescription('Summon a new card drop');
|
|
|
|
}
|
|
|
|
|
|
|
|
public override async execute(interaction: CommandInteraction) {
|
2023-09-05 19:34:25 +01:00
|
|
|
let randomCard = await CardDropHelper.GetRandomCard();
|
|
|
|
|
|
|
|
if (process.env.DROP_RARITY && Number(process.env.DROP_RARITY) > 0) {
|
|
|
|
randomCard = await CardDropHelper.GetRandomCardByRarity(Number(process.env.DROP_RARITY));
|
|
|
|
}
|
2023-09-03 20:27:29 +01:00
|
|
|
|
|
|
|
const image = readFileSync(randomCard.Path);
|
|
|
|
|
2023-09-04 13:02:02 +01:00
|
|
|
await interaction.deferReply();
|
|
|
|
|
|
|
|
const attachment = new AttachmentBuilder(image, { name: randomCard.FileName });
|
2023-09-03 20:27:29 +01:00
|
|
|
|
|
|
|
const embed = new EmbedBuilder()
|
|
|
|
.setTitle(randomCard.Name)
|
|
|
|
.setDescription(randomCard.Series.Name)
|
|
|
|
.setFooter({ text: CardRarityToString(randomCard.Rarity) })
|
|
|
|
.setColor(CardRarityToColour(randomCard.Rarity))
|
2023-09-04 13:02:02 +01:00
|
|
|
.setImage(`attachment://${randomCard.FileName}`);
|
2023-09-03 20:27:29 +01:00
|
|
|
|
|
|
|
const row = new ActionRowBuilder<ButtonBuilder>();
|
|
|
|
|
|
|
|
const claimId = v4();
|
|
|
|
|
|
|
|
row.addComponents(
|
|
|
|
new ButtonBuilder()
|
|
|
|
.setCustomId(`claim ${randomCard.CardNumber} ${claimId}`)
|
|
|
|
.setLabel("Claim")
|
|
|
|
.setStyle(ButtonStyle.Primary),
|
|
|
|
new ButtonBuilder()
|
|
|
|
.setCustomId(`reroll`)
|
|
|
|
.setLabel("Reroll")
|
|
|
|
.setStyle(ButtonStyle.Secondary));
|
|
|
|
|
2023-09-04 13:02:02 +01:00
|
|
|
await interaction.editReply({
|
2023-09-03 20:27:29 +01:00
|
|
|
embeds: [ embed ],
|
|
|
|
files: [ attachment ],
|
|
|
|
components: [ row ],
|
|
|
|
});
|
|
|
|
|
|
|
|
CoreClient.ClaimId = claimId;
|
|
|
|
}
|
|
|
|
}
|