UNPKG

@zerospacegg/iolin

Version:

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

19 lines 662 B
/** * Factory - Protectorate vehicle production facility * Tier 2 production building that manufactures combat vehicles and mechs */ import { ProtectorateProductionBuilding } from "../../protectorate-classes.js"; import type { Tier } from "../../../../engine/core.js"; export declare class Factory extends ProtectorateProductionBuilding { uuid: string; static src: string; readonly name: string; readonly tier: Tier; readonly unlocksMercTier: Tier | undefined; readonly hexiteCost: number; readonly fluxCost: number; readonly buildTime: number; constructor(); } export default Factory; //# sourceMappingURL=factory.d.ts.map