ZeroSpace.gg

Summoning Obelisk

Legion Special Building

import { LegionSpecialBuilding } from "../../../../defaults/legion.js"; export class SummoningObelisk extends LegionSpecialBuilding { override uuid: string; static override src = "src/zerospace/faction/legion/building/summoning-obelisk.ts"; constructor() { super(); this.hexiteCost = 0; this.fluxCost = 0; this.buildTime = 0; this.buildCount = 1; this.timedLife = 0; this.name = "Summoning Obelisk"; this.tier = ""; this.uuid = "7f5a2c1b-8e4d-4a6f-9c3e-2d1b5a8c7f4e"; this.hp = 500; this.armor = 0; this.armorType = "building"; this.speed = 0; this.internalId = "Building_Legion_SummoningObelisk_C"; this.internalPath = "/Game/Nova/Archetypes_Buildings/Building_Legion_SummoningObelisk.Default__Building_Legion_SummoningObelisk_C"; this.internalTags = [ "Attackable.Building.Anorganic", "Building.NoContructionCompleteSound", "Building.Legion.Obelisk", ]; this.createdBy = []; this.unlockedBy = ["faction/legion/talents/summoning-obelisk"]; this.description = "Sacred structure that makes 8 thralls immediately, then spawns another free thrall every 30s until destroyed."; } } export default SummoningObelisk;