UNPKG

@zerospacegg/iolin

Version:

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

43 lines 1.87 kB
"use strict"; /** * Mechanical Research Lab - Protectorate advanced vehicle research facility * Tier 2.5 tech building providing upgrades for mechanical units */ Object.defineProperty(exports, "__esModule", { value: true }); exports.MechanicalResearchLab = void 0; const protectorate_classes_js_1 = require("../../protectorate-classes.cjs"); const hellfire_js_1 = require("../unit/hellfire.cjs"); const ironwing_js_1 = require("../unit/ironwing.cjs"); const predator_js_1 = require("../unit/predator.cjs"); const prot_build_drone_js_1 = require("../unit/prot-build-drone.cjs"); const titan_js_1 = require("../unit/titan.cjs"); const factory_js_1 = require("./factory.cjs"); class MechanicalResearchLab extends protectorate_classes_js_1.ProtectorateTechBuilding { get shortName() { return "Mech. R. Lab"; } constructor() { super(); this.name = "Mechanical Research Lab"; this.tier = "T2.5"; this.hexiteCost = 100; this.fluxCost = 25; this.buildTime = 30; this.uuid = "47308d61-f17d-4191-85c8-95820671a372"; this.hp = 1000; this.shields = 0; this.armor = 1; this.armorType = "light"; // Requirements this.createdBy = [prot_build_drone_js_1.ProtBuildDrone.id]; this.unlockedBy = [factory_js_1.Factory.id]; this.unlocks = [titan_js_1.Titan.id]; // Provides upgrades for all factory vehicles this.providesUpgradesFor = [predator_js_1.Predator.id, ironwing_js_1.Ironwing.id, hellfire_js_1.Hellfire.id, titan_js_1.Titan.id]; } } exports.MechanicalResearchLab = MechanicalResearchLab; // Static property for source path MechanicalResearchLab.src = "src/zerospace/faction/protectorate/building/mechanical-research-lab.ts"; exports.default = MechanicalResearchLab; //# sourceMappingURL=mechanical-research-lab.js.map