UNPKG

@zerospacegg/iolin

Version:

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

21 lines 745 B
/** * 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 */ import { ChakruTemple } from "../../chakru-classes.js"; import type { Tier, HotKey } from "../../../../engine/core.js"; declare class ChakruTempleOfEarth extends ChakruTemple { uuid: string; static src: string; readonly name: string; readonly tier: Tier; readonly hotkey: HotKey; readonly hexiteCost: number; readonly fluxCost: number; readonly buildTime: number; readonly buildCount: number; readonly maxOwned: number; constructor(); } export default ChakruTempleOfEarth; //# sourceMappingURL=chakru-temple-of-earth.d.ts.map