From 4b0945d0f38506d20b9dee4e88f7d6d01b537323 Mon Sep 17 00:00:00 2001 From: Hikari Date: Sat, 7 Mar 2026 16:12:36 -0800 Subject: [PATCH] fix: increase companion unlock thresholds to match bonus power --- packages/types/src/interfaces/Companion.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/types/src/interfaces/Companion.ts b/packages/types/src/interfaces/Companion.ts index ae21c93..5027e2b 100644 --- a/packages/types/src/interfaces/Companion.ts +++ b/packages/types/src/interfaces/Companion.ts @@ -47,7 +47,7 @@ export const COMPANIONS: Companion[] = [ title: "Wandering Minstrel", description: "A cheerful bard whose uplifting songs inspire your adventurers to work harder for better coin.", bonus: { type: "passiveGold", value: 0.25 }, - unlock: { type: "lifetimeBosses", threshold: 10 }, + unlock: { type: "lifetimeBosses", threshold: 100 }, }, { id: "finn", @@ -55,7 +55,7 @@ export const COMPANIONS: Companion[] = [ title: "Quick-Fingered Rogue", description: "A nimble rogue whose sleight of hand ensures far more gold lands in your coffers with every strike.", bonus: { type: "clickGold", value: 0.50 }, - unlock: { type: "lifetimeQuests", threshold: 10 }, + unlock: { type: "lifetimeQuests", threshold: 100 }, }, { id: "wren", @@ -63,7 +63,7 @@ export const COMPANIONS: Companion[] = [ title: "Hedge Witch", description: "A resourceful hedge witch who weaves minor enchantments that accelerate your quest parties.", bonus: { type: "questTime", value: 0.15 }, - unlock: { type: "lifetimeQuests", threshold: 50 }, + unlock: { type: "lifetimeQuests", threshold: 500 }, }, { id: "aldric", @@ -71,7 +71,7 @@ export const COMPANIONS: Companion[] = [ title: "Veteran Knight", description: "A battle-hardened knight who leads your party with years of tactical experience against fearsome foes.", bonus: { type: "bossDamage", value: 0.20 }, - unlock: { type: "lifetimeBosses", threshold: 50 }, + unlock: { type: "lifetimeBosses", threshold: 200 }, }, { id: "sera", @@ -87,7 +87,7 @@ export const COMPANIONS: Companion[] = [ title: "Battle Mage", description: "A powerful battle mage whose devastating spells tear through even the toughest boss encounters.", bonus: { type: "bossDamage", value: 0.40 }, - unlock: { type: "lifetimeBosses", threshold: 250 }, + unlock: { type: "lifetimeBosses", threshold: 720 }, }, { id: "zuri", @@ -95,7 +95,7 @@ export const COMPANIONS: Companion[] = [ title: "Chrono Weaver", description: "A time mage who bends the threads of time itself, significantly hastening your quest parties.", bonus: { type: "questTime", value: 0.30 }, - unlock: { type: "lifetimeQuests", threshold: 200 }, + unlock: { type: "lifetimeQuests", threshold: 950 }, }, { id: "mira",