@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
19 lines • 605 B
TypeScript
/**
* Dread Sniper - Long-range T1 precision unit with crippling shot ability
* Elite marksman who combines advanced marksmanship with social justice philosophy
*/
import { DreadRaidersMercUnit } from "../../../../defaults/dread.js";
import { Attack, Spell } from "../../../../engine/ability.js";
declare class DreadSniper extends DreadRaidersMercUnit {
uuid: string;
static src: string;
readonly attacks: {
attack: Attack;
};
readonly spells: {
cripplingShot: Spell;
};
constructor();
}
export default DreadSniper;
//# sourceMappingURL=dread-sniper.d.ts.map