@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
20 lines • 741 B
JavaScript
/**
* Grell Extractor - Grell flux gathering building
* Basic resource extraction structure that inherits from base extractor
*/
import { GrellExtractorBuilding } from "../../grell-classes.js";
import RootColony from "./root-colony.js";
export class GrellExtractor extends GrellExtractorBuilding {
constructor() {
super();
this.name = "Extractor";
this.uuid = "59caa710-c319-4b70-926b-a43ec02e8190";
// Patch 19202990: +25 HP (225 → 250)
this.hp = 250;
this.createdBy = [RootColony.id];
}
}
// Static property for source path
GrellExtractor.src = "src/zerospace/faction/grell/building/grell-extractor.ts";
export default GrellExtractor;
//# sourceMappingURL=grell-extractor.js.map