UNPKG

@zerospacegg/iolin

Version:

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

31 lines 1.6 kB
/** * Grell Faction * Bio-symbiotic faction with infusion mechanics */ import { GrellFaction } from "./grell-classes.js"; import Cultivator from "./grell/building/cultivator.js"; import GrellExtractor from "./grell/building/grell-extractor.js"; import Incubator from "./grell/building/incubator.js"; import MediumIncubator from "./grell/building/medium-incubator.js"; import NourishingPod from "./grell/building/nourishing-pod.js"; import RootColony from "./grell/building/root-colony.js"; import SpecialAugmentationPool from "./grell/building/special-augmentation-pool.js"; import Behemoth from "./grell/unit/behemoth.js"; import GrellHarvester from "./grell/unit/grell-harvester.js"; import ManEater from "./grell/unit/man-eater.js"; import Reaver from "./grell/unit/reaver.js"; import Seedling from "./grell/unit/seedling.js"; import Stinger from "./grell/unit/stinger.js"; import Thresher from "./grell/unit/thresher.js"; import Weaver from "./grell/unit/weaver.js"; import Vynthra from "./grell/hero/vynthra.js"; export declare class Grell extends GrellFaction { uuid: string; static src: string; readonly name = "Grell"; constructor(); get buildingClasses(): (typeof MediumIncubator | typeof SpecialAugmentationPool | typeof Incubator | typeof Cultivator | typeof RootColony | typeof GrellExtractor | typeof NourishingPod)[]; get unitClasses(): (typeof ManEater | typeof Weaver | typeof Reaver | typeof Seedling | typeof Behemoth | typeof Stinger | typeof GrellHarvester | typeof Thresher | typeof Vynthra)[]; } export default Grell; //# sourceMappingURL=grell.d.ts.map