@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
22 lines • 797 B
TypeScript
/**
* Griffin - Multi-role support aircraft with triple healing beams and EMP capabilities
* Flying support unit with healing and electromagnetic warfare abilities
*/
import { ProtectorateArmyUnit } from "../../protectorate-classes.js";
import type { Tier } from "../../../../engine/core.js";
import type { DomainType } from "../../../../engine/ability.js";
export declare class Griffin extends ProtectorateArmyUnit {
uuid: string;
static src: string;
readonly domain: DomainType;
readonly name: string;
readonly tier: Tier;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly supply: number;
readonly buildTime: number;
get infuseCost(): number | undefined;
constructor();
}
export default Griffin;
//# sourceMappingURL=griffin.d.ts.map