@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
22 lines • 696 B
TypeScript
/**
* 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 declare class SuddenDeath extends Mutator {
uuid: string;
static src: string;
readonly name: string;
readonly description: string;
constructor();
}
export default SuddenDeath;
//# sourceMappingURL=sudden-death.d.ts.map