UNPKG

@zerospacegg/iolin

Version:

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

24 lines 807 B
/** * XP Tower - Neutral Building * Experience generation structure * * Strategic objectives that provide continuous experience when controlled. * These structures cannot be destroyed but can be captured and controlled * through unit presence, creating focal points for map control. */ import { SpecialBuilding } from "../../../../engine/building.js"; import type { Tier } from "../../../../engine/core.js"; /** * XP Tower - Experience generation structure * Strategic objectives that grant continuous XP at 4 XP/sec when controlled */ declare class XpTower extends SpecialBuilding { uuid: string; static src: string; readonly name: string; readonly tier: Tier; readonly untargetable: boolean; constructor(); } export default XpTower; //# sourceMappingURL=xp-tower.d.ts.map