@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
23 lines • 876 B
JavaScript
;
/**
* Grell Extractor - Grell flux gathering building
* Basic resource extraction structure that inherits from base extractor
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.GrellExtractor = void 0;
const grell_js_1 = require("../../../../defaults/grell.cjs");
class GrellExtractor extends grell_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 = ["faction/grell/building/root-colony"];
}
}
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