@zerospacegg/iolin
Version:
Community ZeroSpace game data library - units, buildings, abilities, and more
25 lines • 755 B
JavaScript
const Neutral = {
src: "nonplayer/neutral.pkl",
slug: "neutral",
id: "nonplayer/neutral",
name: "Neutral",
shortName: "Neutral",
description: "Neutral faction. Just the destructible rocks and the XP towers currently.",
type: "faction",
subtype: "nonplayer",
faction: "neutral",
tagList: ["faction", "faction:nonplayer", "faction:neutral"],
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 = Neutral;
// Also maintain default export for backward compatibility
export default Neutral;
//# sourceMappingURL=neutral.js.map