fix: restore upgrade drops to late-game bosses
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 1m5s
CI / Lint, Build & Test (pull_request) Successful in 1m10s

Assigned 3 previously orphaned adventurer upgrades to appropriate bosses:
- horizon_beast (Infinite Expanse) → oblivion_paladin_1
- maelstrom_god (Cosmic Maelstrom) → transcendent_rogue_1
- eternal_end (The Absolute) → omniversal_champion_1

Closes #140
This commit is contained in:
2026-03-25 14:06:01 -07:00
committed by Naomi Carrigan
parent e4808680ed
commit d84725921a
+3 -3
View File
@@ -992,7 +992,7 @@ export const defaultBosses: Array<Boss> = [
name: "The Horizon Beast", name: "The Horizon Beast",
prestigeRequirement: 8, prestigeRequirement: 8,
status: "locked", status: "locked",
upgradeRewards: [], upgradeRewards: [ "oblivion_paladin_1" ],
zoneId: "infinite_expanse", zoneId: "infinite_expanse",
}, },
{ {
@@ -1156,7 +1156,7 @@ export const defaultBosses: Array<Boss> = [
name: "The Maelstrom God", name: "The Maelstrom God",
prestigeRequirement: 13, prestigeRequirement: 13,
status: "locked", status: "locked",
upgradeRewards: [], upgradeRewards: [ "transcendent_rogue_1" ],
zoneId: "cosmic_maelstrom", zoneId: "cosmic_maelstrom",
}, },
{ {
@@ -1302,7 +1302,7 @@ export const defaultBosses: Array<Boss> = [
name: "The Eternal End", name: "The Eternal End",
prestigeRequirement: 19, prestigeRequirement: 19,
status: "locked", status: "locked",
upgradeRewards: [], upgradeRewards: [ "omniversal_champion_1" ],
zoneId: "the_absolute", zoneId: "the_absolute",
}, },
{ {