UNPKG

@zerospacegg/iolin

Version:

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

36 lines 1.32 kB
"use strict"; /** * Legion Extractor - Sacred resource extraction facility * Holy mining installation that gathers materials for the divine cause */ Object.defineProperty(exports, "__esModule", { value: true }); exports.LegionExtractor = void 0; const legion_js_1 = require("../../../../defaults/legion.cjs"); class LegionExtractor extends legion_js_1.LegionExtractorBuilding { // Readonly properties constructor() { super(); this.hexiteCost = 100; this.fluxCost = 0; this.buildTime = 35; this.buildCount = 1; this.gathersFlux = 2; this.name = "Extractor"; this.tier = "T0"; 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 = ["faction/legion/building/garrison-tower"]; this.unlockedBy = ["faction/legion/building/garrison-tower"]; // Resource generation // Lore - sacred resource gathering } } exports.LegionExtractor = LegionExtractor; LegionExtractor.src = "src/zerospace/faction/legion/building/legion-extractor.ts"; exports.default = LegionExtractor; //# sourceMappingURL=legion-extractor.js.map