UNPKG

@zerospacegg/iolin

Version:

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

24 lines 895 B
/** * Airstrip - Advanced aviation facility that enables aerial support capabilities * Special building for air support operations and commander airstrike coordination */ import { ProtectorateUltimateBuilding } from "../../../../defaults/protectorate.js"; export class Airstrip extends ProtectorateUltimateBuilding { constructor() { super(); this.hexiteCost = 100; this.buildTime = 15; this.name = "Airstrip"; this.tier = "T4"; this.uuid = "20b0c56f-df66-4e5f-97f0-133e111b1255"; this.hp = 1000; this.armor = 0; // Building relationships this.createdBy = ["faction/protectorate/unit/prot-build-drone"]; this.unlocks = []; } } // Static property for source path Airstrip.src = "src/zerospace/faction/protectorate/building/airstrip.ts"; export default Airstrip; //# sourceMappingURL=airstrip.js.map