UNPKG

@zerospacegg/iolin

Version:

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

26 lines 859 B
/** * 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 "./jungle-ai-classes.js"; // Import Jungle-AI units import BulkySpiderling from "./jungle-ai/unit/bulky-spiderling.js"; class JungleAI extends JungleAIFaction { constructor() { super(); this.name = "Jungle AI"; this.uuid = "b0559bc1-3524-4139-a97b-acef2091eda5"; // Add units - Simple guardian arsenal this.units = [BulkySpiderling.id]; } } // Static property for source path JungleAI.src = "src/zerospace/nonplayer/jungle-ai.ts"; // Export the class as default export default JungleAI; //# sourceMappingURL=jungle-ai.js.map