ZSGG Public Library
Cha'Kru Temple of Stars
Chakru T1 Special Building
import { ChakruTemple } from "../../../../defaults/chakru.js";
class ChakruTempleOfStars extends ChakruTemple {
override uuid: string;
static override src = "src/zerospace/mercenary/chakru/building/chakru-temple-of-stars.ts";
constructor() {
super();
this.name = "Cha'Kru Temple of Stars";
this.tier = "T1";
this.hotkey = "Y";
this.maxOwned = 1;
this.uuid = "7a7bd847-6f52-4afc-b8e7-504686fc7f77";
this.shortName = "Temple of Stars";
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-clakjaw",
"mercenary/chakru/unit/chakru-ghost-crab",
"mercenary/chakru/unit/chakru-hatun",
];
// Tier-gated units are unlocked by their merc-tier unlock; the temple unlocks its topbar.
}
}
export default ChakruTempleOfStars;