discord-multipurpose-bot/commands/economy/shop.js

50 lines
1.6 KiB
JavaScript
Raw Normal View History

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")
.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;
const discountChance = 0.3;
const items = await ShopItem.find({ guildId: guild.id });
2024-10-26 03:40:13 +01:00
if (items.length === 0) {
const emptyEmbed = new EmbedBuilder()
2024-10-26 03:40:13 +01:00
.setColor("#ff0000")
.setTitle("Shop")
.setDescription("No items in the shop currently.")
.setTimestamp()
2024-10-26 03:40:13 +01:00
.setFooter({
text: `Requested by ${user.username}`,
iconURL: user.displayAvatarURL(),
2024-10-26 03:40:13 +01:00
});
await interaction.reply({ embeds: [emptyEmbed] });
2024-10-26 03:40:13 +01:00
return;
}
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
return `${item.name} - **${price}** coins${discountText} - Rarity: ${item.rarity}`;
2024-10-26 03:40:13 +01:00
});
const shopEmbed = new EmbedBuilder()
2024-10-26 03:40:13 +01:00
.setColor("#00ff00")
.setTitle("Shop")
.setDescription(shopItemsDetails.join("\n"))
2024-10-26 03:40:13 +01:00
.setTimestamp()
.setFooter({
text: `Requested by ${user.username}`,
iconURL: user.displayAvatarURL(),
});
await interaction.reply({ embeds: [shopEmbed] });
2024-10-26 03:40:13 +01:00
},
};