UNPKG

@zerospacegg/iolin

Version:

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

25 lines (24 loc) 873 B
/** * Marran Mercenary Faction * Alien master snipers with defensive philosophy - precision over brute force * * Mercenary faction structure: * - Two talents (Wisdom, Advanced Weaponry) * - Four units (Hover Tank, Sharpshooter, Badger, Halo Tank) * - One outpost building (Merc Outpost) * - One hero (Hel) * - One topbar (Pulse Barrage) */ import { MarranFaction, MarranTopbar } from "../../defaults/marran.js"; declare class PulseBarrageTopbar extends MarranTopbar { constructor(); readonly description = "Fire a barrage to targetted location. Enemy units take damage and are slowed. 938 total damage in 14 shots, 67 dmg each."; } export declare const pulseBarrage: PulseBarrageTopbar; export declare class Marran extends MarranFaction { static src: string; constructor(); } export default Marran; export {}; //# sourceMappingURL=marran.d.ts.map