@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
19 lines • 584 B
TypeScript
/**
* Spiderling - Light Grell Infantry
*
* A small, fast-moving Grell creature that serves as a cheap early-game unit.
* Spiderlings are fragile but mobile, making them useful for scouting and
* quick harassment tactics.
*/
import { GrellArmyUnit } from "../../../../defaults/grell.js";
import { Attack } from "../../../../engine/ability.js";
declare class Spiderling extends GrellArmyUnit {
uuid: string;
static src: string;
readonly attacks: {
attack: Attack;
};
constructor();
}
export default Spiderling;
//# sourceMappingURL=spiderling.d.ts.map