UNPKG

@zerospacegg/iolin

Version:

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

21 lines 726 B
/** * Dread Merc Outpost - Mercenary outpost building for Dread Raiders * Produces all four Dread Raiders units: Raider, Rover, Sniper, and Flamer */ import { DreadRaidersOutpost } from "../../dread-classes.js"; import type { Tier, HotKey } from "../../../../engine/core.js"; declare class DreadMercOutpost extends DreadRaidersOutpost { 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 maxAddOns: number; constructor(); } export default DreadMercOutpost; //# sourceMappingURL=dread-merc-outpost.d.ts.map