UNPKG

@zerospacegg/iolin

Version:

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

23 lines 812 B
/** * Legion Main Faction * Religious fanatic faction focused on uplifting aliens and eradicating synthetics * * Faction structure: * - Eight talents (War Experience, Improved Conduits, Efficient Upgrades, Death Pact, * Reanimate Hero, Improved Spellcasting, Ritual, Spawn Monolith) * - Four topbars (Recall, Reanimate, Ritual, Spawn Monolith) * - Three heroes allowed simultaneously (unique mechanic) * - Customizable tanks with upgrade systems * - Thrall units and reanimation mechanics */ import { MainFaction } from "../../engine/faction.js"; /** * Legion Faction Entity - Modern Class Architecture */ declare class LegionFactionEntity extends MainFaction { uuid: string; static src: string; constructor(); } export default LegionFactionEntity; //# sourceMappingURL=legion.d.ts.map