ZeroSpace.gg

Beastiary

Legion T1 Production Building

import { LegionProductionBuilding } from "../../../../defaults/legion.js"; export class Beastiary extends LegionProductionBuilding { override uuid: string; static override src = "src/zerospace/faction/legion/building/beastiary.ts"; constructor() { super(); this.hexiteCost = 75; this.fluxCost = 25; this.buildTime = 30; this.buildCount = 1; this.name = "Beastiary"; this.description = "Beast production structure."; this.tier = "T1"; this.unlocksMercTier = "T1"; this.uuid = "e0013b48-a7fa-4764-bfcb-008ae4bc056c"; 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/idal-conduit"]; this.unlocks = ["faction/legion/unit/exalted", "faction/legion/building/citadel"]; this.creates = ["faction/legion/unit/exalted", "faction/legion/unit/mammoth"]; } } export default Beastiary;