@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
37 lines • 2.12 kB
JavaScript
;
/**
* Special Augmentation Pool - Vynthra Commander Building
* Clean inheritance from faction Special Augmentation Pool with all properties and abilities
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.CoopSpecialAugmentationPool = void 0;
const special_augmentation_pool_js_1 = __importDefault(require("../../../../faction/grell/building/special-augmentation-pool.cjs"));
const coop_vynthra_seedling_js_1 = __importDefault(require("../unit/coop-vynthra-seedling.cjs"));
const coop_vynthra_reaver_js_1 = __importDefault(require("../unit/coop-vynthra-reaver.cjs"));
const coop_vynthra_weaver_js_1 = __importDefault(require("../unit/coop-vynthra-weaver.cjs"));
const coop_vynthra_large_incubator_js_1 = __importDefault(require("./coop-vynthra-large-incubator.cjs"));
class CoopSpecialAugmentationPool extends special_augmentation_pool_js_1.default {
constructor() {
super();
// Generate composite UUID: {parent-uuid}:coop-vynthra
this.setVariantUUID("coop-vynthra");
// Dual unlock system: Building + Commander Level
this.unlockedBy = [
coop_vynthra_large_incubator_js_1.default.id, // Building requirement
this.commanderLevelId(7), // Commander level 7 requirement
];
// Built by coop builder
this.createdBy = [coop_vynthra_seedling_js_1.default.id];
// Unlocks coop units
this.unlocks = [coop_vynthra_weaver_js_1.default.id, coop_vynthra_reaver_js_1.default.id];
// Provides upgrades for coop units
this.providesUpgradesFor = [coop_vynthra_reaver_js_1.default.id, coop_vynthra_weaver_js_1.default.id];
}
}
exports.CoopSpecialAugmentationPool = CoopSpecialAugmentationPool;
CoopSpecialAugmentationPool.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-special-augmentation-pool.ts";
exports.default = CoopSpecialAugmentationPool;
//# sourceMappingURL=coop-vynthra-special-augmentation-pool.js.map