@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
17 lines • 494 B
TypeScript
/**
* Jungle-AI Nonplayer Faction
* Hostile non-player faction that guards XP towers
*
* Nonplayer faction structure:
* - Simple units only (1)
* - No heroes, buildings, abilities, or topbars
* - Basic guardian creatures for neutral structures
*/
import { JungleAIFaction } from "../../defaults/jungle-ai.js";
declare class JungleAI extends JungleAIFaction {
uuid: string;
static src: string;
constructor();
}
export default JungleAI;
//# sourceMappingURL=jungle-ai.d.ts.map