@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
25 lines • 1.19 kB
JavaScript
/**
* Man-Eater - Vynthra Commander Unit
* Clean inheritance from faction Man-Eater with all properties and abilities
*/
import ManEater from "../../../../faction/grell/unit/man-eater.js";
export class CoopManEater extends ManEater {
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-medium-incubator", // Building requirement (from parent)
this.commanderLevelId(1), // Commander level 1 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"];
}
}
CoopManEater.src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-man-eater.ts";
export default CoopManEater;
//# sourceMappingURL=coop-vynthra-man-eater.js.map