UNPKG

@zerospacegg/iolin

Version:

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

23 lines 997 B
/** * Grell Extractor - Vynthra Commander Building * Clean inheritance from faction Grell Extractor with all properties and abilities */ import GrellExtractor from "../../../../faction/grell/building/grell-extractor.js"; import CoopRootColony from "./coop-vynthra-root-colony.js"; export class CoopGrellExtractor extends GrellExtractor { constructor() { super(); // Generate composite UUID: {parent-uuid}:coop-vynthra this.setVariantUUID("coop-vynthra"); // Dual unlock system: Building + Commander Level this.unlockedBy = [ CoopRootColony.id, // Building requirement this.commanderLevelId(1), // Commander level 1 requirement ]; // Built by coop root colony this.createdBy = [CoopRootColony.id]; } } CoopGrellExtractor.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-grell-extractor.ts"; export default CoopGrellExtractor; //# sourceMappingURL=coop-vynthra-grell-extractor.js.map