UNPKG

@zerospacegg/iolin

Version:

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

32 lines 1.26 kB
"use strict"; /** * Airstrip - Advanced aviation facility that enables aerial support capabilities * Special building for air support operations and commander airstrike coordination */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.Airstrip = void 0; const protectorate_classes_js_1 = require("../../protectorate-classes.cjs"); const prot_build_drone_js_1 = __importDefault(require("../unit/prot-build-drone.cjs")); class Airstrip extends protectorate_classes_js_1.ProtectorateUltimateBuilding { constructor() { super(); this.name = "Airstrip"; this.tier = "T4"; this.hexiteCost = 100; this.buildTime = 15; this.uuid = "20b0c56f-df66-4e5f-97f0-133e111b1255"; this.hp = 1000; this.armor = 0; // Building relationships this.createdBy = [prot_build_drone_js_1.default.id]; this.unlocks = []; } } exports.Airstrip = Airstrip; // Static property for source path Airstrip.src = "src/zerospace/faction/protectorate/building/airstrip.ts"; exports.default = Airstrip; //# sourceMappingURL=airstrip.js.map