From 0609cc75840625e72b35222383a7caa929e64579 Mon Sep 17 00:00:00 2001 From: Hikari Date: Wed, 25 Mar 2026 14:44:59 -0700 Subject: [PATCH] fix: buff rare-material crafting recipes to justify ingredient cost MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - elder_bark_shield: combat 1.08x → 1.12x - void_fragment_amulet: gold 1.10x → 1.15x - soul_bound_catalyst: essence 1.15x → 1.20x - Closes #143 --- apps/api/src/data/recipes.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/api/src/data/recipes.ts b/apps/api/src/data/recipes.ts index 597d5e7..9ee4ded 100644 --- a/apps/api/src/data/recipes.ts +++ b/apps/api/src/data/recipes.ts @@ -23,7 +23,7 @@ export const defaultRecipes: Array = [ zoneId: "verdant_vale", }, { - bonus: { type: "combat_power", value: 1.08 }, + bonus: { type: "combat_power", value: 1.12 }, description: "A ward fashioned from bark older than the kingdom. Its presence on the battlefield is not merely physical — something ancient watches through it.", id: "elder_bark_shield", @@ -75,7 +75,7 @@ export const defaultRecipes: Array = [ zoneId: "frozen_peaks", }, { - bonus: { type: "gold_income", value: 1.1 }, + bonus: { type: "gold_income", value: 1.15 }, description: "The void shard set in frost crystal, creating something that should not be possible: a stable window into the spaces between spaces. Profitable beyond what physics suggests.", id: "void_fragment_amulet", @@ -231,7 +231,7 @@ export const defaultRecipes: Array = [ zoneId: "infernal_court", }, { - bonus: { type: "essence_income", value: 1.15 }, + bonus: { type: "essence_income", value: 1.2 }, description: "Soul residue and demon ichor worked into a catalyst that draws the essence from everything around it — gently, without drawing the court's attention. Usually.", id: "soul_bound_catalyst",