UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

32 lines 1.52 kB
"use strict"; /** * Thresher - Vynthra Commander Unit * Clean inheritance from faction Thresher 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.CoopThresher = void 0; const thresher_js_1 = __importDefault(require("../../../../faction/grell/unit/thresher.cjs")); class CoopThresher extends thresher_js_1.default { constructor() { super(); this.internalId = undefined; this.internalPath = undefined; // Generate composite UUID: {parent-uuid}:coop-vynthra this.setVariantUUID("coop-vynthra"); // Dual unlock system: Building + Commander Level this.unlockedBy = [ "coop/commander/vynthra/building/coop-vynthra-advanced-augmentation-pool", // Building requirement (from parent) this.commanderLevelId(4), // Commander level 4 requirement ]; // Coop-specific relationships (replicate parent with coop references) this.createdBy = ["coop/commander/vynthra/building/coop-vynthra-medium-incubator"]; this.upgradedBy = ["coop/commander/vynthra/building/coop-vynthra-advanced-augmentation-pool"]; } } exports.CoopThresher = CoopThresher; CoopThresher.src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-thresher.ts"; exports.default = CoopThresher; //# sourceMappingURL=coop-vynthra-thresher.js.map