ZSGG Public Library
Extractor
Xol T0 Extractor Building
import { XolExtractorBuilding } from "../../../../defaults/xol.js";
export class Extractor extends XolExtractorBuilding {
override uuid: string;
static override src = "src/zerospace/faction/xol/building/extractor.ts";
constructor() {
super();
this.name = "Extractor";
this.description = "Automatically built and rebuilt by the World Engine. Mines Hexite for the Xol.";
this.tier = "T0";
this.uuid = "d687ea7e-21e8-489a-8816-c13a2564f5ae";
this.hp = 330;
this.armorType = "building";
this.maxOwned = 4;
this.createdBy = ["faction/xol/building/world-engine"];
this.unlockedBy = ["faction/xol/building/world-engine"];
}
}
export default Extractor;