ZSGG Public Library
Cha'Kru Temple of Anqas
Chakru T1 Special Building
import { ChakruTemple } from "../../../../defaults/chakru.js";
class ChakruTempleOfAnqas extends ChakruTemple {
override uuid: string;
static override src = "src/zerospace/mercenary/chakru/building/chakru-temple-of-anqas.ts";
constructor() {
super();
this.name = "Cha'Kru Temple of Anqas";
this.tier = "T1";
this.hotkey = "T";
this.maxOwned = 1;
this.uuid = "91dd406e-b850-4e8a-8c3a-da6eee500f37";
this.shortName = "Temple of Anqas";
this.hexiteCost = 100;
this.fluxCost = 25;
this.hp = 1200;
this.shields = 0;
this.armor = 1;
this.armorType = "building";
this.speed = 0;
this.supply = 0;
this.creates = [
"mercenary/chakru/unit/chakru-cultist",
"mercenary/chakru/unit/chakru-chaski",
"mercenary/chakru/unit/chakru-rageborn",
];
// Tier-gated units are unlocked by their merc-tier unlock; the temple unlocks its topbar.
this.unlocks = ["mercenary/chakru/topbar/sacrifice-to-pachamama"];
}
}
export default ChakruTempleOfAnqas;