UNPKG

@zerospacegg/iolin

Version:

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

24 lines 833 B
/** * Sudden Death - Game Mutator * Units and structures die in one hit * * This extreme mutator completely changes combat dynamics by making * every unit and structure vulnerable to instant destruction from * any source of damage. Speed and positioning become everything. */ import { Mutator } from "../../../engine/modifier.js"; /** * Sudden Death - One-hit destruction for all units * Makes every combat interaction potentially lethal */ export class SuddenDeath extends Mutator { constructor() { super(); this.name = "Sudden Death"; this.description = "Units and structures die in one hit"; this.uuid = "926557f2-3976-44af-8bfd-17bf280eca38"; } } SuddenDeath.src = "src/zerospace/misc/mutator/sudden-death.ts"; export default SuddenDeath; //# sourceMappingURL=sudden-death.js.map