feat: add zone system to bosses and quests

This commit is contained in:
2026-03-06 13:42:40 -08:00
committed by Naomi Carrigan
parent e9e0df31fd
commit 897eba5f64
15 changed files with 239 additions and 4 deletions
+4
View File
@@ -16,6 +16,7 @@ export const DEFAULT_BOSSES: Boss[] = [
upgradeRewards: ["click_2"],
equipmentRewards: ["iron_sword", "chainmail", "mages_focus"],
prestigeRequirement: 0,
zoneId: "verdant_vale",
},
{
id: "lich_queen",
@@ -32,6 +33,7 @@ export const DEFAULT_BOSSES: Boss[] = [
upgradeRewards: ["global_2"],
equipmentRewards: ["enchanted_blade", "plate_armour", "arcane_orb"],
prestigeRequirement: 0,
zoneId: "verdant_vale",
},
{
id: "elder_dragon",
@@ -48,6 +50,7 @@ export const DEFAULT_BOSSES: Boss[] = [
upgradeRewards: ["click_3"],
equipmentRewards: ["vorpal_sword", "dragon_scale"],
prestigeRequirement: 1,
zoneId: "shattered_ruins",
},
{
id: "void_titan",
@@ -64,5 +67,6 @@ export const DEFAULT_BOSSES: Boss[] = [
upgradeRewards: [],
equipmentRewards: ["philosophers_stone"],
prestigeRequirement: 3,
zoneId: "frozen_peaks",
},
];