UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

23 lines 860 B
/** * Bulky Spiderling - XP Tower Guardian * * Guardians of the XP towers. Each tower spawns 8 of these at the beginning * of the game, which you must clear to gain initial control of the tower. * These are simple but resilient creatures that serve as the primary defense * for neutral XP-generating structures across the battlefield. * * As a T0 unit, they're basic but numerous, relying on swarm tactics and * their natural resilience to protect valuable resources. */ import { Attack } from "../../../../engine/ability.js"; import { JungleAIArmyUnit } from "../../../../defaults/jungle-ai.js"; declare class BulkySpiderling extends JungleAIArmyUnit { uuid: string; static src: string; readonly attacks: { attack: Attack; }; constructor(); } export default BulkySpiderling; //# sourceMappingURL=bulky-spiderling.d.ts.map