From b6e218167ded2560eb5660b785d8661c06d6a5d3 Mon Sep 17 00:00:00 2001 From: Hikari Date: Wed, 25 Mar 2026 15:29:42 -0700 Subject: [PATCH] fix: differentiate philosophers_stone and buff crystal_shard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - philosophers_stone: gold 1.25x → 1.4x (income specialist, distinct from eternal_flame which has combat 1.1x + gold 1.25x) - crystal_shard: gold 1.10x → 1.20x (zone-5 epic, better premium) - Closes #144 --- 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 4fd3319..de6a5bf 100644 --- a/apps/api/src/data/equipment.ts +++ b/apps/api/src/data/equipment.ts @@ -269,7 +269,7 @@ export const defaultEquipment: Array = [ type: "trinket", }, { - bonus: { clickMultiplier: 1.55, goldMultiplier: 1.1 }, + bonus: { clickMultiplier: 1.55, goldMultiplier: 1.2 }, description: "A fragment of the Mud Kraken's crystallised essence. Focuses raw power into devastating strikes.", equipped: false, @@ -305,9 +305,9 @@ export const defaultEquipment: Array = [ type: "trinket", }, { - bonus: { clickMultiplier: 2.25, goldMultiplier: 1.25 }, + bonus: { clickMultiplier: 2.25, goldMultiplier: 1.4 }, description: - "The legendary stone that grants mastery over gold and combat alike.", + "The legendary stone that transmutes effort into wealth — every action fills the coffers.", equipped: false, id: "philosophers_stone", name: "Philosopher's Stone",