UNPKG

@zerospacegg/iolin

Version:

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

22 lines 1.02 kB
import GrellExtractor from "../../../../faction/grell/building/grell-extractor.js"; /** * Grell Extractor - Vynthra Commander Building * Clean inheritance from faction Grell Extractor with all properties and abilities */ 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 = [ "coop/commander/vynthra/building/coop-vynthra-root-colony", // Building requirement this.commanderLevelId(1), // Commander level 1 requirement ]; // Built by coop root colony this.createdBy = ["coop/commander/vynthra/building/coop-vynthra-root-colony"]; } } CoopGrellExtractor.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-grell-extractor.ts"; export default CoopGrellExtractor; //# sourceMappingURL=coop-vynthra-grell-extractor.js.map