generated from nhcarrigan/template
feat: major endgame content expansion
- Add 6 new zones (Celestial Reaches through Eternal Throne) with sequential unlock chain - Add 30 new bosses (5 per zone) scaling to 3e24 HP for true endgame challenge - Add 36 new quests (6 per zone) with timers up to 96h for long-term progression - Add 6 new adventurer tiers (seraph_knight through eternal_champion) requiring prestige 6-25 - Add ~36 new equipment pieces with boss drops and purchasable essence/crystal sinks - Add new upgrades including endgame click/global multipliers and adventurer-specific unlocks - Add 17 new achievements covering clicks (100K/1M), gold (quadrillion/quintillion), bosses (20/30/60), quests (30/50/72), adventurers (50K), prestige (5/10/25), and equipment (25/40) - Extend formatNumber to support Q/Qt/S/Sp suffixes for numbers up to 1e24
This commit is contained in:
@@ -318,4 +318,266 @@ export const DEFAULT_UPGRADES: Upgrade[] = [
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
// ── Click upgrades (new zones) ────────────────────────────────────────────
|
||||
{
|
||||
id: "click_4",
|
||||
name: "Celestial Strike",
|
||||
description: "Blessed by the celestials themselves. Click power quadrupled.",
|
||||
target: "click",
|
||||
multiplier: 4,
|
||||
costGold: 100_000_000,
|
||||
costEssence: 5_000_000,
|
||||
costCrystals: 0,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
{
|
||||
id: "click_5",
|
||||
name: "Infernal Slash",
|
||||
description: "A strike that burns with infernal fire. Click power quintupled.",
|
||||
target: "click",
|
||||
multiplier: 5,
|
||||
costGold: 0,
|
||||
costEssence: 0,
|
||||
costCrystals: 10_000_000,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
// ── Global upgrades (new zones) ───────────────────────────────────────────
|
||||
{
|
||||
id: "divine_covenant",
|
||||
name: "Divine Covenant",
|
||||
description: "A covenant with celestial forces multiplies your guild's potential. All income doubled.",
|
||||
target: "global",
|
||||
multiplier: 2,
|
||||
costGold: 500_000_000,
|
||||
costEssence: 10_000_000,
|
||||
costCrystals: 0,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
{
|
||||
id: "global_4",
|
||||
name: "Imperial Decree",
|
||||
description: "The empire formally sponsors your guild at the highest level. All income x2.5.",
|
||||
target: "global",
|
||||
multiplier: 2.5,
|
||||
costGold: 100_000_000_000,
|
||||
costEssence: 50_000_000,
|
||||
costCrystals: 0,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
{
|
||||
id: "abyssal_pact",
|
||||
name: "Abyssal Pact",
|
||||
description: "A pact with the denizens of the deepest trench. All income doubled.",
|
||||
target: "global",
|
||||
multiplier: 2,
|
||||
costGold: 0,
|
||||
costEssence: 0,
|
||||
costCrystals: 2_000_000,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
{
|
||||
id: "celestial_mandate",
|
||||
name: "Celestial Mandate",
|
||||
description: "The celestials themselves decree your guild's dominion over all realms. All income x3.",
|
||||
target: "global",
|
||||
multiplier: 3,
|
||||
costGold: 50_000_000_000_000,
|
||||
costEssence: 100_000_000_000,
|
||||
costCrystals: 0,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
{
|
||||
id: "void_ascendancy",
|
||||
name: "Void Ascendancy",
|
||||
description: "Transcend mortal limits through void energy. All income x3.",
|
||||
target: "global",
|
||||
multiplier: 3,
|
||||
costGold: 0,
|
||||
costEssence: 0,
|
||||
costCrystals: 10_000_000,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
{
|
||||
id: "divine_harmony",
|
||||
name: "Divine Harmony",
|
||||
description: "Perfect harmony with celestial forces amplifies all output. All income x2.5.",
|
||||
target: "global",
|
||||
multiplier: 2.5,
|
||||
costGold: 1_000_000_000_000_000,
|
||||
costEssence: 500_000_000_000,
|
||||
costCrystals: 0,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
{
|
||||
id: "infernal_fury",
|
||||
name: "Infernal Fury",
|
||||
description: "Channel infernal rage into production. All income doubled.",
|
||||
target: "global",
|
||||
multiplier: 2,
|
||||
costGold: 0,
|
||||
costEssence: 0,
|
||||
costCrystals: 50_000_000,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
// ── Purchasable essence/crystal sink upgrades ─────────────────────────────
|
||||
{
|
||||
id: "essence_nexus",
|
||||
name: "Essence Nexus",
|
||||
description: "Tap into a vast network of essence flows. All income +50%.",
|
||||
target: "global",
|
||||
multiplier: 1.5,
|
||||
costGold: 0,
|
||||
costEssence: 5_000_000,
|
||||
costCrystals: 0,
|
||||
purchased: false,
|
||||
unlocked: true,
|
||||
},
|
||||
{
|
||||
id: "essence_overdrive",
|
||||
name: "Essence Overdrive",
|
||||
description: "Flood your guild's operations with raw essence power. All income doubled.",
|
||||
target: "global",
|
||||
multiplier: 2,
|
||||
costGold: 0,
|
||||
costEssence: 50_000_000,
|
||||
costCrystals: 0,
|
||||
purchased: false,
|
||||
unlocked: true,
|
||||
},
|
||||
{
|
||||
id: "primal_essence",
|
||||
name: "Primal Essence",
|
||||
description: "Harness the oldest essence in existence. All income x3.",
|
||||
target: "global",
|
||||
multiplier: 3,
|
||||
costGold: 0,
|
||||
costEssence: 500_000_000,
|
||||
costCrystals: 0,
|
||||
purchased: false,
|
||||
unlocked: true,
|
||||
},
|
||||
{
|
||||
id: "crystal_overdrive",
|
||||
name: "Crystal Overdrive",
|
||||
description: "Push crystal resonance beyond its limits. All income doubled.",
|
||||
target: "global",
|
||||
multiplier: 2,
|
||||
costGold: 0,
|
||||
costEssence: 0,
|
||||
costCrystals: 50_000_000,
|
||||
purchased: false,
|
||||
unlocked: true,
|
||||
},
|
||||
{
|
||||
id: "eternal_bond",
|
||||
name: "Eternal Bond",
|
||||
description: "Forge an eternal pact that triples all income permanently.",
|
||||
target: "global",
|
||||
multiplier: 3,
|
||||
costGold: 0,
|
||||
costEssence: 0,
|
||||
costCrystals: 200_000_000,
|
||||
purchased: false,
|
||||
unlocked: true,
|
||||
},
|
||||
{
|
||||
id: "apex_mandate",
|
||||
name: "Apex Mandate",
|
||||
description: "The supreme decree from the Eternal Throne itself. All income x5.",
|
||||
target: "global",
|
||||
multiplier: 5,
|
||||
costGold: 0,
|
||||
costEssence: 0,
|
||||
costCrystals: 1_000_000_000,
|
||||
purchased: false,
|
||||
unlocked: true,
|
||||
},
|
||||
// ── New adventurer upgrades ───────────────────────────────────────────────
|
||||
{
|
||||
id: "seraph_knight_1",
|
||||
name: "Seraphic Wings",
|
||||
description: "Seraph knights gain divine flight, doubling their effectiveness.",
|
||||
target: "adventurer",
|
||||
adventurerId: "seraph_knight",
|
||||
multiplier: 2,
|
||||
costGold: 0,
|
||||
costEssence: 10_000_000,
|
||||
costCrystals: 0,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
{
|
||||
id: "abyss_diver_1",
|
||||
name: "Pressure Adaptation",
|
||||
description: "Full adaptation to abyssal pressure doubles diver effectiveness.",
|
||||
target: "adventurer",
|
||||
adventurerId: "abyss_diver",
|
||||
multiplier: 2,
|
||||
costGold: 0,
|
||||
costEssence: 25_000_000,
|
||||
costCrystals: 0,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
{
|
||||
id: "infernal_warden_1",
|
||||
name: "Infernal Tempering",
|
||||
description: "Tempered in hellfire itself, warden effectiveness is doubled.",
|
||||
target: "adventurer",
|
||||
adventurerId: "infernal_warden",
|
||||
multiplier: 2,
|
||||
costGold: 0,
|
||||
costEssence: 0,
|
||||
costCrystals: 2_000_000,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
{
|
||||
id: "crystal_sage_1",
|
||||
name: "Prismatic Mastery",
|
||||
description: "Complete mastery of prismatic crystallomancy doubles sage output.",
|
||||
target: "adventurer",
|
||||
adventurerId: "crystal_sage",
|
||||
multiplier: 2,
|
||||
costGold: 0,
|
||||
costEssence: 0,
|
||||
costCrystals: 5_000_000,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
{
|
||||
id: "void_sentinel_1",
|
||||
name: "Void Resonance",
|
||||
description: "Perfect resonance with the void doubles sentinel effectiveness.",
|
||||
target: "adventurer",
|
||||
adventurerId: "void_sentinel",
|
||||
multiplier: 2,
|
||||
costGold: 0,
|
||||
costEssence: 0,
|
||||
costCrystals: 15_000_000,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
{
|
||||
id: "eternal_champion_1",
|
||||
name: "Eternal Oath",
|
||||
description: "An oath that transcends time itself doubles champion output.",
|
||||
target: "adventurer",
|
||||
adventurerId: "eternal_champion",
|
||||
multiplier: 2,
|
||||
costGold: 0,
|
||||
costEssence: 0,
|
||||
costCrystals: 50_000_000,
|
||||
purchased: false,
|
||||
unlocked: false,
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user