mirror of
https://github.com/aydenjahola/discord-multipurpose-bot.git
synced 2024-11-22 00:35:56 +00:00
99 lines
2.7 KiB
JavaScript
99 lines
2.7 KiB
JavaScript
const ShopItem = require("../models/ShopItem");
|
|
|
|
async function seedShopItems(guildId) {
|
|
const items = [
|
|
{
|
|
itemId: "prime_vandal",
|
|
name: "Prime Vandal",
|
|
price: 1200,
|
|
description:
|
|
"A futuristic skin for the Vandal with a sleek design and special effects.",
|
|
rarity: "Rare",
|
|
},
|
|
{
|
|
itemId: "reaver_vandal",
|
|
name: "Reaver Vandal",
|
|
price: 1500,
|
|
description:
|
|
"One of the most popular Vandal skins with a haunting aesthetic and special animations.",
|
|
rarity: "Epic",
|
|
},
|
|
{
|
|
itemId: "sovereign_ghost",
|
|
name: "Sovereign Ghost",
|
|
price: 800,
|
|
description:
|
|
"Golden elegance for the Ghost pistol with unique sound effects.",
|
|
rarity: "Common",
|
|
},
|
|
{
|
|
itemId: "araxys_operator",
|
|
name: "Araxys Operator",
|
|
price: 2000,
|
|
description:
|
|
"A top-tier sniper skin with alien-like animations and sound effects.",
|
|
rarity: "Legendary",
|
|
},
|
|
{
|
|
itemId: "glitchpop_bulldog",
|
|
name: "Glitchpop Bulldog",
|
|
price: 900,
|
|
description:
|
|
"A flashy skin for the Bulldog with vibrant colors and cyberpunk vibe.",
|
|
rarity: "Rare",
|
|
},
|
|
{
|
|
itemId: "dragon_lore_awp",
|
|
name: "AWP Dragon Lore",
|
|
price: 2500,
|
|
description:
|
|
"A legendary skin for the AWP with dragon designs, a rare and coveted item.",
|
|
rarity: "Legendary",
|
|
},
|
|
{
|
|
itemId: "ak47_redline",
|
|
name: "AK-47 Redline",
|
|
price: 1000,
|
|
description:
|
|
"A simple yet iconic AK-47 skin with red and black color scheme.",
|
|
rarity: "Common",
|
|
},
|
|
{
|
|
itemId: "m4a4_howl",
|
|
name: "M4A4 Howl",
|
|
price: 2200,
|
|
description:
|
|
"A rare and valuable skin for the M4A4 with a striking wolf design.",
|
|
rarity: "Epic",
|
|
},
|
|
{
|
|
itemId: "desert_eagle_kumicho_dragon",
|
|
name: "Desert Eagle Kumicho Dragon",
|
|
price: 800,
|
|
description:
|
|
"A Desert Eagle skin with an intricate dragon design and a metallic finish.",
|
|
rarity: "Rare",
|
|
},
|
|
{
|
|
itemId: "usp_kill_confirmed",
|
|
name: "USP-S Kill Confirmed",
|
|
price: 1100,
|
|
description:
|
|
"A detailed skin for the USP-S with a unique comic-style design.",
|
|
rarity: "Epic",
|
|
},
|
|
];
|
|
|
|
// Upsert each item with guildId included, so changes to price, rarity, etc., get updated
|
|
for (const item of items) {
|
|
await ShopItem.updateOne(
|
|
{ itemId: item.itemId, guildId },
|
|
{ ...item, guildId },
|
|
{ upsert: true }
|
|
);
|
|
}
|
|
|
|
console.log(`✅ Shop items seeded with rarity for guild: ${guildId}`);
|
|
}
|
|
|
|
module.exports = seedShopItems;
|