@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
25 lines • 832 B
TypeScript
/**
* Arandi Horned Mech - Interdimensional combat mech
* Perfect fusion of dimensional mastery and mechanical warfare
* The final unit completing the Arandi mercenary faction
*/
import { Attack } from "../../../../engine/ability.js";
import { ArandiMercUnit } from "../../arandi-classes.js";
import type { Tier, HotKey } from "../../../../engine/core.js";
declare class ArandiHornedMech extends ArandiMercUnit {
uuid: string;
static src: string;
readonly name: string;
readonly tier: Tier;
readonly hotkey: HotKey;
readonly hexiteCost: number;
readonly fluxCost: number;
readonly buildTime: number;
readonly buildCount: number;
readonly attacks: {
energyPulsar: Attack;
};
constructor();
}
export default ArandiHornedMech;
//# sourceMappingURL=arandi-horned-mech.d.ts.map