From 7ecc6554842d0f9a53b80308167024fa113a4cd5 Mon Sep 17 00:00:00 2001 From: Hikari Date: Wed, 25 Mar 2026 14:35:51 -0700 Subject: [PATCH] fix: buff purchasable equipment dominated by boss drops MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - celestial_focus: click 3x → 4.25x (above free void_heart_gem) - void_conduit: combat 7x → 10.5x (above free throne_blade) - crystal_matrix: gold 4.75x → 7.5x (above free eternal_armour) - Closes #141 --- apps/api/src/data/equipment.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/api/src/data/equipment.ts b/apps/api/src/data/equipment.ts index d0a6d86..4fd3319 100644 --- a/apps/api/src/data/equipment.ts +++ b/apps/api/src/data/equipment.ts @@ -697,7 +697,7 @@ export const defaultEquipment: Array = [ }, // ── Purchasable endgame sinks ───────────────────────────────────────────── { - bonus: { clickMultiplier: 3 }, + bonus: { clickMultiplier: 4.25 }, cost: { crystals: 0, essence: 20_000_000, gold: 0 }, description: "A lens of compressed celestial light that sharpens every strike with divine precision.", @@ -721,7 +721,7 @@ export const defaultEquipment: Array = [ type: "armour", }, { - bonus: { combatMultiplier: 7 }, + bonus: { combatMultiplier: 10.5 }, cost: { crystals: 0, essence: 100_000_000, gold: 0 }, description: "A weapon that channels void energy — the absence of resistance makes every strike devastating.", @@ -745,7 +745,7 @@ export const defaultEquipment: Array = [ type: "trinket", }, { - bonus: { goldMultiplier: 4.75 }, + bonus: { goldMultiplier: 7.5 }, cost: { crystals: 20_000_000, essence: 0, gold: 0 }, description: "Armour structured around a crystalline lattice of optimal income calculations. Every gold piece finds you faster.",