@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
25 lines • 824 B
TypeScript
/**
* Arandi Shade - Corrupted interdimensional stealth unit
* Fallen Arandi warriors possessed by entities from dimensional realms
* Masters of phased movement and posthumous revenge
*/
import { Attack } from "../../../../engine/ability.js";
import type { HotKey, Tier } from "../../../../engine/core.js";
import { ArandiMercUnit } from "../../arandi-classes.js";
declare class ArandiShade 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: {
shadowCleave: Attack;
};
constructor();
}
export default ArandiShade;
//# sourceMappingURL=arandi-shade.d.ts.map