2024-10-26 03:40:13 +01:00
|
|
|
const { SlashCommandBuilder, EmbedBuilder } = require("discord.js");
|
|
|
|
const ShopItem = require("../../models/ShopItem");
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
data: new SlashCommandBuilder()
|
|
|
|
.setName("shop")
|
2024-10-26 19:33:45 +01:00
|
|
|
.setDescription("Browse the shop for items with rarity and discounts!"),
|
2024-10-26 03:40:13 +01:00
|
|
|
|
|
|
|
async execute(interaction) {
|
|
|
|
const { user, guild } = interaction;
|
2024-10-26 19:33:45 +01:00
|
|
|
const discountChance = 0.3;
|
|
|
|
const items = await ShopItem.find({ guildId: guild.id });
|
2024-10-26 03:40:13 +01:00
|
|
|
|
2024-10-26 19:33:45 +01:00
|
|
|
if (items.length === 0) {
|
|
|
|
const emptyEmbed = new EmbedBuilder()
|
2024-10-26 03:40:13 +01:00
|
|
|
.setColor("#ff0000")
|
2024-10-26 19:33:45 +01:00
|
|
|
.setTitle("Shop")
|
|
|
|
.setDescription("No items in the shop currently.")
|
|
|
|
.setTimestamp()
|
2024-10-26 03:40:13 +01:00
|
|
|
.setFooter({
|
2024-10-26 19:33:45 +01:00
|
|
|
text: `Requested by ${user.username}`,
|
|
|
|
iconURL: user.displayAvatarURL(),
|
2024-10-26 03:40:13 +01:00
|
|
|
});
|
|
|
|
|
2024-10-26 19:33:45 +01:00
|
|
|
await interaction.reply({ embeds: [emptyEmbed] });
|
2024-10-26 03:40:13 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-10-26 19:33:45 +01:00
|
|
|
const shopItemsDetails = items.map((item) => {
|
|
|
|
const discount = Math.random() < discountChance ? 0.8 : 1;
|
|
|
|
const price = Math.floor(item.price * discount);
|
|
|
|
const discountText = discount < 1 ? " (Discounted!)" : "";
|
2024-10-26 03:40:13 +01:00
|
|
|
|
2024-10-26 19:42:52 +01:00
|
|
|
return `${item.name} - **${price}** coins${discountText} - Rarity: ${
|
|
|
|
item.rarity
|
|
|
|
} - Type: ${item.type} - Category: ${item.category || "N/A"}`;
|
2024-10-26 03:40:13 +01:00
|
|
|
});
|
|
|
|
|
2024-10-26 19:33:45 +01:00
|
|
|
const shopEmbed = new EmbedBuilder()
|
2024-10-26 03:40:13 +01:00
|
|
|
.setColor("#00ff00")
|
2024-10-26 19:33:45 +01:00
|
|
|
.setTitle("Shop")
|
|
|
|
.setDescription(shopItemsDetails.join("\n"))
|
2024-10-26 03:40:13 +01:00
|
|
|
.setTimestamp()
|
|
|
|
.setFooter({
|
|
|
|
text: `Requested by ${user.username}`,
|
|
|
|
iconURL: user.displayAvatarURL(),
|
|
|
|
});
|
|
|
|
|
2024-10-26 19:33:45 +01:00
|
|
|
await interaction.reply({ embeds: [shopEmbed] });
|
2024-10-26 03:40:13 +01:00
|
|
|
},
|
|
|
|
};
|