UNPKG

@zerospacegg/iolin

Version:

Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)

19 lines 744 B
/** * Protectorate Extractor - Advanced resource extraction facility * Resource building that efficiently harvests hexite deposits */ import { ProtectorateExtractorBuilding } from "../../protectorate-classes.js"; import OperatingTower from "./operating-tower.js"; export class ProtExtractor extends ProtectorateExtractorBuilding { constructor() { super(); this.name = "Extractor"; this.uuid = "e05b1433-8866-4b78-908f-a3fcf860db94"; // Building relationships this.createdBy = [OperatingTower.id]; } } // Static property for source path ProtExtractor.src = "src/zerospace/faction/protectorate/building/prot-extractor.ts"; export default ProtExtractor; //# sourceMappingURL=prot-extractor.js.map