ZeroSpace.gg

Terror Tower

Legion T3 Tech Building

import { LegionTechBuilding } from "../../../../defaults/legion.js"; export class TerrorTower extends LegionTechBuilding { override uuid: string; static override src = "src/zerospace/faction/legion/building/terror-tower.ts"; constructor() { super(); this.hexiteCost = 100; this.fluxCost = 25; this.buildTime = 60; this.buildCount = 1; this.name = "Terror Tower"; this.description = "Unlocks Terror Tanks and Dreadnoughts. \nBoosts their construction speed when nearby by +100%."; this.tier = "T3"; this.unlocksMercTier = "T3"; this.uuid = "e082dba1-8083-4096-83f0-d0e4412a2f83"; this.hp = 1000; this.armor = 1; this.armorType = "building"; this.speed = 0; this.createdBy = ["faction/legion/unit/legion-build-drone"]; this.unlockedBy = ["faction/legion/building/citadel"]; this.unlocks = [ "faction/legion/unit/terror-tank", "faction/legion/unit/dreadnought", "faction/legion/unit/dark-disciple", "faction/legion/unit/storm-bringer", "faction/legion/unit/mammoth", ]; } } export default TerrorTower;