ZeroSpace.gg

Cha'Kru Kingdom

Mercenary Faction

import { ChakruFaction, ChakruTalent, ChakruTopbar } from "../../defaults/chakru.js"; export class Chakru extends ChakruFaction { override uuid: string; static override src = "src/zerospace/mercenary/chakru.ts"; constructor() { super(); this.name = "Cha'Kru Kingdom"; this.uuid = "92e6d4b9-621c-4859-a86a-4249e4dc6531"; this.description = "The Cha'Kru are fierce devotees of the Leviathan, a powerful god of the depths whose strength flows through their blood magic and biotechnology. Drawing from earth and water, they wield the forces of rain and earthquakes to control the battlefield. Their ranks consist of spiritual humans and colossal crabs, each embodying their fusion of blood magic and science. With powers that devastate enemy lines and fortify their own, the Cha'Kru bring an ancient and relentless power to every conflict."; this.talents.immortalLineage = new ChakruTalent({ uuid: "56aa47b8-720b-4523-96e8-d1c307c3efe7", name: "Immortal Lineage", level: 2, position: "B", description: "Units revive with 50% health when killed. Does not revive Ghost Crabs.", }); this.talents.bloodForBlood = new ChakruTalent({ uuid: "2723225b-2489-4c01-8e71-a237071f68eb", name: "Blood for Blood", level: 4, position: "B", description: "+1 armor. \n+30% Lifesteal.", }); this.talents.childrenOfTheLeviathan = new ChakruTalent({ name: "Children of the Leviathan", level: 6, position: "B", description: "+25% damage & healing for the Cha'Kru topbar ability. \n+25% damage for Cha'Kru units.", }); this.topbars.sacrificeToPachamama = new ChakruTopbar({ name: "Sacrifice to Pachamama", description: "Create an earthquake around a target unit.\nEnemy units nearby are slowed and take damage.\nGrants the targeted unit 400 shields.\nAfter 100 seconds the targeted unit dies.", unlockedBy: ["mercenary/chakru/building/chakru-temple-of-anqas"], energyCost: 12, cooldown: 120, }); this.units = [ "mercenary/chakru/unit/chakru-clakjaw", "mercenary/chakru/unit/chakru-pako", "mercenary/chakru/unit/chakru-ghost-crab", "mercenary/chakru/unit/chakru-hatun", "mercenary/chakru/unit/chakru-saqchi", "mercenary/chakru/unit/chakru-chaski", ]; this.buildings = [ "mercenary/chakru/building/chakru-temple-of-anqas", "mercenary/chakru/building/chakru-temple-of-stars", ]; this.heroes = ["mercenary/chakru/hero/loikru"]; } } export default Chakru;