UNPKG

@zerospacegg/iolin

Version:

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

23 lines 739 B
/** * Rocks - Neutral Building * Destructible terrain obstacles * * Environmental barriers that can be destroyed to open new paths. * These geological obstacles provide temporary cover but can be eliminated * through sustained firepower, adding tactical depth to map control. */ import { SpecialBuilding } from "../../../../engine/building.js"; import type { Tier } from "../../../../engine/core.js"; /** * Rocks - Destructible rock formations * Natural barriers that serve as destructible terrain obstacles */ declare class Rocks extends SpecialBuilding { uuid: string; static src: string; readonly name: string; readonly tier: Tier; constructor(); } export default Rocks; //# sourceMappingURL=rocks.d.ts.map