UNPKG

@zerospacegg/iolin

Version:

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

23 lines 1.09 kB
import SupplyPlatform from "../../../../faction/protectorate/building/supply-platform.js"; /** * Supply Platform - Mera Commander Building * Clean inheritance from faction Supply Platform with all properties and abilities */ export class CoopSupplyPlatform extends SupplyPlatform { 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.unlocks = ["coop/commander/mera/building/coop-mera-prot-barracks"]; this.createdBy = ["coop/commander/mera/unit/coop-mera-prot-build-drone"]; } } CoopSupplyPlatform.src = "src/zerospace/coop/commander/mera/building/coop-mera-supply-platform.ts"; export default CoopSupplyPlatform; //# sourceMappingURL=coop-mera-supply-platform.js.map