@zerospacegg/iolin
Version:
Community ZeroSpace game data library - units, buildings, abilities, and more
64 lines • 1.7 kB
JavaScript
const Monolith = {
src: "faction/legion/building/monolith.pkl",
slug: "monolith",
id: "faction/legion/building/monolith",
name: "Monolith",
shortName: "Monolith",
type: "building",
subtype: "ultimate",
faction: "legion",
tier: "T4",
tagList: [
"building",
"building:ultimate",
"faction:legion",
"tier:4",
"armor:building",
"attacker",
],
inGame: true,
fromFuture: false,
uuid: "c31d26d5-09d9-41a6-a5be-1b27059361ee",
timedLife: 45,
buildCount: 1,
domain: "ground",
hp: 2500,
vision: 1500,
speed: 0,
armor: 0,
armorType: "building",
untargetable: false,
maxAddOns: 0,
ability: {
"monolith-attack": {
slug: "monolith-attack",
name: "Attack",
shortName: "Attack",
type: "ability",
subtype: "attack",
faction: "legion",
tagList: ["ability", "ability:attack", "faction:legion"],
inGame: true,
fromFuture: false,
activationType: "auto",
targets: [],
cooldown: 0.6,
range: 1700,
abilityOf: "monolith",
damage: 60,
damagePerSec: 100,
damageDisplay: "60",
autocast: "always",
},
},
addOn: {},
variantBuilding: {},
variantUnit: {},
buildingType: "ultimate",
hpInitial: 1000,
};
// Export the entity as a named export for better ES modules compatibility
export const entity = Monolith;
// Also maintain default export for backward compatibility
export default Monolith;
//# sourceMappingURL=monolith.js.map