@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
22 lines • 714 B
TypeScript
/**
* Marran Hover Tank - T1 fast mobile platform with superior shields
* Mobile evolution of fortress world defensive philosophy
*/
import { Attack } from "../../../../engine/ability.js";
import { MarranMercUnit } from "../../marran-classes.js";
import type { Tier } from "../../../../engine/core.js";
export declare class MarranHoverTank extends MarranMercUnit {
uuid: string;
static src: string;
readonly name: string;
readonly tier: Tier;
readonly buildCount: number;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly attacks: {
attack: Attack;
};
constructor();
}
export default MarranHoverTank;
//# sourceMappingURL=marran-hover-tank.d.ts.map