From 1de9a4f054f7c594f86d4e5fa75f95caad84fdb0 Mon Sep 17 00:00:00 2001 From: Hikari Date: Mon, 23 Mar 2026 16:48:16 -0700 Subject: [PATCH] fix: reduce income_10 multiplier to avoid 5x jump from income_9 (#115) --- apps/api/src/data/prestigeUpgrades.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/api/src/data/prestigeUpgrades.ts b/apps/api/src/data/prestigeUpgrades.ts index 3d8c047..1982c60 100644 --- a/apps/api/src/data/prestigeUpgrades.ts +++ b/apps/api/src/data/prestigeUpgrades.ts @@ -92,18 +92,18 @@ export const defaultPrestigeUpgrades: Array = [ { category: "income", description: - "The oldest runes, carved before memory began, yield their secrets at last. All production ×500.", + "The oldest runes, carved before memory began, yield their secrets at last. All production ×200.", id: "income_10", - multiplier: 500, + multiplier: 200, name: "Eternal Rune I", runestonesCost: 30_000, }, { category: "income", description: - "Eternal runes resonate with the heartbeat of creation itself. All production ×1,000.", + "Eternal runes resonate with the heartbeat of creation itself. All production ×500.", id: "income_11", - multiplier: 1000, + multiplier: 500, name: "Eternal Rune II", runestonesCost: 80_000, },