ZeroSpace.gg

Rocks

Neutral T0 Special Building

import { SpecialBuilding } from "../../../../engine/building.js"; import type { Tier } from "../../../../engine/core.js"; /** * Rocks - Destructible rock formations * Natural barriers that serve as destructible terrain obstacles */ class Rocks extends SpecialBuilding { override uuid: string; static override src = "src/zerospace/nonplayer/neutral/building/rocks.ts"; constructor() { super(); this.name = "Rocks"; this.tier = "T0"; this.uuid = "371d87f4-c641-49e1-a24e-a090a916b3af"; this.faction = "neutral"; this.factionName = "Neutral"; this.internalId = "BreakableRockObstacle1_C"; this.internalTags = ["Select.MiscBuilding", "Attackable.Building.Destructible", "Attackable.Building.Anorganic"]; this.internalSecondaryTags = []; this.hp = 1000; this.armor = 0; } } export default Rocks;