@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
22 lines • 672 B
TypeScript
/**
* Siphon - Game Boon
* 50% damage dealt heals your units
*
* This vampiric enhancement boon allows all units to recover health by
* dealing damage to enemies, creating a sustaining combat effect where
* aggressive engagement becomes a form of battlefield regeneration.
*/
import { Boon } from "../../../engine/modifier.js";
/**
* Siphon - Vampiric damage-to-health conversion
* Units heal themselves by dealing damage to enemies
*/
export declare class Siphon extends Boon {
uuid: string;
static src: string;
readonly name: string;
readonly description: string;
constructor();
}
export default Siphon;
//# sourceMappingURL=siphon.d.ts.map