fix: zero crystal rewards for zone 9+ quests

Closes #191
This commit is contained in:
2026-03-31 18:20:44 -07:00
committed by Naomi Carrigan
parent 010b4ea1da
commit 63210a1e55
+65 -65
View File
@@ -643,7 +643,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2_000_000_000_000_000, type: "gold" },
{ amount: 600_000_000_000, type: "essence" },
{ amount: 1_000_000_000, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "infernal_court",
@@ -659,7 +659,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 6_000_000_000_000_000, type: "gold" },
{ amount: 2_000_000_000_000, type: "essence" },
{ amount: 3_000_000_000, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "infernal_court",
@@ -675,7 +675,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2e16, type: "gold" },
{ amount: 6_000_000_000_000, type: "essence" },
{ amount: 8_000_000_000, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "infernal_court",
@@ -691,7 +691,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 6e16, type: "gold" },
{ amount: 2e13, type: "essence" },
{ amount: 2.5e10, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "infernal_warden_1", type: "upgrade" },
],
status: "locked",
@@ -708,7 +708,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2e17, type: "gold" },
{ amount: 6e13, type: "essence" },
{ amount: 8e10, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "infernal_court",
@@ -741,7 +741,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2e18, type: "gold" },
{ amount: 8e14, type: "essence" },
{ amount: 3e12, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "crystalline_spire",
@@ -757,7 +757,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 8e18, type: "gold" },
{ amount: 3e15, type: "essence" },
{ amount: 1e13, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "crystalline_spire",
@@ -773,7 +773,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 3e19, type: "gold" },
{ amount: 1e16, type: "essence" },
{ amount: 4e13, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "crystalline_spire",
@@ -789,7 +789,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1e20, type: "gold" },
{ amount: 4e16, type: "essence" },
{ amount: 1.5e14, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "crystal_sage_1", type: "upgrade" },
],
status: "locked",
@@ -806,7 +806,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 4e20, type: "gold" },
{ amount: 1.5e17, type: "essence" },
{ amount: 5e14, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "crystalline_spire",
@@ -839,7 +839,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 5e21, type: "gold" },
{ amount: 2e18, type: "essence" },
{ amount: 2e15, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "void_sanctum",
@@ -855,7 +855,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2e22, type: "gold" },
{ amount: 8e18, type: "essence" },
{ amount: 8e15, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "void_sanctum",
@@ -871,7 +871,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 8e22, type: "gold" },
{ amount: 3e19, type: "essence" },
{ amount: 3e16, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "void_sanctum",
@@ -887,7 +887,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 3e23, type: "gold" },
{ amount: 1e20, type: "essence" },
{ amount: 1e17, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "void_sentinel_1", type: "upgrade" },
],
status: "locked",
@@ -904,7 +904,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1e24, type: "gold" },
{ amount: 4e20, type: "essence" },
{ amount: 4e17, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "void_sanctum",
@@ -937,7 +937,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1e25, type: "gold" },
{ amount: 4e21, type: "essence" },
{ amount: 1.5e18, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "eternal_throne",
@@ -953,7 +953,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 4e25, type: "gold" },
{ amount: 1.5e22, type: "essence" },
{ amount: 5e18, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "eternal_throne",
@@ -969,7 +969,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1.5e26, type: "gold" },
{ amount: 6e22, type: "essence" },
{ amount: 2e19, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "eternal_champion_1", type: "upgrade" },
],
status: "locked",
@@ -986,7 +986,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 6e26, type: "gold" },
{ amount: 2.5e23, type: "essence" },
{ amount: 8e19, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "eternal_throne",
@@ -1002,7 +1002,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 3e27, type: "gold" },
{ amount: 1e24, type: "essence" },
{ amount: 4e20, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "eternal_throne",
@@ -1035,7 +1035,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 4e28, type: "gold" },
{ amount: 1.5e25, type: "essence" },
{ amount: 5e21, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "primordial_chaos",
@@ -1051,7 +1051,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2e29, type: "gold" },
{ amount: 8e25, type: "essence" },
{ amount: 2e22, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "titan_warrior", type: "adventurer" },
],
status: "locked",
@@ -1068,7 +1068,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1e30, type: "gold" },
{ amount: 4e26, type: "essence" },
{ amount: 8e22, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "primordial_chaos",
@@ -1084,7 +1084,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 6e30, type: "gold" },
{ amount: 2e27, type: "essence" },
{ amount: 4e23, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "titan_warrior_1", type: "upgrade" },
],
status: "locked",
@@ -1101,7 +1101,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 3e31, type: "gold" },
{ amount: 1e28, type: "essence" },
{ amount: 2e24, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "primordial_chaos",
@@ -1134,7 +1134,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 6e34, type: "gold" },
{ amount: 2e31, type: "essence" },
{ amount: 5e27, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "infinite_expanse",
@@ -1150,7 +1150,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 3e36, type: "gold" },
{ amount: 1e33, type: "essence" },
{ amount: 2.5e29, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "cosmos_knight", type: "adventurer" },
],
status: "locked",
@@ -1167,7 +1167,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1.5e38, type: "gold" },
{ amount: 5e34, type: "essence" },
{ amount: 1e31, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "nexus_sage_1", type: "upgrade" },
],
status: "locked",
@@ -1184,7 +1184,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 8e39, type: "gold" },
{ amount: 2.5e36, type: "essence" },
{ amount: 5e32, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "cosmos_knight_1", type: "upgrade" },
],
status: "locked",
@@ -1201,7 +1201,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 4e41, type: "gold" },
{ amount: 1.2e38, type: "essence" },
{ amount: 2.5e34, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "infinite_expanse",
@@ -1234,7 +1234,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1e46, type: "gold" },
{ amount: 3e42, type: "essence" },
{ amount: 2e38, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "reality_forge",
@@ -1250,7 +1250,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 5e47, type: "gold" },
{ amount: 1.5e44, type: "essence" },
{ amount: 1e40, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "primordial_mage", type: "adventurer" },
],
status: "locked",
@@ -1267,7 +1267,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2.5e49, type: "gold" },
{ amount: 8e45, type: "essence" },
{ amount: 5e41, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "primordial_mage_1", type: "upgrade" },
],
status: "locked",
@@ -1284,7 +1284,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1.2e51, type: "gold" },
{ amount: 4e47, type: "essence" },
{ amount: 2.5e43, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "reality_forge",
@@ -1300,7 +1300,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 6e52, type: "gold" },
{ amount: 2e49, type: "essence" },
{ amount: 1.2e45, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "astral_sovereign_1", type: "upgrade" },
],
status: "locked",
@@ -1317,7 +1317,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 5e62, type: "gold" },
{ amount: 1.5e59, type: "essence" },
{ amount: 8e54, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "reality_forge",
@@ -1333,7 +1333,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2e67, type: "gold" },
{ amount: 6e63, type: "essence" },
{ amount: 3e59, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "reality_forge",
@@ -1349,7 +1349,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1e72, type: "gold" },
{ amount: 3e68, type: "essence" },
{ amount: 1.5e64, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "reality_forge",
@@ -1382,7 +1382,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1.5e58, type: "gold" },
{ amount: 5e54, type: "essence" },
{ amount: 3e50, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "cosmic_maelstrom",
@@ -1398,7 +1398,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 8e60, type: "gold" },
{ amount: 2.5e57, type: "essence" },
{ amount: 1.5e53, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "infinity_ranger", type: "adventurer" },
],
status: "locked",
@@ -1415,7 +1415,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 4e63, type: "gold" },
{ amount: 1.2e60, type: "essence" },
{ amount: 7e55, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "cosmic_maelstrom",
@@ -1431,7 +1431,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2e66, type: "gold" },
{ amount: 6e62, type: "essence" },
{ amount: 3.5e58, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "reality_warden_1", type: "upgrade" },
],
status: "locked",
@@ -1448,7 +1448,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1e69, type: "gold" },
{ amount: 3e65, type: "essence" },
{ amount: 1.8e61, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "infinity_ranger_1", type: "upgrade" },
],
status: "locked",
@@ -1465,7 +1465,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 5e76, type: "gold" },
{ amount: 1.5e73, type: "essence" },
{ amount: 8e68, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "cosmic_maelstrom",
@@ -1481,7 +1481,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2e83, type: "gold" },
{ amount: 6e79, type: "essence" },
{ amount: 3e75, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "cosmic_maelstrom",
@@ -1497,7 +1497,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1e90, type: "gold" },
{ amount: 3e86, type: "essence" },
{ amount: 1.5e82, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "cosmic_maelstrom",
@@ -1530,7 +1530,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2.5e76, type: "gold" },
{ amount: 7e72, type: "essence" },
{ amount: 4e68, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "primeval_sanctum",
@@ -1546,7 +1546,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1.2e80, type: "gold" },
{ amount: 3.5e76, type: "essence" },
{ amount: 2e72, type: "crystals" },
{ amount: 0, type: "crystals" },
{ targetId: "transcendent_rogue", type: "adventurer" },
],
status: "locked",
@@ -1563,7 +1563,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 6e83, type: "gold" },
{ amount: 1.8e80, type: "essence" },
{ amount: 1e76, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "primeval_sanctum",
@@ -1579,7 +1579,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 3e87, type: "gold" },
{ amount: 9e83, type: "essence" },
{ amount: 5e79, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "primeval_sanctum",
@@ -1595,7 +1595,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1.5e91, type: "gold" },
{ amount: 4.5e87, type: "essence" },
{ amount: 2.5e83, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "primeval_sanctum",
@@ -1611,7 +1611,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 8e95, type: "gold" },
{ amount: 2.5e92, type: "essence" },
{ amount: 1e88, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "primeval_sanctum",
@@ -1627,7 +1627,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 4e102, type: "gold" },
{ amount: 1.2e99, type: "essence" },
{ amount: 5e94, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "primeval_sanctum",
@@ -1643,7 +1643,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2e109, type: "gold" },
{ amount: 6e105, type: "essence" },
{ amount: 2.5e101, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "primeval_sanctum",
@@ -1676,7 +1676,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 4e101, type: "gold" },
{ amount: 1.2e98, type: "essence" },
{ amount: 6e93, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "the_absolute",
@@ -1692,7 +1692,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2e108, type: "gold" },
{ amount: 6e104, type: "essence" },
{ amount: 3e100, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "the_absolute",
@@ -1708,7 +1708,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1e115, type: "gold" },
{ amount: 3e111, type: "essence" },
{ amount: 1.5e107, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "the_absolute",
@@ -1724,7 +1724,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 5e121, type: "gold" },
{ amount: 1.5e118, type: "essence" },
{ amount: 7e113, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "the_absolute",
@@ -1740,7 +1740,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 3e130, type: "gold" },
{ amount: 9e126, type: "essence" },
{ amount: 4e122, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "the_absolute",
@@ -1756,7 +1756,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1e118, type: "gold" },
{ amount: 3e114, type: "essence" },
{ amount: 1.5e110, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "the_absolute",
@@ -1772,7 +1772,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 5e124, type: "gold" },
{ amount: 1.5e121, type: "essence" },
{ amount: 7e116, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "the_absolute",
@@ -1788,7 +1788,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2e131, type: "gold" },
{ amount: 6e127, type: "essence" },
{ amount: 3e123, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "the_absolute",
@@ -1804,7 +1804,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 1e137, type: "gold" },
{ amount: 3e133, type: "essence" },
{ amount: 1.5e129, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "the_absolute",
@@ -1820,7 +1820,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 5e143, type: "gold" },
{ amount: 1.5e140, type: "essence" },
{ amount: 7e135, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "the_absolute",
@@ -1836,7 +1836,7 @@ export const defaultQuests: Array<Quest> = [
rewards: [
{ amount: 2e150, type: "gold" },
{ amount: 6e146, type: "essence" },
{ amount: 3e142, type: "crystals" },
{ amount: 0, type: "crystals" },
],
status: "locked",
zoneId: "the_absolute",