@zerospacegg/iolin
Version:
Community ZeroSpace game data library - units, buildings, abilities, and more
25 lines • 790 B
JavaScript
const JungleAi = {
src: "nonplayer/jungle_ai.pkl",
slug: "jungle-ai",
id: "nonplayer/jungle-ai",
name: "Jungle AI",
shortName: "Jungle AI",
description: "Hostile Non-Player Faction. Just the Bulky Spiderlings who guard the XP towers currently.",
type: "faction",
subtype: "nonplayer",
faction: "jungle-ai",
tagList: ["faction", "faction:nonplayer", "faction:jungle-ai"],
inGame: true,
fromFuture: false,
mercHeroesAllowed: true,
hero: [],
unit: [],
building: [],
talent: {},
topbar: {},
};
// Export the entity as a named export for better ES modules compatibility
export const entity = JungleAi;
// Also maintain default export for backward compatibility
export default JungleAi;
//# sourceMappingURL=jungle-ai.js.map