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