@zerospacegg/iolin
Version:
Community ZeroSpace game data library - units, buildings, abilities, and more
90 lines • 3.02 kB
JavaScript
const Marran = {
src: "mercenary/marran.pkl",
slug: "marran",
id: "mercenary/marran",
name: "Marran",
shortName: "Marran",
type: "faction",
subtype: "mercenary",
faction: "marran",
tagList: ["faction", "faction:mercenary", "faction:marran"],
inGame: true,
fromFuture: false,
mercHeroesAllowed: true,
hero: ["hel"],
unit: [
"marran-badger",
"marran-halo-tank",
"marran-hover-tank",
"marran-sharpshooter",
],
building: ["marran-merc-outpost"],
talent: {
"marran-talent-wisdom": {
slug: "marran-talent-wisdom",
name: "Wisdom",
shortName: "Wisdom",
description: "+50% XP Gain",
type: "faction-ability",
subtype: "talent",
faction: "marran",
tagList: ["faction-ability", "faction-ability:talent", "faction:marran"],
inGame: true,
fromFuture: false,
factionType: "mercenary",
activationType: "passive",
abilityOf: "marran",
targets: [],
damageDisplay: "null",
healingDisplay: "null",
level: 2,
},
"marran-talent-advanced-weaponry": {
slug: "marran-talent-advanced-weaponry",
name: "Advanced Weaponry",
shortName: "Advanced Weaponry",
description: "+15% Range and Attack Speed",
type: "faction-ability",
subtype: "talent",
faction: "marran",
tagList: ["faction-ability", "faction-ability:talent", "faction:marran"],
inGame: true,
fromFuture: false,
factionType: "mercenary",
activationType: "passive",
abilityOf: "marran",
targets: [],
damageDisplay: "null",
healingDisplay: "null",
level: 4,
},
},
topbar: {
"marran-topbar-pulse-barrage": {
slug: "marran-topbar-pulse-barrage",
name: "Pulse Barrage",
shortName: "Pulse Barrage",
description: "Fire a barrage to targetted location. Enemy units take damage and are slowed. 938 total damage in 14 shots, 67 dmg each.",
type: "faction-ability",
subtype: "topbar",
tagList: ["faction-ability", "faction-ability:topbar"],
inGame: true,
fromFuture: false,
factionType: "mercenary",
activationType: "activated",
abilityOf: "marran",
targets: [],
energyCost: 20,
energyType: "topbar",
cooldown: 60,
damageDisplay: "null",
healingDisplay: "null",
slot: 5,
},
},
};
// Export the entity as a named export for better ES modules compatibility
export const entity = Marran;
// Also maintain default export for backward compatibility
export default Marran;
//# sourceMappingURL=marran.js.map