UNPKG

@zerospacegg/iolin

Version:

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

27 lines 872 B
/** * Dread Sniper - Long-range T1 precision unit with crippling shot ability * Elite marksman who combines advanced marksmanship with social justice philosophy */ import { Attack, Spell } from "../../../../engine/ability.js"; import type { HotKey, Tier } from "../../../../engine/core.js"; import { DreadRaidersMercUnit } from "../../dread-classes.js"; declare class DreadSniper extends DreadRaidersMercUnit { uuid: string; static src: string; readonly name: string; readonly tier: Tier; readonly hotkey: HotKey; readonly hexiteCost: number; readonly fluxCost: number; readonly buildTime: number; readonly buildCount: number; readonly attacks: { attack: Attack; }; readonly spells: { cripplingShot: Spell; }; constructor(); } export default DreadSniper; //# sourceMappingURL=dread-sniper.d.ts.map