@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
21 lines • 734 B
TypeScript
/**
* Legion Build Drone - Aerial construction unit
* Flying worker unit specialized in construction of Legion structures
*/
import { LegionBuilderUnit } from "../../legion-classes.js";
import type { DomainType } from "../../../../engine/ability.js";
import type { Tier } from "../../../../engine/core.js";
export declare class LegionBuildDrone extends LegionBuilderUnit {
uuid: string;
static src: string;
readonly name: string;
readonly tier: Tier;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly buildTime: number;
readonly domain: DomainType;
readonly buildCount: number;
constructor();
}
export default LegionBuildDrone;
//# sourceMappingURL=legion-build-drone.d.ts.map