@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
50 lines • 2.39 kB
JavaScript
"use strict";
/**
* Medium Incubator - Grell T2 production building
* Advanced production facility that inherits from base production building
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.MediumIncubator = void 0;
const grell_classes_js_1 = require("../../grell-classes.cjs");
const harbinger_js_1 = __importDefault(require("../unit/harbinger.cjs"));
const man_eater_js_1 = __importDefault(require("../unit/man-eater.cjs"));
const seedling_js_1 = __importDefault(require("../unit/seedling.cjs"));
const thresher_js_1 = __importDefault(require("../unit/thresher.cjs"));
const advanced_augmentation_pool_js_1 = __importDefault(require("./advanced-augmentation-pool.cjs"));
const incubator_js_1 = __importDefault(require("./incubator.cjs"));
const large_incubator_js_1 = __importDefault(require("./large-incubator.cjs"));
class MediumIncubator extends grell_classes_js_1.GrellProductionBuilding {
constructor() {
super();
this.name = "Medium Incubator";
this.tier = "T2";
this.hotkey = "F";
this.hexiteCost = 125;
this.fluxCost = 50;
this.buildTime = 40;
this.buildCount = 1;
this.uuid = "abb4b3c7-4be7-4be5-b72c-46abefd8411c";
// Medium Incubator stats from PKL truth
this.hp = 1200;
this.armor = 1;
this.speed = 0;
this.shortName = "Md. Incubator";
// Creates units
this.creates = [harbinger_js_1.default.id, man_eater_js_1.default.id, thresher_js_1.default.id];
this.createdBy = [seedling_js_1.default.id];
this.unlockedBy = [incubator_js_1.default.id];
// Unlocks units and buildings
this.unlocks = [harbinger_js_1.default.id, man_eater_js_1.default.id, large_incubator_js_1.default.id, advanced_augmentation_pool_js_1.default.id];
// Unlocks mercenary tier
this.unlocksMercTier = "T2";
// All other stats (hp, costs, biomass, etc.) inherited from base GrellProductionBuilding class
}
}
exports.MediumIncubator = MediumIncubator;
// Static property for source path
MediumIncubator.src = "src/zerospace/faction/grell/building/medium-incubator.ts";
exports.default = MediumIncubator;
//# sourceMappingURL=medium-incubator.js.map