UNPKG

@zerospacegg/iolin

Version:

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

25 lines 1.15 kB
/** * Stinger - Vynthra Commander Unit * Clean inheritance from faction Stinger with all properties and abilities */ import Stinger from "../../../../faction/grell/unit/stinger.js"; export class CoopStinger extends Stinger { constructor() { super(); this.internalId = undefined; this.internalPath = undefined; // 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-incubator", // Building requirement (from parent) this.commanderLevelId(1), // Commander level 1 requirement ]; // Coop-specific relationships (replicate parent with coop references) this.createdBy = ["coop/commander/vynthra/building/coop-vynthra-incubator"]; this.upgradedBy = ["coop/commander/vynthra/building/coop-vynthra-augmentation-pool"]; } } CoopStinger.src = "src/zerospace/coop/commander/vynthra/unit/coop-vynthra-stinger.ts"; export default CoopStinger; //# sourceMappingURL=coop-vynthra-stinger.js.map