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:
+517
-1
@@ -261,7 +261,7 @@ export const DEFAULT_BOSSES: Boss[] = [
|
||||
prestigeRequirement: 4,
|
||||
zoneId: "volcanic_depths",
|
||||
},
|
||||
// ── Astral Void ───────────────────────────────────────────────────────────
|
||||
// ── Astral Void (original) ────────────────────────────────────────────────
|
||||
{
|
||||
id: "astral_wraith",
|
||||
name: "The Astral Wraith",
|
||||
@@ -313,4 +313,520 @@ export const DEFAULT_BOSSES: Boss[] = [
|
||||
prestigeRequirement: 6,
|
||||
zoneId: "astral_void",
|
||||
},
|
||||
// ── Celestial Reaches ─────────────────────────────────────────────────────
|
||||
{
|
||||
id: "seraph_guardian",
|
||||
name: "The Seraph Guardian",
|
||||
description:
|
||||
"The first gatekeeper of the celestial realm — a being of pure divine light tasked with turning back anything that was not invited. It has never failed. Until now.",
|
||||
status: "locked",
|
||||
maxHp: 500_000_000,
|
||||
currentHp: 500_000_000,
|
||||
damagePerSecond: 50_000,
|
||||
goldReward: 5_000_000_000,
|
||||
essenceReward: 1_000_000,
|
||||
crystalReward: 15_000,
|
||||
upgradeRewards: ["click_4"],
|
||||
equipmentRewards: ["seraph_wing"],
|
||||
prestigeRequirement: 6,
|
||||
zoneId: "celestial_reaches",
|
||||
},
|
||||
{
|
||||
id: "fallen_archangel",
|
||||
name: "The Fallen Archangel",
|
||||
description:
|
||||
"Once the greatest of the celestial host, cast down for questioning the divine order. Now it exists in the space between light and dark, serving neither, consumed by ancient grief.",
|
||||
status: "locked",
|
||||
maxHp: 2_000_000_000,
|
||||
currentHp: 2_000_000_000,
|
||||
damagePerSecond: 120_000,
|
||||
goldReward: 20_000_000_000,
|
||||
essenceReward: 3_000_000,
|
||||
crystalReward: 40_000,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["angels_halo"],
|
||||
prestigeRequirement: 7,
|
||||
zoneId: "celestial_reaches",
|
||||
},
|
||||
{
|
||||
id: "divine_judge",
|
||||
name: "The Divine Judge",
|
||||
description:
|
||||
"The arbiter of celestial law, who has passed sentence on entire civilisations. It does not fight. It judges. The difference, in practice, is difficult to detect.",
|
||||
status: "locked",
|
||||
maxHp: 8_000_000_000,
|
||||
currentHp: 8_000_000_000,
|
||||
damagePerSecond: 350_000,
|
||||
goldReward: 80_000_000_000,
|
||||
essenceReward: 8_000_000,
|
||||
crystalReward: 100_000,
|
||||
upgradeRewards: ["divine_covenant"],
|
||||
equipmentRewards: [],
|
||||
prestigeRequirement: 8,
|
||||
zoneId: "celestial_reaches",
|
||||
},
|
||||
{
|
||||
id: "celestial_titan",
|
||||
name: "The Celestial Titan",
|
||||
description:
|
||||
"A colossus of divine architecture, built not born, maintained by the celestial host as the ultimate defence of their realm. It is the size of a small moon and has never been stopped.",
|
||||
status: "locked",
|
||||
maxHp: 30_000_000_000,
|
||||
currentHp: 30_000_000_000,
|
||||
damagePerSecond: 1_000_000,
|
||||
goldReward: 300_000_000_000,
|
||||
essenceReward: 25_000_000,
|
||||
crystalReward: 300_000,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["celestial_armour"],
|
||||
prestigeRequirement: 9,
|
||||
zoneId: "celestial_reaches",
|
||||
},
|
||||
{
|
||||
id: "the_first_light",
|
||||
name: "The First Light",
|
||||
description:
|
||||
"The oldest being in the celestial realm — the first light that ever shone in the universe, given form and consciousness by aeons of existence. It is not evil. It simply cannot allow anything to pass beyond.",
|
||||
status: "locked",
|
||||
maxHp: 100_000_000_000,
|
||||
currentHp: 100_000_000_000,
|
||||
damagePerSecond: 3_000_000,
|
||||
goldReward: 1_000_000_000_000,
|
||||
essenceReward: 80_000_000,
|
||||
crystalReward: 800_000,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["divine_edge", "heaven_mantle"],
|
||||
prestigeRequirement: 10,
|
||||
zoneId: "celestial_reaches",
|
||||
},
|
||||
// ── Abyssal Trench ────────────────────────────────────────────────────────
|
||||
{
|
||||
id: "depth_leviathan",
|
||||
name: "The Depth Leviathan",
|
||||
description:
|
||||
"A serpent of impossible size that has wound itself through the trench since before the ocean above it existed. It feeds on light itself — there is none here to sustain it, so it feeds on whatever dares to enter.",
|
||||
status: "locked",
|
||||
maxHp: 250_000_000_000,
|
||||
currentHp: 250_000_000_000,
|
||||
damagePerSecond: 5_000_000,
|
||||
goldReward: 2_500_000_000_000,
|
||||
essenceReward: 200_000_000,
|
||||
crystalReward: 1_500_000,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["depth_blade"],
|
||||
prestigeRequirement: 9,
|
||||
zoneId: "abyssal_trench",
|
||||
},
|
||||
{
|
||||
id: "kraken_elder",
|
||||
name: "The Elder Kraken",
|
||||
description:
|
||||
"The original kraken — the progenitor of every tentacled horror your guild has ever faced. Its children rule the surface seas. It rules the place where even the sea forgets itself.",
|
||||
status: "locked",
|
||||
maxHp: 1_000_000_000_000,
|
||||
currentHp: 1_000_000_000_000,
|
||||
damagePerSecond: 15_000_000,
|
||||
goldReward: 10_000_000_000_000,
|
||||
essenceReward: 600_000_000,
|
||||
crystalReward: 4_000_000,
|
||||
upgradeRewards: ["abyssal_pact"],
|
||||
equipmentRewards: ["leviathan_eye"],
|
||||
prestigeRequirement: 10,
|
||||
zoneId: "abyssal_trench",
|
||||
},
|
||||
{
|
||||
id: "abyssal_colossus",
|
||||
name: "The Abyssal Colossus",
|
||||
description:
|
||||
"A thing of pressure and darkness so massive it has its own gravitational pull. It was not created — it simply condensed over an eternity from the weight of everything above it.",
|
||||
status: "locked",
|
||||
maxHp: 4_000_000_000_000,
|
||||
currentHp: 4_000_000_000_000,
|
||||
damagePerSecond: 50_000_000,
|
||||
goldReward: 40_000_000_000_000,
|
||||
essenceReward: 2_000_000_000,
|
||||
crystalReward: 12_000_000,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["pressure_plate"],
|
||||
prestigeRequirement: 11,
|
||||
zoneId: "abyssal_trench",
|
||||
},
|
||||
{
|
||||
id: "the_deep_one",
|
||||
name: "The Deep One",
|
||||
description:
|
||||
"Not a creature of the trench but a god of it — worshipped by things that have never seen surface light, answered prayers for aeons. It has finally decided to meet its supplicants face to face.",
|
||||
status: "locked",
|
||||
maxHp: 15_000_000_000_000,
|
||||
currentHp: 15_000_000_000_000,
|
||||
damagePerSecond: 150_000_000,
|
||||
goldReward: 150_000_000_000_000,
|
||||
essenceReward: 7_000_000_000,
|
||||
crystalReward: 40_000_000,
|
||||
upgradeRewards: ["global_4"],
|
||||
equipmentRewards: [],
|
||||
prestigeRequirement: 12,
|
||||
zoneId: "abyssal_trench",
|
||||
},
|
||||
{
|
||||
id: "elder_abomination",
|
||||
name: "The Elder Abomination",
|
||||
description:
|
||||
"The thing that lives at the very bottom — so ancient it predates the concept of life itself. It is not alive in any way your guild understands the word. It is simply there, as it has always been, as it will always be.",
|
||||
status: "locked",
|
||||
maxHp: 50_000_000_000_000,
|
||||
currentHp: 50_000_000_000_000,
|
||||
damagePerSecond: 500_000_000,
|
||||
goldReward: 500_000_000_000_000,
|
||||
essenceReward: 25_000_000_000,
|
||||
crystalReward: 150_000_000,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["abyssal_edge", "abyss_shroud"],
|
||||
prestigeRequirement: 13,
|
||||
zoneId: "abyssal_trench",
|
||||
},
|
||||
// ── Infernal Court ────────────────────────────────────────────────────────
|
||||
{
|
||||
id: "demon_prince",
|
||||
name: "The Demon Prince",
|
||||
description:
|
||||
"Heir to the infernal throne, who has toppled kingdoms for sport across a thousand years. He considers your guild an amusing curiosity — right up until the point he doesn't.",
|
||||
status: "locked",
|
||||
maxHp: 120_000_000_000_000,
|
||||
currentHp: 120_000_000_000_000,
|
||||
damagePerSecond: 800_000_000,
|
||||
goldReward: 1_200_000_000_000_000,
|
||||
essenceReward: 60_000_000_000,
|
||||
crystalReward: 350_000_000,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["demon_hide"],
|
||||
prestigeRequirement: 12,
|
||||
zoneId: "infernal_court",
|
||||
},
|
||||
{
|
||||
id: "hellfire_titan",
|
||||
name: "The Hellfire Titan",
|
||||
description:
|
||||
"A construct of pure infernal energy shaped into something vast and terrible by the demon lords as a weapon of absolute last resort. It has never been deployed before. You are a first.",
|
||||
status: "locked",
|
||||
maxHp: 500_000_000_000_000,
|
||||
currentHp: 500_000_000_000_000,
|
||||
damagePerSecond: 2_500_000_000,
|
||||
goldReward: 5_000_000_000_000_000,
|
||||
essenceReward: 200_000_000_000,
|
||||
crystalReward: 1_000_000_000,
|
||||
upgradeRewards: ["celestial_mandate"],
|
||||
equipmentRewards: ["hellfire_edge"],
|
||||
prestigeRequirement: 13,
|
||||
zoneId: "infernal_court",
|
||||
},
|
||||
{
|
||||
id: "lord_of_sin",
|
||||
name: "The Lord of Sin",
|
||||
description:
|
||||
"Not a demon but the embodiment of all sin that has ever existed — the accumulated weight of every wrong act across all of history, given form and voice. Its voice alone is enough to break the unwary.",
|
||||
status: "locked",
|
||||
maxHp: 2_000_000_000_000_000,
|
||||
currentHp: 2_000_000_000_000_000,
|
||||
damagePerSecond: 8_000_000_000,
|
||||
goldReward: 2e16,
|
||||
essenceReward: 700_000_000_000,
|
||||
crystalReward: 3_000_000_000,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["soul_gem"],
|
||||
prestigeRequirement: 14,
|
||||
zoneId: "infernal_court",
|
||||
},
|
||||
{
|
||||
id: "infernal_sovereign",
|
||||
name: "The Infernal Sovereign",
|
||||
description:
|
||||
"The ruler of all demonic kind — not merely a king but the principle of infernal power itself. Its existence is older than the universe that contains it. Defeating it will not end the hells. It will simply change who rules them.",
|
||||
status: "locked",
|
||||
maxHp: 6_000_000_000_000_000,
|
||||
currentHp: 6_000_000_000_000_000,
|
||||
damagePerSecond: 25_000_000_000,
|
||||
goldReward: 6e16,
|
||||
essenceReward: 2_500_000_000_000,
|
||||
crystalReward: 10_000_000_000,
|
||||
upgradeRewards: ["click_5"],
|
||||
equipmentRewards: [],
|
||||
prestigeRequirement: 15,
|
||||
zoneId: "infernal_court",
|
||||
},
|
||||
{
|
||||
id: "the_fallen",
|
||||
name: "The Fallen",
|
||||
description:
|
||||
"A being that was once something unimaginably good, corrupted so completely over so many aeons that what it has become is unrecognisable from what it was. It remembers what it lost. That is its true weapon.",
|
||||
status: "locked",
|
||||
maxHp: 8_000_000_000_000_000,
|
||||
currentHp: 8_000_000_000_000_000,
|
||||
damagePerSecond: 80_000_000_000,
|
||||
goldReward: 8e16,
|
||||
essenceReward: 8_000_000_000_000,
|
||||
crystalReward: 30_000_000_000,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["infernal_edge", "sinslayer_aegis"],
|
||||
prestigeRequirement: 16,
|
||||
zoneId: "infernal_court",
|
||||
},
|
||||
// ── Crystalline Spire ─────────────────────────────────────────────────────
|
||||
{
|
||||
id: "prism_golem",
|
||||
name: "The Prism Golem",
|
||||
description:
|
||||
"A guardian of crystallised possibility — every face of it reflects a timeline in which your guild failed. There are many of those faces, and all of them are watching.",
|
||||
status: "locked",
|
||||
maxHp: 2e16,
|
||||
currentHp: 2e16,
|
||||
damagePerSecond: 120_000_000_000,
|
||||
goldReward: 2e17,
|
||||
essenceReward: 2e13,
|
||||
crystalReward: 8e10,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["prism_blade"],
|
||||
prestigeRequirement: 15,
|
||||
zoneId: "crystalline_spire",
|
||||
},
|
||||
{
|
||||
id: "crystal_drake",
|
||||
name: "The Crystal Drake",
|
||||
description:
|
||||
"A dragon made entirely of living crystal, its scales each a perfect lens that focuses whatever energy strikes it into something far more lethal. It breathes light that cuts rather than burns.",
|
||||
status: "locked",
|
||||
maxHp: 8e16,
|
||||
currentHp: 8e16,
|
||||
damagePerSecond: 4e11,
|
||||
goldReward: 8e17,
|
||||
essenceReward: 8e13,
|
||||
crystalReward: 3e11,
|
||||
upgradeRewards: ["void_ascendancy"],
|
||||
equipmentRewards: [],
|
||||
prestigeRequirement: 16,
|
||||
zoneId: "crystalline_spire",
|
||||
},
|
||||
{
|
||||
id: "the_faceted",
|
||||
name: "The Faceted",
|
||||
description:
|
||||
"Not a creature but a geometry — a living mathematical construct whose angles intersect realities your guild cannot perceive. Attacking it requires solving equations that have no solutions.",
|
||||
status: "locked",
|
||||
maxHp: 3e17,
|
||||
currentHp: 3e17,
|
||||
damagePerSecond: 1.2e12,
|
||||
goldReward: 3e18,
|
||||
essenceReward: 3e14,
|
||||
crystalReward: 1e12,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["faceted_armour"],
|
||||
prestigeRequirement: 17,
|
||||
zoneId: "crystalline_spire",
|
||||
},
|
||||
{
|
||||
id: "diamond_colossus",
|
||||
name: "The Diamond Colossus",
|
||||
description:
|
||||
"The spire's ultimate protector — a being of compressed carbon so dense it bends space around itself. Every hit your guild lands strikes something that is simultaneously everywhere in the spire at once.",
|
||||
status: "locked",
|
||||
maxHp: 1e18,
|
||||
currentHp: 1e18,
|
||||
damagePerSecond: 4e12,
|
||||
goldReward: 1e19,
|
||||
essenceReward: 1e15,
|
||||
crystalReward: 4e12,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["prism_eye"],
|
||||
prestigeRequirement: 18,
|
||||
zoneId: "crystalline_spire",
|
||||
},
|
||||
{
|
||||
id: "crystal_sovereign",
|
||||
name: "The Crystal Sovereign",
|
||||
description:
|
||||
"The mind at the centre of the spire — a consciousness that has been calculating the optimal outcome for all possible futures simultaneously since before your species climbed down from the trees. It has seen every way this ends. It does not intend to let you choose your own.",
|
||||
status: "locked",
|
||||
maxHp: 4e18,
|
||||
currentHp: 4e18,
|
||||
damagePerSecond: 1.5e13,
|
||||
goldReward: 4e19,
|
||||
essenceReward: 4e15,
|
||||
crystalReward: 1.5e13,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["crystal_sovereign_blade", "diamond_plate"],
|
||||
prestigeRequirement: 19,
|
||||
zoneId: "crystalline_spire",
|
||||
},
|
||||
// ── Void Sanctum ──────────────────────────────────────────────────────────
|
||||
{
|
||||
id: "void_herald",
|
||||
name: "The Void Herald",
|
||||
description:
|
||||
"A messenger from somewhere that has no location — sent ahead of something worse to announce the end of your guild's journey through the sanctum. It is the warning. You will not heed it.",
|
||||
status: "locked",
|
||||
maxHp: 1e19,
|
||||
currentHp: 1e19,
|
||||
damagePerSecond: 4e13,
|
||||
goldReward: 1e20,
|
||||
essenceReward: 1e16,
|
||||
crystalReward: 4e13,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["void_annihilator"],
|
||||
prestigeRequirement: 18,
|
||||
zoneId: "void_sanctum",
|
||||
},
|
||||
{
|
||||
id: "eternal_shade",
|
||||
name: "The Eternal Shade",
|
||||
description:
|
||||
"A shadow that has outlived every light that ever cast it. It moves between moments rather than through space, and every time your guild thinks they have found it, what they have found is where it was.",
|
||||
status: "locked",
|
||||
maxHp: 5e19,
|
||||
currentHp: 5e19,
|
||||
damagePerSecond: 1.5e14,
|
||||
goldReward: 5e20,
|
||||
essenceReward: 5e16,
|
||||
crystalReward: 1.5e14,
|
||||
upgradeRewards: ["divine_harmony"],
|
||||
equipmentRewards: ["eternal_shroud"],
|
||||
prestigeRequirement: 19,
|
||||
zoneId: "void_sanctum",
|
||||
},
|
||||
{
|
||||
id: "the_unmaker",
|
||||
name: "The Unmaker",
|
||||
description:
|
||||
"The force of entropy given singular purpose and form — the thing that will, eventually, unmake everything. It is not here early. It is simply here now, because your guild reached it.",
|
||||
status: "locked",
|
||||
maxHp: 2e20,
|
||||
currentHp: 2e20,
|
||||
damagePerSecond: 5e14,
|
||||
goldReward: 2e21,
|
||||
essenceReward: 2e17,
|
||||
crystalReward: 5e14,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: [],
|
||||
prestigeRequirement: 20,
|
||||
zoneId: "void_sanctum",
|
||||
},
|
||||
{
|
||||
id: "void_progenitor",
|
||||
name: "The Void Progenitor",
|
||||
description:
|
||||
"The being from which all void entities descend — the first thing to ever exist in the absence of existence. It cannot be understood, only survived.",
|
||||
status: "locked",
|
||||
maxHp: 8e20,
|
||||
currentHp: 8e20,
|
||||
damagePerSecond: 2e15,
|
||||
goldReward: 8e21,
|
||||
essenceReward: 8e17,
|
||||
crystalReward: 2e15,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["void_heart_gem"],
|
||||
prestigeRequirement: 21,
|
||||
zoneId: "void_sanctum",
|
||||
},
|
||||
{
|
||||
id: "void_emperor",
|
||||
name: "The Void Emperor",
|
||||
description:
|
||||
"The sovereign of nothing — ruler of all void, all absence, all the space between things. It does not want your guild dead. It simply wants everything to return to the state it was in before existence began.",
|
||||
status: "locked",
|
||||
maxHp: 3e21,
|
||||
currentHp: 3e21,
|
||||
damagePerSecond: 8e15,
|
||||
goldReward: 3e22,
|
||||
essenceReward: 3e18,
|
||||
crystalReward: 8e15,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["sanctum_breaker", "void_emperor_plate"],
|
||||
prestigeRequirement: 22,
|
||||
zoneId: "void_sanctum",
|
||||
},
|
||||
// ── Eternal Throne ────────────────────────────────────────────────────────
|
||||
{
|
||||
id: "throne_warden",
|
||||
name: "The Throne Warden",
|
||||
description:
|
||||
"The guardian of the approach to the eternal throne — a being of absolute authority who has turned back every challenger to the seat of power since the first moment the throne existed.",
|
||||
status: "locked",
|
||||
maxHp: 1e22,
|
||||
currentHp: 1e22,
|
||||
damagePerSecond: 2e16,
|
||||
goldReward: 1e23,
|
||||
essenceReward: 1e19,
|
||||
crystalReward: 2e16,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["eternal_armour"],
|
||||
prestigeRequirement: 21,
|
||||
zoneId: "eternal_throne",
|
||||
},
|
||||
{
|
||||
id: "eternal_knight",
|
||||
name: "The Eternal Knight",
|
||||
description:
|
||||
"A champion who has served the throne since before the concept of service existed. It has never been defeated. It has faced challengers from a hundred dead universes and sent every one of them back to nothing.",
|
||||
status: "locked",
|
||||
maxHp: 5e22,
|
||||
currentHp: 5e22,
|
||||
damagePerSecond: 8e16,
|
||||
goldReward: 5e23,
|
||||
essenceReward: 5e19,
|
||||
crystalReward: 8e16,
|
||||
upgradeRewards: ["infernal_fury"],
|
||||
equipmentRewards: ["throne_blade"],
|
||||
prestigeRequirement: 22,
|
||||
zoneId: "eternal_throne",
|
||||
},
|
||||
{
|
||||
id: "the_undying",
|
||||
name: "The Undying",
|
||||
description:
|
||||
"A being for whom death is not a possibility but a suggestion it has declined across every moment of existence. Your guild will need to convince it to consider the option for the very first time.",
|
||||
status: "locked",
|
||||
maxHp: 2e23,
|
||||
currentHp: 2e23,
|
||||
damagePerSecond: 3e17,
|
||||
goldReward: 2e24,
|
||||
essenceReward: 2e20,
|
||||
crystalReward: 3e17,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: [],
|
||||
prestigeRequirement: 23,
|
||||
zoneId: "eternal_throne",
|
||||
},
|
||||
{
|
||||
id: "apex_sovereign",
|
||||
name: "The Apex Sovereign",
|
||||
description:
|
||||
"The penultimate guardian of the throne — a being so close to the absolute seat of power that it has absorbed some of its nature. Reality warps around it. Your guild must hold together through forces that want to unmake them at the atomic level.",
|
||||
status: "locked",
|
||||
maxHp: 8e23,
|
||||
currentHp: 8e23,
|
||||
damagePerSecond: 1.2e18,
|
||||
goldReward: 8e24,
|
||||
essenceReward: 8e20,
|
||||
crystalReward: 1.2e18,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: [],
|
||||
prestigeRequirement: 24,
|
||||
zoneId: "eternal_throne",
|
||||
},
|
||||
{
|
||||
id: "the_apex",
|
||||
name: "The Apex",
|
||||
description:
|
||||
"The one who sits upon the Eternal Throne. They have no name because names are given by others, and there has never been another to give one. They are the beginning and the end of all authority. And now your guild has come to take everything they are.",
|
||||
status: "locked",
|
||||
maxHp: 3e24,
|
||||
currentHp: 3e24,
|
||||
damagePerSecond: 5e18,
|
||||
goldReward: 3e25,
|
||||
essenceReward: 3e21,
|
||||
crystalReward: 5e18,
|
||||
upgradeRewards: [],
|
||||
equipmentRewards: ["apex_sword", "apex_plate", "eternity_stone"],
|
||||
prestigeRequirement: 25,
|
||||
zoneId: "eternal_throne",
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user