@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
41 lines • 1.9 kB
JavaScript
"use strict";
/**
* Special Augmentation Pool - Grell T3.5 tech building
* Elite bio-enhancement facility that inherits from base tech building
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.SpecialAugmentationPool = void 0;
const grell_classes_js_1 = require("../../grell-classes.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 large_incubator_js_1 = __importDefault(require("./large-incubator.cjs"));
class SpecialAugmentationPool extends grell_classes_js_1.GrellTechBuilding {
constructor() {
super();
this.name = "Special Augmentation Pool";
this.tier = "T3.5";
this.hotkey = "C";
this.hexiteCost = 100;
this.fluxCost = 75;
this.buildTime = 40;
this.uuid = "22d03f08-e363-4f1f-82e1-0f4e8546f857";
this.shortName = "Spc. Aug Pool";
this.hp = 1000;
// Unlocks units
this.unlocks = [weaver_js_1.default.id, reaver_js_1.default.id];
this.createdBy = [seedling_js_1.default.id];
this.unlockedBy = [large_incubator_js_1.default.id];
// Provides upgrades for units
this.providesUpgradesFor = [reaver_js_1.default.id, weaver_js_1.default.id];
// All other stats (armor, biomass, etc.) inherited from base GrellTechBuilding class
}
}
exports.SpecialAugmentationPool = SpecialAugmentationPool;
// Static property for source path
SpecialAugmentationPool.src = "src/zerospace/faction/grell/building/special-augmentation-pool.ts";
exports.default = SpecialAugmentationPool;
//# sourceMappingURL=special-augmentation-pool.js.map