2 Commits

Author SHA1 Message Date
hikari c7b88061d0 fix: increase essence guild multiplier to 2x
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 1m6s
CI / Lint, Build & Test (pull_request) Successful in 1m12s
Closes #194
2026-03-31 18:37:52 -07:00
hikari 912a7414b4 fix: correct sunken temple quest reward regression
Closes #193
2026-03-31 18:37:49 -07:00
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -265,9 +265,9 @@ export const defaultQuests: Array<Quest> = [
name: "The Sunken Temple", name: "The Sunken Temple",
prerequisiteIds: [ "witch_coven" ], prerequisiteIds: [ "witch_coven" ],
rewards: [ rewards: [
{ amount: 2_000_000, type: "gold" }, { amount: 60_000_000, type: "gold" },
{ amount: 1500, type: "essence" }, { amount: 25_000, type: "essence" },
{ amount: 75, type: "crystals" }, { amount: 400, type: "crystals" },
], ],
status: "locked", status: "locked",
zoneId: "shadow_marshes", zoneId: "shadow_marshes",
+2 -2
View File
@@ -104,7 +104,7 @@ export const defaultUpgrades: Array<Upgrade> = [
description: description:
"Forge partnerships with mage guilds across the realm. All income +50%.", "Forge partnerships with mage guilds across the realm. All income +50%.",
id: "essence_guild", id: "essence_guild",
multiplier: 1.5, multiplier: 2,
name: "Essence Guild", name: "Essence Guild",
purchased: false, purchased: false,
target: "global", target: "global",
@@ -459,7 +459,7 @@ export const defaultUpgrades: Array<Upgrade> = [
unlocked: false, unlocked: false,
}, },
{ {
costCrystals: 10_000_000, costCrystals: 50_000_000,
costEssence: 0, costEssence: 0,
costGold: 0, costGold: 0,
description: "Transcend mortal limits through void energy. All income x3.", description: "Transcend mortal limits through void energy. All income x3.",