UNPKG

@zerospacegg/iolin

Version:

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

27 lines 886 B
/** * Emperor Projection - Ultimate sacrifice-powered manifestation * Living vessel for collective thrall souls with devastating power scaling */ import { Attack } from "../../../../engine/ability.js"; import { Turret } from "../../../../engine/turret.js"; import { LegionUltimateUnit } from "../../legion-classes.js"; import type { Tier } from "../../../../engine/core.js"; export declare class EmperorProjection extends LegionUltimateUnit { uuid: string; static src: string; readonly name: string; readonly tier: Tier; readonly fluxCost: number; readonly buildCount: number; readonly hexiteCost: number; readonly buildTime: number; readonly attacks: { attack: Attack; }; readonly turrets: { thrallSoul: Turret; }; constructor(); } export default EmperorProjection; //# sourceMappingURL=emperor-projection.d.ts.map