UNPKG

@zerospacegg/iolin

Version:

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

21 lines 788 B
/** * Valkaru Merc Outpost - Fortified military installation for pro-war mercenary operations * Primary base that creates all Valkaru units and twin heroes through advanced war technology */ import { ValkaruMercOutpost } from "../../valkaru-classes.js"; import type { Tier, HotKey } from "../../../../engine/core.js"; declare class ValkaruMercOutpostBuilding extends ValkaruMercOutpost { 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 ValkaruMercOutpostBuilding; //# sourceMappingURL=valkaru-merc-outpost.d.ts.map