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.revive = new ChakruTalent({ uuid: "56aa47b8-720b-4523-96e8-d1c307c3efe7", name: "Revive", level: 2, description: "Units revive with 50% health when killed", }); this.talents.lifesteal = new ChakruTalent({ uuid: "2723225b-2489-4c01-8e71-a237071f68eb", name: "Lifesteal", level: 4, description: "Units heal for 25% of damage dealt", }); this.talents.chakruBuff = new ChakruTalent({ name: "Cha'Kru Buff", level: 6, 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: "Sacrifice units to Pachamama for earth power", }); this.topbars.sacrificeToIllapu = new ChakruTopbar({ name: "Sacrifice to Illapu", description: "Sacrifice units to Illapu for water power", }); this.units = [ "mercenary/chakru/unit/chakru-clakjaw", "mercenary/chakru/unit/chakru-cultist", "mercenary/chakru/unit/chakru-ghost-crab", "mercenary/chakru/unit/chakru-hatun", "mercenary/chakru/unit/chakru-rageborn", "mercenary/chakru/unit/chakru-warrior", ]; this.buildings = [ "mercenary/chakru/building/chakru-temple-of-earth", "mercenary/chakru/building/chakru-temple-of-water", ]; this.heroes = ["mercenary/chakru/hero/loi-kru"]; } } export default Chakru;