# Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. #380 ## Type of change Please delete options that are not relevant. - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update # How Has This Been Tested? Please describe the tests that you ran to verify the changes. Provide instructions so we can reproduce. Please also list any relevant details to your test configuration. # Checklist - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that provde my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules Reviewed-on: #419 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
86 lines
No EOL
3.5 KiB
TypeScript
86 lines
No EOL
3.5 KiB
TypeScript
import { ActionRowBuilder, ButtonBuilder, ButtonStyle, CacheType, CommandInteraction, EmbedBuilder, SlashCommandBuilder } from "discord.js";
|
|
import { Command } from "../type/command";
|
|
import Inventory from "../database/entities/app/Inventory";
|
|
import { CardRarityToString, GetSacrificeAmount } from "../constants/CardRarity";
|
|
import EmbedColours from "../constants/EmbedColours";
|
|
import GetCardsHelper from "../helpers/DropHelpers/GetCardsHelper";
|
|
|
|
export default class Sacrifice extends Command {
|
|
constructor() {
|
|
super();
|
|
|
|
this.CommandBuilder = new SlashCommandBuilder()
|
|
.setName("sacrifice")
|
|
.setDescription("Sacrifices a card for currency")
|
|
.addStringOption(x =>
|
|
x
|
|
.setName("cardnumber")
|
|
.setDescription("The card to sacrifice from your inventory")
|
|
.setRequired(true))
|
|
.addNumberOption(x =>
|
|
x
|
|
.setName("quantity")
|
|
.setDescription("The amount to sacrifice (default 1)"));
|
|
}
|
|
|
|
public override async execute(interaction: CommandInteraction<CacheType>): Promise<void> {
|
|
const cardnumber = interaction.options.get("cardnumber", true);
|
|
const quantityInput = interaction.options.get("quantity")?.value ?? 1;
|
|
|
|
const quantity = Number(quantityInput) || 1;
|
|
|
|
const cardInInventory = await Inventory.FetchOneByCardNumberAndUserId(interaction.user.id, cardnumber.value! as string);
|
|
|
|
if (!cardInInventory || cardInInventory.Quantity == 0) {
|
|
await interaction.reply("Unable to find card in your inventory.");
|
|
return;
|
|
}
|
|
|
|
if (cardInInventory.Quantity < quantity) {
|
|
await interaction.reply(`You can only sacrifice what you own! You have ${cardInInventory.Quantity} of this card`);
|
|
return;
|
|
}
|
|
|
|
const cardData = GetCardsHelper.GetCardByCardNumber(cardnumber.value! as string);
|
|
|
|
if (!cardData) {
|
|
await interaction.reply("Unable to find card in the database.");
|
|
return;
|
|
}
|
|
|
|
const cardValue = GetSacrificeAmount(cardData.card.type) * quantity;
|
|
const cardRarityString = CardRarityToString(cardData.card.type);
|
|
|
|
const description = [
|
|
`Card: ${cardData.card.name}`,
|
|
`Series: ${cardData.series.name}`,
|
|
`Rarity: ${cardRarityString}`,
|
|
`Quantity Owned: ${cardInInventory.Quantity}`,
|
|
`Quantity To Sacrifice: ${quantity}`,
|
|
`Sacrifice Amount: ${cardValue}`,
|
|
];
|
|
|
|
const embed = new EmbedBuilder()
|
|
.setTitle("Sacrifice")
|
|
.setDescription(description.join("\n"))
|
|
.setColor(EmbedColours.Error)
|
|
.setFooter({ text: `${interaction.user.username}` });
|
|
|
|
const row = new ActionRowBuilder<ButtonBuilder>()
|
|
.addComponents([
|
|
new ButtonBuilder()
|
|
.setCustomId(`sacrifice confirm ${interaction.user.id} ${cardnumber.value!} ${quantity}`)
|
|
.setLabel("Confirm")
|
|
.setStyle(ButtonStyle.Success),
|
|
new ButtonBuilder()
|
|
.setCustomId(`sacrifice cancel ${interaction.user.id} ${cardnumber.value!} ${quantity}`)
|
|
.setLabel("Cancel")
|
|
.setStyle(ButtonStyle.Secondary),
|
|
]);
|
|
|
|
await interaction.reply({
|
|
embeds: [ embed ],
|
|
components: [ row ],
|
|
});
|
|
}
|
|
} |