@zerospacegg/iolin
Version:
Community ZeroSpace game data library - units, buildings, abilities, and more
91 lines • 2.58 kB
JavaScript
const Sabretooth = {
src: "faction/legion/unit/sabretooth.pkl",
slug: "sabretooth",
id: "faction/legion/unit/sabretooth",
name: "Sabretooth",
shortName: "Sabretooth",
type: "unit",
subtype: "special",
faction: "legion",
tier: "T2",
tagList: [
"unit",
"unit:special",
"faction:legion",
"tier:2",
"armor:medium",
"resist:stun",
"attacker",
"has:passive",
"respawns",
"can-be-mind-controlled",
],
inGame: true,
fromFuture: false,
uuid: "57355de4-49e0-4745-b70e-38f9266230a7",
hexiteCost: 150,
fluxCost: 150,
buildCount: 1,
buildTime: 20,
rebuildable: true,
rebuildTime: 60,
domain: "ground",
supply: 0,
hp: 200,
vision: 1800,
speed: 525,
armorType: "medium",
stunResist: 50,
untargetable: false,
maxAddOns: 0,
ability: {
"sabretooth-attack": {
slug: "sabretooth-attack",
name: "Attack",
shortName: "Attack",
type: "ability",
subtype: "attack",
faction: "legion",
tagList: ["ability", "ability:attack", "faction:legion"],
inGame: true,
fromFuture: false,
activationType: "auto",
targets: ["ground"],
cooldown: 2,
range: 170,
abilityOf: "sabretooth",
damage: 30,
damagePerSec: 15,
damageDisplay: "30",
autocast: "always",
},
"sabretooth-passive-feed": {
slug: "sabretooth-passive-feed",
name: "Feed",
shortName: "Feed",
description: "Any allied beast that dies anywhere on the map grants +1 dmg and +20hp to Sabretooth.",
type: "ability",
subtype: "passive",
faction: "legion",
tagList: ["ability", "ability:passive", "faction:legion"],
inGame: true,
fromFuture: false,
activationType: "activated",
targets: [],
abilityOf: "sabretooth",
autocast: "never",
},
},
addOn: {},
variantBuilding: {},
variantUnit: {},
canBeInfused: false,
canBeReanimated: false,
canBeMindControlled: true,
upgrade: {},
};
// Export the entity as a named export for better ES modules compatibility
export const entity = Sabretooth;
// Also maintain default export for backward compatibility
export default Sabretooth;
//# sourceMappingURL=sabretooth.js.map