ZSGG Public Library
Cha'Kru Temple of Earth
Chakru T1 Special Building
import { ChakruTemple } from "../../../../defaults/chakru.js";
class ChakruTempleOfEarth extends ChakruTemple {
override uuid: string;
static override src = "src/zerospace/mercenary/chakru/building/chakru-temple-of-earth.ts";
constructor() {
super();
this.name = "Cha'Kru Temple of Earth";
this.tier = "T1";
this.hotkey = "T";
this.maxOwned = 1;
this.uuid = "91dd406e-b850-4e8a-8c3a-da6eee500f37";
this.shortName = "Temple of Earth";
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-warrior",
"mercenary/chakru/unit/chakru-rageborn",
];
this.unlocks = [...this.creates];
}
}
export default ChakruTempleOfEarth;