From f001acc3827f5ada9d317feda43780bef615374c Mon Sep 17 00:00:00 2001 From: Hikari Date: Wed, 25 Mar 2026 14:00:33 -0700 Subject: [PATCH] fix: buff Astral Void quest rewards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - void_rift: zero gold → 2B gold + 300K essence + 1K crystals - star_graveyard: 1B gold + 100K essence → 8B gold + 800K essence + 3K crystals - between_worlds: zero gold + 250K essence → 25B gold + 2M essence + 8K crystals - the_end: 10B gold + 1M essence → 80B gold + 5M essence + 20K crystals Closes #137 --- apps/api/src/data/quests.ts | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/apps/api/src/data/quests.ts b/apps/api/src/data/quests.ts index e73060b..1fcdd3f 100644 --- a/apps/api/src/data/quests.ts +++ b/apps/api/src/data/quests.ts @@ -331,8 +331,9 @@ export const defaultQuests: Array = [ name: "Void Rift", prerequisiteIds: [], rewards: [ - { amount: 500, type: "crystals" }, - { amount: 5000, type: "essence" }, + { amount: 2_000_000_000, type: "gold" }, + { amount: 300_000, type: "essence" }, + { amount: 1000, type: "crystals" }, ], status: "locked", zoneId: "astral_void", @@ -346,9 +347,9 @@ export const defaultQuests: Array = [ name: "The Star Graveyard", prerequisiteIds: [ "void_rift" ], rewards: [ - { amount: 1_000_000_000, type: "gold" }, - { amount: 100_000, type: "essence" }, - { amount: 1000, type: "crystals" }, + { amount: 8_000_000_000, type: "gold" }, + { amount: 800_000, type: "essence" }, + { amount: 3000, type: "crystals" }, ], status: "locked", zoneId: "astral_void", @@ -362,8 +363,9 @@ export const defaultQuests: Array = [ name: "Between Worlds", prerequisiteIds: [ "star_graveyard" ], rewards: [ - { amount: 250_000, type: "essence" }, - { amount: 2000, type: "crystals" }, + { amount: 25_000_000_000, type: "gold" }, + { amount: 2_000_000, type: "essence" }, + { amount: 8000, type: "crystals" }, { targetId: "divine_champion", type: "adventurer" }, ], status: "locked", @@ -378,9 +380,9 @@ export const defaultQuests: Array = [ name: "The End of All Things", prerequisiteIds: [ "between_worlds" ], rewards: [ - { amount: 10_000_000_000, type: "gold" }, - { amount: 1_000_000, type: "essence" }, - { amount: 10_000, type: "crystals" }, + { amount: 80_000_000_000, type: "gold" }, + { amount: 5_000_000, type: "essence" }, + { amount: 20_000, type: "crystals" }, ], status: "locked", zoneId: "astral_void",