UNPKG

@zerospacegg/iolin

Version:

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

19 lines 728 B
/** * Grell Extractor - Grell flux gathering building * Basic resource extraction structure that inherits from base extractor */ import { GrellExtractorBuilding } from "../../../../defaults/grell.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 = ["faction/grell/building/root-colony"]; } } // Static property for source path GrellExtractor.src = "src/zerospace/faction/grell/building/grell-extractor.ts"; export default GrellExtractor; //# sourceMappingURL=grell-extractor.js.map