diff --git a/ItemPoolStickerRewards/index.js b/ItemPoolStickerRewards/index.js index 241238f..219e9df 100644 --- a/ItemPoolStickerRewards/index.js +++ b/ItemPoolStickerRewards/index.js @@ -1,30 +1,23 @@ import { synthCrystals } from "../ItemsGlobal/synthCrystals.js"; -import { synthOreItems } from "../ItemsGlobal/synthOreItems.js"; import { stickers } from "../Stickers/index.js"; const synthCrystalsVentus = synthCrystals.slice(); -const synthOreItemsVentus = synthOreItems.slice(); const synthCrystalsAqua = synthCrystals.slice(); -const synthOreItemsAqua = synthOreItems.slice(); const synthCrystalsTerra = synthCrystals.slice(); -const synthOreItemsTerra = synthOreItems.slice(); export const stickerRewardsVentus = [ ...synthCrystalsVentus, - ...synthOreItemsVentus, ...stickers[0], ]; export const stickerRewardsAqua = [ ...synthCrystalsAqua, - ...synthOreItemsAqua, ...stickers[1], ]; export const stickerRewardsTerra = [ ...synthCrystalsTerra, - ...synthOreItemsTerra, ...stickers[2], ]; diff --git a/ItemsGlobal/synthOreItems.js b/ItemsGlobal/synthOreItems.js deleted file mode 100644 index e2cfd70..0000000 --- a/ItemsGlobal/synthOreItems.js +++ /dev/null @@ -1,9 +0,0 @@ -export const synthOreItems = [ - { digit: "3201", category: "00", name: "Shimmering Ore", origin: "Global" }, - { digit: "3203", category: "00", name: "Fleeting Ore", origin: "Global" }, - { digit: "3205", category: "00", name: "Pulsing Ore", origin: "Global" }, - { digit: "3207", category: "00", name: "Wellspring Ore", origin: "Global" }, - { digit: "3209", category: "00", name: "Soothing Ore", origin: "Global" }, - { digit: "320B", category: "00", name: "Hungry Ore", origin: "Global" }, - { digit: "320D", category: "00", name: "Abounding Ore", origin: "Global" }, -];