generated from nhcarrigan/template
fix: pull adventurer upgrade rewards forward to their relevant progression window
Ten upgrades were dropping 1-2 zones after the adventurer they buff was no longer meaningful. Moved apprentice_1 to goblin_camp, militia_1 to haunted_mine, knight_1 to frozen_wastes, peasant_2 to glacier_tomb, peasant_3 to shadow_mere, and pulled the T27-30 upgrades (astral_sovereign_1, primordial_mage_1, reality_warden_1, infinity_ranger_1) and cosmos_knight_1 into their adventurer's own zone.
This commit is contained in:
+10
-10
@@ -34,6 +34,7 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 2000, type: "gold" },
|
||||
{ amount: 5, type: "essence" },
|
||||
{ targetId: "peasant_1", type: "upgrade" },
|
||||
{ targetId: "apprentice_1", type: "upgrade" },
|
||||
{ targetId: "apprentice", type: "adventurer" },
|
||||
],
|
||||
status: "locked",
|
||||
@@ -50,6 +51,7 @@ export const defaultQuests: Array<Quest> = [
|
||||
rewards: [
|
||||
{ amount: 10, type: "crystals" },
|
||||
{ targetId: "global_1", type: "upgrade" },
|
||||
{ targetId: "militia_1", type: "upgrade" },
|
||||
{ targetId: "scout", type: "adventurer" },
|
||||
],
|
||||
status: "locked",
|
||||
@@ -82,7 +84,6 @@ export const defaultQuests: Array<Quest> = [
|
||||
rewards: [
|
||||
{ amount: 15_000, type: "gold" },
|
||||
{ amount: 20, type: "essence" },
|
||||
{ targetId: "militia_1", type: "upgrade" },
|
||||
{ targetId: "acolyte_1", type: "upgrade" },
|
||||
{ targetId: "ranger", type: "adventurer" },
|
||||
],
|
||||
@@ -117,7 +118,6 @@ export const defaultQuests: Array<Quest> = [
|
||||
rewards: [
|
||||
{ amount: 300, type: "essence" },
|
||||
{ amount: 30, type: "crystals" },
|
||||
{ targetId: "apprentice_1", type: "upgrade" },
|
||||
{ targetId: "archmage", type: "adventurer" },
|
||||
],
|
||||
status: "locked",
|
||||
@@ -153,6 +153,7 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 5_000_000, type: "gold" },
|
||||
{ amount: 100, type: "crystals" },
|
||||
{ targetId: "global_3", type: "upgrade" },
|
||||
{ targetId: "knight_1", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "frozen_peaks",
|
||||
@@ -168,6 +169,7 @@ export const defaultQuests: Array<Quest> = [
|
||||
rewards: [
|
||||
{ amount: 10_000_000, type: "gold" },
|
||||
{ amount: 3000, type: "essence" },
|
||||
{ targetId: "peasant_2", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "frozen_peaks",
|
||||
@@ -231,6 +233,7 @@ export const defaultQuests: Array<Quest> = [
|
||||
rewards: [
|
||||
{ amount: 5_000_000, type: "gold" },
|
||||
{ amount: 5000, type: "essence" },
|
||||
{ targetId: "peasant_3", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "shadow_marshes",
|
||||
@@ -263,8 +266,6 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 2_000_000, type: "gold" },
|
||||
{ amount: 1500, type: "essence" },
|
||||
{ amount: 75, type: "crystals" },
|
||||
{ targetId: "knight_1", type: "upgrade" },
|
||||
{ targetId: "peasant_2", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "shadow_marshes",
|
||||
@@ -315,7 +316,6 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 40_000_000, type: "gold" },
|
||||
{ amount: 12_000, type: "essence" },
|
||||
{ amount: 300, type: "crystals" },
|
||||
{ targetId: "peasant_3", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "volcanic_depths",
|
||||
@@ -1183,6 +1183,7 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 8e39, type: "gold" },
|
||||
{ amount: 2.5e36, type: "essence" },
|
||||
{ amount: 5e32, type: "crystals" },
|
||||
{ targetId: "cosmos_knight_1", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "infinite_expanse",
|
||||
@@ -1265,7 +1266,7 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 2.5e49, type: "gold" },
|
||||
{ amount: 8e45, type: "essence" },
|
||||
{ amount: 5e41, type: "crystals" },
|
||||
{ targetId: "cosmos_knight_1", type: "upgrade" },
|
||||
{ targetId: "primordial_mage_1", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "reality_forge",
|
||||
@@ -1298,6 +1299,7 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 6e52, type: "gold" },
|
||||
{ amount: 2e49, type: "essence" },
|
||||
{ amount: 1.2e45, type: "crystals" },
|
||||
{ targetId: "astral_sovereign_1", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "reality_forge",
|
||||
@@ -1364,7 +1366,6 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 4e63, type: "gold" },
|
||||
{ amount: 1.2e60, type: "essence" },
|
||||
{ amount: 7e55, type: "crystals" },
|
||||
{ targetId: "astral_sovereign_1", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "cosmic_maelstrom",
|
||||
@@ -1381,6 +1382,7 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 2e66, type: "gold" },
|
||||
{ amount: 6e62, type: "essence" },
|
||||
{ amount: 3.5e58, type: "crystals" },
|
||||
{ targetId: "reality_warden_1", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "cosmic_maelstrom",
|
||||
@@ -1397,6 +1399,7 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 1e69, type: "gold" },
|
||||
{ amount: 3e65, type: "essence" },
|
||||
{ amount: 1.8e61, type: "crystals" },
|
||||
{ targetId: "infinity_ranger_1", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "cosmic_maelstrom",
|
||||
@@ -1463,7 +1466,6 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 6e83, type: "gold" },
|
||||
{ amount: 1.8e80, type: "essence" },
|
||||
{ amount: 1e76, type: "crystals" },
|
||||
{ targetId: "primordial_mage_1", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "primeval_sanctum",
|
||||
@@ -1545,7 +1547,6 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 2e108, type: "gold" },
|
||||
{ amount: 6e104, type: "essence" },
|
||||
{ amount: 3e100, type: "crystals" },
|
||||
{ targetId: "reality_warden_1", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "the_absolute",
|
||||
@@ -1578,7 +1579,6 @@ export const defaultQuests: Array<Quest> = [
|
||||
{ amount: 5e121, type: "gold" },
|
||||
{ amount: 1.5e118, type: "essence" },
|
||||
{ amount: 7e113, type: "crystals" },
|
||||
{ targetId: "infinity_ranger_1", type: "upgrade" },
|
||||
],
|
||||
status: "locked",
|
||||
zoneId: "the_absolute",
|
||||
|
||||
Reference in New Issue
Block a user