From 912a7414b4ad7e68d2c2001d6096e781f439e267 Mon Sep 17 00:00:00 2001 From: Hikari Date: Tue, 31 Mar 2026 18:37:49 -0700 Subject: [PATCH] fix: correct sunken temple quest reward regression Closes #193 --- apps/api/src/data/quests.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/api/src/data/quests.ts b/apps/api/src/data/quests.ts index dc526f7..5058d60 100644 --- a/apps/api/src/data/quests.ts +++ b/apps/api/src/data/quests.ts @@ -265,9 +265,9 @@ export const defaultQuests: Array = [ name: "The Sunken Temple", prerequisiteIds: [ "witch_coven" ], rewards: [ - { amount: 2_000_000, type: "gold" }, - { amount: 1500, type: "essence" }, - { amount: 75, type: "crystals" }, + { amount: 60_000_000, type: "gold" }, + { amount: 25_000, type: "essence" }, + { amount: 400, type: "crystals" }, ], status: "locked", zoneId: "shadow_marshes",