@zerospacegg/iolin
Version:
Pure TypeScript implementation of ZeroSpace game data processing (PKL-free)
32 lines • 1.15 kB
JavaScript
/**
* Legion Extractor - Sacred resource extraction facility
* Holy mining installation that gathers materials for the divine cause
*/
import { LegionExtractorBuilding } from "../../legion-classes.js";
import GarrisonTower from "../building/garrison-tower.js";
export class LegionExtractor extends LegionExtractorBuilding {
constructor() {
super();
this.name = "Extractor";
this.tier = "T0";
this.hexiteCost = 100;
this.fluxCost = 0;
this.buildTime = 35;
this.buildCount = 1;
this.uuid = "f4e22b23-2f1e-474e-a5f7-c34b0c9631a8";
// Sacred resource extraction facility stats
this.hp = 225;
this.armor = 0;
this.armorType = "building";
this.speed = 0;
// Relationships
this.createdBy = [GarrisonTower.id];
this.unlockedBy = [GarrisonTower.id];
// Resource generation
this.gathersFlux = 2;
// Lore - sacred resource gathering
}
}
LegionExtractor.src = "src/zerospace/faction/legion/building/legion-extractor.ts";
export default LegionExtractor;
//# sourceMappingURL=legion-extractor.js.map