UNPKG

@zerospacegg/iolin

Version:

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

26 lines 1.09 kB
"use strict"; /** * Protectorate Extractor - Advanced resource extraction facility * Resource building that efficiently harvests hexite deposits */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ProtExtractor = void 0; const protectorate_classes_js_1 = require("../../protectorate-classes.cjs"); const operating_tower_js_1 = __importDefault(require("./operating-tower.cjs")); class ProtExtractor extends protectorate_classes_js_1.ProtectorateExtractorBuilding { constructor() { super(); this.name = "Extractor"; this.uuid = "e05b1433-8866-4b78-908f-a3fcf860db94"; // Building relationships this.createdBy = [operating_tower_js_1.default.id]; } } exports.ProtExtractor = ProtExtractor; // Static property for source path ProtExtractor.src = "src/zerospace/faction/protectorate/building/prot-extractor.ts"; exports.default = ProtExtractor; //# sourceMappingURL=prot-extractor.js.map