UNPKG

@zerospacegg/iolin

Version:

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

22 lines 1.02 kB
import ProtExtractor from "../../../../faction/protectorate/building/prot-extractor.js"; /** * Protectorate Extractor - Mera Commander Building * Clean inheritance from faction Protectorate Extractor with all properties and abilities */ export class CoopProtExtractor extends ProtExtractor { constructor() { super(); // Generate composite UUID: {parent-uuid}:coop-mera this.setVariantUUID("coop-mera"); // Dual unlock system: Building + Commander Level this.unlockedBy = [ "coop/commander/mera/building/coop-mera-operating-tower", // Operating Tower requirement this.commanderLevelId(1), // Commander level 1 requirement ]; // Coop-specific unlock chains this.createdBy = ["coop/commander/mera/building/coop-mera-operating-tower"]; } } CoopProtExtractor.src = "src/zerospace/coop/commander/mera/building/coop-mera-prot-extractor.ts"; export default CoopProtExtractor; //# sourceMappingURL=coop-mera-prot-extractor.js.map