fix: buff Astral Void quest rewards

- 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
This commit is contained in:
2026-03-25 14:00:33 -07:00
committed by Naomi Carrigan
parent 8a38d02e69
commit f001acc382
+12 -10
View File
@@ -331,8 +331,9 @@ export const defaultQuests: Array<Quest> = [
name: "Void Rift", name: "Void Rift",
prerequisiteIds: [], prerequisiteIds: [],
rewards: [ rewards: [
{ amount: 500, type: "crystals" }, { amount: 2_000_000_000, type: "gold" },
{ amount: 5000, type: "essence" }, { amount: 300_000, type: "essence" },
{ amount: 1000, type: "crystals" },
], ],
status: "locked", status: "locked",
zoneId: "astral_void", zoneId: "astral_void",
@@ -346,9 +347,9 @@ export const defaultQuests: Array<Quest> = [
name: "The Star Graveyard", name: "The Star Graveyard",
prerequisiteIds: [ "void_rift" ], prerequisiteIds: [ "void_rift" ],
rewards: [ rewards: [
{ amount: 1_000_000_000, type: "gold" }, { amount: 8_000_000_000, type: "gold" },
{ amount: 100_000, type: "essence" }, { amount: 800_000, type: "essence" },
{ amount: 1000, type: "crystals" }, { amount: 3000, type: "crystals" },
], ],
status: "locked", status: "locked",
zoneId: "astral_void", zoneId: "astral_void",
@@ -362,8 +363,9 @@ export const defaultQuests: Array<Quest> = [
name: "Between Worlds", name: "Between Worlds",
prerequisiteIds: [ "star_graveyard" ], prerequisiteIds: [ "star_graveyard" ],
rewards: [ rewards: [
{ amount: 250_000, type: "essence" }, { amount: 25_000_000_000, type: "gold" },
{ amount: 2000, type: "crystals" }, { amount: 2_000_000, type: "essence" },
{ amount: 8000, type: "crystals" },
{ targetId: "divine_champion", type: "adventurer" }, { targetId: "divine_champion", type: "adventurer" },
], ],
status: "locked", status: "locked",
@@ -378,9 +380,9 @@ export const defaultQuests: Array<Quest> = [
name: "The End of All Things", name: "The End of All Things",
prerequisiteIds: [ "between_worlds" ], prerequisiteIds: [ "between_worlds" ],
rewards: [ rewards: [
{ amount: 10_000_000_000, type: "gold" }, { amount: 80_000_000_000, type: "gold" },
{ amount: 1_000_000, type: "essence" }, { amount: 5_000_000, type: "essence" },
{ amount: 10_000, type: "crystals" }, { amount: 20_000, type: "crystals" },
], ],
status: "locked", status: "locked",
zoneId: "astral_void", zoneId: "astral_void",