ZSGG Public Library
Monolith
Legion Ultimate Building
import { LegionUltimateBuilding } from "../../../../defaults/legion.js";
import { Attack } from "../../../../engine/ability.js";
export class Monolith extends LegionUltimateBuilding {
override uuid: string;
static override src = "src/zerospace/faction/legion/building/monolith.ts";
constructor() {
super();
this.hexiteCost = 635;
this.fluxCost = 0;
this.buildTime = 1;
this.buildCount = 1;
this.timedLife = 45;
this.name = "Monolith";
this.tier = "ultimate";
this.internalId = "Building_Legion_Monolith_C";
this.internalPath = "/Game/Nova/Archetypes_Buildings/Building_Legion_Monolith.Default__Building_Legion_Monolith_C";
this.internalTags = [
"Attackable.Building.Anorganic",
"Building.NoContructionCompleteSound",
"Logic.NoBonusDamageWhileConstructing",
"Building.Legion.Monolith",
];
this.uuid = "c31d26d5-09d9-41a6-a5be-1b27059361ee";
this.hp = 1500;
this.armor = 0;
this.armorType = "building";
this.speed = 0;
this.tag("massive");
this.attacks.attack = new Attack({
name: "Attack",
damage: 60,
cooldown: 0.5,
armorPenetration: 0,
delay: 0,
range: 1700,
targets: [],
parentId: this.id,
parentUUID: this.uuid,
});
}
}
export default Monolith;