/** * @file Game data definitions. * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ /* eslint-disable max-lines -- Data file */ /* eslint-disable stylistic/max-len -- Data content */ import type { VampireBoss } from "@elysium/types"; export const defaultVampireBosses: Array = [ // ── Haunted Catacombs ───────────────────────────────────────────────────── { bloodReward: 50, bountyIchor: 1, bountyIchorClaimed: false, currentHp: 100, damagePerSecond: 2, description: "A newly-turned vampire who wandered too deep into the catacombs and never found the way out. They are confused, starving, and will attack anything that moves. Difficult to blame them.", equipmentRewards: [], ichorReward: 0, id: "lost_wanderer", maxHp: 100, name: "Lost Wanderer", siringRequirement: 0, soulShardsReward: 0, status: "available", upgradeRewards: [ "blood_hunt_1" ], zoneId: "vampire_haunted_catacombs", }, { bloodReward: 250, bountyIchor: 2, bountyIchorClaimed: false, currentHp: 500, damagePerSecond: 5, description: "A vampire who died violently and came back wrong — half-memory, half-instinct, entirely hostile. The tomb it guards is empty. It does not seem to know this.", equipmentRewards: [ "shard_fang" ], ichorReward: 0, id: "tomb_revenant", maxHp: 500, name: "Tomb Revenant", siringRequirement: 0, soulShardsReward: 0, status: "locked", upgradeRewards: [ "blood_hunt_2" ], zoneId: "vampire_haunted_catacombs", }, { bloodReward: 1250, bountyIchor: 5, bountyIchorClaimed: false, currentHp: 2500, damagePerSecond: 15, description: "A shadow that learned to feed on its own. It does not have a name — it has forgotten it — but it remembers exactly where the arteries are.", equipmentRewards: [ "tattered_shroud" ], ichorReward: 0, id: "crypt_shade", maxHp: 2500, name: "Crypt Shade", siringRequirement: 0, soulShardsReward: 0, status: "locked", upgradeRewards: [ "thrall_fledgling_1" ], zoneId: "vampire_haunted_catacombs", }, { bloodReward: 6250, bountyIchor: 10, bountyIchorClaimed: false, currentHp: 12_500, damagePerSecond: 40, description: "An ancient vampire who chose these catacombs as a final resting place centuries ago. Unfortunately, 'final resting place' turned out to be a relative concept. It has not enjoyed the interruptions.", equipmentRewards: [ "bone_talisman" ], ichorReward: 1, id: "catacomb_lord", maxHp: 12_500, name: "Catacomb Lord", siringRequirement: 0, soulShardsReward: 0, status: "locked", upgradeRewards: [ "blood_hunt_3" ], zoneId: "vampire_haunted_catacombs", }, // ── Blood Mire ──────────────────────────────────────────────────────────── { bloodReward: 30_000, bountyIchor: 20, bountyIchorClaimed: false, currentHp: 62_500, damagePerSecond: 100, description: "Something that rose from the deepest channel of the mire. It is not entirely clear whether it was ever a vampire, or simply what the mire produces when left to its own devices.", equipmentRewards: [ "blood_fang" ], ichorReward: 1, id: "mire_spawn", maxHp: 62_500, name: "Mire Spawn", siringRequirement: 0, soulShardsReward: 0, status: "locked", upgradeRewards: [ "blood_hunt_4" ], zoneId: "vampire_blood_mire", }, { bloodReward: 125_000, bountyIchor: 50, bountyIchorClaimed: false, currentHp: 250_000, damagePerSecond: 300, description: "A creature that feeds on blood through the skin, moving slowly and patiently through the mire. It has never needed speed. Its prey always comes to it eventually.", equipmentRewards: [ "blood_shroud" ], ichorReward: 2, id: "marsh_leech", maxHp: 250_000, name: "Marsh Leech", siringRequirement: 0, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_blood_mire", }, { bloodReward: 500_000, bountyIchor: 100, bountyIchorClaimed: false, currentHp: 1_000_000, damagePerSecond: 750, description: "A wraith that formed in the bloodiest part of the mire over centuries of accumulated slaughter. It has no body, only appetite, and the appetite has had a very long time to grow.", equipmentRewards: [], ichorReward: 3, id: "blood_wraith", maxHp: 1_000_000, name: "Blood Wraith", siringRequirement: 0, soulShardsReward: 0, status: "locked", upgradeRewards: [ "thrall_fledgling_2" ], zoneId: "vampire_blood_mire", }, { bloodReward: 2_500_000, bountyIchor: 200, bountyIchorClaimed: false, currentHp: 5_000_000, damagePerSecond: 2000, description: "The absolute ruler of the Blood Mire — an ancient vampire who has merged with the mire itself over millennia of residence. It is not clear where the vampire ends and the swamp begins. It is not clear the vampire cares.", equipmentRewards: [ "blood_talisman" ], ichorReward: 5, id: "mire_sovereign", maxHp: 5_000_000, name: "Mire Sovereign", siringRequirement: 0, soulShardsReward: 0, status: "locked", upgradeRewards: [ "blood_hunt_5" ], zoneId: "vampire_blood_mire", }, // ── Obsidian Keep ───────────────────────────────────────────────────────── { bloodReward: 12_000_000, bountyIchor: 500, bountyIchorClaimed: false, currentHp: 25_000_000, damagePerSecond: 5000, description: "The outermost sentry of the Obsidian Keep — a vampire who has stood this post for so long that the post has become the vampire. It does not leave. It does not need to.", equipmentRewards: [ "war_fang" ], ichorReward: 10, id: "keep_sentry", maxHp: 25_000_000, name: "Keep Sentry", siringRequirement: 1, soulShardsReward: 0, status: "locked", upgradeRewards: [ "thrall_revenant_1" ], zoneId: "vampire_obsidian_keep", }, { bloodReward: 50_000_000, bountyIchor: 1000, bountyIchorClaimed: false, currentHp: 100_000_000, damagePerSecond: 15_000, description: "A heavy-set vampire soldier who has served the Keep through three different regimes without finding a reason to change sides. It is not loyal — it simply cannot conceive of anything else.", equipmentRewards: [ "obsidian_shroud" ], ichorReward: 20, id: "obsidian_guard", maxHp: 100_000_000, name: "Obsidian Guard", siringRequirement: 1, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_obsidian_keep", }, { bloodReward: 200_000_000, bountyIchor: 2000, bountyIchorClaimed: false, currentHp: 400_000_000, damagePerSecond: 40_000, description: "The Keep's internal enforcer — the vampire responsible for keeping the walls at their intended standard of impregnability. Its methods are not subtle and are not intended to be.", equipmentRewards: [ "obsidian_talisman" ], ichorReward: 30, id: "iron_warden", maxHp: 400_000_000, name: "Iron Warden", siringRequirement: 1, soulShardsReward: 0, status: "locked", upgradeRewards: [ "blood_mastery_1" ], zoneId: "vampire_obsidian_keep", }, { bloodReward: 750_000_000, bountyIchor: 5000, bountyIchorClaimed: false, currentHp: 1_500_000_000, damagePerSecond: 100_000, description: "The absolute master of the Obsidian Keep — a vampire who has ruled here since the building was constructed, and has had time to become indistinguishable from its architecture.", equipmentRewards: [ "obsidian_fang" ], ichorReward: 50, id: "keep_overlord", maxHp: 1_500_000_000, name: "Keep Overlord", siringRequirement: 1, soulShardsReward: 0, status: "locked", upgradeRewards: [ "hunter_instinct_1" ], zoneId: "vampire_obsidian_keep", }, // ── Crimson Citadel ─────────────────────────────────────────────────────── { bloodReward: 3_500_000_000, bountyIchor: 10_000, bountyIchorClaimed: false, currentHp: 7_500_000_000, damagePerSecond: 250_000, description: "A knight of the old Citadel order — armoured in blood-bronze, carrying weapons the Citadel has not officially produced in three centuries. The order was supposed to be dissolved. The knight was not informed.", equipmentRewards: [ "crimson_shroud" ], ichorReward: 75, id: "crimson_knight", maxHp: 7_500_000_000, name: "Crimson Knight", siringRequirement: 1, soulShardsReward: 0, status: "locked", upgradeRewards: [ "hunter_instinct_2" ], zoneId: "vampire_crimson_citadel", }, { bloodReward: 15_000_000_000, bountyIchor: 20_000, bountyIchorClaimed: false, currentHp: 30_000_000_000, damagePerSecond: 700_000, description: "A paladin of the blood faith — a vampire who has elevated feeding to the level of theology. Every attack is both violence and ceremony, and they take both equally seriously.", equipmentRewards: [ "crimson_talisman" ], ichorReward: 100, id: "blood_paladin", maxHp: 30_000_000_000, name: "Blood Paladin", siringRequirement: 1, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_crimson_citadel", }, { bloodReward: 60_000_000_000, bountyIchor: 50_000, bountyIchorClaimed: false, currentHp: 125_000_000_000, damagePerSecond: 2_000_000, description: "The champion of the Citadel's arena — a vampire who has fought everything the Citadel's rulers have been willing to throw at it, and has always been willing to go back for more.", equipmentRewards: [], ichorReward: 150, id: "citadel_champion", maxHp: 125_000_000_000, name: "Citadel Champion", siringRequirement: 1, soulShardsReward: 0, status: "locked", upgradeRewards: [ "thrall_revenant_2" ], zoneId: "vampire_crimson_citadel", }, { bloodReward: 250_000_000_000, bountyIchor: 100_000, bountyIchorClaimed: false, currentHp: 500_000_000_000, damagePerSecond: 5_000_000, description: "The master of the Crimson Citadel — a vampire dynasty unto themselves, who has held court here since before most of the Citadel's stone was quarried. The dynasty operates through fear, tradition, and an absolute certainty that it is owed this.", equipmentRewards: [ "crimson_fang" ], ichorReward: 200, id: "citadel_lord", maxHp: 500_000_000_000, name: "Citadel Lord", siringRequirement: 1, soulShardsReward: 0, status: "locked", upgradeRewards: [ "blood_mastery_2" ], zoneId: "vampire_crimson_citadel", }, // ── Shadow Court ────────────────────────────────────────────────────────── { bloodReward: 1_200_000_000_000, bountyIchor: 200_000, bountyIchorClaimed: false, currentHp: 2_500_000_000_000, damagePerSecond: 12_000_000, description: "The Court's official herald — the vampire who announces things and then immediately denies having announced them. Their combat style is the same: every attack is technically deniable.", equipmentRewards: [ "shadow_shroud" ], ichorReward: 300, id: "shadow_herald", maxHp: 2_500_000_000_000, name: "Shadow Herald", siringRequirement: 2, soulShardsReward: 0, status: "locked", upgradeRewards: [ "vampire_synergy_1" ], zoneId: "vampire_shadow_court", }, { bloodReward: 5_000_000_000_000, bountyIchor: 500_000, bountyIchorClaimed: false, currentHp: 10_000_000_000_000, damagePerSecond: 35_000_000, description: "The Court's blade — a vampire who eliminates problems before the Court acknowledges they exist. Remarkably efficient, completely silent, and officially a chamberlain.", equipmentRewards: [ "shadow_talisman" ], ichorReward: 400, id: "court_assassin", maxHp: 10_000_000_000_000, name: "Court Assassin", siringRequirement: 2, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_shadow_court", }, { bloodReward: 20_000_000_000_000, bountyIchor: 1_000_000, bountyIchorClaimed: false, currentHp: 40_000_000_000_000, damagePerSecond: 100_000_000, description: "A noble of the Shadow Court — someone who has survived several centuries of internal politics, which means they have also authored several centuries of the same. Every movement they make is calculated three conversations ahead.", equipmentRewards: [], ichorReward: 500, id: "shadow_noble", maxHp: 40_000_000_000_000, name: "Shadow Noble", siringRequirement: 2, soulShardsReward: 0, status: "locked", upgradeRewards: [ "thrall_shade_1" ], zoneId: "vampire_shadow_court", }, { bloodReward: 75_000_000_000_000, bountyIchor: 2_000_000, bountyIchorClaimed: false, currentHp: 150_000_000_000_000, damagePerSecond: 300_000_000, description: "The absolute ruler of the Shadow Court — a vampire whose identity is the Court's most closely guarded secret, including from those within it. Their face is known to no one. Their power is felt by everyone.", equipmentRewards: [ "shadow_fang" ], ichorReward: 750, id: "shadow_monarch", maxHp: 150_000_000_000_000, name: "Shadow Monarch", siringRequirement: 2, soulShardsReward: 0, status: "locked", upgradeRewards: [ "siring_mastery_1" ], zoneId: "vampire_shadow_court", }, // ── Plague Ossuary ──────────────────────────────────────────────────────── { bloodReward: 375_000_000_000_000, bountyIchor: 5_000_000, bountyIchorClaimed: false, currentHp: 750_000_000_000_000, damagePerSecond: 750_000_000, description: "A vampire who contracted the Ossuary's plague and adapted. The plague did not die. It simply became a feature. The rat-like quality to its movements is new, and is not a problem, from its perspective.", equipmentRewards: [ "plague_shroud" ], ichorReward: 1000, id: "plague_rat", maxHp: 750_000_000_000_000, name: "Plague Rat", siringRequirement: 2, soulShardsReward: 0, status: "locked", upgradeRewards: [ "blood_mastery_3" ], zoneId: "vampire_plague_ossuary", }, { bloodReward: 1_500_000_000_000_000, bountyIchor: 10_000_000, bountyIchorClaimed: false, currentHp: 3_000_000_000_000_000, damagePerSecond: 2_000_000_000, description: "A methodical vampire who has spent centuries harvesting bone from the Ossuary's fallen. They have catalogued every piece. They know exactly which ones to use as weapons, and they have a lot of them.", equipmentRewards: [ "plague_talisman" ], ichorReward: 1500, id: "bone_collector", maxHp: 3_000_000_000_000_000, name: "Bone Collector", siringRequirement: 2, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_plague_ossuary", }, { bloodReward: 6_000_000_000_000_000, bountyIchor: 25_000_000, bountyIchorClaimed: false, currentHp: 12_000_000_000_000_000, damagePerSecond: 6_000_000_000, description: "A wraith built from the Ossuary's accumulated pestilence — not a single vampire but a composite of every death the plague has caused, moving as one entity with one hunger.", equipmentRewards: [], ichorReward: 2000, id: "pestilence_wraith", maxHp: 12_000_000_000_000_000, name: "Pestilence Wraith", siringRequirement: 2, soulShardsReward: 0, status: "locked", upgradeRewards: [ "hunter_instinct_3" ], zoneId: "vampire_plague_ossuary", }, { bloodReward: 25_000_000_000_000_000, bountyIchor: 50_000_000, bountyIchorClaimed: false, currentHp: 50_000_000_000_000_000, damagePerSecond: 18_000_000_000, description: "The Ossuary's sovereign — a vampire so saturated with plague magic that the disease has become a second body, larger and more dangerous than the original. The original has not been seen in some time.", equipmentRewards: [ "plague_fang" ], ichorReward: 3000, id: "ossuary_overlord", maxHp: 50_000_000_000_000_000, name: "Ossuary Overlord", siringRequirement: 2, soulShardsReward: 0, status: "locked", upgradeRewards: [ "vampire_synergy_2" ], zoneId: "vampire_plague_ossuary", }, // ── Ashen Wastes ────────────────────────────────────────────────────────── { bloodReward: 125_000_000_000_000_000, bountyIchor: 100_000_000, bountyIchorClaimed: false, currentHp: 250_000_000_000_000_000, damagePerSecond: 50_000_000_000, description: "A vampire who has wandered the Wastes since the war that created them. They do not know why they are still here. The Wastes do not offer reasons. They offer only continuation.", equipmentRewards: [ "ashen_shroud" ], ichorReward: 4000, id: "ash_revenant", maxHp: 250_000_000_000_000_000, name: "Ash Revenant", siringRequirement: 3, soulShardsReward: 0, status: "locked", upgradeRewards: [ "thrall_shade_2" ], zoneId: "vampire_ashen_wastes", }, { bloodReward: 500_000_000_000_000_000, bountyIchor: 200_000_000, bountyIchorClaimed: false, currentHp: 1_000_000_000_000_000_000, damagePerSecond: 150_000_000_000, description: "A shade that formed from the cinder clouds above the Wastes — denser than ordinary shadow, heat-retaining, and with a grudge that the clouds absorbed from the war and never released.", equipmentRewards: [ "ashen_talisman" ], ichorReward: 5000, id: "cinder_shade", maxHp: 1_000_000_000_000_000_000, name: "Cinder Shade", siringRequirement: 3, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_ashen_wastes", }, { bloodReward: 2e18, bountyIchor: 500_000_000, bountyIchorClaimed: false, currentHp: 4e18, damagePerSecond: 500_000_000_000, description: "A vampire who fought in the original war and chose the Wastes as their territory afterward. Not out of preference — out of the knowledge that nothing else would survive here, and therefore nothing else could challenge them.", equipmentRewards: [], ichorReward: 7000, id: "ashen_knight", maxHp: 4e18, name: "Ashen Knight", siringRequirement: 3, soulShardsReward: 0, status: "locked", upgradeRewards: [ "siring_mastery_2" ], zoneId: "vampire_ashen_wastes", }, { bloodReward: 7.5e18, bountyIchor: 1_000_000_000, bountyIchorClaimed: false, currentHp: 1.5e19, damagePerSecond: 1_500_000_000_000, description: "The warden of the Ashen Wastes — a vampire who chose this desolation and has maintained absolute dominance over it for longer than the current political structures of the vampire world have existed.", equipmentRewards: [ "ashen_fang" ], ichorReward: 10_000, id: "wastes_warden", maxHp: 1.5e19, name: "Wastes Warden", siringRequirement: 3, soulShardsReward: 0, status: "locked", upgradeRewards: [ "blood_mastery_4" ], zoneId: "vampire_ashen_wastes", }, // ── The Iron Gaol ───────────────────────────────────────────────────────── { bloodReward: 3.75e19, bountyIchor: 2_000_000_000, bountyIchorClaimed: false, currentHp: 7.5e19, damagePerSecond: 4_000_000_000_000, description: "The head warden of the Iron Gaol — a vampire whose entire identity has become the institution of confinement. They do not differentiate between jailor and prisoner. Both are contained, in different ways.", equipmentRewards: [ "iron_shroud" ], ichorReward: 12_000, id: "gaol_warden", maxHp: 7.5e19, name: "Gaol Warden", siringRequirement: 3, soulShardsReward: 0, status: "locked", upgradeRewards: [ "hunter_instinct_4" ], zoneId: "vampire_iron_gaol", }, { bloodReward: 1.5e20, bountyIchor: 5_000_000_000, bountyIchorClaimed: false, currentHp: 3e20, damagePerSecond: 12_000_000_000_000, description: "The jailor responsible for the Gaol's most dangerous wing. Everything about them is a key — their posture, their voice, their very presence opens and closes things that should stay closed.", equipmentRewards: [ "iron_talisman" ], ichorReward: 15_000, id: "iron_jailor", maxHp: 3e20, name: "Iron Jailor", siringRequirement: 3, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_iron_gaol", }, { bloodReward: 6e20, bountyIchor: 10_000_000_000, bountyIchorClaimed: false, currentHp: 1.2e21, damagePerSecond: 40_000_000_000_000, description: "A vampire who, upon learning they could not leave the Gaol, decided to become the chains. There is something philosophically perfect about this that the wraith does not care to examine.", equipmentRewards: [], ichorReward: 20_000, id: "chain_wraith", maxHp: 1.2e21, name: "Chain Wraith", siringRequirement: 3, soulShardsReward: 0, status: "locked", upgradeRewards: [ "thrall_bloodbound_1" ], zoneId: "vampire_iron_gaol", }, { bloodReward: 2.5e21, bountyIchor: 20_000_000_000, bountyIchorClaimed: false, currentHp: 5e21, damagePerSecond: 120_000_000_000_000, description: "The master of the Iron Gaol — a vampire who was imprisoned here, took over, and decided to stay because the Gaol is exactly as impenetrable from the inside as it is from the outside.", equipmentRewards: [ "iron_fang" ], ichorReward: 25_000, id: "gaol_master", maxHp: 5e21, name: "Gaol Master", siringRequirement: 3, soulShardsReward: 0, status: "locked", upgradeRewards: [ "vampire_synergy_3" ], zoneId: "vampire_iron_gaol", }, // ── Veilborn Hollow ─────────────────────────────────────────────────────── { bloodReward: 1.25e22, bountyIchor: 50_000_000_000, bountyIchorClaimed: false, currentHp: 2.5e22, damagePerSecond: 350_000_000_000_000, description: "A specter born in the Veil itself — not quite in the physical world, not quite in the shadow-realm, and not particularly bothered by the ambiguity. It feeds from both sides simultaneously.", equipmentRewards: [ "veil_shroud" ], ichorReward: 30_000, id: "veil_specter", maxHp: 2.5e22, name: "Veil Specter", siringRequirement: 4, soulShardsReward: 0, status: "locked", upgradeRewards: [ "predator_sense_1" ], zoneId: "vampire_veilborn_hollow", }, { bloodReward: 5e22, bountyIchor: 100_000_000_000, bountyIchorClaimed: false, currentHp: 1e23, damagePerSecond: 1_000_000_000_000_000, description: "A shade that lives in the Hollow's deepest fold of reality. From its perspective, there is only one location, and everything else is a temporary misunderstanding about where things are.", equipmentRewards: [ "veil_talisman" ], ichorReward: 40_000, id: "hollow_shade", maxHp: 1e23, name: "Hollow Shade", siringRequirement: 4, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_veilborn_hollow", }, { bloodReward: 2e23, bountyIchor: 200_000_000_000, bountyIchorClaimed: false, currentHp: 4e23, damagePerSecond: 3_500_000_000_000_000, description: "A vampire who has mastered the Veil to the point of weaponising it. Every attack arrives from the wrong direction. Every defence materialises from a direction that does not exist.", equipmentRewards: [], ichorReward: 50_000, id: "veil_weaver", maxHp: 4e23, name: "Veil Weaver", siringRequirement: 4, soulShardsReward: 0, status: "locked", upgradeRewards: [ "siring_mastery_3" ], zoneId: "vampire_veilborn_hollow", }, { bloodReward: 7.5e23, bountyIchor: 500_000_000_000, bountyIchorClaimed: false, currentHp: 1.5e24, damagePerSecond: 10_000_000_000_000_000, description: "The herald of the Veilborn — a vampire who has been to the other side of the Veil and returned carrying messages from things that did not send them. The messages were not welcoming.", equipmentRewards: [ "veil_fang" ], ichorReward: 70_000, id: "veilborn_herald", maxHp: 1.5e24, name: "Veilborn Herald", siringRequirement: 4, soulShardsReward: 0, status: "locked", upgradeRewards: [ "crimson_tide_1" ], zoneId: "vampire_veilborn_hollow", }, // ── Moonless Moor ───────────────────────────────────────────────────────── { bloodReward: 3.75e24, bountyIchor: 1_000_000_000_000, bountyIchorClaimed: false, currentHp: 7.5e24, damagePerSecond: 30_000_000_000_000_000, description: "A vampire that evolved entirely in the moonless dark — no light reflexes, no visual hunting instincts, nothing but bloodscent and the absolute certainty of the kill.", equipmentRewards: [ "moor_shroud" ], ichorReward: 90_000, id: "moor_stalker", maxHp: 7.5e24, name: "Moor Stalker", siringRequirement: 4, soulShardsReward: 0, status: "locked", upgradeRewards: [ "thrall_bloodbound_2" ], zoneId: "vampire_moonless_moor", }, { bloodReward: 1.5e25, bountyIchor: 2_000_000_000_000, bountyIchorClaimed: false, currentHp: 3e25, damagePerSecond: 1e17, description: "A revenant assembled from the fog itself over centuries — not a single vampire but the moor's accumulated dead, compressed into something that can move with a purpose the individuals never had.", equipmentRewards: [ "moor_talisman" ], ichorReward: 120_000, id: "fog_revenant", maxHp: 3e25, name: "Fog Revenant", siringRequirement: 4, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_moonless_moor", }, { bloodReward: 6e25, bountyIchor: 5_000_000_000_000, bountyIchorClaimed: false, currentHp: 1.2e26, damagePerSecond: 3.5e17, description: "A creature that should not exist according to any classification anyone has attempted to apply. The moor created it from materials that were not intended to be combined, and it is deeply uninterested in any classification it does not fit.", equipmentRewards: [], ichorReward: 150_000, id: "moor_beast", maxHp: 1.2e26, name: "Moor Beast", siringRequirement: 4, soulShardsReward: 0, status: "locked", upgradeRewards: [ "vampire_synergy_4" ], zoneId: "vampire_moonless_moor", }, { bloodReward: 2.5e26, bountyIchor: 1e13, bountyIchorClaimed: false, currentHp: 5e26, damagePerSecond: 1e18, description: "The warden of the Moonless Moor — a vampire who chose this darkness because it was the only place dark enough. It has spent generations learning everything the dark knows, and the dark knows quite a lot.", equipmentRewards: [ "moonless_fang" ], ichorReward: 200_000, id: "moonless_warden", maxHp: 5e26, name: "Moonless Warden", siringRequirement: 4, soulShardsReward: 0, status: "locked", upgradeRewards: [ "crimson_tide_2" ], zoneId: "vampire_moonless_moor", }, // ── The Sunken Crypt ────────────────────────────────────────────────────── { bloodReward: 1.25e27, bountyIchor: 2e13, bountyIchorClaimed: false, currentHp: 2.5e27, damagePerSecond: 3.5e18, description: "A vampire shade formed in the deepest submerged chamber — it has never been dry. The water has become part of it, and it has become part of the water, and the whole arrangement is deeply hostile.", equipmentRewards: [ "sunken_shroud" ], ichorReward: 250_000, id: "drowned_shade", maxHp: 2.5e27, name: "Drowned Shade", siringRequirement: 5, soulShardsReward: 0, status: "locked", upgradeRewards: [ "predator_sense_2" ], zoneId: "vampire_sunken_crypt", }, { bloodReward: 5e27, bountyIchor: 5e13, bountyIchorClaimed: false, currentHp: 1e28, damagePerSecond: 1e19, description: "A vampire who descends regularly to the crypt's deepest sealed chambers and comes back changed each time. Not more damaged — more certain. The certainty is alarming.", equipmentRewards: [ "sunken_talisman" ], ichorReward: 300_000, id: "crypt_diver", maxHp: 1e28, name: "Crypt Diver", siringRequirement: 5, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_sunken_crypt", }, { bloodReward: 2e28, bountyIchor: 1e14, bountyIchorClaimed: false, currentHp: 4e28, damagePerSecond: 3.5e19, description: "The guardian of the crypt's deepest gate — a vampire who was sealed in to ensure nothing came out and, over the following centuries, became something nothing should want to come in for.", equipmentRewards: [], ichorReward: 400_000, id: "sunken_warden", maxHp: 4e28, name: "Sunken Warden", siringRequirement: 5, soulShardsReward: 0, status: "locked", upgradeRewards: [ "siring_mastery_4" ], zoneId: "vampire_sunken_crypt", }, { bloodReward: 7.5e28, bountyIchor: 2e14, bountyIchorClaimed: false, currentHp: 1.5e29, damagePerSecond: 1e20, description: "Something in the lowest chamber of the Sunken Crypt that has been there since before the crypt was built. It is ancient in a way that does not have comfortable vocabulary. It has decided to be called the Crypt Ancient, which is accommodating of it.", equipmentRewards: [ "sunken_fang" ], ichorReward: 500_000, id: "crypt_ancient", maxHp: 1.5e29, name: "Crypt Ancient", siringRequirement: 5, soulShardsReward: 0, status: "locked", upgradeRewards: [ "thrall_wraith_1" ], zoneId: "vampire_sunken_crypt", }, // ── Desecrated Sanctum ──────────────────────────────────────────────────── { bloodReward: 3.75e29, bountyIchor: 5e14, bountyIchorClaimed: false, currentHp: 7.5e29, damagePerSecond: 3.5e20, description: "A vampire who participated in the Sanctum's desecration and has stayed to enjoy the results. The sacred architecture distorted around them in ways that enhance rather than diminish their power.", equipmentRewards: [ "sanctum_shroud" ], ichorReward: 600_000, id: "defiler_shade", maxHp: 7.5e29, name: "Defiler Shade", siringRequirement: 5, soulShardsReward: 0, status: "locked", upgradeRewards: [ "dark_covenant_1" ], zoneId: "vampire_desecrated_sanctum", }, { bloodReward: 1.5e30, bountyIchor: 1e15, bountyIchorClaimed: false, currentHp: 3e30, damagePerSecond: 1e21, description: "A wraith that formed in the Sanctum after the desecration — made from the residual sacred energy that had nowhere to go and nothing to do but evolve.", equipmentRewards: [ "sanctum_talisman" ], ichorReward: 750_000, id: "sanctum_wraith", maxHp: 3e30, name: "Sanctum Wraith", siringRequirement: 5, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_desecrated_sanctum", }, { bloodReward: 6e30, bountyIchor: 2e15, bountyIchorClaimed: false, currentHp: 1.2e31, damagePerSecond: 3.5e21, description: "The individual who performed the actual desecration — who systematically stripped the Sanctum of its sacred purpose. They did not do it out of malice. They did it because they needed the space.", equipmentRewards: [], ichorReward: 1_000_000, id: "desecrator", maxHp: 1.2e31, name: "The Desecrator", siringRequirement: 5, soulShardsReward: 0, status: "locked", upgradeRewards: [ "vampire_synergy_5" ], zoneId: "vampire_desecrated_sanctum", }, { bloodReward: 2.5e31, bountyIchor: 5e15, bountyIchorClaimed: false, currentHp: 5e31, damagePerSecond: 1e22, description: "The sovereign of the Desecrated Sanctum — the vampire who decided what the Sanctum should become, and has spent centuries ensuring it became exactly that. Whatever that is, it is not something the original builders would recognise.", equipmentRewards: [ "sanctum_fang" ], ichorReward: 1_500_000, id: "sanctum_sovereign", maxHp: 5e31, name: "Sanctum Sovereign", siringRequirement: 5, soulShardsReward: 0, status: "locked", upgradeRewards: [ "crimson_tide_3" ], zoneId: "vampire_desecrated_sanctum", }, // ── Carrion Peaks ───────────────────────────────────────────────────────── { bloodReward: 1.25e32, bountyIchor: 1e16, bountyIchorClaimed: false, currentHp: 2.5e32, damagePerSecond: 3.5e22, description: "A vampire who hunts the Peaks with a patience measured in decades. It selects its prey from a distance — sometimes a very large distance — and it has never been wrong about the outcome.", equipmentRewards: [ "carrion_shroud" ], ichorReward: 2_000_000, id: "carrion_stalker", maxHp: 2.5e32, name: "Carrion Stalker", siringRequirement: 6, soulShardsReward: 0, status: "locked", upgradeRewards: [ "thrall_wraith_2" ], zoneId: "vampire_carrion_peaks", }, { bloodReward: 5e32, bountyIchor: 2e16, bountyIchorClaimed: false, currentHp: 1e33, damagePerSecond: 1e23, description: "A revenant that has roamed the Peaks since the peaks were formed. It has watched every civilization that has built things in the lowlands, and it has outlasted all of them. This neither pleases nor displeases it.", equipmentRewards: [ "carrion_talisman" ], ichorReward: 2_500_000, id: "peak_revenant", maxHp: 1e33, name: "Peak Revenant", siringRequirement: 6, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_carrion_peaks", }, { bloodReward: 2e33, bountyIchor: 5e16, bountyIchorClaimed: false, currentHp: 4e33, damagePerSecond: 3.5e23, description: "A vampire who evolved wings at some point in the distant past — whether through mutation, blood magic, or sheer persistent need. The wings are not decorative. They are weapons and instruments of the hunt.", equipmentRewards: [], ichorReward: 3_000_000, id: "blood_eagle", maxHp: 4e33, name: "Blood Eagle", siringRequirement: 6, soulShardsReward: 0, status: "locked", upgradeRewards: [ "predator_sense_3" ], zoneId: "vampire_carrion_peaks", }, { bloodReward: 7.5e33, bountyIchor: 1e17, bountyIchorClaimed: false, currentHp: 1.5e34, damagePerSecond: 1e24, description: "The lord of the Carrion Peaks — a vampire whose domain is everything from the treeline upward, including airspace, and who enforces this boundary with a thoroughness that has made the Peaks one of the most effectively self-defending zones in the vampire realm.", equipmentRewards: [ "carrion_fang" ], ichorReward: 4_000_000, id: "carrion_lord", maxHp: 1.5e34, name: "Carrion Lord", siringRequirement: 6, soulShardsReward: 0, status: "locked", upgradeRewards: [ "dark_covenant_2" ], zoneId: "vampire_carrion_peaks", }, // ── The Bloodspire ──────────────────────────────────────────────────────── { bloodReward: 3.75e34, bountyIchor: 2e17, bountyIchorClaimed: false, currentHp: 7.5e34, damagePerSecond: 3.5e24, description: "The sentinel posted at the Spire's outermost entrance — a vampire who has adapted to the building's non-Euclidean logic and can navigate its impossible corridors instinctively.", equipmentRewards: [ "spire_shroud" ], ichorReward: 5_000_000, id: "spire_sentinel", maxHp: 7.5e34, name: "Spire Sentinel", siringRequirement: 6, soulShardsReward: 0, status: "locked", upgradeRewards: [ "eternal_thirst_1" ], zoneId: "vampire_bloodspire", }, { bloodReward: 1.5e35, bountyIchor: 5e17, bountyIchorClaimed: false, currentHp: 3e35, damagePerSecond: 1e25, description: "The mind behind the Bloodspire's impossible architecture — a vampire who builds in blood and logic simultaneously, producing structures that follow rules they invented and do not share.", equipmentRewards: [ "spire_talisman" ], ichorReward: 6_000_000, id: "blood_architect", maxHp: 3e35, name: "Blood Architect", siringRequirement: 6, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_bloodspire", }, { bloodReward: 6e35, bountyIchor: 1e18, bountyIchorClaimed: false, currentHp: 1.2e36, damagePerSecond: 3.5e25, description: "The champion of the Bloodspire — a vampire who has internalized the Spire's impossible logic and weaponised it. Fighting them feels like arguing with the building.", equipmentRewards: [], ichorReward: 7_500_000, id: "spire_champion", maxHp: 1.2e36, name: "Spire Champion", siringRequirement: 6, soulShardsReward: 0, status: "locked", upgradeRewards: [ "thrall_ancient_1" ], zoneId: "vampire_bloodspire", }, { bloodReward: 2.5e36, bountyIchor: 2e18, bountyIchorClaimed: false, currentHp: 5e36, damagePerSecond: 1e26, description: "The tyrant of the Bloodspire — a vampire who not only built this impossible place but has become its governing principle. The Spire is the Tyrant. The Tyrant is the Spire. One without the other would collapse.", equipmentRewards: [ "spire_fang" ], ichorReward: 10_000_000, id: "bloodspire_tyrant", maxHp: 5e36, name: "Bloodspire Tyrant", siringRequirement: 6, soulShardsReward: 0, status: "locked", upgradeRewards: [ "bloodline_power_1" ], zoneId: "vampire_bloodspire", }, // ── Shroud of Eternity ──────────────────────────────────────────────────── { bloodReward: 1.25e37, bountyIchor: 5e18, bountyIchorClaimed: false, currentHp: 2.5e37, damagePerSecond: 3.5e26, description: "A phantom that exists in the Shroud's temporal distortions — experiencing its own existence in a non-linear sequence, which has given it combat instincts that arrive before the decision to use them.", equipmentRewards: [ "eternity_shroud" ], ichorReward: 12_000_000, id: "shroud_phantom", maxHp: 2.5e37, name: "Shroud Phantom", siringRequirement: 7, soulShardsReward: 0, status: "locked", upgradeRewards: [ "apex_predator_1" ], zoneId: "vampire_shroud_of_eternity", }, { bloodReward: 5e37, bountyIchor: 1e19, bountyIchorClaimed: false, currentHp: 1e38, damagePerSecond: 1e27, description: "A shade born in the Shroud — it has experienced all possible versions of this fight and has arranged to be in the one where it wins. Its confidence is not arrogance. It is mathematics.", equipmentRewards: [ "eternity_talisman" ], ichorReward: 15_000_000, id: "eternity_shade", maxHp: 1e38, name: "Eternity Shade", siringRequirement: 7, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_shroud_of_eternity", }, { bloodReward: 2e38, bountyIchor: 2e19, bountyIchorClaimed: false, currentHp: 4e38, damagePerSecond: 3.5e27, description: "The warden of the Shroud — a vampire responsible for maintaining the temporal distortions that give this region its character. Maintaining distortions at this scale has had predictable effects on the warden's own relationship with time.", equipmentRewards: [], ichorReward: 20_000_000, id: "shroud_warden", maxHp: 4e38, name: "Shroud Warden", siringRequirement: 7, soulShardsReward: 0, status: "locked", upgradeRewards: [ "dark_covenant_3" ], zoneId: "vampire_shroud_of_eternity", }, { bloodReward: 7.5e38, bountyIchor: 5e19, bountyIchorClaimed: false, currentHp: 1.5e39, damagePerSecond: 1e28, description: "The sovereign of the Shroud — a vampire who has been here so long they have outlasted their own concept of how long they have been here. They are not immortal. They simply have not found an ending that fits yet.", equipmentRewards: [ "shroud_fang" ], ichorReward: 25_000_000, id: "eternal_sovereign", maxHp: 1.5e39, name: "Eternal Sovereign", siringRequirement: 7, soulShardsReward: 0, status: "locked", upgradeRewards: [ "eternal_thirst_2" ], zoneId: "vampire_shroud_of_eternity", }, // ── The Abyssal Vault ───────────────────────────────────────────────────── { bloodReward: 3.75e39, bountyIchor: 1e20, bountyIchorClaimed: false, currentHp: 7.5e39, damagePerSecond: 3.5e28, description: "The outermost guardian of the Abyssal Vault — a vampire who chose to stand here because the Vault was the one place something truly important was being protected. What the something is, the guardian will not say.", equipmentRewards: [ "abyss_shroud" ], ichorReward: 30_000_000, id: "vault_guardian", maxHp: 7.5e39, name: "Vault Guardian", siringRequirement: 7, soulShardsReward: 0, status: "locked", upgradeRewards: [ "thrall_ancient_2" ], zoneId: "vampire_abyssal_vault", }, { bloodReward: 1.5e40, bountyIchor: 2e20, bountyIchorClaimed: false, currentHp: 3e40, damagePerSecond: 1e29, description: "A revenant that formed in the Vault's deepest chamber — made from the residue of things that were sealed away and have slowly dissolved into their component existences. It is, technically, several things at once.", equipmentRewards: [ "abyss_talisman" ], ichorReward: 40_000_000, id: "abyss_revenant", maxHp: 3e40, name: "Abyss Revenant", siringRequirement: 7, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_abyssal_vault", }, { bloodReward: 6e40, bountyIchor: 5e20, bountyIchorClaimed: false, currentHp: 1.2e41, damagePerSecond: 3.5e29, description: "The keeper of the Vault's inventory — a vampire who knows exactly what is stored here, in what order, and the precise consequences of each item being released. It has no intention of releasing any of them. It has a very strong intention of not being defeated.", equipmentRewards: [], ichorReward: 50_000_000, id: "vault_keeper", maxHp: 1.2e41, name: "Vault Keeper", siringRequirement: 7, soulShardsReward: 0, status: "locked", upgradeRewards: [ "blood_ascension_1" ], zoneId: "vampire_abyssal_vault", }, { bloodReward: 2.5e41, bountyIchor: 1e21, bountyIchorClaimed: false, currentHp: 5e41, damagePerSecond: 1e30, description: "The absolute warden of the Abyssal Vault — a vampire who has made themselves into the Vault, in the same way the Bloodspire Tyrant became the Spire. The difference is the Vault contains things that should not exist. The warden has adapted to their vicinity.", equipmentRewards: [ "abyss_fang" ], ichorReward: 75_000_000, id: "abyssal_warden", maxHp: 5e41, name: "Abyssal Warden", siringRequirement: 7, soulShardsReward: 0, status: "locked", upgradeRewards: [ "eternal_thirst_3" ], zoneId: "vampire_abyssal_vault", }, // ── Court of Whispers ───────────────────────────────────────────────────── { bloodReward: 1.25e42, bountyIchor: 2e21, bountyIchorClaimed: false, currentHp: 2.5e42, damagePerSecond: 3.5e30, description: "A shade that operates as the Court's most deniable asset — it exists only in the peripheral vision of those it observes, and attacks only when it has achieved perfect certainty of the outcome.", equipmentRewards: [ "whisper_shroud" ], ichorReward: 100_000_000, id: "whisper_shade", maxHp: 2.5e42, name: "Whisper Shade", siringRequirement: 8, soulShardsReward: 0, status: "locked", upgradeRewards: [ "bloodline_power_2" ], zoneId: "vampire_court_of_whispers", }, { bloodReward: 5e42, bountyIchor: 5e21, bountyIchorClaimed: false, currentHp: 1e43, damagePerSecond: 1e31, description: "A phantom that haunts the Court's most sensitive corridors, absorbing and retaining every secret spoken within a three-room radius. It is an archive that can fight back, which makes it significantly more dangerous than an archive.", equipmentRewards: [ "whisper_talisman" ], ichorReward: 125_000_000, id: "court_phantom", maxHp: 1e43, name: "Court Phantom", siringRequirement: 8, soulShardsReward: 0, status: "locked", upgradeRewards: [], zoneId: "vampire_court_of_whispers", }, { bloodReward: 2e43, bountyIchor: 1e22, bountyIchorClaimed: false, currentHp: 4e43, damagePerSecond: 3.5e31, description: "A noble of the Court of Whispers who has survived through a combination of intelligence, perfect information, and the willingness to act on that information before anyone else has finished considering whether acting is appropriate.", equipmentRewards: [], ichorReward: 150_000_000, id: "whisper_noble", maxHp: 4e43, name: "Whisper Noble", siringRequirement: 8, soulShardsReward: 0, status: "locked", upgradeRewards: [ "apex_predator_2" ], zoneId: "vampire_court_of_whispers", }, { bloodReward: 7.5e43, bountyIchor: 2e22, bountyIchorClaimed: false, currentHp: 1.5e44, damagePerSecond: 1e32, description: "The sovereign of the Court of Whispers — a vampire who is known only by their title, whose face has never been seen by any living observer, and who has been running the Court since before the current intelligence network was established. Possibly before the concept of intelligence was established.", equipmentRewards: [ "eternal_fang" ], ichorReward: 200_000_000, id: "court_sovereign", maxHp: 1.5e44, name: "Court Sovereign", siringRequirement: 8, soulShardsReward: 0, status: "locked", upgradeRewards: [ "blood_sovereignty_1" ], zoneId: "vampire_court_of_whispers", }, // ── The Eternal Abyss ───────────────────────────────────────────────────── { bloodReward: 3.75e44, bountyIchor: 5e22, bountyIchorClaimed: false, currentHp: 7.5e44, damagePerSecond: 3.5e32, description: "The Abyss's herald — a vampire or something that used to be a vampire that has been carrying messages from the Abyss's depths for long enough that it is no longer clear which entity is the messenger and which is the message.", equipmentRewards: [ "eternal_shroud" ], ichorReward: 250_000_000, id: "abyss_herald", maxHp: 7.5e44, name: "Abyss Herald", siringRequirement: 9, soulShardsReward: 0, status: "locked", upgradeRewards: [ "bloodline_power_3" ], zoneId: "vampire_eternal_abyss", }, { bloodReward: 1.5e45, bountyIchor: 1e23, bountyIchorClaimed: false, currentHp: 3e45, damagePerSecond: 1e33, description: "Something that predates vampires, predates the concept of vampires, and has been in the Abyss waiting for something worth engaging with. The wait appears to be over.", equipmentRewards: [], ichorReward: 300_000_000, id: "void_ancient", maxHp: 3e45, name: "Void Ancient", siringRequirement: 9, soulShardsReward: 1, status: "locked", upgradeRewards: [ "blood_sovereignty_2" ], zoneId: "vampire_eternal_abyss", }, { bloodReward: 6e45, bountyIchor: 2e23, bountyIchorClaimed: false, currentHp: 1.2e46, damagePerSecond: 3.5e33, description: "A revenant of the Eternal Abyss — which means something quite different here than it does in ordinary zones. This revenant died at the edge of the Abyss and came back as something the Abyss considers normal.", equipmentRewards: [], ichorReward: 400_000_000, id: "eternal_revenant", maxHp: 1.2e46, name: "Eternal Revenant", siringRequirement: 9, soulShardsReward: 3, status: "locked", upgradeRewards: [ "apex_predator_3" ], zoneId: "vampire_eternal_abyss", }, { bloodReward: 2.5e46, bountyIchor: 5e23, bountyIchorClaimed: false, currentHp: 5e46, damagePerSecond: 1e34, description: "The Eternal Darkness is not a vampire. It is not a creature. It is what the Abyss decided to become when it grew tired of waiting for something worthy of its full attention. The full attention is, by most accounts, worse than the waiting.", equipmentRewards: [], ichorReward: 500_000_000, id: "eternal_darkness", maxHp: 5e46, name: "The Eternal Darkness", siringRequirement: 9, soulShardsReward: 5, status: "locked", upgradeRewards: [ "blood_sovereignty_3", "blood_ascension_2", "bloodline_power_4" ], zoneId: "vampire_eternal_abyss", }, ];