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",