From 8a38d02e6990247bd392f0bb7f927a4819643d93 Mon Sep 17 00:00:00 2001 From: Hikari Date: Wed, 25 Mar 2026 13:58:54 -0700 Subject: [PATCH] fix: buff Shadow Marshes quest rewards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - shadow_mere: 150 essence → 5M gold + 5K essence - witch_coven: 500 essence → 20M gold + 20K essence - plague_ruins: 8M gold + 2K essence → 100M gold + 30K essence + 500 crystals Closes #136 --- apps/api/src/data/quests.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/apps/api/src/data/quests.ts b/apps/api/src/data/quests.ts index 2799402..e73060b 100644 --- a/apps/api/src/data/quests.ts +++ b/apps/api/src/data/quests.ts @@ -198,7 +198,8 @@ export const defaultQuests: Array = [ name: "The Shadow Mere", prerequisiteIds: [], rewards: [ - { amount: 150, type: "essence" }, + { amount: 5_000_000, type: "gold" }, + { amount: 5000, type: "essence" }, ], status: "locked", zoneId: "shadow_marshes", @@ -212,7 +213,8 @@ export const defaultQuests: Array = [ name: "The Witch Coven", prerequisiteIds: [ "shadow_mere" ], rewards: [ - { amount: 500, type: "essence" }, + { amount: 20_000_000, type: "gold" }, + { amount: 20_000, type: "essence" }, { targetId: "shadow_assassin", type: "adventurer" }, ], status: "locked", @@ -245,9 +247,9 @@ export const defaultQuests: Array = [ name: "The Plague Ruins", prerequisiteIds: [ "sunken_temple" ], rewards: [ - { amount: 8_000_000, type: "gold" }, - { amount: 2000, type: "essence" }, - { amount: 150, type: "crystals" }, + { amount: 100_000_000, type: "gold" }, + { amount: 30_000, type: "essence" }, + { amount: 500, type: "crystals" }, { targetId: "dark_templar", type: "adventurer" }, ], status: "locked",