@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
18 lines • 730 B
JavaScript
/**
* Protectorate Extractor - Advanced resource extraction facility
* Resource building that efficiently harvests hexite deposits
*/
import { ProtectorateExtractorBuilding } from "../../../../defaults/protectorate.js";
export class ProtExtractor extends ProtectorateExtractorBuilding {
constructor() {
super();
this.name = "Extractor";
this.uuid = "e05b1433-8866-4b78-908f-a3fcf860db94";
// Building relationships
this.createdBy = ["faction/protectorate/building/operating-tower"];
}
}
// Static property for source path
ProtExtractor.src = "src/zerospace/faction/protectorate/building/prot-extractor.ts";
export default ProtExtractor;
//# sourceMappingURL=prot-extractor.js.map