UNPKG

@zerospacegg/iolin

Version:

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

42 lines 1.67 kB
/** * Large Incubator - Grell T3 production building * Massive production facility that inherits from base production building */ import { GrellProductionBuilding } from "../../grell-classes.js"; import Behemoth from "../unit/behemoth.js"; import Reaver from "../unit/reaver.js"; import Seedling from "../unit/seedling.js"; import Weaver from "../unit/weaver.js"; import MediumIncubator from "./medium-incubator.js"; import SpecialAugmentationPool from "./special-augmentation-pool.js"; export class LargeIncubator extends GrellProductionBuilding { constructor() { super(); this.name = "Large Incubator"; this.tier = "T3"; this.hotkey = "G"; this.hexiteCost = 150; this.fluxCost = 100; this.buildTime = 50; this.buildCount = 1; this.uuid = "8b2b7626-918e-490c-972c-13dc8adb2b8a"; // Large Incubator stats from PKL truth this.hp = 1400; this.armor = 1; this.speed = 0; this.shortName = "Lg. Incubator"; // Creates units this.creates = [Reaver.id, Weaver.id, Behemoth.id]; this.createdBy = [Seedling.id]; this.unlockedBy = [MediumIncubator.id]; // Unlocks units and buildings this.unlocks = [Behemoth.id, SpecialAugmentationPool.id]; // Unlocks mercenary tier this.unlocksMercTier = "T3"; // All other stats (hp, costs, biomass, etc.) inherited from base GrellProductionBuilding class } } // Static property for source path LargeIncubator.src = "src/zerospace/faction/grell/building/large-incubator.ts"; export default LargeIncubator; //# sourceMappingURL=large-incubator.js.map