fix: buff Shadow Marshes quest rewards

- 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
This commit is contained in:
2026-03-25 13:58:54 -07:00
committed by Naomi Carrigan
parent eed61db410
commit 8a38d02e69
+7 -5
View File
@@ -198,7 +198,8 @@ export const defaultQuests: Array<Quest> = [
name: "The Shadow Mere", name: "The Shadow Mere",
prerequisiteIds: [], prerequisiteIds: [],
rewards: [ rewards: [
{ amount: 150, type: "essence" }, { amount: 5_000_000, type: "gold" },
{ amount: 5000, type: "essence" },
], ],
status: "locked", status: "locked",
zoneId: "shadow_marshes", zoneId: "shadow_marshes",
@@ -212,7 +213,8 @@ export const defaultQuests: Array<Quest> = [
name: "The Witch Coven", name: "The Witch Coven",
prerequisiteIds: [ "shadow_mere" ], prerequisiteIds: [ "shadow_mere" ],
rewards: [ rewards: [
{ amount: 500, type: "essence" }, { amount: 20_000_000, type: "gold" },
{ amount: 20_000, type: "essence" },
{ targetId: "shadow_assassin", type: "adventurer" }, { targetId: "shadow_assassin", type: "adventurer" },
], ],
status: "locked", status: "locked",
@@ -245,9 +247,9 @@ export const defaultQuests: Array<Quest> = [
name: "The Plague Ruins", name: "The Plague Ruins",
prerequisiteIds: [ "sunken_temple" ], prerequisiteIds: [ "sunken_temple" ],
rewards: [ rewards: [
{ amount: 8_000_000, type: "gold" }, { amount: 100_000_000, type: "gold" },
{ amount: 2000, type: "essence" }, { amount: 30_000, type: "essence" },
{ amount: 150, type: "crystals" }, { amount: 500, type: "crystals" },
{ targetId: "dark_templar", type: "adventurer" }, { targetId: "dark_templar", type: "adventurer" },
], ],
status: "locked", status: "locked",