UNPKG

@zerospacegg/iolin

Version:

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

27 lines 1.09 kB
"use strict"; /** * Grell Extractor - Grell flux gathering building * Basic resource extraction structure that inherits from base extractor */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.GrellExtractor = void 0; const grell_classes_js_1 = require("../../grell-classes.cjs"); const root_colony_js_1 = __importDefault(require("./root-colony.cjs")); class GrellExtractor extends grell_classes_js_1.GrellExtractorBuilding { constructor() { super(); this.name = "Extractor"; this.uuid = "59caa710-c319-4b70-926b-a43ec02e8190"; // Patch 19202990: +25 HP (225 → 250) this.hp = 250; this.createdBy = [root_colony_js_1.default.id]; } } exports.GrellExtractor = GrellExtractor; // Static property for source path GrellExtractor.src = "src/zerospace/faction/grell/building/grell-extractor.ts"; exports.default = GrellExtractor; //# sourceMappingURL=grell-extractor.js.map