@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
23 lines • 703 B
TypeScript
/**
* Hammerhead - Protectorate transport aircraft with healing capabilities
* Flying transport unit that can load/unload units and heal nearby allies
*/
import { ProtectorateArmyUnit } from "../../../../defaults/protectorate.js";
import { Passive, Siege, Spell } from "../../../../engine/ability.js";
export declare class Hammerhead extends ProtectorateArmyUnit {
uuid: string;
static src: string;
readonly passives: {
healAura: Passive;
};
readonly spells: {
unload: Spell;
};
readonly sieges: {
land: Siege;
};
get infuseCost(): number | undefined;
constructor();
}
export default Hammerhead;
//# sourceMappingURL=hammerhead.d.ts.map