UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

32 lines 1.27 kB
"use strict"; /** * Cha'Kru Temple of Earth - Sacred temple that channels the power of earth and stone * Creates earth-aligned warriors and enables revival through deep earth currents */ Object.defineProperty(exports, "__esModule", { value: true }); const chakru_js_1 = require("../../../../defaults/chakru.cjs"); class ChakruTempleOfEarth extends chakru_js_1.ChakruTemple { // Readonly properties (never change after creation) 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"; // Mutable properties (can be modified by upgrades) this.shortName = "Temple of Earth"; this.hp = 1200; this.shields = 0; this.armor = 1; this.armorType = "building"; this.speed = 0; this.supply = 0; // Creates earth-based units this.creates = ["chakru-cultist", "chakru-warrior", "chakru-rageborn"]; } } // Static property for source path ChakruTempleOfEarth.src = "src/zerospace/mercenary/chakru/building/chakru-temple-of-earth.ts"; exports.default = ChakruTempleOfEarth; //# sourceMappingURL=chakru-temple-of-earth.js.map