@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
20 lines • 613 B
TypeScript
/**
* Titan - Protectorate medium mech unit
* Robot commando with jump capabilities
*/
import type { Tier } from "../../../../engine/core.js";
import { ProtectorateArmyUnit } from "../../protectorate-classes.js";
export declare class Titan extends ProtectorateArmyUnit {
uuid: string;
static src: string;
readonly name: string;
readonly tier: Tier;
readonly supply: number;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly buildTime: number;
get infuseCost(): number | undefined;
constructor();
}
export default Titan;
//# sourceMappingURL=titan.d.ts.map