@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
49 lines • 2.24 kB
JavaScript
"use strict";
/**
* Large Incubator - Grell T3 production building
* Massive 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.LargeIncubator = void 0;
const grell_classes_js_1 = require("../../grell-classes.cjs");
const behemoth_js_1 = __importDefault(require("../unit/behemoth.cjs"));
const reaver_js_1 = __importDefault(require("../unit/reaver.cjs"));
const seedling_js_1 = __importDefault(require("../unit/seedling.cjs"));
const weaver_js_1 = __importDefault(require("../unit/weaver.cjs"));
const medium_incubator_js_1 = __importDefault(require("./medium-incubator.cjs"));
const special_augmentation_pool_js_1 = __importDefault(require("./special-augmentation-pool.cjs"));
class LargeIncubator extends grell_classes_js_1.GrellProductionBuilding {
constructor() {
super();
this.name = "Large Incubator";
this.tier = "T3";
this.hotkey = "G";
this.hexiteCost = 150;
this.fluxCost = 100;
this.buildTime = 50;
this.buildCount = 1;
this.uuid = "8b2b7626-918e-490c-972c-13dc8adb2b8a";
// Large Incubator stats from PKL truth
this.hp = 1400;
this.armor = 1;
this.speed = 0;
this.shortName = "Lg. Incubator";
// Creates units
this.creates = [reaver_js_1.default.id, weaver_js_1.default.id, behemoth_js_1.default.id];
this.createdBy = [seedling_js_1.default.id];
this.unlockedBy = [medium_incubator_js_1.default.id];
// Unlocks units and buildings
this.unlocks = [behemoth_js_1.default.id, special_augmentation_pool_js_1.default.id];
// Unlocks mercenary tier
this.unlocksMercTier = "T3";
// All other stats (hp, costs, biomass, etc.) inherited from base GrellProductionBuilding class
}
}
exports.LargeIncubator = LargeIncubator;
// Static property for source path
LargeIncubator.src = "src/zerospace/faction/grell/building/large-incubator.ts";
exports.default = LargeIncubator;
//# sourceMappingURL=large-incubator.js.map