UNPKG

@zerospacegg/iolin

Version:

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

22 lines 1.04 kB
import Cultivator from "../../../../faction/grell/building/cultivator.js"; /** * Cultivator - Vynthra Commander Building * Clean inheritance from faction Cultivator with all properties and abilities */ export class CoopCultivator extends Cultivator { 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 builder and harvester this.createdBy = ["coop/commander/vynthra/unit/coop-vynthra-seedling", "coop/commander/vynthra/unit/coop-vynthra-grell-harvester"]; } } CoopCultivator.src = "src/zerospace/coop/commander/vynthra/building/coop-vynthra-cultivator.ts"; export default CoopCultivator; //# sourceMappingURL=coop-vynthra-cultivator.js.map