@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
46 lines • 1.83 kB
JavaScript
"use strict";
/**
* Advanced Factory - Protectorate's pinnacle production facility
* Tier 3 production building for the most sophisticated combat units
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.AdvancedFactory = void 0;
const protectorate_js_1 = require("../../../../defaults/protectorate.cjs");
class AdvancedFactory extends protectorate_js_1.ProtectorateProductionBuilding {
constructor() {
super();
this.shortName = "Adv Factory";
this.hexiteCost = 125;
this.fluxCost = 100;
this.buildTime = 50;
this.name = "Advanced Factory";
this.tier = "T3";
this.unlocksMercTier = "T3";
this.uuid = "b9dabb9e-5b8e-4318-84b7-1b8de42520e4";
this.hp = 1400;
this.shields = 0;
this.armor = 1;
this.armorType = "heavy";
// Production capabilities
this.creates = [
"faction/protectorate/unit/cyclops",
"faction/protectorate/unit/juggernaut",
"faction/protectorate/strider",
"faction/protectorate/unit/griffin",
];
// Requirements
this.createdBy = ["faction/protectorate/unit/prot-build-drone"];
this.unlockedBy = ["faction/protectorate/building/factory", "faction/protectorate/building/starport"];
this.unlocks = [
"faction/protectorate/unit/cyclops",
"faction/protectorate/unit/juggernaut",
"faction/protectorate/strider",
"faction/protectorate/building/specialized-research-lab",
];
}
}
exports.AdvancedFactory = AdvancedFactory;
// Static property for source path
AdvancedFactory.src = "src/zerospace/faction/protectorate/building/advanced-factory.ts";
exports.default = AdvancedFactory;
//# sourceMappingURL=advanced-factory.js.map