ZeroSpace.gg

XP Tower

Neutral T0 Special Building

import { SpecialBuilding } from "../../../../engine/building.js"; import type { Tier } from "../../../../engine/core.js"; /** * XP Tower - Experience generation structure * Strategic objectives that grant continuous XP at 4 XP/sec when controlled */ class XpTower extends SpecialBuilding { override uuid: string; static override src = "src/zerospace/nonplayer/neutral/building/xp-tower.ts"; constructor() { super(); this.name = "XP Tower"; this.tier = "T0"; this.untargetable = true; this.uuid = "990271f4-fe09-438d-973b-2593cc2088e5"; this.internalId = "Building_ControlPoint_HeroAType_C"; this.internalTags = ["Building.Nova.HQ.Proxy", "Immune.Slow"]; this.internalSecondaryTags = []; this.faction = "neutral"; this.factionName = "Neutral"; } } export default XpTower;