UNPKG

@zerospacegg/iolin

Version:

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

24 lines 818 B
/** * Lockdown - Game Mutator * Faction Powers are disabled * * This restrictive mutator completely disables all faction-specific abilities, * topbar powers, and special faction mechanics, forcing commanders to rely * purely on basic unit capabilities and fundamental strategic principles. */ import { Mutator } from "../../../engine/modifier.js"; /** * Lockdown - Faction power suppression * Disables all faction-specific abilities and special powers */ export class Lockdown extends Mutator { constructor() { super(); this.name = "Lockdown"; this.description = "Faction Powers are disabled"; this.uuid = "a2623846-0b55-4315-a7ba-8a263534be48"; } } Lockdown.src = "src/zerospace/misc/mutator/lockdown.ts"; export default Lockdown; //# sourceMappingURL=lockdown.js.map