UNPKG

@zerospacegg/iolin

Version:

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

25 lines 798 B
/** * Time Out - Game Mutator * No Heroes * * This restrictive mutator completely removes all hero units from the * battlefield, forcing commanders to rely entirely on standard army * compositions and eliminating the powerful singular units that often * define late-game strategy and faction identity. */ import { Mutator } from "../../../engine/modifier.js"; /** * Time Out - Hero unit prohibition * Disables all hero units and hero-related mechanics */ export class TimeOut extends Mutator { constructor() { super(); this.name = "Time Out"; this.description = "No Heroes"; this.uuid = "7b3dcd32-5498-4309-941e-cf5e1c815f2c"; } } TimeOut.src = "src/zerospace/misc/mutator/time-out.ts"; export default TimeOut; //# sourceMappingURL=time-out.js.map