├── .circleci └── config.yml ├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yaml │ ├── config.yml │ └── feature_request.yaml └── workflows │ └── nightly.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG-old.md ├── CHANGELOG.md ├── GregTech-upload.zip ├── LICENSE ├── README.md ├── common ├── build.gradle └── src │ └── main │ ├── java │ └── muramasa │ │ └── gregtech │ │ ├── GTIRef.java │ │ ├── GTRemapping.java │ │ ├── GregTech.java │ │ ├── GregTechConfig.java │ │ ├── GregTechPostRegistrar.java │ │ ├── block │ │ ├── BlockAsphalt.java │ │ ├── BlockAsphaltSlab.java │ │ ├── BlockAsphaltStair.java │ │ ├── BlockCasing.java │ │ ├── BlockCoil.java │ │ ├── BlockColoredWall.java │ │ ├── BlockFakeCasing.java │ │ ├── BlockMiningPipe.java │ │ ├── BlockPowderBarrel.java │ │ └── BlockSidedCasing.java │ │ ├── blockentity │ │ ├── miniportals │ │ │ ├── BlockEntityMiniEndPortal.java │ │ │ ├── BlockEntityMiniNetherPortal.java │ │ │ ├── BlockEntityMiniPortal.java │ │ │ └── BlockEntityMiniTwilightPortal.java │ │ ├── multi │ │ │ ├── BlockEntityAdvancedMiner.java │ │ │ ├── BlockEntityCharcoalPit.java │ │ │ ├── BlockEntityCokeOven.java │ │ │ ├── BlockEntityCombustionEngine.java │ │ │ ├── BlockEntityDistillationTower.java │ │ │ ├── BlockEntityElectricBlastFurnace.java │ │ │ ├── BlockEntityFusionReactor.java │ │ │ ├── BlockEntityImplosionCompressor.java │ │ │ ├── BlockEntityLargeAutoclave.java │ │ │ ├── BlockEntityLargeBath.java │ │ │ ├── BlockEntityLargeBoiler.java │ │ │ ├── BlockEntityLargeCentrifuge.java │ │ │ ├── BlockEntityLargeChemicalReactor.java │ │ │ ├── BlockEntityLargeElectrolyzer.java │ │ │ ├── BlockEntityLargeHeatExchanger.java │ │ │ ├── BlockEntityLargeMacerator.java │ │ │ ├── BlockEntityLargeOreWasher.java │ │ │ ├── BlockEntityLargeTank.java │ │ │ ├── BlockEntityLargeTurbine.java │ │ │ ├── BlockEntityLongDistancePipeEndpoint.java │ │ │ ├── BlockEntityMultiSmelter.java │ │ │ ├── BlockEntityOilCrackingUnit.java │ │ │ ├── BlockEntityOilDrillingRig.java │ │ │ ├── BlockEntityPrimitiveBlastFurnace.java │ │ │ ├── BlockEntityProcessingArray.java │ │ │ ├── BlockEntityPyrolysisOven.java │ │ │ ├── BlockEntityTreeGrowthSimulator.java │ │ │ ├── BlockEntityVacuumFreezer.java │ │ │ ├── IMiningPipeTile.java │ │ │ └── MiningPipeStructureCache.java │ │ └── single │ │ │ ├── BlockEntityAssembler.java │ │ │ ├── BlockEntityBath.java │ │ │ ├── BlockEntityBridge.java │ │ │ ├── BlockEntityBuffer.java │ │ │ ├── BlockEntityCoalBoiler.java │ │ │ ├── BlockEntityCropHarvester.java │ │ │ ├── BlockEntityHull.java │ │ │ ├── BlockEntityIUpgradedBatchMachine.java │ │ │ ├── BlockEntityInfiniteFluid.java │ │ │ ├── BlockEntityItemFilter.java │ │ │ ├── BlockEntityLavaBoiler.java │ │ │ ├── BlockEntityLimitedOutput.java │ │ │ ├── BlockEntityMacerator.java │ │ │ ├── BlockEntityNuclearReactorCore.java │ │ │ ├── BlockEntityPrinter.java │ │ │ ├── BlockEntityPump.java │ │ │ ├── BlockEntityRockBreaker.java │ │ │ ├── BlockEntityScanner.java │ │ │ ├── BlockEntitySecondaryOutput.java │ │ │ ├── BlockEntitySeismicProspector.java │ │ │ ├── BlockEntitySmallHeatExchanger.java │ │ │ ├── BlockEntitySolarBoiler.java │ │ │ ├── BlockEntitySolarPanel.java │ │ │ ├── BlockEntitySteamMachine.java │ │ │ ├── BlockEntitySteamTurbine.java │ │ │ ├── BlockEntityTypeFilter.java │ │ │ └── ISteamBoilerHandler.java │ │ ├── client │ │ ├── GregTechModelManager.java │ │ ├── ReactorBakedModel.java │ │ ├── ReactorModel.java │ │ └── ReactorModelLoader.java │ │ ├── cover │ │ ├── CoverAdvancedFluidDetector.java │ │ ├── CoverAirVent.java │ │ ├── CoverConveyor.java │ │ ├── CoverDrain.java │ │ ├── CoverDynamoColored.java │ │ ├── CoverEnergyColored.java │ │ ├── CoverEnergyDetector.java │ │ ├── CoverFluidDetector.java │ │ ├── CoverFluidFilter.java │ │ ├── CoverFluidRegulator.java │ │ ├── CoverItemDetector.java │ │ ├── CoverItemFilter.java │ │ ├── CoverItemRegulator.java │ │ ├── CoverItemRetriever.java │ │ ├── CoverPump.java │ │ ├── CoverReactorOutput.java │ │ ├── CoverReactorOutputSecondary.java │ │ ├── CoverRobotArm.java │ │ ├── CoverSecondaryOutput.java │ │ ├── CoverShutter.java │ │ ├── CoverSteamVent.java │ │ ├── ICoverRedstoneSensitive.java │ │ ├── ImportExportMode.java │ │ ├── RedstoneMode.java │ │ ├── base │ │ │ ├── CoverBasicRedstone.java │ │ │ ├── CoverBasicRedstoneInput.java │ │ │ ├── CoverBasicRedstoneOutput.java │ │ │ ├── CoverBasicTransport.java │ │ │ └── CoverFilter.java │ │ └── redstone │ │ │ ├── CoverActivityDetectorPossible.java │ │ │ ├── CoverActivityDetectorProcessing.java │ │ │ ├── CoverActivityDetectorSuccessful.java │ │ │ ├── CoverNeedsMaintenance.java │ │ │ ├── CoverProgressSensor.java │ │ │ ├── CoverRedstoneConductorAccept.java │ │ │ ├── CoverRedstoneConductorEmit.java │ │ │ └── CoverRedstoneMachineController.java │ │ ├── data │ │ ├── ClientData.java │ │ ├── GregTechBlocks.java │ │ ├── GregTechCovers.java │ │ ├── GregTechData.java │ │ ├── GregTechItems.java │ │ ├── GregTechMaterialEvents.java │ │ ├── GregTechMaterialTags.java │ │ ├── GregTechMaterialTypes.java │ │ ├── GregTechSounds.java │ │ ├── GregTechTags.java │ │ ├── Guis.java │ │ ├── Machines.java │ │ ├── Materials.java │ │ ├── MenuHandlers.java │ │ ├── Models.java │ │ ├── RecipeMaps.java │ │ ├── StructureInfo.java │ │ ├── Structures.java │ │ ├── Textures.java │ │ ├── TierMaps.java │ │ └── ToolTypes.java │ │ ├── datagen │ │ ├── GregTechBlockTagProvider.java │ │ ├── GregTechFluidTagProvider.java │ │ ├── GregTechItemTagProvider.java │ │ ├── GregTechLocalizations.java │ │ ├── GregTechTwilightStalctites.java │ │ ├── GregtechBlockLootProvider.java │ │ ├── MultiBlocks_tooltips_-_In_Progress.txt │ │ └── ProgressionAdvancements.java │ │ ├── gui │ │ ├── ButtonOverlays.java │ │ ├── ScreenCoalBoiler.java │ │ ├── ScreenFusionReactor.java │ │ ├── ScreenSteamMachine.java │ │ └── widgets │ │ │ ├── CoalBoilerFuelWidget.java │ │ │ ├── CoalBoilerWidget.java │ │ │ ├── FusionButtonWidget.java │ │ │ ├── LavaBoilerWidget.java │ │ │ └── SolarBoilerWidget.java │ │ ├── integration │ │ ├── AppliedEnergisticsRegistrar.java │ │ ├── ForestryRegistrar.java │ │ ├── GalacticraftRegistrar.java │ │ ├── IC2ClassicRegistrar.java │ │ ├── IC2Registrar.java │ │ ├── SpaceModRegistrar.java │ │ ├── UndergroundBiomesRegistrar.java │ │ └── rei │ │ │ ├── MaterialTreeCategory.java │ │ │ ├── MaterialTreeDisplay.java │ │ │ ├── OreProcessingCategory.java │ │ │ ├── OreProcessingDisplay.java │ │ │ └── REIRegistrar.java │ │ ├── items │ │ ├── ICoverTooltipInfo.java │ │ ├── IItemReactorRod.java │ │ ├── ItemBreederRod.java │ │ ├── ItemComponentRod.java │ │ ├── ItemCoverCustomTooltip.java │ │ ├── ItemDataStick.java │ │ ├── ItemDepletedRod.java │ │ ├── ItemEnrichedRod.java │ │ ├── ItemNuclearFuelRod.java │ │ ├── ItemPortableScanner.java │ │ ├── ItemPowerUnit.java │ │ ├── ItemPrintedPages.java │ │ ├── ItemSprayCan.java │ │ └── ItemTurbineRotor.java │ │ ├── loader │ │ ├── SimpleMachineLoader.java │ │ ├── WorldGenLoader.java │ │ ├── crafting │ │ │ ├── BlockParts.java │ │ │ ├── ElectricToolRecipes.java │ │ │ ├── MachineRecipes.java │ │ │ ├── MaterialCrafting.java │ │ │ ├── Miscellaneous.java │ │ │ ├── Parts.java │ │ │ ├── Smelting.java │ │ │ ├── SteamMachines.java │ │ │ ├── VanillaExtensions.java │ │ │ ├── WireCablesPlates.java │ │ │ └── WoodCrafting.java │ │ ├── items │ │ │ └── Circuitry.java │ │ ├── machines │ │ │ ├── AlloySmelterLoader.java │ │ │ ├── ArcFurnaceLoader.java │ │ │ ├── AssemblerLoader.java │ │ │ ├── AutoclaveLoader.java │ │ │ ├── BathLoader.java │ │ │ ├── BenderLoader.java │ │ │ ├── CannerLoader.java │ │ │ ├── CentrifugeLoader.java │ │ │ ├── ChemicalReactorLoader.java │ │ │ ├── CompressorLoader.java │ │ │ ├── CrystallizationChamberLoader.java │ │ │ ├── CutterLoader.java │ │ │ ├── DehydratorLoader.java │ │ │ ├── DistilleryLoader.java │ │ │ ├── ElectrolyzerLoader.java │ │ │ ├── ElectromagneticSeparatorLoader.java │ │ │ ├── ExtractorLoader.java │ │ │ ├── ExtruderLoader.java │ │ │ ├── FermenterLoader.java │ │ │ ├── FluidCannerLoader.java │ │ │ ├── FluidHeaterLoader.java │ │ │ ├── FluidPressLoader.java │ │ │ ├── FluidSolidifierLoader.java │ │ │ ├── ForgeHammerLoader.java │ │ │ ├── FormingPressLoader.java │ │ │ ├── LaserEngraverLoader.java │ │ │ ├── LatheLoader.java │ │ │ ├── MaceratorLoader.java │ │ │ ├── MixerLoader.java │ │ │ ├── OreByproducts.java │ │ │ ├── OreWasherLoader.java │ │ │ ├── PackagerLoader.java │ │ │ ├── PolarizerLoader.java │ │ │ ├── PrinterLoader.java │ │ │ ├── RoasterLoader.java │ │ │ ├── RockBreakerLoader.java │ │ │ ├── ScannerLoader.java │ │ │ ├── SifterLoader.java │ │ │ ├── SmelterLoader.java │ │ │ ├── ThermalCentrifugeLoader.java │ │ │ ├── UUMatterLoader.java │ │ │ ├── UnpackagerLoader.java │ │ │ ├── WiremillLoader.java │ │ │ └── generator │ │ │ │ ├── Fuels.java │ │ │ │ ├── LargeBoilerLoader.java │ │ │ │ └── SolidFuelBoilerLoader.java │ │ └── multi │ │ │ ├── BlastFurnaceLoader.java │ │ │ ├── CokeOvenLoader.java │ │ │ ├── CrackingUnitLoader.java │ │ │ ├── DistillationTowerLoader.java │ │ │ ├── FusionReactorLoader.java │ │ │ ├── HeatExchangerLoader.java │ │ │ ├── ImplosionCompressorLoader.java │ │ │ ├── PyrolysisOvenLoader.java │ │ │ ├── TreeGrowthSimulatorLoader.java │ │ │ └── VacuumFreezerLoader.java │ │ ├── machine │ │ ├── BlockEntityHatchHeat.java │ │ ├── HeatHatch.java │ │ ├── ISecondaryOutputMachine.java │ │ ├── MiniPortalMachine.java │ │ ├── MultiblockTankMachine.java │ │ ├── SecondaryOutputMachine.java │ │ ├── SteamMachine.java │ │ ├── caps │ │ │ ├── ParallelRecipeHandler.java │ │ │ └── SecondaryOutputCoverHandler.java │ │ └── maps │ │ │ └── DisassemblingMap.java │ │ ├── material │ │ ├── FluidProduct.java │ │ └── GregTechMaterialEvent.java │ │ ├── proxy │ │ ├── ClientHandler.java │ │ └── CommonHandler.java │ │ └── worldgen │ │ ├── OilSpoutEntry.java │ │ ├── OilSpoutFluid.java │ │ └── OilSpoutSavedData.java │ └── resources │ ├── .cache │ └── cache │ ├── assets │ ├── antimatter │ │ └── textures │ │ │ ├── item │ │ │ └── tool │ │ │ │ ├── huge_turbine_rotor.png │ │ │ │ ├── large_turbine_rotor.png │ │ │ │ ├── overlay │ │ │ │ ├── huge_turbine_rotor.png │ │ │ │ ├── large_turbine_rotor.png │ │ │ │ ├── pincers.png │ │ │ │ ├── small_turbine_rotor.png │ │ │ │ └── turbine_rotor.png │ │ │ │ ├── pincers.png │ │ │ │ ├── small_turbine_rotor.png │ │ │ │ └── turbine_rotor.png │ │ │ └── material │ │ │ ├── boule.png │ │ │ ├── boule_overlay.png │ │ │ ├── broken_turbine_rotor.png │ │ │ ├── broken_turbine_rotor_overlay.png │ │ │ ├── chamber.png │ │ │ ├── chamber_overlay.png │ │ │ ├── huge_broken_turbine_rotor.png │ │ │ ├── huge_broken_turbine_rotor_overlay.png │ │ │ ├── large_broken_turbine_rotor.png │ │ │ ├── large_broken_turbine_rotor_overlay.png │ │ │ ├── magnetic │ │ │ ├── boule.png │ │ │ ├── boule_overlay.png │ │ │ ├── broken_turbine_rotor.png │ │ │ ├── broken_turbine_rotor_overlay.png │ │ │ ├── huge_broken_turbine_rotor.png │ │ │ ├── huge_broken_turbine_rotor_overlay.png │ │ │ ├── large_broken_turbine_rotor.png │ │ │ ├── large_broken_turbine_rotor_overlay.png │ │ │ ├── small_broken_turbine_rotor.png │ │ │ ├── small_broken_turbine_rotor_overlay.png │ │ │ ├── turbine_blade.png │ │ │ └── turbine_blade_overlay.png │ │ │ ├── small_broken_turbine_rotor.png │ │ │ ├── small_broken_turbine_rotor_overlay.png │ │ │ ├── turbine_blade.png │ │ │ └── turbine_blade_overlay.png │ └── gti │ │ ├── gt5u-machine-base.zip │ │ ├── icon.png │ │ ├── icon_huge.png │ │ ├── lang │ │ └── ru_ru.json │ │ ├── models │ │ └── block │ │ │ ├── cover │ │ │ ├── nuclear.json │ │ │ ├── output.json │ │ │ ├── output_secondary.json │ │ │ ├── plate.json │ │ │ └── pump.json │ │ │ ├── machine │ │ │ ├── base.json │ │ │ ├── overlay │ │ │ │ ├── assembler │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── autoclave │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── chemical_reactor │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── combustion_engine │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── cracking_unit │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── cryo_distillation_tower │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── decay_chamber │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── dehydrator │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── disassembler │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── distillation_tower │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── distillery │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── electric_blast_furnace │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── extruder │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── fermenter │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── gas_turbine │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── large_boiler │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── large_chemical_reactor │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── large_heat_exchanger │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── large_turbine │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── south_active.json │ │ │ │ │ ├── south_idle.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── macerator │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── miniature_portal │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── multi_smelter │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── nuclear_reactor_core │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north-east-rod.json │ │ │ │ │ ├── north-west-rod.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south-east-rod.json │ │ │ │ │ ├── south-west-rod.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── oil_drilling_rig │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── plasma_arc_furnace │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── processing_array │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── pyrolysis_oven │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── solar_panel │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ ├── steam_turbine │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ │ └── wire_mill │ │ │ │ │ ├── down.json │ │ │ │ │ ├── east.json │ │ │ │ │ ├── north.json │ │ │ │ │ ├── south.json │ │ │ │ │ ├── up.json │ │ │ │ │ └── west.json │ │ │ ├── overlay_empty_down.json │ │ │ ├── overlay_empty_east.json │ │ │ ├── overlay_empty_north.json │ │ │ ├── overlay_empty_south.json │ │ │ ├── overlay_empty_up.json │ │ │ ├── overlay_empty_west.json │ │ │ └── pipe_extra.json │ │ │ ├── mini_portal.json │ │ │ ├── mining_pipe_thin.json │ │ │ └── preset │ │ │ └── solar_panel.json │ │ ├── new-gui-textures.zip │ │ ├── new-machine-base.zip │ │ ├── new-machine-base │ │ ├── assets │ │ │ └── gti │ │ │ │ └── textures │ │ │ │ └── block │ │ │ │ ├── casing │ │ │ │ ├── base.png │ │ │ │ ├── black_bronze.png │ │ │ │ ├── bricked_bronze.png │ │ │ │ ├── bricked_steel.png │ │ │ │ ├── bronze.png │ │ │ │ ├── bronze_plated_brick.png │ │ │ │ ├── creative.png │ │ │ │ ├── engine_intake.png │ │ │ │ ├── ev.png │ │ │ │ ├── fire_bricks.png │ │ │ │ ├── firebox_bronze.png │ │ │ │ ├── firebox_steel.png │ │ │ │ ├── firebox_titanium.png │ │ │ │ ├── firebox_tungstensteel.png │ │ │ │ ├── frost_proof.png │ │ │ │ ├── fusion_1.png │ │ │ │ ├── fusion_2.png │ │ │ │ ├── fusion_3.png │ │ │ │ ├── gearbox_bronze.png │ │ │ │ ├── gearbox_steel.png │ │ │ │ ├── gearbox_titanium.png │ │ │ │ ├── gearbox_tungstensteel.png │ │ │ │ ├── heat_proof.png │ │ │ │ ├── hull_ev.png │ │ │ │ ├── hull_hv.png │ │ │ │ ├── hull_iv.png │ │ │ │ ├── hull_luv.png │ │ │ │ ├── hull_lv.png │ │ │ │ ├── hull_max.png │ │ │ │ ├── hull_mv.png │ │ │ │ ├── hull_ulv.png │ │ │ │ ├── hull_uv.png │ │ │ │ ├── hull_zpm.png │ │ │ │ ├── hv.png │ │ │ │ ├── iv.png │ │ │ │ ├── luv.png │ │ │ │ ├── lv.png │ │ │ │ ├── max.png │ │ │ │ ├── mv.png │ │ │ │ ├── pipe_bronze.png │ │ │ │ ├── pipe_steel.png │ │ │ │ ├── pipe_titanium.png │ │ │ │ ├── pipe_tungstensteel.png │ │ │ │ ├── radiation_proof.png │ │ │ │ ├── solid_steel.png │ │ │ │ ├── stainless_steel.png │ │ │ │ ├── steel.png │ │ │ │ ├── titanium.png │ │ │ │ ├── tungstensteel.png │ │ │ │ ├── turbine_1.png │ │ │ │ ├── turbine_2.png │ │ │ │ ├── turbine_3.png │ │ │ │ ├── turbine_4.png │ │ │ │ ├── ulv.png │ │ │ │ ├── uv.png │ │ │ │ └── zpm.png │ │ │ │ └── machine │ │ │ │ └── base │ │ │ │ ├── advanced_miner.png │ │ │ │ ├── bricked_bronze.png │ │ │ │ ├── bricked_steel.png │ │ │ │ ├── bronze.png │ │ │ │ ├── bronze_blast_furnace.png │ │ │ │ ├── charcoal_pit.png │ │ │ │ ├── combustion_engine.png │ │ │ │ ├── cracking_unit.png │ │ │ │ ├── distillation_tower.png │ │ │ │ ├── electric_blast_furnace.png │ │ │ │ ├── ev.png │ │ │ │ ├── heat_exchanger.png │ │ │ │ ├── hull_ev.png │ │ │ │ ├── hull_hv.png │ │ │ │ ├── hull_iv.png │ │ │ │ ├── hull_luv.png │ │ │ │ ├── hull_lv.png │ │ │ │ ├── hull_max.png │ │ │ │ ├── hull_mv.png │ │ │ │ ├── hull_ulv.png │ │ │ │ ├── hull_uv.png │ │ │ │ ├── hull_zpm.png │ │ │ │ ├── hv.png │ │ │ │ ├── implosion_compressor.png │ │ │ │ ├── iv.png │ │ │ │ ├── large_boiler_ev.png │ │ │ │ ├── large_boiler_hv.png │ │ │ │ ├── large_boiler_lv.png │ │ │ │ ├── large_boiler_mv.png │ │ │ │ ├── large_turbine_ev.png │ │ │ │ ├── large_turbine_hv.png │ │ │ │ ├── large_turbine_iv.png │ │ │ │ ├── large_turbine_uv.png │ │ │ │ ├── luv.png │ │ │ │ ├── lv.png │ │ │ │ ├── max.png │ │ │ │ ├── multi_smelter.png │ │ │ │ ├── mv.png │ │ │ │ ├── nuclear_reactor.png │ │ │ │ ├── oil_cracking_unit.png │ │ │ │ ├── oil_drilling_rig_ev.png │ │ │ │ ├── oil_drilling_rig_iv.png │ │ │ │ ├── oil_drilling_rig_luv.png │ │ │ │ ├── oil_drilling_rig_zpm.png │ │ │ │ ├── pyrolysis_oven.png │ │ │ │ ├── steel.png │ │ │ │ ├── ulv.png │ │ │ │ ├── umv.png │ │ │ │ ├── uv.png │ │ │ │ ├── vacuum_freezer.png │ │ │ │ └── zpm.png │ │ └── pack.mcmeta │ │ ├── new-stone-textures-old.zip │ │ ├── new-stone-textures.zip │ │ ├── old-antimatter-ore-textures.zip │ │ ├── sounds.json │ │ ├── sounds │ │ ├── drill.ogg │ │ ├── extractor.ogg │ │ ├── furnace.ogg │ │ ├── macerator.ogg │ │ ├── magnetizer.ogg │ │ ├── treetap.ogg │ │ └── wrench.ogg │ │ └── textures │ │ ├── block │ │ ├── casing │ │ │ ├── base.png │ │ │ ├── black_bronze.png │ │ │ ├── blast_brick.png │ │ │ ├── brick.png │ │ │ ├── bricked_bronze.png │ │ │ ├── bricked_steel.png │ │ │ ├── bronze.png │ │ │ ├── bronze_firebox.png │ │ │ ├── bronze_gearbox.png │ │ │ ├── bronze_pipe.png │ │ │ ├── bronze_plated_brick.png │ │ │ ├── chemically_inert.png │ │ │ ├── creative.png │ │ │ ├── dense_lead.png │ │ │ ├── electrolytic_cell.png │ │ │ ├── electrolytic_cell_active.png │ │ │ ├── electrolytic_cell_active.png.mcmeta │ │ │ ├── engine_intake.png │ │ │ ├── ev.png │ │ │ ├── fire_bricks.png │ │ │ ├── frost_proof.png │ │ │ ├── fusion.png │ │ │ ├── fusion.png.mcmeta │ │ │ ├── fusion_1.png │ │ │ ├── fusion_1.png.mcmeta │ │ │ ├── grinding_wheels.png │ │ │ ├── grinding_wheels_top.png │ │ │ ├── grinding_wheels_top_active.png │ │ │ ├── grinding_wheels_top_active.png.mcmeta │ │ │ ├── heat_proof.png │ │ │ ├── hull_ev.png │ │ │ ├── hull_hv.png │ │ │ ├── hull_iv.png │ │ │ ├── hull_luv.png │ │ │ ├── hull_lv.png │ │ │ ├── hull_mv.png │ │ │ ├── hull_uhv.png │ │ │ ├── hull_ulv.png │ │ │ ├── hull_uv.png │ │ │ ├── hull_zpm.png │ │ │ ├── hv.png │ │ │ ├── iv.png │ │ │ ├── long_distance_fluid_pipe.png │ │ │ ├── long_distance_item_pipe.png │ │ │ ├── long_distance_wire_ev.png │ │ │ ├── long_distance_wire_iv.png │ │ │ ├── long_distance_wire_luv.png │ │ │ ├── long_distance_wire_uv.png │ │ │ ├── long_distance_wire_zpm.png │ │ │ ├── luv.png │ │ │ ├── lv.png │ │ │ ├── mv.png │ │ │ ├── ore_washer_parts_top_active.png │ │ │ ├── ore_washer_parts_top_active.png.mcmeta │ │ │ ├── ore_washing_parts.png │ │ │ ├── ore_washing_parts_top.png │ │ │ ├── plastic.png │ │ │ ├── platinum.png │ │ │ ├── ptfe_pipe.png │ │ │ ├── radiation_proof.png │ │ │ ├── solid_steel.png │ │ │ ├── stainless_steel.png │ │ │ ├── stainless_steel_gearbox.png │ │ │ ├── stainless_steel_turbine.png │ │ │ ├── steel.png │ │ │ ├── steel_firebox.png │ │ │ ├── steel_gearbox.png │ │ │ ├── steel_pipe.png │ │ │ ├── steel_turbine.png │ │ │ ├── titanium.png │ │ │ ├── titanium_firebox.png │ │ │ ├── titanium_gearbox.png │ │ │ ├── titanium_pipe.png │ │ │ ├── titanium_turbine.png │ │ │ ├── tungsten.png │ │ │ ├── tungstensteel.png │ │ │ ├── tungstensteel_firebox.png │ │ │ ├── tungstensteel_gearbox.png │ │ │ ├── tungstensteel_pipe.png │ │ │ ├── tungstensteel_turbine.png │ │ │ ├── uhv.png │ │ │ ├── ulv.png │ │ │ ├── uv.png │ │ │ ├── wall │ │ │ │ ├── metal.png │ │ │ │ ├── metal_tank_side_overlay.png │ │ │ │ ├── wood.png │ │ │ │ ├── wood_overlay_side.png │ │ │ │ ├── wood_tank_side_overlay.png │ │ │ │ └── wood_tank_top_overlay.png │ │ │ └── zpm.png │ │ ├── coil │ │ │ ├── cupronickel.png │ │ │ ├── fusion.png │ │ │ ├── hssg.png │ │ │ ├── kanthal.png │ │ │ ├── naquadah.png │ │ │ ├── naquadah_alloy.png │ │ │ ├── nichrome.png │ │ │ ├── superconductor.png │ │ │ └── tungstensteel.png │ │ ├── cover │ │ │ ├── activity_detector.png │ │ │ ├── activity_detector_possible.png │ │ │ ├── activity_detector_processing.png │ │ │ ├── activity_detector_successful.png │ │ │ ├── air_vent.png │ │ │ ├── conveyor.png │ │ │ ├── conveyor.png.mcmeta │ │ │ ├── crafting_module.png │ │ │ ├── drain.png │ │ │ ├── energy.png │ │ │ ├── energy_detector.png │ │ │ ├── fluid_detector.png │ │ │ ├── fluid_filter.png │ │ │ ├── fluid_filter_inverted.png │ │ │ ├── item_detector.png │ │ │ ├── item_filter.png │ │ │ ├── item_filter_inverted.png │ │ │ ├── item_retriever.png │ │ │ ├── item_retriever_inverted.png │ │ │ ├── monitor.png │ │ │ ├── needs_maintenance_cover.png │ │ │ ├── output.png │ │ │ ├── output_secondary.png │ │ │ ├── progress_sensor.png │ │ │ ├── pump.png │ │ │ ├── pump.png.mcmeta │ │ │ ├── reactor_output.png │ │ │ ├── reactor_output_secondary.png │ │ │ ├── redstone_conductor_accept.png │ │ │ ├── redstone_conductor_emit.png │ │ │ ├── redstone_machine_controller.png │ │ │ └── shutter.png │ │ ├── ct │ │ │ ├── fusion │ │ │ │ ├── fusion_1_0.png │ │ │ │ ├── fusion_1_1.png │ │ │ │ ├── fusion_1_10.png │ │ │ │ ├── fusion_1_11.png │ │ │ │ ├── fusion_1_12.png │ │ │ │ ├── fusion_1_13.png │ │ │ │ ├── fusion_1_14.png │ │ │ │ ├── fusion_1_15.png │ │ │ │ ├── fusion_1_16.png │ │ │ │ ├── fusion_1_2.png │ │ │ │ ├── fusion_1_3.png │ │ │ │ ├── fusion_1_4.png │ │ │ │ ├── fusion_1_5.png │ │ │ │ ├── fusion_1_6.png │ │ │ │ ├── fusion_1_7.png │ │ │ │ ├── fusion_1_8.png │ │ │ │ ├── fusion_1_9.png │ │ │ │ ├── fusion_2_0.png │ │ │ │ ├── fusion_2_1.png │ │ │ │ ├── fusion_2_10.png │ │ │ │ ├── fusion_2_11.png │ │ │ │ ├── fusion_2_12.png │ │ │ │ ├── fusion_2_13.png │ │ │ │ ├── fusion_2_14.png │ │ │ │ ├── fusion_2_15.png │ │ │ │ ├── fusion_2_16.png │ │ │ │ ├── fusion_2_2.png │ │ │ │ ├── fusion_2_3.png │ │ │ │ ├── fusion_2_4.png │ │ │ │ ├── fusion_2_5.png │ │ │ │ ├── fusion_2_6.png │ │ │ │ ├── fusion_2_7.png │ │ │ │ ├── fusion_2_8.png │ │ │ │ ├── fusion_2_9.png │ │ │ │ ├── fusion_3_0.png │ │ │ │ ├── fusion_3_1.png │ │ │ │ ├── fusion_3_10.png │ │ │ │ ├── fusion_3_11.png │ │ │ │ ├── fusion_3_12.png │ │ │ │ ├── fusion_3_13.png │ │ │ │ ├── fusion_3_14.png │ │ │ │ ├── fusion_3_15.png │ │ │ │ ├── fusion_3_16.png │ │ │ │ ├── fusion_3_2.png │ │ │ │ ├── fusion_3_3.png │ │ │ │ ├── fusion_3_4.png │ │ │ │ ├── fusion_3_5.png │ │ │ │ ├── fusion_3_6.png │ │ │ │ ├── fusion_3_7.png │ │ │ │ ├── fusion_3_8.png │ │ │ │ └── fusion_3_9.png │ │ │ ├── fusion_1_ctm.png │ │ │ ├── fusion_ctm.png │ │ │ └── turbine │ │ │ │ ├── large_turbine_0.png │ │ │ │ ├── large_turbine_1.png │ │ │ │ ├── large_turbine_2.png │ │ │ │ ├── large_turbine_3.png │ │ │ │ ├── large_turbine_5.png │ │ │ │ ├── large_turbine_6.png │ │ │ │ ├── large_turbine_7.png │ │ │ │ ├── large_turbine_8.png │ │ │ │ ├── large_turbine_active_0.png │ │ │ │ ├── large_turbine_active_0.png.mcmeta │ │ │ │ ├── large_turbine_active_1.png │ │ │ │ ├── large_turbine_active_1.png.mcmeta │ │ │ │ ├── large_turbine_active_2.png │ │ │ │ ├── large_turbine_active_2.png.mcmeta │ │ │ │ ├── large_turbine_active_3.png │ │ │ │ ├── large_turbine_active_3.png.mcmeta │ │ │ │ ├── large_turbine_active_4.png │ │ │ │ ├── large_turbine_active_4.png.mcmeta │ │ │ │ ├── large_turbine_active_5.png │ │ │ │ ├── large_turbine_active_5.png.mcmeta │ │ │ │ ├── large_turbine_active_6.png │ │ │ │ ├── large_turbine_active_6.png.mcmeta │ │ │ │ ├── large_turbine_active_7.png │ │ │ │ ├── large_turbine_active_7.png.mcmeta │ │ │ │ ├── large_turbine_active_8.png │ │ │ │ └── large_turbine_active_8.png.mcmeta │ │ ├── end_stone.png │ │ ├── fluid │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── plasma.png │ │ │ └── plasma.png.mcmeta │ │ ├── fusion_active.png │ │ ├── hazard.png │ │ ├── idsu.png │ │ ├── input.png │ │ ├── machine │ │ │ ├── base │ │ │ │ ├── advanced_miner.png │ │ │ │ ├── brick.png │ │ │ │ ├── bricked_bronze.png │ │ │ │ ├── bricked_steel.png │ │ │ │ ├── bronze.png │ │ │ │ ├── bronze_blast_furnace.png │ │ │ │ ├── charcoal_pit.png │ │ │ │ ├── coke_oven.png │ │ │ │ ├── combustion_engine.png │ │ │ │ ├── cracking_unit.png │ │ │ │ ├── cryo_distillation_tower.png │ │ │ │ ├── distillation_tower.png │ │ │ │ ├── electric_blast_furnace.png │ │ │ │ ├── ev.png │ │ │ │ ├── fusion_control_computer.png │ │ │ │ ├── hull_ev.png │ │ │ │ ├── hull_hv.png │ │ │ │ ├── hull_iv.png │ │ │ │ ├── hull_luv.png │ │ │ │ ├── hull_lv.png │ │ │ │ ├── hull_mv.png │ │ │ │ ├── hull_uhv.png │ │ │ │ ├── hull_ulv.png │ │ │ │ ├── hull_uv.png │ │ │ │ ├── hull_zpm.png │ │ │ │ ├── hv.png │ │ │ │ ├── implosion_compressor.png │ │ │ │ ├── iv.png │ │ │ │ ├── large_autoclave.png │ │ │ │ ├── large_bathing_vat.png │ │ │ │ ├── large_boiler_ev.png │ │ │ │ ├── large_boiler_hv.png │ │ │ │ ├── large_boiler_lv.png │ │ │ │ ├── large_boiler_mv.png │ │ │ │ ├── large_centrifuge.png │ │ │ │ ├── large_chemical_reactor.png │ │ │ │ ├── large_electrolyzer.png │ │ │ │ ├── large_heat_exchanger.png │ │ │ │ ├── large_ore_washer.png │ │ │ │ ├── large_pulverizer.png │ │ │ │ ├── large_turbine_ev.png │ │ │ │ ├── large_turbine_hv.png │ │ │ │ ├── large_turbine_iv.png │ │ │ │ ├── large_turbine_uv.png │ │ │ │ ├── long_distance_fluid_endpoint.png │ │ │ │ ├── long_distance_item_endpoint.png │ │ │ │ ├── luv.png │ │ │ │ ├── lv.png │ │ │ │ ├── multi_smelter.png │ │ │ │ ├── mv.png │ │ │ │ ├── mv_saturated.png │ │ │ │ ├── none.png │ │ │ │ ├── nuclear_reactor_core.png │ │ │ │ ├── nuclear_reactor_core_window.png │ │ │ │ ├── oil_drilling_rig.png │ │ │ │ ├── primitive_blast_furnace.png │ │ │ │ ├── processing_array.png │ │ │ │ ├── pyrolysis_oven.png │ │ │ │ ├── reactor_rods │ │ │ │ │ ├── sides.png │ │ │ │ │ └── top.png │ │ │ │ ├── small_heat_exchanger.png │ │ │ │ ├── steel.png │ │ │ │ ├── tree_growth_simulator.png │ │ │ │ ├── uhv.png │ │ │ │ ├── ulv.png │ │ │ │ ├── umv.png │ │ │ │ ├── uv.png │ │ │ │ ├── vacuum_freezer.png │ │ │ │ └── zpm.png │ │ │ ├── empty.png │ │ │ └── overlay │ │ │ │ ├── 16x_battery_buffer │ │ │ │ ├── ev │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── hv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── iv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── luv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── lv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── mv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── uhv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── uv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ └── zpm │ │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── 1x_battery_buffer │ │ │ │ ├── ev │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── hv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── iv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── luv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── lv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── mv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── uhv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── uv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ └── zpm │ │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── 4x_battery_buffer │ │ │ │ ├── ev │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── hv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── iv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── luv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── lv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── mv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── uhv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── uv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ └── zpm │ │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── 8x_battery_buffer │ │ │ │ ├── ev │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── hv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── iv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── luv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── lv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── mv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── uhv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── uv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ └── zpm │ │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── adjustable_transformer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── advanced_miner │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── alloy_smelter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── amp_fabricator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── arc_furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── assembler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── autoclave │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── bath │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── bender │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── canner │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── centrifuge │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ ├── side.png.mcmeta │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── charcoal_pit │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── chemical_reactor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── chest_buffer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── left.png │ │ │ │ │ ├── right.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── left.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ │ ├── circuit_assembler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── coke_oven │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── combustion_engine │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── combustion_generator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── compressor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── cracking_unit │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── crop_harvester │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ ├── side_wip.png │ │ │ │ ├── side_wip.xcf │ │ │ │ └── top.png │ │ │ │ ├── cryo_distillation_tower │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── crystallization_chamber │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── cutter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── dehydrator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── disassembler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── distillation_tower │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── distillery │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── dynamo_hatch │ │ │ │ ├── ev │ │ │ │ │ └── front.png │ │ │ │ ├── hv │ │ │ │ │ └── front.png │ │ │ │ ├── iv │ │ │ │ │ └── front.png │ │ │ │ ├── luv │ │ │ │ │ └── front.png │ │ │ │ ├── lv │ │ │ │ │ └── front.png │ │ │ │ ├── mv │ │ │ │ │ └── front.png │ │ │ │ ├── side.png │ │ │ │ ├── uhv │ │ │ │ │ └── front.png │ │ │ │ ├── ulv │ │ │ │ │ └── front.png │ │ │ │ ├── uv │ │ │ │ │ └── front.png │ │ │ │ └── zpm │ │ │ │ │ └── front.png │ │ │ │ ├── electric_blast_furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── electric_item_filter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── left.png │ │ │ │ │ ├── right.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── left.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ │ ├── electric_oven │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── electric_pump │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── electric_type_filter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── left.png │ │ │ │ │ ├── right.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── left.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ │ ├── electrolyzer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── electromagnetic_separator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── energy_hatch │ │ │ │ ├── ev │ │ │ │ │ └── front.png │ │ │ │ ├── hv │ │ │ │ │ └── front.png │ │ │ │ ├── iv │ │ │ │ │ └── front.png │ │ │ │ ├── luv │ │ │ │ │ └── front.png │ │ │ │ ├── lv │ │ │ │ │ └── front.png │ │ │ │ ├── mv │ │ │ │ │ └── front.png │ │ │ │ ├── side.png │ │ │ │ ├── uhv │ │ │ │ │ └── front.png │ │ │ │ ├── ulv │ │ │ │ │ └── front.png │ │ │ │ ├── uv │ │ │ │ │ └── front.png │ │ │ │ └── zpm │ │ │ │ │ └── front.png │ │ │ │ ├── extractor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── extruder │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fermenter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fluid_canner │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fluid_heater │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fluid_input_hatch │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fluid_output_hatch │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fluid_press │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fluid_solidifier │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── forge_hammer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── forming_press │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fusion_control_computer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── front.png.mcmeta │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── gas_turbine │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── back.png.mcmeta │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── side.png.mcmeta │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── hull │ │ │ │ ├── ev │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── hv │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── iv │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── luv │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── lv │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── mv │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── uhv │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── ulv │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── uv │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ └── zpm │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── implosion_compressor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── infinite_steam │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ ├── top.png │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── item_input_hatch │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── item_output_hatch │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── large_autoclave │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── large_bathing_vat │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── large_boiler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── large_centrifuge │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── large_chemical_reactor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── large_electrolyzer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── large_heat_exchanger │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── large_ore_washer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── large_pulverizer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── large_turbine │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── laser_engraver │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── lathe │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── lava_boiler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── long_distance_fluid_endpoint │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── long_distance_item_endpoint │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── long_distance_transformer_endpoint │ │ │ │ ├── ev │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── iv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── luv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── uv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ └── zpm │ │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── macerator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── mass_fabricator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── microwave │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── miner │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── mixer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ ├── side.png.mcmeta │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── muffler_hatch │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── multi_smelter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── naquadah_reactor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── nuclear_reactor_core │ │ │ │ ├── front.png │ │ │ │ ├── rod_sides.png │ │ │ │ ├── rod_top.png │ │ │ │ ├── side.png │ │ │ │ ├── side_window.png │ │ │ │ ├── top.png │ │ │ │ └── top_active.png │ │ │ │ ├── oil_cracking_unit │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── oil_drilling_rig │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── ore_washer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── packager │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── plasma_arc_furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── plasma_generator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── polarizer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── press │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── primitive_blast_furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── printer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── processing_array │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── pyrolysis_oven │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── quantum_tank │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ ├── top.png │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── recycler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── replicator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── roaster │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── rock_breaker │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── scanner │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── seismic_prospector │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── semifluid_generator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── sifter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── small_heat_exchanger │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── back.png.mcmeta │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ ├── side.png.mcmeta │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── smelter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── solar_boiler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── solar_panel │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── solid_fuel_boiler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_alloy_smelter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_compressor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_extractor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_forge_hammer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_macerator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_sifter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_turbine │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── side.png.mcmeta │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── super_buffer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── left.png │ │ │ │ │ ├── right.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── left.png │ │ │ │ ├── right.png │ │ │ │ └── top.png │ │ │ │ ├── thermal_centrifuge │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── transformer │ │ │ │ ├── ev │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── hv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── iv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── luv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── lv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── max │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── mv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── ulv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── uv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ └── zpm │ │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── transformer_hiamp │ │ │ │ ├── ev │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── hv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── iv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── lv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ └── mv │ │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── transformer_ultra │ │ │ │ ├── ev │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── hv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── iv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── lv │ │ │ │ │ ├── active │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── bottom.png │ │ │ │ │ │ ├── front.png │ │ │ │ │ │ ├── side.png │ │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ └── mv │ │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── tree_growth_simulator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── unpackager │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── vacuum_freezer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ └── wire_mill │ │ │ │ ├── active │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ ├── nether_rack.png │ │ ├── ore.png │ │ ├── output.png │ │ ├── pipe │ │ │ ├── cable_huge.png │ │ │ ├── cable_large.png │ │ │ ├── cable_normal.png │ │ │ ├── cable_side.png │ │ │ ├── cable_small.png │ │ │ ├── cable_tiny.png │ │ │ ├── cable_vtiny.png │ │ │ ├── mining_pipe.png │ │ │ ├── pipe_huge.png │ │ │ ├── pipe_large.png │ │ │ ├── pipe_normal.png │ │ │ ├── pipe_side.png │ │ │ ├── pipe_small.png │ │ │ ├── pipe_tiny.png │ │ │ ├── pipe_vtiny.png │ │ │ └── wire_side.png │ │ ├── powder_barrel.png │ │ ├── stone.png │ │ ├── stone │ │ │ ├── asphalt.png │ │ │ ├── bauxite.png │ │ │ ├── black_granite │ │ │ │ ├── bricks.png │ │ │ │ ├── bricks_chiseled.png │ │ │ │ ├── bricks_cracked.png │ │ │ │ ├── bricks_mossy.png │ │ │ │ ├── cobble.png │ │ │ │ ├── cobble_mossy.png │ │ │ │ ├── smooth.png │ │ │ │ └── stone.png │ │ │ ├── blue_schist │ │ │ │ ├── bricks.png │ │ │ │ ├── bricks_chiseled.png │ │ │ │ ├── bricks_cracked.png │ │ │ │ ├── bricks_mossy.png │ │ │ │ ├── cobble.png │ │ │ │ ├── cobble_mossy.png │ │ │ │ ├── smooth.png │ │ │ │ └── stone.png │ │ │ ├── coal.png │ │ │ ├── green_schist │ │ │ │ ├── bricks.png │ │ │ │ ├── bricks_chiseled.png │ │ │ │ ├── bricks_cracked.png │ │ │ │ ├── bricks_mossy.png │ │ │ │ ├── cobble.png │ │ │ │ ├── cobble_mossy.png │ │ │ │ ├── smooth.png │ │ │ │ └── stone.png │ │ │ ├── kimberlite │ │ │ │ ├── bricks.png │ │ │ │ ├── bricks_chiseled.png │ │ │ │ ├── bricks_cracked.png │ │ │ │ ├── bricks_mossy.png │ │ │ │ ├── cobble.png │ │ │ │ ├── cobble_mossy.png │ │ │ │ ├── smooth.png │ │ │ │ └── stone.png │ │ │ ├── komatiite │ │ │ │ ├── bricks.png │ │ │ │ ├── bricks_chiseled.png │ │ │ │ ├── bricks_cracked.png │ │ │ │ ├── bricks_mossy.png │ │ │ │ ├── cobble.png │ │ │ │ ├── cobble_mossy.png │ │ │ │ ├── smooth.png │ │ │ │ └── stone.png │ │ │ ├── lignite_coal.png │ │ │ ├── limestone │ │ │ │ ├── bricks.png │ │ │ │ ├── bricks_chiseled.png │ │ │ │ ├── bricks_cracked.png │ │ │ │ ├── bricks_mossy.png │ │ │ │ ├── cobble.png │ │ │ │ ├── cobble_mossy.png │ │ │ │ ├── smooth.png │ │ │ │ └── stone.png │ │ │ ├── marble │ │ │ │ ├── bricks.png │ │ │ │ ├── bricks_chiseled.png │ │ │ │ ├── bricks_cracked.png │ │ │ │ ├── bricks_mossy.png │ │ │ │ ├── cobble.png │ │ │ │ ├── cobble_mossy.png │ │ │ │ ├── smooth.png │ │ │ │ └── stone.png │ │ │ ├── oil_shale.png │ │ │ ├── quartzite │ │ │ │ ├── bricks.png │ │ │ │ ├── bricks_chiseled.png │ │ │ │ ├── bricks_cracked.png │ │ │ │ ├── bricks_mossy.png │ │ │ │ ├── cobble.png │ │ │ │ ├── cobble_mossy.png │ │ │ │ ├── smooth.png │ │ │ │ └── stone.png │ │ │ ├── red_granite │ │ │ │ ├── bricks.png │ │ │ │ ├── bricks_chiseled.png │ │ │ │ ├── bricks_cracked.png │ │ │ │ ├── bricks_mossy.png │ │ │ │ ├── cobble.png │ │ │ │ ├── cobble_mossy.png │ │ │ │ ├── smooth.png │ │ │ │ └── stone.png │ │ │ ├── rock_salt.png │ │ │ └── salt.png │ │ └── tfc │ │ │ └── ore │ │ │ ├── normal_bauxite.png │ │ │ ├── normal_cobaltite.png │ │ │ ├── normal_galena.png │ │ │ ├── normal_uraninite.png │ │ │ ├── poor_bauxite.png │ │ │ ├── poor_cobaltite.png │ │ │ ├── poor_galena.png │ │ │ ├── poor_uraninite.png │ │ │ ├── rich_bauxite.png │ │ │ ├── rich_cobaltite.png │ │ │ ├── rich_galena.png │ │ │ └── rich_uraninite.png │ │ ├── gui │ │ ├── background │ │ │ ├── basic_tank.png │ │ │ ├── centrifuge.png │ │ │ ├── chest_buffer.png │ │ │ ├── coke_oven.png │ │ │ ├── electric_item_filter.png │ │ │ ├── electric_type_filter.png │ │ │ ├── fusion_computer_middle_overlay.png │ │ │ ├── fusion_computer_top_bottom_overlay.png │ │ │ ├── fusion_control_computer.png │ │ │ ├── lava_boiler_steel.png │ │ │ ├── machine_bronze.png │ │ │ ├── machine_bronze_forge_hammer.png │ │ │ ├── machine_bronze_macerator.png │ │ │ ├── machine_forge_hammer.png │ │ │ ├── machine_macerator.png │ │ │ ├── machine_steel.png │ │ │ ├── machine_steel_forge_hammer.png │ │ │ ├── machine_steel_macerator.png │ │ │ ├── multiblock.png │ │ │ ├── primitive_blast_furnace.png │ │ │ ├── solar_boiler_bronze.png │ │ │ ├── solid_fuel_boiler_bronze.png │ │ │ ├── solid_fuel_boiler_steel.png │ │ │ ├── super_buffer.png │ │ │ ├── transformer_digital.png │ │ │ └── type_filter.png │ │ ├── button │ │ │ ├── blacklist_off.png │ │ │ ├── blacklist_on.png │ │ │ ├── bronze_machine_state.png │ │ │ ├── energy_off.png │ │ │ ├── energy_on.png │ │ │ ├── forge_hammer_overlay.png │ │ │ ├── gui_buttons.png │ │ │ ├── gui_slots.png │ │ │ ├── invert_redstone_off.png │ │ │ ├── invert_redstone_on.png │ │ │ ├── nbt_off.png │ │ │ ├── nbt_on.png │ │ │ ├── pull_up_off.png │ │ │ ├── pull_up_on.png │ │ │ ├── redstone_control_off.png │ │ │ ├── redstone_control_on.png │ │ │ └── steel_machine_state.png │ │ ├── cover │ │ │ ├── conveyor.png │ │ │ ├── energy_detector.png │ │ │ ├── fluid_filter.png │ │ │ ├── item_filter.png │ │ │ ├── pump.png │ │ │ └── redstone_machine_controller.png │ │ ├── energy_bar.png │ │ ├── energybarold.png │ │ ├── machine │ │ │ ├── 16x_battery_buffer.png │ │ │ ├── 1x_battery_buffer.png │ │ │ ├── 4x_battery_buffer.png │ │ │ ├── 8x_battery_buffer.png │ │ │ ├── Adjusment Notes.txt │ │ │ ├── Generator Centered.png │ │ │ ├── alloy_smelter.png │ │ │ ├── amp_fabricator.png │ │ │ ├── arc_furnace.png │ │ │ ├── assembler.png │ │ │ ├── autoclave.png │ │ │ ├── basic_tank.png │ │ │ ├── bender.png │ │ │ ├── canner.png │ │ │ ├── centrifuge.png │ │ │ ├── chemical_bath.png │ │ │ ├── chemical_dehydrator.png │ │ │ ├── chemical_reactor.png │ │ │ ├── coal_boiler_bronze.png │ │ │ ├── coal_boiler_steel.png │ │ │ ├── coke_oven.png │ │ │ ├── compressor.png │ │ │ ├── cutter.png │ │ │ ├── decay_chamber.png │ │ │ ├── digital_tank.png │ │ │ ├── disassembler.png │ │ │ ├── distillery.png │ │ │ ├── electric_item_filter.png │ │ │ ├── electric_type_filter.png │ │ │ ├── electrolyzer.png │ │ │ ├── electromagnetic_separator.png │ │ │ ├── extractor.png │ │ │ ├── extruder.png │ │ │ ├── fermenter.png │ │ │ ├── fluid_canner.png │ │ │ ├── fluid_extractor.png │ │ │ ├── fluid_heater.png │ │ │ ├── fluid_solidifier.png │ │ │ ├── forge_hammer.png │ │ │ ├── forming_press.png │ │ │ ├── furnace.png │ │ │ ├── hatch.png │ │ │ ├── laser_engraver.png │ │ │ ├── lathe.png │ │ │ ├── lava_boiler_steel.png │ │ │ ├── macerator.png │ │ │ ├── macerator_ev.png │ │ │ ├── macerator_hv.png │ │ │ ├── macerator_iv.png │ │ │ ├── mass_fabricator.png │ │ │ ├── mixer.png │ │ │ ├── multi_display.png │ │ │ ├── multi_display_fluid.png │ │ │ ├── multiblock.png │ │ │ ├── ore_washer.png │ │ │ ├── packager.png │ │ │ ├── plasma_arc_furnace.png │ │ │ ├── polarizer.png │ │ │ ├── primitive_blast_furnace.png │ │ │ ├── recycler.png │ │ │ ├── replicator.png │ │ │ ├── scanner.png │ │ │ ├── sifter.png │ │ │ ├── solar_boiler_bronze.png │ │ │ ├── steam_alloy_smelter_bronze.png │ │ │ ├── steam_alloy_smelter_steel.png │ │ │ ├── steam_compressor_bronze.png │ │ │ ├── steam_compressor_steel.png │ │ │ ├── steam_extractor_bronze.png │ │ │ ├── steam_extractor_steel.png │ │ │ ├── steam_forge_hammer_bronze.png │ │ │ ├── steam_forge_hammer_steel.png │ │ │ ├── steam_furnace_bronze.png │ │ │ ├── steam_furnace_steel.png │ │ │ ├── steam_macerator_bronze.png │ │ │ ├── steam_macerator_steel.png │ │ │ ├── steam_sifter_bronze.png │ │ │ ├── steam_sifter_steel.png │ │ │ ├── thermal_centrifuge.png │ │ │ ├── transformer_digital.png │ │ │ ├── type_filter.png │ │ │ └── wire_mill.png │ │ ├── material_tree │ │ │ ├── background.png │ │ │ ├── base.png │ │ │ ├── block.png │ │ │ ├── block_no_ingot.png │ │ │ ├── bolt.png │ │ │ ├── cable.png │ │ │ ├── fluid_from_dust.png │ │ │ ├── fluid_from_ingot.png │ │ │ ├── foil.png │ │ │ ├── frame.png │ │ │ ├── gear.png │ │ │ ├── gear_small.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── nugget.png │ │ │ ├── pipe.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_from_ingot.png │ │ │ ├── plate_from_ingot_and_block.png │ │ │ ├── plate_no_ingot_from_dust.png │ │ │ ├── plate_no_ingot_from_dust_and_block.png │ │ │ ├── ring.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_no_ingot.png │ │ │ ├── screw.png │ │ │ ├── spring.png │ │ │ ├── wire.png │ │ │ └── wire_fine.png │ │ ├── ore_byproducts.png │ │ ├── ore_byproducts │ │ │ ├── background.png │ │ │ ├── base.png │ │ │ ├── chem.png │ │ │ ├── sep.png │ │ │ ├── sift.png │ │ │ ├── smelt1.png │ │ │ ├── smelt2.png │ │ │ └── vac.png │ │ ├── progress_bars │ │ │ ├── assembler.png │ │ │ ├── bender.png │ │ │ ├── bronze_compressor.png │ │ │ ├── bronze_default.png │ │ │ ├── bronze_extractor.png │ │ │ ├── bronze_forge_hammer.png │ │ │ ├── bronze_macerator.png │ │ │ ├── bronze_sifter.png │ │ │ ├── canner.png │ │ │ ├── chemical_reactor.png │ │ │ ├── coke_oven.png │ │ │ ├── compressor.png │ │ │ ├── cutter.png │ │ │ ├── electromagnetic_separator.png │ │ │ ├── extractor.png │ │ │ ├── extruder.png │ │ │ ├── forge_hammer.png │ │ │ ├── fusion_reactor.png │ │ │ ├── lathe.png │ │ │ ├── macerator.png │ │ │ ├── mixer.png │ │ │ ├── ore_washer.png │ │ │ ├── recycler.png │ │ │ ├── sifter.png │ │ │ ├── smelter.png │ │ │ ├── steel_compressor.png │ │ │ ├── steel_default.png │ │ │ ├── steel_extractor.png │ │ │ ├── steel_forge_hammer.png │ │ │ ├── steel_macerator.png │ │ │ ├── steel_sifter.png │ │ │ └── wiremill.png │ │ ├── replicator.png │ │ ├── slots │ │ │ ├── battery.png │ │ │ ├── blank.png │ │ │ ├── bronze_fluid.png │ │ │ ├── bronze_item.png │ │ │ ├── primitive.png │ │ │ ├── primitive_cell.png │ │ │ ├── primitive_dust.png │ │ │ ├── primitive_fire.png │ │ │ ├── primitive_ingot.png │ │ │ ├── steel_fluid.png │ │ │ └── steel_item.png │ │ └── template.png │ │ ├── item │ │ ├── basic │ │ │ ├── activity_detector_possible.png │ │ │ ├── activity_detector_processing.png │ │ │ ├── activity_detector_success.png │ │ │ ├── air_vent.png │ │ │ ├── cell_steel.png │ │ │ ├── cell_tin.png │ │ │ ├── cell_tungstensteel.png │ │ │ ├── circuits │ │ │ │ ├── crystal_processor.png │ │ │ │ ├── data_stick.png │ │ │ │ ├── integrated_processor.png │ │ │ │ ├── mainframe.png │ │ │ │ ├── microprocessor.png │ │ │ │ ├── nanoprocessor.png │ │ │ │ ├── nanoprocessor_assembly.png │ │ │ │ ├── processor_assembly.png │ │ │ │ ├── processor_circuit_board.png │ │ │ │ ├── quantumprocessor.png │ │ │ │ ├── quantumprocessor_assembly.png │ │ │ │ ├── wetware_circuit.png │ │ │ │ └── workstation.png │ │ │ ├── combs │ │ │ │ ├── comb_aluminium.png │ │ │ │ ├── comb_certus.png │ │ │ │ ├── comb_chrome.png │ │ │ │ ├── comb_coal.png │ │ │ │ ├── comb_copper.png │ │ │ │ ├── comb_diamond.png │ │ │ │ ├── comb_emerald.png │ │ │ │ ├── comb_gold.png │ │ │ │ ├── comb_iridium.png │ │ │ │ ├── comb_iron.png │ │ │ │ ├── comb_lapis.png │ │ │ │ ├── comb_lead.png │ │ │ │ ├── comb_lignite.png │ │ │ │ ├── comb_manganese.png │ │ │ │ ├── comb_naquadah.png │ │ │ │ ├── comb_nickel.png │ │ │ │ ├── comb_oil.png │ │ │ │ ├── comb_olivine.png │ │ │ │ ├── comb_platinum.png │ │ │ │ ├── comb_plutonium.png │ │ │ │ ├── comb_redstone.png │ │ │ │ ├── comb_resin.png │ │ │ │ ├── comb_ruby.png │ │ │ │ ├── comb_sapphire.png │ │ │ │ ├── comb_silver.png │ │ │ │ ├── comb_slag.png │ │ │ │ ├── comb_steel.png │ │ │ │ ├── comb_stone.png │ │ │ │ ├── comb_tin.png │ │ │ │ ├── comb_titanium.png │ │ │ │ ├── comb_tungsten.png │ │ │ │ ├── comb_uranium.png │ │ │ │ └── comb_zinc.png │ │ │ ├── computer_monitor.png │ │ │ ├── conveyor_ev.png │ │ │ ├── conveyor_hv.png │ │ │ ├── conveyor_iv.png │ │ │ ├── conveyor_lv.png │ │ │ ├── conveyor_mv.png │ │ │ ├── data_stick.png │ │ │ ├── depleted_nuclear_fuel_rod.png │ │ │ ├── drain.png │ │ │ ├── drops │ │ │ │ ├── drop_aluminium.png │ │ │ │ ├── drop_copper.png │ │ │ │ ├── drop_emerald.png │ │ │ │ ├── drop_gold.png │ │ │ │ ├── drop_iridium.png │ │ │ │ ├── drop_iron.png │ │ │ │ ├── drop_lead.png │ │ │ │ ├── drop_manganese.png │ │ │ │ ├── drop_naquadah.png │ │ │ │ ├── drop_nickel.png │ │ │ │ ├── drop_oil.png │ │ │ │ ├── drop_osmium.png │ │ │ │ ├── drop_platinum.png │ │ │ │ ├── drop_silver.png │ │ │ │ ├── drop_thorium.png │ │ │ │ ├── drop_tin.png │ │ │ │ ├── drop_titanium.png │ │ │ │ ├── drop_tungsten.png │ │ │ │ ├── drop_uranite.png │ │ │ │ ├── drop_uranium.png │ │ │ │ ├── drop_uua.png │ │ │ │ ├── drop_uum.png │ │ │ │ └── drop_zinc.png │ │ │ ├── emitter_ev.png │ │ │ ├── emitter_hv.png │ │ │ ├── emitter_iv.png │ │ │ ├── emitter_lv.png │ │ │ ├── emitter_mv.png │ │ │ ├── empty_geiger_counter.png │ │ │ ├── empty_nuclear_fuel_rod.png │ │ │ ├── energy_detector.png │ │ │ ├── energy_port.png │ │ │ ├── field_gen_ev.png │ │ │ ├── field_gen_hv.png │ │ │ ├── field_gen_iv.png │ │ │ ├── field_gen_lv.png │ │ │ ├── field_gen_mv.png │ │ │ ├── fluid_detector.png │ │ │ ├── fluid_filter.png │ │ │ ├── fluid_port.png │ │ │ ├── fluid_regulator_ev.png │ │ │ ├── fluid_regulator_hv.png │ │ │ ├── fluid_regulator_iv.png │ │ │ ├── fluid_regulator_lv.png │ │ │ ├── fluid_regulator_mv.png │ │ │ ├── geiger_counter.png │ │ │ ├── gravi_star.png │ │ │ ├── int_circuits │ │ │ │ ├── int_circuit_0.png │ │ │ │ ├── int_circuit_1.png │ │ │ │ ├── int_circuit_10.png │ │ │ │ ├── int_circuit_11.png │ │ │ │ ├── int_circuit_12.png │ │ │ │ ├── int_circuit_13.png │ │ │ │ ├── int_circuit_14.png │ │ │ │ ├── int_circuit_15.png │ │ │ │ ├── int_circuit_16.png │ │ │ │ ├── int_circuit_17.png │ │ │ │ ├── int_circuit_18.png │ │ │ │ ├── int_circuit_19.png │ │ │ │ ├── int_circuit_2.png │ │ │ │ ├── int_circuit_20.png │ │ │ │ ├── int_circuit_21.png │ │ │ │ ├── int_circuit_22.png │ │ │ │ ├── int_circuit_23.png │ │ │ │ ├── int_circuit_24.png │ │ │ │ ├── int_circuit_3.png │ │ │ │ ├── int_circuit_4.png │ │ │ │ ├── int_circuit_5.png │ │ │ │ ├── int_circuit_6.png │ │ │ │ ├── int_circuit_7.png │ │ │ │ ├── int_circuit_8.png │ │ │ │ └── int_circuit_9.png │ │ │ ├── item_detector.png │ │ │ ├── item_filter.png │ │ │ ├── item_port.png │ │ │ ├── item_regulator_ev.png │ │ │ ├── item_regulator_hv.png │ │ │ ├── item_regulator_iv.png │ │ │ ├── item_regulator_lv.png │ │ │ ├── item_regulator_mv.png │ │ │ ├── item_retriever.png │ │ │ ├── lapotronic_energy_orb │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── needs_maintenance_cover.png │ │ │ ├── nuclear_fuel_rod.png │ │ │ ├── petri_dish.png │ │ │ ├── piston_ev.png │ │ │ ├── piston_hv.png │ │ │ ├── piston_iv.png │ │ │ ├── piston_lv.png │ │ │ ├── piston_mv.png │ │ │ ├── portable_scanner.png │ │ │ ├── printed_pages.png │ │ │ ├── progress_sensor.png │ │ │ ├── pump_ev.png │ │ │ ├── pump_hv.png │ │ │ ├── pump_iv.png │ │ │ ├── pump_lv.png │ │ │ ├── pump_mv.png │ │ │ ├── quantum_eye.png │ │ │ ├── quantum_star.png │ │ │ ├── redstone_conductor_accept.png │ │ │ ├── redstone_conductor_emit.png │ │ │ ├── redstone_machine_controller.png │ │ │ ├── robot_arm_ev.png │ │ │ ├── robot_arm_hv.png │ │ │ ├── robot_arm_iv.png │ │ │ ├── robot_arm_lv.png │ │ │ ├── robot_arm_mv.png │ │ │ ├── sensor_ev.png │ │ │ ├── sensor_hv.png │ │ │ ├── sensor_iv.png │ │ │ ├── sensor_lv.png │ │ │ ├── sensor_mv.png │ │ │ ├── shutter.png │ │ │ ├── silicon │ │ │ │ ├── asoc.png │ │ │ │ ├── asoc_wafer.png │ │ │ │ ├── central_processing_unit.png │ │ │ │ ├── central_processing_unit_wafer.png │ │ │ │ ├── glowstone_doped_monocrystalline_silicon_boule.png │ │ │ │ ├── glowstone_doped_wafer.png │ │ │ │ ├── high_power_ic.png │ │ │ │ ├── hpic_wafer.png │ │ │ │ ├── integrated_logic_circuit.png │ │ │ │ ├── integrated_logic_circuit_wafer.png │ │ │ │ ├── monocrystalline_silicon_boule.png │ │ │ │ ├── nanacomponent_central_processing_unit.png │ │ │ │ ├── nand_memory_chip.png │ │ │ │ ├── nand_memory_chip_wafer.png │ │ │ │ ├── nano_cpu_wafer.png │ │ │ │ ├── naquadah_doped_monocrystalline_silicon_boule.png │ │ │ │ ├── naquadah_doped_wafer.png │ │ │ │ ├── nor_memory_chip.png │ │ │ │ ├── nor_memory_chip_wafer.png │ │ │ │ ├── pic_wafer.png │ │ │ │ ├── power_ic.png │ │ │ │ ├── qbit_processing_unit.png │ │ │ │ ├── qbit_wafer.png │ │ │ │ ├── random_access_memory_chip.png │ │ │ │ ├── random_access_memory_chip_wafer.png │ │ │ │ ├── silicon_chip.png │ │ │ │ ├── soc.png │ │ │ │ ├── soc_wafer.png │ │ │ │ └── wafer.png │ │ │ ├── small_coil.png │ │ │ ├── spray_cans │ │ │ │ ├── black_spray_can.png │ │ │ │ ├── blue_spray_can.png │ │ │ │ ├── brown_spray_can.png │ │ │ │ ├── cyan_spray_can.png │ │ │ │ ├── empty_spray_can.png │ │ │ │ ├── gray_spray_can.png │ │ │ │ ├── green_spray_can.png │ │ │ │ ├── light_blue_spray_can.png │ │ │ │ ├── light_gray_spray_can.png │ │ │ │ ├── lime_spray_can.png │ │ │ │ ├── magenta_spray_can.png │ │ │ │ ├── orange_spray_can.png │ │ │ │ ├── pink_spray_can.png │ │ │ │ ├── purple_spray_can.png │ │ │ │ ├── red_spray_can.png │ │ │ │ ├── white_spray_can.png │ │ │ │ └── yellow_spray_can.png │ │ │ ├── super_fuel_binder.png │ │ │ ├── tantalum_capacitor.png │ │ │ ├── tungsten_grind_head.png │ │ │ └── wood_pellet.png │ │ ├── other │ │ │ ├── cell_steel_cover.png │ │ │ ├── cell_steel_fluid.png │ │ │ ├── cell_tin_cover.png │ │ │ ├── cell_tin_fluid.png │ │ │ ├── cell_tungstensteel_cover.png │ │ │ └── cell_tungstensteel_fluid.png │ │ ├── temp │ │ │ ├── 635.png │ │ │ ├── 636.png │ │ │ ├── 637.png │ │ │ ├── conveyor_ev.png │ │ │ ├── conveyor_hv.png │ │ │ ├── conveyor_iv.png │ │ │ ├── conveyor_lv.png │ │ │ ├── conveyor_mv.png │ │ │ ├── emitter_ev.png │ │ │ ├── emitter_hv.png │ │ │ ├── emitter_iv.png │ │ │ ├── emitter_lv.png │ │ │ ├── emitter_mv.png │ │ │ ├── motor_ev.png │ │ │ ├── motor_hv.png │ │ │ ├── motor_iv.png │ │ │ ├── motor_lv.png │ │ │ ├── motor_mv.png │ │ │ ├── piston_ev.png │ │ │ ├── piston_hv.png │ │ │ ├── piston_iv.png │ │ │ ├── piston_lv.png │ │ │ ├── piston_mv.png │ │ │ ├── pump_ev.png │ │ │ ├── pump_hv.png │ │ │ ├── pump_iv.png │ │ │ ├── pump_lv.png │ │ │ ├── pump_mv.png │ │ │ ├── robot_arm_ev.png │ │ │ ├── robot_arm_hv.png │ │ │ ├── robot_arm_iv.png │ │ │ ├── robot_arm_lv.png │ │ │ ├── robot_arm_mv.png │ │ │ ├── sensor_ev.png │ │ │ ├── sensor_hv.png │ │ │ ├── sensor_iv.png │ │ │ ├── sensor_lv.png │ │ │ └── sensor_mv.png │ │ └── tfc │ │ │ └── ore │ │ │ ├── normal_bauxite.png │ │ │ ├── normal_cobaltite.png │ │ │ ├── normal_galena.png │ │ │ ├── normal_uraninite.png │ │ │ ├── poor_bauxite.png │ │ │ ├── poor_cobaltite.png │ │ │ ├── poor_galena.png │ │ │ ├── poor_uraninite.png │ │ │ ├── rich_bauxite.png │ │ │ ├── rich_cobaltite.png │ │ │ ├── rich_galena.png │ │ │ └── rich_uraninite.png │ │ ├── material │ │ ├── diamond │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── dull │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── pipe │ │ │ │ ├── pipe_huge.png │ │ │ │ ├── pipe_large.png │ │ │ │ ├── pipe_normal.png │ │ │ │ ├── pipe_side.png │ │ │ │ ├── pipe_small.png │ │ │ │ ├── pipe_tiny.png │ │ │ │ └── pipe_vtiny.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── emerald │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_gas_overlay.png_ │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_overlay.png_ │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock.png_ │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── fine │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── flint │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── gem_h │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── gem_v │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── lapis │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── lignite │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── magnetic │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── metallic │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── pipe │ │ │ │ ├── pipe_huge.png │ │ │ │ ├── pipe_large.png │ │ │ │ ├── pipe_normal.png │ │ │ │ ├── pipe_side.png │ │ │ │ ├── pipe_small.png │ │ │ │ ├── pipe_tiny.png │ │ │ │ └── pipe_vtiny.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── quartz │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── redstone │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── rough │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── pipe │ │ │ │ ├── pipe_huge.png │ │ │ │ ├── pipe_large.png │ │ │ │ ├── pipe_normal.png │ │ │ │ ├── pipe_side.png │ │ │ │ ├── pipe_small.png │ │ │ │ ├── pipe_tiny.png │ │ │ │ └── pipe_vtiny.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ ├── ruby │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ └── shiny │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── buzzsaw_blade.png │ │ │ ├── buzzsaw_blade_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chainsaw_bit.png │ │ │ ├── chainsaw_bit_overlay.png │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── drill_bit.png │ │ │ ├── drill_bit_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── pipe │ │ │ ├── pipe_huge.png │ │ │ ├── pipe_large.png │ │ │ ├── pipe_normal.png │ │ │ ├── pipe_side.png │ │ │ ├── pipe_small.png │ │ │ ├── pipe_tiny.png │ │ │ └── pipe_vtiny.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── raw_ore.png │ │ │ ├── raw_ore_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── spring_small.png │ │ │ ├── spring_small_overlay.png │ │ │ ├── wire_fine.png │ │ │ ├── wire_fine_overlay.png │ │ │ ├── wrench_bit.png │ │ │ └── wrench_bit_overlay.png │ │ └── other │ │ └── front.png │ ├── forge │ ├── GT4ReimaginedForge.java │ └── mixin │ │ └── GTCapabilityProviderAccessor.java │ ├── gti.mixins.json │ ├── gtuassets1.14 │ ├── blockstates │ │ ├── almandine_ore_andesite.json │ │ ├── almandine_ore_basalt.json │ │ ├── almandine_ore_diorite.json │ │ ├── almandine_ore_endstone.json │ │ ├── almandine_ore_granite.json │ │ ├── almandine_ore_granite_black.json │ │ ├── almandine_ore_granite_red.json │ │ ├── almandine_ore_marble.json │ │ ├── almandine_ore_netherrack.json │ │ ├── almandine_ore_sand.json │ │ ├── almandine_ore_sand_red.json │ │ ├── almandine_ore_sandstone.json │ │ ├── almandine_ore_small_andesite.json │ │ ├── almandine_ore_small_basalt.json │ │ ├── almandine_ore_small_diorite.json │ │ ├── almandine_ore_small_endstone.json │ │ ├── almandine_ore_small_granite.json │ │ ├── almandine_ore_small_granite_black.json │ │ ├── almandine_ore_small_granite_red.json │ │ ├── almandine_ore_small_marble.json │ │ ├── almandine_ore_small_netherrack.json │ │ ├── almandine_ore_small_sand.json │ │ ├── almandine_ore_small_sand_red.json │ │ ├── almandine_ore_small_sandstone.json │ │ ├── almandine_ore_small_stone.json │ │ ├── almandine_ore_stone.json │ │ ├── aluminium_ore_andesite.json │ │ ├── aluminium_ore_basalt.json │ │ ├── aluminium_ore_diorite.json │ │ ├── aluminium_ore_endstone.json │ │ ├── aluminium_ore_granite.json │ │ ├── aluminium_ore_granite_black.json │ │ ├── aluminium_ore_granite_red.json │ │ ├── aluminium_ore_marble.json │ │ ├── aluminium_ore_netherrack.json │ │ ├── aluminium_ore_sand.json │ │ ├── aluminium_ore_sand_red.json │ │ ├── aluminium_ore_sandstone.json │ │ ├── aluminium_ore_stone.json │ │ ├── amethyst_ore_andesite.json │ │ ├── amethyst_ore_basalt.json │ │ ├── amethyst_ore_diorite.json │ │ ├── amethyst_ore_endstone.json │ │ ├── amethyst_ore_granite.json │ │ ├── amethyst_ore_granite_black.json │ │ ├── amethyst_ore_granite_red.json │ │ ├── amethyst_ore_marble.json │ │ ├── amethyst_ore_netherrack.json │ │ ├── amethyst_ore_sand.json │ │ ├── amethyst_ore_sand_red.json │ │ ├── amethyst_ore_sandstone.json │ │ ├── amethyst_ore_small_andesite.json │ │ ├── amethyst_ore_small_basalt.json │ │ ├── amethyst_ore_small_diorite.json │ │ ├── amethyst_ore_small_endstone.json │ │ ├── amethyst_ore_small_granite.json │ │ ├── amethyst_ore_small_granite_black.json │ │ ├── amethyst_ore_small_granite_red.json │ │ ├── amethyst_ore_small_marble.json │ │ ├── amethyst_ore_small_netherrack.json │ │ ├── amethyst_ore_small_sand.json │ │ ├── amethyst_ore_small_sand_red.json │ │ ├── amethyst_ore_small_sandstone.json │ │ ├── amethyst_ore_small_stone.json │ │ ├── amethyst_ore_stone.json │ │ ├── andradite_ore_andesite.json │ │ ├── andradite_ore_basalt.json │ │ ├── andradite_ore_diorite.json │ │ ├── andradite_ore_endstone.json │ │ ├── andradite_ore_granite.json │ │ ├── andradite_ore_granite_black.json │ │ ├── andradite_ore_granite_red.json │ │ ├── andradite_ore_marble.json │ │ ├── andradite_ore_netherrack.json │ │ ├── andradite_ore_sand.json │ │ ├── andradite_ore_sand_red.json │ │ ├── andradite_ore_sandstone.json │ │ ├── andradite_ore_small_andesite.json │ │ ├── andradite_ore_small_basalt.json │ │ ├── andradite_ore_small_diorite.json │ │ ├── andradite_ore_small_endstone.json │ │ ├── andradite_ore_small_granite.json │ │ ├── andradite_ore_small_granite_black.json │ │ ├── andradite_ore_small_granite_red.json │ │ ├── andradite_ore_small_marble.json │ │ ├── andradite_ore_small_netherrack.json │ │ ├── andradite_ore_small_sand.json │ │ ├── andradite_ore_small_sand_red.json │ │ ├── andradite_ore_small_sandstone.json │ │ ├── andradite_ore_small_stone.json │ │ ├── andradite_ore_stone.json │ │ ├── banded_iron_ore_andesite.json │ │ ├── banded_iron_ore_basalt.json │ │ ├── banded_iron_ore_diorite.json │ │ ├── banded_iron_ore_endstone.json │ │ ├── banded_iron_ore_granite.json │ │ ├── banded_iron_ore_granite_black.json │ │ ├── banded_iron_ore_granite_red.json │ │ ├── banded_iron_ore_marble.json │ │ ├── banded_iron_ore_netherrack.json │ │ ├── banded_iron_ore_sand.json │ │ ├── banded_iron_ore_sand_red.json │ │ ├── banded_iron_ore_sandstone.json │ │ ├── banded_iron_ore_stone.json │ │ ├── barite_ore_andesite.json │ │ ├── barite_ore_basalt.json │ │ ├── barite_ore_diorite.json │ │ ├── barite_ore_endstone.json │ │ ├── barite_ore_granite.json │ │ ├── barite_ore_granite_black.json │ │ ├── barite_ore_granite_red.json │ │ ├── barite_ore_marble.json │ │ ├── barite_ore_netherrack.json │ │ ├── barite_ore_sand.json │ │ ├── barite_ore_sand_red.json │ │ ├── barite_ore_sandstone.json │ │ ├── barite_ore_stone.json │ │ ├── basalt.json │ │ ├── basic_fire_brick.json │ │ ├── bastnasite_ore_andesite.json │ │ ├── bastnasite_ore_basalt.json │ │ ├── bastnasite_ore_diorite.json │ │ ├── bastnasite_ore_endstone.json │ │ ├── bastnasite_ore_granite.json │ │ ├── bastnasite_ore_granite_black.json │ │ ├── bastnasite_ore_granite_red.json │ │ ├── bastnasite_ore_marble.json │ │ ├── bastnasite_ore_netherrack.json │ │ ├── bastnasite_ore_sand.json │ │ ├── bastnasite_ore_sand_red.json │ │ ├── bastnasite_ore_sandstone.json │ │ ├── bastnasite_ore_stone.json │ │ ├── bauxite_ore_andesite.json │ │ ├── bauxite_ore_basalt.json │ │ ├── bauxite_ore_diorite.json │ │ ├── bauxite_ore_endstone.json │ │ ├── bauxite_ore_granite.json │ │ ├── bauxite_ore_granite_black.json │ │ ├── bauxite_ore_granite_red.json │ │ ├── bauxite_ore_marble.json │ │ ├── bauxite_ore_netherrack.json │ │ ├── bauxite_ore_sand.json │ │ ├── bauxite_ore_sand_red.json │ │ ├── bauxite_ore_sandstone.json │ │ ├── bauxite_ore_stone.json │ │ ├── bentonite_ore_andesite.json │ │ ├── bentonite_ore_basalt.json │ │ ├── bentonite_ore_diorite.json │ │ ├── bentonite_ore_endstone.json │ │ ├── bentonite_ore_granite.json │ │ ├── bentonite_ore_granite_black.json │ │ ├── bentonite_ore_granite_red.json │ │ ├── bentonite_ore_marble.json │ │ ├── bentonite_ore_netherrack.json │ │ ├── bentonite_ore_sand.json │ │ ├── bentonite_ore_sand_red.json │ │ ├── bentonite_ore_sandstone.json │ │ ├── bentonite_ore_stone.json │ │ ├── beryllium_ore_andesite.json │ │ ├── beryllium_ore_basalt.json │ │ ├── beryllium_ore_diorite.json │ │ ├── beryllium_ore_endstone.json │ │ ├── beryllium_ore_granite.json │ │ ├── beryllium_ore_granite_black.json │ │ ├── beryllium_ore_granite_red.json │ │ ├── beryllium_ore_marble.json │ │ ├── beryllium_ore_netherrack.json │ │ ├── beryllium_ore_sand.json │ │ ├── beryllium_ore_sand_red.json │ │ ├── beryllium_ore_sandstone.json │ │ ├── beryllium_ore_stone.json │ │ ├── bismuth_ore_andesite.json │ │ ├── bismuth_ore_basalt.json │ │ ├── bismuth_ore_diorite.json │ │ ├── bismuth_ore_endstone.json │ │ ├── bismuth_ore_granite.json │ │ ├── bismuth_ore_granite_black.json │ │ ├── bismuth_ore_granite_red.json │ │ ├── bismuth_ore_marble.json │ │ ├── bismuth_ore_netherrack.json │ │ ├── bismuth_ore_sand.json │ │ ├── bismuth_ore_sand_red.json │ │ ├── bismuth_ore_sandstone.json │ │ ├── bismuth_ore_small_andesite.json │ │ ├── bismuth_ore_small_basalt.json │ │ ├── bismuth_ore_small_diorite.json │ │ ├── bismuth_ore_small_endstone.json │ │ ├── bismuth_ore_small_granite.json │ │ ├── bismuth_ore_small_granite_black.json │ │ ├── bismuth_ore_small_granite_red.json │ │ ├── bismuth_ore_small_marble.json │ │ ├── bismuth_ore_small_netherrack.json │ │ ├── bismuth_ore_small_sand.json │ │ ├── bismuth_ore_small_sand_red.json │ │ ├── bismuth_ore_small_sandstone.json │ │ ├── bismuth_ore_small_stone.json │ │ ├── bismuth_ore_stone.json │ │ ├── blue_sapphire_ore_andesite.json │ │ ├── blue_sapphire_ore_basalt.json │ │ ├── blue_sapphire_ore_diorite.json │ │ ├── blue_sapphire_ore_endstone.json │ │ ├── blue_sapphire_ore_granite.json │ │ ├── blue_sapphire_ore_granite_black.json │ │ ├── blue_sapphire_ore_granite_red.json │ │ ├── blue_sapphire_ore_marble.json │ │ ├── blue_sapphire_ore_netherrack.json │ │ ├── blue_sapphire_ore_sand.json │ │ ├── blue_sapphire_ore_sand_red.json │ │ ├── blue_sapphire_ore_sandstone.json │ │ ├── blue_sapphire_ore_small_andesite.json │ │ ├── blue_sapphire_ore_small_basalt.json │ │ ├── blue_sapphire_ore_small_diorite.json │ │ ├── blue_sapphire_ore_small_endstone.json │ │ ├── blue_sapphire_ore_small_granite.json │ │ ├── blue_sapphire_ore_small_granite_black.json │ │ ├── blue_sapphire_ore_small_granite_red.json │ │ ├── blue_sapphire_ore_small_marble.json │ │ ├── blue_sapphire_ore_small_netherrack.json │ │ ├── blue_sapphire_ore_small_sand.json │ │ ├── blue_sapphire_ore_small_sand_red.json │ │ ├── blue_sapphire_ore_small_sandstone.json │ │ ├── blue_sapphire_ore_small_stone.json │ │ ├── blue_sapphire_ore_stone.json │ │ ├── blue_topaz_ore_andesite.json │ │ ├── blue_topaz_ore_basalt.json │ │ ├── blue_topaz_ore_diorite.json │ │ ├── blue_topaz_ore_endstone.json │ │ ├── blue_topaz_ore_granite.json │ │ ├── blue_topaz_ore_granite_black.json │ │ ├── blue_topaz_ore_granite_red.json │ │ ├── blue_topaz_ore_marble.json │ │ ├── blue_topaz_ore_netherrack.json │ │ ├── blue_topaz_ore_sand.json │ │ ├── blue_topaz_ore_sand_red.json │ │ ├── blue_topaz_ore_sandstone.json │ │ ├── blue_topaz_ore_small_andesite.json │ │ ├── blue_topaz_ore_small_basalt.json │ │ ├── blue_topaz_ore_small_diorite.json │ │ ├── blue_topaz_ore_small_endstone.json │ │ ├── blue_topaz_ore_small_granite.json │ │ ├── blue_topaz_ore_small_granite_black.json │ │ ├── blue_topaz_ore_small_granite_red.json │ │ ├── blue_topaz_ore_small_marble.json │ │ ├── blue_topaz_ore_small_netherrack.json │ │ ├── blue_topaz_ore_small_sand.json │ │ ├── blue_topaz_ore_small_sand_red.json │ │ ├── blue_topaz_ore_small_sandstone.json │ │ ├── blue_topaz_ore_small_stone.json │ │ ├── blue_topaz_ore_stone.json │ │ ├── brown_limonite_ore_andesite.json │ │ ├── brown_limonite_ore_basalt.json │ │ ├── brown_limonite_ore_diorite.json │ │ ├── brown_limonite_ore_endstone.json │ │ ├── brown_limonite_ore_granite.json │ │ ├── brown_limonite_ore_granite_black.json │ │ ├── brown_limonite_ore_granite_red.json │ │ ├── brown_limonite_ore_marble.json │ │ ├── brown_limonite_ore_netherrack.json │ │ ├── brown_limonite_ore_sand.json │ │ ├── brown_limonite_ore_sand_red.json │ │ ├── brown_limonite_ore_sandstone.json │ │ ├── brown_limonite_ore_stone.json │ │ ├── cable_aluminium_huge.json │ │ ├── cable_aluminium_large.json │ │ ├── cable_aluminium_normal.json │ │ ├── cable_aluminium_small.json │ │ ├── cable_aluminium_tiny.json │ │ ├── cable_aluminium_vtiny.json │ │ ├── cable_annealed_copper_huge.json │ │ ├── cable_annealed_copper_large.json │ │ ├── cable_annealed_copper_normal.json │ │ ├── cable_annealed_copper_small.json │ │ ├── cable_annealed_copper_tiny.json │ │ ├── cable_annealed_copper_vtiny.json │ │ ├── cable_cobalt_huge.json │ │ ├── cable_cobalt_large.json │ │ ├── cable_cobalt_normal.json │ │ ├── cable_cobalt_small.json │ │ ├── cable_cobalt_tiny.json │ │ ├── cable_cobalt_vtiny.json │ │ ├── cable_copper_huge.json │ │ ├── cable_copper_large.json │ │ ├── cable_copper_normal.json │ │ ├── cable_copper_small.json │ │ ├── cable_copper_tiny.json │ │ ├── cable_copper_vtiny.json │ │ ├── cable_cupronickel_huge.json │ │ ├── cable_cupronickel_large.json │ │ ├── cable_cupronickel_normal.json │ │ ├── cable_cupronickel_small.json │ │ ├── cable_cupronickel_tiny.json │ │ ├── cable_cupronickel_vtiny.json │ │ ├── cable_duranium_huge.json │ │ ├── cable_duranium_large.json │ │ ├── cable_duranium_normal.json │ │ ├── cable_duranium_small.json │ │ ├── cable_duranium_tiny.json │ │ ├── cable_duranium_vtiny.json │ │ ├── cable_electrum_huge.json │ │ ├── cable_electrum_large.json │ │ ├── cable_electrum_normal.json │ │ ├── cable_electrum_small.json │ │ ├── cable_electrum_tiny.json │ │ ├── cable_electrum_vtiny.json │ │ ├── cable_gold_huge.json │ │ ├── cable_gold_large.json │ │ ├── cable_gold_normal.json │ │ ├── cable_gold_small.json │ │ ├── cable_gold_tiny.json │ │ ├── cable_gold_vtiny.json │ │ ├── cable_graphene_huge.json │ │ ├── cable_graphene_large.json │ │ ├── cable_graphene_normal.json │ │ ├── cable_graphene_small.json │ │ ├── cable_graphene_tiny.json │ │ ├── cable_graphene_vtiny.json │ │ ├── cable_hssg_huge.json │ │ ├── cable_hssg_large.json │ │ ├── cable_hssg_normal.json │ │ ├── cable_hssg_small.json │ │ ├── cable_hssg_tiny.json │ │ ├── cable_hssg_vtiny.json │ │ ├── cable_iron_huge.json │ │ ├── cable_iron_large.json │ │ ├── cable_iron_normal.json │ │ ├── cable_iron_small.json │ │ ├── cable_iron_tiny.json │ │ ├── cable_iron_vtiny.json │ │ ├── cable_kanthal_huge.json │ │ ├── cable_kanthal_large.json │ │ ├── cable_kanthal_normal.json │ │ ├── cable_kanthal_small.json │ │ ├── cable_kanthal_tiny.json │ │ ├── cable_kanthal_vtiny.json │ │ ├── cable_lead_huge.json │ │ ├── cable_lead_large.json │ │ ├── cable_lead_normal.json │ │ ├── cable_lead_small.json │ │ ├── cable_lead_tiny.json │ │ ├── cable_lead_vtiny.json │ │ ├── cable_naquadah_alloy_huge.json │ │ ├── cable_naquadah_alloy_large.json │ │ ├── cable_naquadah_alloy_normal.json │ │ ├── cable_naquadah_alloy_small.json │ │ ├── cable_naquadah_alloy_tiny.json │ │ ├── cable_naquadah_alloy_vtiny.json │ │ ├── cable_naquadah_huge.json │ │ ├── cable_naquadah_large.json │ │ ├── cable_naquadah_normal.json │ │ ├── cable_naquadah_small.json │ │ ├── cable_naquadah_tiny.json │ │ ├── cable_naquadah_vtiny.json │ │ ├── cable_nichrome_huge.json │ │ ├── cable_nichrome_large.json │ │ ├── cable_nichrome_normal.json │ │ ├── cable_nichrome_small.json │ │ ├── cable_nichrome_tiny.json │ │ ├── cable_nichrome_vtiny.json │ │ ├── cable_nickel_huge.json │ │ ├── cable_nickel_large.json │ │ ├── cable_nickel_normal.json │ │ ├── cable_nickel_small.json │ │ ├── cable_nickel_tiny.json │ │ ├── cable_nickel_vtiny.json │ │ ├── cable_niobium_titanium_huge.json │ │ ├── cable_niobium_titanium_large.json │ │ ├── cable_niobium_titanium_normal.json │ │ ├── cable_niobium_titanium_small.json │ │ ├── cable_niobium_titanium_tiny.json │ │ ├── cable_niobium_titanium_vtiny.json │ │ ├── cable_osmium_huge.json │ │ ├── cable_osmium_large.json │ │ ├── cable_osmium_normal.json │ │ ├── cable_osmium_small.json │ │ ├── cable_osmium_tiny.json │ │ ├── cable_osmium_vtiny.json │ │ ├── cable_platinum_huge.json │ │ ├── cable_platinum_large.json │ │ ├── cable_platinum_normal.json │ │ ├── cable_platinum_small.json │ │ ├── cable_platinum_tiny.json │ │ ├── cable_platinum_vtiny.json │ │ ├── cable_red_alloy_huge.json │ │ ├── cable_red_alloy_large.json │ │ ├── cable_red_alloy_normal.json │ │ ├── cable_red_alloy_small.json │ │ ├── cable_red_alloy_tiny.json │ │ ├── cable_red_alloy_vtiny.json │ │ ├── cable_silver_huge.json │ │ ├── cable_silver_large.json │ │ ├── cable_silver_normal.json │ │ ├── cable_silver_small.json │ │ ├── cable_silver_tiny.json │ │ ├── cable_silver_vtiny.json │ │ ├── cable_soldering_alloy_huge.json │ │ ├── cable_soldering_alloy_large.json │ │ ├── cable_soldering_alloy_normal.json │ │ ├── cable_soldering_alloy_small.json │ │ ├── cable_soldering_alloy_tiny.json │ │ ├── cable_soldering_alloy_vtiny.json │ │ ├── cable_steel_huge.json │ │ ├── cable_steel_large.json │ │ ├── cable_steel_normal.json │ │ ├── cable_steel_small.json │ │ ├── cable_steel_tiny.json │ │ ├── cable_steel_vtiny.json │ │ ├── cable_superconductor_huge.json │ │ ├── cable_superconductor_large.json │ │ ├── cable_superconductor_normal.json │ │ ├── cable_superconductor_small.json │ │ ├── cable_superconductor_tiny.json │ │ ├── cable_superconductor_vtiny.json │ │ ├── cable_tin_huge.json │ │ ├── cable_tin_large.json │ │ ├── cable_tin_normal.json │ │ ├── cable_tin_small.json │ │ ├── cable_tin_tiny.json │ │ ├── cable_tin_vtiny.json │ │ ├── cable_titanium_huge.json │ │ ├── cable_titanium_large.json │ │ ├── cable_titanium_normal.json │ │ ├── cable_titanium_small.json │ │ ├── cable_titanium_tiny.json │ │ ├── cable_titanium_vtiny.json │ │ ├── cable_tungsten_huge.json │ │ ├── cable_tungsten_large.json │ │ ├── cable_tungsten_normal.json │ │ ├── cable_tungsten_small.json │ │ ├── cable_tungsten_tiny.json │ │ ├── cable_tungsten_vtiny.json │ │ ├── cable_tungstensteel_huge.json │ │ ├── cable_tungstensteel_large.json │ │ ├── cable_tungstensteel_normal.json │ │ ├── cable_tungstensteel_small.json │ │ ├── cable_tungstensteel_tiny.json │ │ ├── cable_tungstensteel_vtiny.json │ │ ├── cable_vanadium_gallium_huge.json │ │ ├── cable_vanadium_gallium_large.json │ │ ├── cable_vanadium_gallium_normal.json │ │ ├── cable_vanadium_gallium_small.json │ │ ├── cable_vanadium_gallium_tiny.json │ │ ├── cable_vanadium_gallium_vtiny.json │ │ ├── cable_yttrium_barium_cuprate_huge.json │ │ ├── cable_yttrium_barium_cuprate_large.json │ │ ├── cable_yttrium_barium_cuprate_normal.json │ │ ├── cable_yttrium_barium_cuprate_small.json │ │ ├── cable_yttrium_barium_cuprate_tiny.json │ │ ├── cable_yttrium_barium_cuprate_vtiny.json │ │ ├── cable_zinc_huge.json │ │ ├── cable_zinc_large.json │ │ ├── cable_zinc_normal.json │ │ ├── cable_zinc_small.json │ │ ├── cable_zinc_tiny.json │ │ ├── cable_zinc_vtiny.json │ │ ├── calcite_ore_andesite.json │ │ ├── calcite_ore_basalt.json │ │ ├── calcite_ore_diorite.json │ │ ├── calcite_ore_endstone.json │ │ ├── calcite_ore_granite.json │ │ ├── calcite_ore_granite_black.json │ │ ├── calcite_ore_granite_red.json │ │ ├── calcite_ore_marble.json │ │ ├── calcite_ore_netherrack.json │ │ ├── calcite_ore_sand.json │ │ ├── calcite_ore_sand_red.json │ │ ├── calcite_ore_sandstone.json │ │ ├── calcite_ore_stone.json │ │ ├── casing_bricked_bronze.json │ │ ├── casing_bricked_steel.json │ │ ├── casing_bronze.json │ │ ├── casing_bronze_plated_brick.json │ │ ├── casing_engine_intake.json │ │ ├── casing_ev.json │ │ ├── casing_fire_brick.json │ │ ├── casing_firebox_bronze.json │ │ ├── casing_firebox_steel.json │ │ ├── casing_firebox_titanium.json │ │ ├── casing_firebox_tungstensteel.json │ │ ├── casing_frost_proof.json │ │ ├── casing_fusion_1.json │ │ ├── casing_fusion_2.json │ │ ├── casing_fusion_3.json │ │ ├── casing_gearbox_bronze.json │ │ ├── casing_gearbox_steel.json │ │ ├── casing_gearbox_titanium.json │ │ ├── casing_gearbox_tungstensteel.json │ │ ├── casing_heat_proof.json │ │ ├── casing_hv.json │ │ ├── casing_iv.json │ │ ├── casing_luv.json │ │ ├── casing_lv.json │ │ ├── casing_max.json │ │ ├── casing_mv.json │ │ ├── casing_pipe_bronze.json │ │ ├── casing_pipe_steel.json │ │ ├── casing_pipe_titanium.json │ │ ├── casing_pipe_tungstensteel.json │ │ ├── casing_radiation_proof.json │ │ ├── casing_solid_steel.json │ │ ├── casing_stainless_steel.json │ │ ├── casing_steel.json │ │ ├── casing_titanium.json │ │ ├── casing_tungstensteel.json │ │ ├── casing_turbine_1.json │ │ ├── casing_turbine_2.json │ │ ├── casing_turbine_3.json │ │ ├── casing_turbine_4.json │ │ ├── casing_ulv.json │ │ ├── casing_uv.json │ │ ├── casing_zpm.json │ │ ├── cassiterite_ore_andesite.json │ │ ├── cassiterite_ore_basalt.json │ │ ├── cassiterite_ore_diorite.json │ │ ├── cassiterite_ore_endstone.json │ │ ├── cassiterite_ore_granite.json │ │ ├── cassiterite_ore_granite_black.json │ │ ├── cassiterite_ore_granite_red.json │ │ ├── cassiterite_ore_marble.json │ │ ├── cassiterite_ore_netherrack.json │ │ ├── cassiterite_ore_sand.json │ │ ├── cassiterite_ore_sand_red.json │ │ ├── cassiterite_ore_sandstone.json │ │ ├── cassiterite_ore_small_andesite.json │ │ ├── cassiterite_ore_small_basalt.json │ │ ├── cassiterite_ore_small_diorite.json │ │ ├── cassiterite_ore_small_endstone.json │ │ ├── cassiterite_ore_small_granite.json │ │ ├── cassiterite_ore_small_granite_black.json │ │ ├── cassiterite_ore_small_granite_red.json │ │ ├── cassiterite_ore_small_marble.json │ │ ├── cassiterite_ore_small_netherrack.json │ │ ├── cassiterite_ore_small_sand.json │ │ ├── cassiterite_ore_small_sand_red.json │ │ ├── cassiterite_ore_small_sandstone.json │ │ ├── cassiterite_ore_small_stone.json │ │ ├── cassiterite_ore_stone.json │ │ ├── chalcopyrite_ore_andesite.json │ │ ├── chalcopyrite_ore_basalt.json │ │ ├── chalcopyrite_ore_diorite.json │ │ ├── chalcopyrite_ore_endstone.json │ │ ├── chalcopyrite_ore_granite.json │ │ ├── chalcopyrite_ore_granite_black.json │ │ ├── chalcopyrite_ore_granite_red.json │ │ ├── chalcopyrite_ore_marble.json │ │ ├── chalcopyrite_ore_netherrack.json │ │ ├── chalcopyrite_ore_sand.json │ │ ├── chalcopyrite_ore_sand_red.json │ │ ├── chalcopyrite_ore_sandstone.json │ │ ├── chalcopyrite_ore_small_andesite.json │ │ ├── chalcopyrite_ore_small_basalt.json │ │ ├── chalcopyrite_ore_small_diorite.json │ │ ├── chalcopyrite_ore_small_endstone.json │ │ ├── chalcopyrite_ore_small_granite.json │ │ ├── chalcopyrite_ore_small_granite_black.json │ │ ├── chalcopyrite_ore_small_granite_red.json │ │ ├── chalcopyrite_ore_small_marble.json │ │ ├── chalcopyrite_ore_small_netherrack.json │ │ ├── chalcopyrite_ore_small_sand.json │ │ ├── chalcopyrite_ore_small_sand_red.json │ │ ├── chalcopyrite_ore_small_sandstone.json │ │ ├── chalcopyrite_ore_small_stone.json │ │ ├── chalcopyrite_ore_stone.json │ │ ├── cinnabar_ore_andesite.json │ │ ├── cinnabar_ore_basalt.json │ │ ├── cinnabar_ore_diorite.json │ │ ├── cinnabar_ore_endstone.json │ │ ├── cinnabar_ore_granite.json │ │ ├── cinnabar_ore_granite_black.json │ │ ├── cinnabar_ore_granite_red.json │ │ ├── cinnabar_ore_marble.json │ │ ├── cinnabar_ore_netherrack.json │ │ ├── cinnabar_ore_sand.json │ │ ├── cinnabar_ore_sand_red.json │ │ ├── cinnabar_ore_sandstone.json │ │ ├── cinnabar_ore_stone.json │ │ ├── coal_ore_andesite.json │ │ ├── coal_ore_basalt.json │ │ ├── coal_ore_diorite.json │ │ ├── coal_ore_endstone.json │ │ ├── coal_ore_granite.json │ │ ├── coal_ore_granite_black.json │ │ ├── coal_ore_granite_red.json │ │ ├── coal_ore_marble.json │ │ ├── coal_ore_netherrack.json │ │ ├── coal_ore_sand.json │ │ ├── coal_ore_sand_red.json │ │ ├── coal_ore_sandstone.json │ │ ├── coal_ore_small_andesite.json │ │ ├── coal_ore_small_basalt.json │ │ ├── coal_ore_small_diorite.json │ │ ├── coal_ore_small_endstone.json │ │ ├── coal_ore_small_granite.json │ │ ├── coal_ore_small_granite_black.json │ │ ├── coal_ore_small_granite_red.json │ │ ├── coal_ore_small_marble.json │ │ ├── coal_ore_small_netherrack.json │ │ ├── coal_ore_small_sand.json │ │ ├── coal_ore_small_sand_red.json │ │ ├── coal_ore_small_sandstone.json │ │ ├── coal_ore_small_stone.json │ │ ├── coal_ore_stone.json │ │ ├── cobaltite_ore_andesite.json │ │ ├── cobaltite_ore_basalt.json │ │ ├── cobaltite_ore_diorite.json │ │ ├── cobaltite_ore_endstone.json │ │ ├── cobaltite_ore_granite.json │ │ ├── cobaltite_ore_granite_black.json │ │ ├── cobaltite_ore_granite_red.json │ │ ├── cobaltite_ore_marble.json │ │ ├── cobaltite_ore_netherrack.json │ │ ├── cobaltite_ore_sand.json │ │ ├── cobaltite_ore_sand_red.json │ │ ├── cobaltite_ore_sandstone.json │ │ ├── cobaltite_ore_stone.json │ │ ├── coil_cupronickel.json │ │ ├── coil_fusion.json │ │ ├── coil_hssg.json │ │ ├── coil_kanthal.json │ │ ├── coil_naquadah.json │ │ ├── coil_naquadah_alloy.json │ │ ├── coil_nichrome.json │ │ ├── coil_superconductor.json │ │ ├── coil_tungstensteel.json │ │ ├── cooperite_ore_andesite.json │ │ ├── cooperite_ore_basalt.json │ │ ├── cooperite_ore_diorite.json │ │ ├── cooperite_ore_endstone.json │ │ ├── cooperite_ore_granite.json │ │ ├── cooperite_ore_granite_black.json │ │ ├── cooperite_ore_granite_red.json │ │ ├── cooperite_ore_marble.json │ │ ├── cooperite_ore_netherrack.json │ │ ├── cooperite_ore_sand.json │ │ ├── cooperite_ore_sand_red.json │ │ ├── cooperite_ore_sandstone.json │ │ ├── cooperite_ore_small_andesite.json │ │ ├── cooperite_ore_small_basalt.json │ │ ├── cooperite_ore_small_diorite.json │ │ ├── cooperite_ore_small_endstone.json │ │ ├── cooperite_ore_small_granite.json │ │ ├── cooperite_ore_small_granite_black.json │ │ ├── cooperite_ore_small_granite_red.json │ │ ├── cooperite_ore_small_marble.json │ │ ├── cooperite_ore_small_netherrack.json │ │ ├── cooperite_ore_small_sand.json │ │ ├── cooperite_ore_small_sand_red.json │ │ ├── cooperite_ore_small_sandstone.json │ │ ├── cooperite_ore_small_stone.json │ │ ├── cooperite_ore_stone.json │ │ ├── copper_ore_andesite.json │ │ ├── copper_ore_basalt.json │ │ ├── copper_ore_diorite.json │ │ ├── copper_ore_endstone.json │ │ ├── copper_ore_granite.json │ │ ├── copper_ore_granite_black.json │ │ ├── copper_ore_granite_red.json │ │ ├── copper_ore_marble.json │ │ ├── copper_ore_netherrack.json │ │ ├── copper_ore_sand.json │ │ ├── copper_ore_sand_red.json │ │ ├── copper_ore_sandstone.json │ │ ├── copper_ore_small_andesite.json │ │ ├── copper_ore_small_basalt.json │ │ ├── copper_ore_small_diorite.json │ │ ├── copper_ore_small_endstone.json │ │ ├── copper_ore_small_granite.json │ │ ├── copper_ore_small_granite_black.json │ │ ├── copper_ore_small_granite_red.json │ │ ├── copper_ore_small_marble.json │ │ ├── copper_ore_small_netherrack.json │ │ ├── copper_ore_small_sand.json │ │ ├── copper_ore_small_sand_red.json │ │ ├── copper_ore_small_sandstone.json │ │ ├── copper_ore_small_stone.json │ │ ├── copper_ore_stone.json │ │ ├── diamond_ore_andesite.json │ │ ├── diamond_ore_basalt.json │ │ ├── diamond_ore_diorite.json │ │ ├── diamond_ore_endstone.json │ │ ├── diamond_ore_granite.json │ │ ├── diamond_ore_granite_black.json │ │ ├── diamond_ore_granite_red.json │ │ ├── diamond_ore_marble.json │ │ ├── diamond_ore_netherrack.json │ │ ├── diamond_ore_sand.json │ │ ├── diamond_ore_sand_red.json │ │ ├── diamond_ore_sandstone.json │ │ ├── diamond_ore_small_andesite.json │ │ ├── diamond_ore_small_basalt.json │ │ ├── diamond_ore_small_diorite.json │ │ ├── diamond_ore_small_endstone.json │ │ ├── diamond_ore_small_granite.json │ │ ├── diamond_ore_small_granite_black.json │ │ ├── diamond_ore_small_granite_red.json │ │ ├── diamond_ore_small_marble.json │ │ ├── diamond_ore_small_netherrack.json │ │ ├── diamond_ore_small_sand.json │ │ ├── diamond_ore_small_sand_red.json │ │ ├── diamond_ore_small_sandstone.json │ │ ├── diamond_ore_small_stone.json │ │ ├── diamond_ore_stone.json │ │ ├── emerald_ore_andesite.json │ │ ├── emerald_ore_basalt.json │ │ ├── emerald_ore_diorite.json │ │ ├── emerald_ore_endstone.json │ │ ├── emerald_ore_granite.json │ │ ├── emerald_ore_granite_black.json │ │ ├── emerald_ore_granite_red.json │ │ ├── emerald_ore_marble.json │ │ ├── emerald_ore_netherrack.json │ │ ├── emerald_ore_sand.json │ │ ├── emerald_ore_sand_red.json │ │ ├── emerald_ore_sandstone.json │ │ ├── emerald_ore_small_andesite.json │ │ ├── emerald_ore_small_basalt.json │ │ ├── emerald_ore_small_diorite.json │ │ ├── emerald_ore_small_endstone.json │ │ ├── emerald_ore_small_granite.json │ │ ├── emerald_ore_small_granite_black.json │ │ ├── emerald_ore_small_granite_red.json │ │ ├── emerald_ore_small_marble.json │ │ ├── emerald_ore_small_netherrack.json │ │ ├── emerald_ore_small_sand.json │ │ ├── emerald_ore_small_sand_red.json │ │ ├── emerald_ore_small_sandstone.json │ │ ├── emerald_ore_small_stone.json │ │ ├── emerald_ore_stone.json │ │ ├── fluid_pipe_bronze_huge.json │ │ ├── fluid_pipe_bronze_large.json │ │ ├── fluid_pipe_bronze_normal.json │ │ ├── fluid_pipe_bronze_small.json │ │ ├── fluid_pipe_bronze_tiny.json │ │ ├── fluid_pipe_bronze_vtiny.json │ │ ├── fluid_pipe_copper_huge.json │ │ ├── fluid_pipe_copper_large.json │ │ ├── fluid_pipe_copper_normal.json │ │ ├── fluid_pipe_copper_small.json │ │ ├── fluid_pipe_copper_tiny.json │ │ ├── fluid_pipe_copper_vtiny.json │ │ ├── fluid_pipe_high_pressure_large.json │ │ ├── fluid_pipe_high_pressure_normal.json │ │ ├── fluid_pipe_high_pressure_small.json │ │ ├── fluid_pipe_plasma_containment_normal.json │ │ ├── fluid_pipe_plastic_huge.json │ │ ├── fluid_pipe_plastic_large.json │ │ ├── fluid_pipe_plastic_normal.json │ │ ├── fluid_pipe_plastic_small.json │ │ ├── fluid_pipe_plastic_tiny.json │ │ ├── fluid_pipe_plastic_vtiny.json │ │ ├── fluid_pipe_polytetrafluoroethylene_huge.json │ │ ├── fluid_pipe_polytetrafluoroethylene_large.json │ │ ├── fluid_pipe_polytetrafluoroethylene_normal.json │ │ ├── fluid_pipe_polytetrafluoroethylene_small.json │ │ ├── fluid_pipe_polytetrafluoroethylene_tiny.json │ │ ├── fluid_pipe_polytetrafluoroethylene_vtiny.json │ │ ├── fluid_pipe_stainless_steel_huge.json │ │ ├── fluid_pipe_stainless_steel_large.json │ │ ├── fluid_pipe_stainless_steel_normal.json │ │ ├── fluid_pipe_stainless_steel_small.json │ │ ├── fluid_pipe_stainless_steel_tiny.json │ │ ├── fluid_pipe_stainless_steel_vtiny.json │ │ ├── fluid_pipe_steel_huge.json │ │ ├── fluid_pipe_steel_large.json │ │ ├── fluid_pipe_steel_normal.json │ │ ├── fluid_pipe_steel_small.json │ │ ├── fluid_pipe_steel_tiny.json │ │ ├── fluid_pipe_steel_vtiny.json │ │ ├── fluid_pipe_titanium_huge.json │ │ ├── fluid_pipe_titanium_large.json │ │ ├── fluid_pipe_titanium_normal.json │ │ ├── fluid_pipe_titanium_small.json │ │ ├── fluid_pipe_titanium_tiny.json │ │ ├── fluid_pipe_titanium_vtiny.json │ │ ├── fluid_pipe_tungstensteel_huge.json │ │ ├── fluid_pipe_tungstensteel_large.json │ │ ├── fluid_pipe_tungstensteel_normal.json │ │ ├── fluid_pipe_tungstensteel_small.json │ │ ├── fluid_pipe_tungstensteel_tiny.json │ │ ├── fluid_pipe_tungstensteel_vtiny.json │ │ ├── fluid_pipe_wood_large.json │ │ ├── fluid_pipe_wood_normal.json │ │ ├── fluid_pipe_wood_small.json │ │ ├── galena_ore_andesite.json │ │ ├── galena_ore_basalt.json │ │ ├── galena_ore_diorite.json │ │ ├── galena_ore_endstone.json │ │ ├── galena_ore_granite.json │ │ ├── galena_ore_granite_black.json │ │ ├── galena_ore_granite_red.json │ │ ├── galena_ore_marble.json │ │ ├── galena_ore_netherrack.json │ │ ├── galena_ore_sand.json │ │ ├── galena_ore_sand_red.json │ │ ├── galena_ore_sandstone.json │ │ ├── galena_ore_small_andesite.json │ │ ├── galena_ore_small_basalt.json │ │ ├── galena_ore_small_diorite.json │ │ ├── galena_ore_small_endstone.json │ │ ├── galena_ore_small_granite.json │ │ ├── galena_ore_small_granite_black.json │ │ ├── galena_ore_small_granite_red.json │ │ ├── galena_ore_small_marble.json │ │ ├── galena_ore_small_netherrack.json │ │ ├── galena_ore_small_sand.json │ │ ├── galena_ore_small_sand_red.json │ │ ├── galena_ore_small_sandstone.json │ │ ├── galena_ore_small_stone.json │ │ ├── galena_ore_stone.json │ │ ├── garnierite_ore_andesite.json │ │ ├── garnierite_ore_basalt.json │ │ ├── garnierite_ore_diorite.json │ │ ├── garnierite_ore_endstone.json │ │ ├── garnierite_ore_granite.json │ │ ├── garnierite_ore_granite_black.json │ │ ├── garnierite_ore_granite_red.json │ │ ├── garnierite_ore_marble.json │ │ ├── garnierite_ore_netherrack.json │ │ ├── garnierite_ore_sand.json │ │ ├── garnierite_ore_sand_red.json │ │ ├── garnierite_ore_sandstone.json │ │ ├── garnierite_ore_small_andesite.json │ │ ├── garnierite_ore_small_basalt.json │ │ ├── garnierite_ore_small_diorite.json │ │ ├── garnierite_ore_small_endstone.json │ │ ├── garnierite_ore_small_granite.json │ │ ├── garnierite_ore_small_granite_black.json │ │ ├── garnierite_ore_small_granite_red.json │ │ ├── garnierite_ore_small_marble.json │ │ ├── garnierite_ore_small_netherrack.json │ │ ├── garnierite_ore_small_sand.json │ │ ├── garnierite_ore_small_sand_red.json │ │ ├── garnierite_ore_small_sandstone.json │ │ ├── garnierite_ore_small_stone.json │ │ ├── garnierite_ore_stone.json │ │ ├── glauconite_ore_andesite.json │ │ ├── glauconite_ore_basalt.json │ │ ├── glauconite_ore_diorite.json │ │ ├── glauconite_ore_endstone.json │ │ ├── glauconite_ore_granite.json │ │ ├── glauconite_ore_granite_black.json │ │ ├── glauconite_ore_granite_red.json │ │ ├── glauconite_ore_marble.json │ │ ├── glauconite_ore_netherrack.json │ │ ├── glauconite_ore_sand.json │ │ ├── glauconite_ore_sand_red.json │ │ ├── glauconite_ore_sandstone.json │ │ ├── glauconite_ore_stone.json │ │ ├── gold_ore_andesite.json │ │ ├── gold_ore_basalt.json │ │ ├── gold_ore_diorite.json │ │ ├── gold_ore_endstone.json │ │ ├── gold_ore_granite.json │ │ ├── gold_ore_granite_black.json │ │ ├── gold_ore_granite_red.json │ │ ├── gold_ore_marble.json │ │ ├── gold_ore_netherrack.json │ │ ├── gold_ore_sand.json │ │ ├── gold_ore_sand_red.json │ │ ├── gold_ore_sandstone.json │ │ ├── gold_ore_small_andesite.json │ │ ├── gold_ore_small_basalt.json │ │ ├── gold_ore_small_diorite.json │ │ ├── gold_ore_small_endstone.json │ │ ├── gold_ore_small_granite.json │ │ ├── gold_ore_small_granite_black.json │ │ ├── gold_ore_small_granite_red.json │ │ ├── gold_ore_small_marble.json │ │ ├── gold_ore_small_netherrack.json │ │ ├── gold_ore_small_sand.json │ │ ├── gold_ore_small_sand_red.json │ │ ├── gold_ore_small_sandstone.json │ │ ├── gold_ore_small_stone.json │ │ ├── gold_ore_stone.json │ │ ├── granite_black.json │ │ ├── granite_red.json │ │ ├── graphite_ore_andesite.json │ │ ├── graphite_ore_basalt.json │ │ ├── graphite_ore_diorite.json │ │ ├── graphite_ore_endstone.json │ │ ├── graphite_ore_granite.json │ │ ├── graphite_ore_granite_black.json │ │ ├── graphite_ore_granite_red.json │ │ ├── graphite_ore_marble.json │ │ ├── graphite_ore_netherrack.json │ │ ├── graphite_ore_sand.json │ │ ├── graphite_ore_sand_red.json │ │ ├── graphite_ore_sandstone.json │ │ ├── graphite_ore_small_andesite.json │ │ ├── graphite_ore_small_basalt.json │ │ ├── graphite_ore_small_diorite.json │ │ ├── graphite_ore_small_endstone.json │ │ ├── graphite_ore_small_granite.json │ │ ├── graphite_ore_small_granite_black.json │ │ ├── graphite_ore_small_granite_red.json │ │ ├── graphite_ore_small_marble.json │ │ ├── graphite_ore_small_netherrack.json │ │ ├── graphite_ore_small_sand.json │ │ ├── graphite_ore_small_sand_red.json │ │ ├── graphite_ore_small_sandstone.json │ │ ├── graphite_ore_small_stone.json │ │ ├── graphite_ore_stone.json │ │ ├── green_sapphire_ore_andesite.json │ │ ├── green_sapphire_ore_basalt.json │ │ ├── green_sapphire_ore_diorite.json │ │ ├── green_sapphire_ore_endstone.json │ │ ├── green_sapphire_ore_granite.json │ │ ├── green_sapphire_ore_granite_black.json │ │ ├── green_sapphire_ore_granite_red.json │ │ ├── green_sapphire_ore_marble.json │ │ ├── green_sapphire_ore_netherrack.json │ │ ├── green_sapphire_ore_sand.json │ │ ├── green_sapphire_ore_sand_red.json │ │ ├── green_sapphire_ore_sandstone.json │ │ ├── green_sapphire_ore_small_andesite.json │ │ ├── green_sapphire_ore_small_basalt.json │ │ ├── green_sapphire_ore_small_diorite.json │ │ ├── green_sapphire_ore_small_endstone.json │ │ ├── green_sapphire_ore_small_granite.json │ │ ├── green_sapphire_ore_small_granite_black.json │ │ ├── green_sapphire_ore_small_granite_red.json │ │ ├── green_sapphire_ore_small_marble.json │ │ ├── green_sapphire_ore_small_netherrack.json │ │ ├── green_sapphire_ore_small_sand.json │ │ ├── green_sapphire_ore_small_sand_red.json │ │ ├── green_sapphire_ore_small_sandstone.json │ │ ├── green_sapphire_ore_small_stone.json │ │ ├── green_sapphire_ore_stone.json │ │ ├── grossular_ore_andesite.json │ │ ├── grossular_ore_basalt.json │ │ ├── grossular_ore_diorite.json │ │ ├── grossular_ore_endstone.json │ │ ├── grossular_ore_granite.json │ │ ├── grossular_ore_granite_black.json │ │ ├── grossular_ore_granite_red.json │ │ ├── grossular_ore_marble.json │ │ ├── grossular_ore_netherrack.json │ │ ├── grossular_ore_sand.json │ │ ├── grossular_ore_sand_red.json │ │ ├── grossular_ore_sandstone.json │ │ ├── grossular_ore_small_andesite.json │ │ ├── grossular_ore_small_basalt.json │ │ ├── grossular_ore_small_diorite.json │ │ ├── grossular_ore_small_endstone.json │ │ ├── grossular_ore_small_granite.json │ │ ├── grossular_ore_small_granite_black.json │ │ ├── grossular_ore_small_granite_red.json │ │ ├── grossular_ore_small_marble.json │ │ ├── grossular_ore_small_netherrack.json │ │ ├── grossular_ore_small_sand.json │ │ ├── grossular_ore_small_sand_red.json │ │ ├── grossular_ore_small_sandstone.json │ │ ├── grossular_ore_small_stone.json │ │ ├── grossular_ore_stone.json │ │ ├── ilmenite_ore_andesite.json │ │ ├── ilmenite_ore_basalt.json │ │ ├── ilmenite_ore_diorite.json │ │ ├── ilmenite_ore_endstone.json │ │ ├── ilmenite_ore_granite.json │ │ ├── ilmenite_ore_granite_black.json │ │ ├── ilmenite_ore_granite_red.json │ │ ├── ilmenite_ore_marble.json │ │ ├── ilmenite_ore_netherrack.json │ │ ├── ilmenite_ore_sand.json │ │ ├── ilmenite_ore_sand_red.json │ │ ├── ilmenite_ore_sandstone.json │ │ ├── ilmenite_ore_stone.json │ │ ├── iridium_ore_andesite.json │ │ ├── iridium_ore_basalt.json │ │ ├── iridium_ore_diorite.json │ │ ├── iridium_ore_endstone.json │ │ ├── iridium_ore_granite.json │ │ ├── iridium_ore_granite_black.json │ │ ├── iridium_ore_granite_red.json │ │ ├── iridium_ore_marble.json │ │ ├── iridium_ore_netherrack.json │ │ ├── iridium_ore_sand.json │ │ ├── iridium_ore_sand_red.json │ │ ├── iridium_ore_sandstone.json │ │ ├── iridium_ore_small_andesite.json │ │ ├── iridium_ore_small_basalt.json │ │ ├── iridium_ore_small_diorite.json │ │ ├── iridium_ore_small_endstone.json │ │ ├── iridium_ore_small_granite.json │ │ ├── iridium_ore_small_granite_black.json │ │ ├── iridium_ore_small_granite_red.json │ │ ├── iridium_ore_small_marble.json │ │ ├── iridium_ore_small_netherrack.json │ │ ├── iridium_ore_small_sand.json │ │ ├── iridium_ore_small_sand_red.json │ │ ├── iridium_ore_small_sandstone.json │ │ ├── iridium_ore_small_stone.json │ │ ├── iridium_ore_stone.json │ │ ├── iron_ore_andesite.json │ │ ├── iron_ore_basalt.json │ │ ├── iron_ore_diorite.json │ │ ├── iron_ore_endstone.json │ │ ├── iron_ore_granite.json │ │ ├── iron_ore_granite_black.json │ │ ├── iron_ore_granite_red.json │ │ ├── iron_ore_marble.json │ │ ├── iron_ore_netherrack.json │ │ ├── iron_ore_sand.json │ │ ├── iron_ore_sand_red.json │ │ ├── iron_ore_sandstone.json │ │ ├── iron_ore_small_andesite.json │ │ ├── iron_ore_small_basalt.json │ │ ├── iron_ore_small_diorite.json │ │ ├── iron_ore_small_endstone.json │ │ ├── iron_ore_small_granite.json │ │ ├── iron_ore_small_granite_black.json │ │ ├── iron_ore_small_granite_red.json │ │ ├── iron_ore_small_marble.json │ │ ├── iron_ore_small_netherrack.json │ │ ├── iron_ore_small_sand.json │ │ ├── iron_ore_small_sand_red.json │ │ ├── iron_ore_small_sandstone.json │ │ ├── iron_ore_small_stone.json │ │ ├── iron_ore_stone.json │ │ ├── item_pipe_brass_huge.json │ │ ├── item_pipe_brass_large.json │ │ ├── item_pipe_brass_normal.json │ │ ├── item_pipe_brass_small.json │ │ ├── item_pipe_brass_tiny.json │ │ ├── item_pipe_brass_vtiny.json │ │ ├── item_pipe_cobalt_brass_huge.json │ │ ├── item_pipe_cobalt_brass_large.json │ │ ├── item_pipe_cobalt_brass_normal.json │ │ ├── item_pipe_cobalt_brass_small.json │ │ ├── item_pipe_cobalt_brass_tiny.json │ │ ├── item_pipe_cobalt_brass_vtiny.json │ │ ├── item_pipe_cupronickel_huge.json │ │ ├── item_pipe_cupronickel_large.json │ │ ├── item_pipe_cupronickel_normal.json │ │ ├── item_pipe_cupronickel_small.json │ │ ├── item_pipe_cupronickel_tiny.json │ │ ├── item_pipe_cupronickel_vtiny.json │ │ ├── item_pipe_electrum_huge.json │ │ ├── item_pipe_electrum_large.json │ │ ├── item_pipe_electrum_normal.json │ │ ├── item_pipe_electrum_small.json │ │ ├── item_pipe_electrum_tiny.json │ │ ├── item_pipe_electrum_vtiny.json │ │ ├── item_pipe_osmium_huge.json │ │ ├── item_pipe_osmium_large.json │ │ ├── item_pipe_osmium_normal.json │ │ ├── item_pipe_osmium_small.json │ │ ├── item_pipe_osmium_tiny.json │ │ ├── item_pipe_osmium_vtiny.json │ │ ├── item_pipe_platinum_huge.json │ │ ├── item_pipe_platinum_large.json │ │ ├── item_pipe_platinum_normal.json │ │ ├── item_pipe_platinum_small.json │ │ ├── item_pipe_platinum_tiny.json │ │ ├── item_pipe_platinum_vtiny.json │ │ ├── item_pipe_polyvinyl_chloride_huge.json │ │ ├── item_pipe_polyvinyl_chloride_large.json │ │ ├── item_pipe_polyvinyl_chloride_normal.json │ │ ├── item_pipe_polyvinyl_chloride_small.json │ │ ├── item_pipe_polyvinyl_chloride_tiny.json │ │ ├── item_pipe_polyvinyl_chloride_vtiny.json │ │ ├── item_pipe_rose_gold_huge.json │ │ ├── item_pipe_rose_gold_large.json │ │ ├── item_pipe_rose_gold_normal.json │ │ ├── item_pipe_rose_gold_small.json │ │ ├── item_pipe_rose_gold_tiny.json │ │ ├── item_pipe_rose_gold_vtiny.json │ │ ├── item_pipe_sterling_silver_huge.json │ │ ├── item_pipe_sterling_silver_large.json │ │ ├── item_pipe_sterling_silver_normal.json │ │ ├── item_pipe_sterling_silver_small.json │ │ ├── item_pipe_sterling_silver_tiny.json │ │ ├── item_pipe_sterling_silver_vtiny.json │ │ ├── item_pipe_ultimet_huge.json │ │ ├── item_pipe_ultimet_large.json │ │ ├── item_pipe_ultimet_normal.json │ │ ├── item_pipe_ultimet_small.json │ │ ├── item_pipe_ultimet_tiny.json │ │ ├── item_pipe_ultimet_vtiny.json │ │ ├── lapis_ore_andesite.json │ │ ├── lapis_ore_basalt.json │ │ ├── lapis_ore_diorite.json │ │ ├── lapis_ore_endstone.json │ │ ├── lapis_ore_granite.json │ │ ├── lapis_ore_granite_black.json │ │ ├── lapis_ore_granite_red.json │ │ ├── lapis_ore_marble.json │ │ ├── lapis_ore_netherrack.json │ │ ├── lapis_ore_sand.json │ │ ├── lapis_ore_sand_red.json │ │ ├── lapis_ore_sandstone.json │ │ ├── lapis_ore_small_andesite.json │ │ ├── lapis_ore_small_basalt.json │ │ ├── lapis_ore_small_diorite.json │ │ ├── lapis_ore_small_endstone.json │ │ ├── lapis_ore_small_granite.json │ │ ├── lapis_ore_small_granite_black.json │ │ ├── lapis_ore_small_granite_red.json │ │ ├── lapis_ore_small_marble.json │ │ ├── lapis_ore_small_netherrack.json │ │ ├── lapis_ore_small_sand.json │ │ ├── lapis_ore_small_sand_red.json │ │ ├── lapis_ore_small_sandstone.json │ │ ├── lapis_ore_small_stone.json │ │ ├── lapis_ore_stone.json │ │ ├── lead_ore_andesite.json │ │ ├── lead_ore_basalt.json │ │ ├── lead_ore_diorite.json │ │ ├── lead_ore_endstone.json │ │ ├── lead_ore_granite.json │ │ ├── lead_ore_granite_black.json │ │ ├── lead_ore_granite_red.json │ │ ├── lead_ore_marble.json │ │ ├── lead_ore_netherrack.json │ │ ├── lead_ore_sand.json │ │ ├── lead_ore_sand_red.json │ │ ├── lead_ore_sandstone.json │ │ ├── lead_ore_small_andesite.json │ │ ├── lead_ore_small_basalt.json │ │ ├── lead_ore_small_diorite.json │ │ ├── lead_ore_small_endstone.json │ │ ├── lead_ore_small_granite.json │ │ ├── lead_ore_small_granite_black.json │ │ ├── lead_ore_small_granite_red.json │ │ ├── lead_ore_small_marble.json │ │ ├── lead_ore_small_netherrack.json │ │ ├── lead_ore_small_sand.json │ │ ├── lead_ore_small_sand_red.json │ │ ├── lead_ore_small_sandstone.json │ │ ├── lead_ore_small_stone.json │ │ ├── lead_ore_stone.json │ │ ├── lepidolite_ore_andesite.json │ │ ├── lepidolite_ore_basalt.json │ │ ├── lepidolite_ore_diorite.json │ │ ├── lepidolite_ore_endstone.json │ │ ├── lepidolite_ore_granite.json │ │ ├── lepidolite_ore_granite_black.json │ │ ├── lepidolite_ore_granite_red.json │ │ ├── lepidolite_ore_marble.json │ │ ├── lepidolite_ore_netherrack.json │ │ ├── lepidolite_ore_sand.json │ │ ├── lepidolite_ore_sand_red.json │ │ ├── lepidolite_ore_sandstone.json │ │ ├── lepidolite_ore_stone.json │ │ ├── lignite_coal_ore_andesite.json │ │ ├── lignite_coal_ore_basalt.json │ │ ├── lignite_coal_ore_diorite.json │ │ ├── lignite_coal_ore_endstone.json │ │ ├── lignite_coal_ore_granite.json │ │ ├── lignite_coal_ore_granite_black.json │ │ ├── lignite_coal_ore_granite_red.json │ │ ├── lignite_coal_ore_marble.json │ │ ├── lignite_coal_ore_netherrack.json │ │ ├── lignite_coal_ore_sand.json │ │ ├── lignite_coal_ore_sand_red.json │ │ ├── lignite_coal_ore_sandstone.json │ │ ├── lignite_coal_ore_stone.json │ │ ├── lithium_ore_andesite.json │ │ ├── lithium_ore_basalt.json │ │ ├── lithium_ore_diorite.json │ │ ├── lithium_ore_endstone.json │ │ ├── lithium_ore_granite.json │ │ ├── lithium_ore_granite_black.json │ │ ├── lithium_ore_granite_red.json │ │ ├── lithium_ore_marble.json │ │ ├── lithium_ore_netherrack.json │ │ ├── lithium_ore_sand.json │ │ ├── lithium_ore_sand_red.json │ │ ├── lithium_ore_sandstone.json │ │ ├── lithium_ore_stone.json │ │ ├── magnesite_ore_andesite.json │ │ ├── magnesite_ore_basalt.json │ │ ├── magnesite_ore_diorite.json │ │ ├── magnesite_ore_endstone.json │ │ ├── magnesite_ore_granite.json │ │ ├── magnesite_ore_granite_black.json │ │ ├── magnesite_ore_granite_red.json │ │ ├── magnesite_ore_marble.json │ │ ├── magnesite_ore_netherrack.json │ │ ├── magnesite_ore_sand.json │ │ ├── magnesite_ore_sand_red.json │ │ ├── magnesite_ore_sandstone.json │ │ ├── magnesite_ore_stone.json │ │ ├── magnetite_ore_andesite.json │ │ ├── magnetite_ore_basalt.json │ │ ├── magnetite_ore_diorite.json │ │ ├── magnetite_ore_endstone.json │ │ ├── magnetite_ore_granite.json │ │ ├── magnetite_ore_granite_black.json │ │ ├── magnetite_ore_granite_red.json │ │ ├── magnetite_ore_marble.json │ │ ├── magnetite_ore_netherrack.json │ │ ├── magnetite_ore_sand.json │ │ ├── magnetite_ore_sand_red.json │ │ ├── magnetite_ore_sandstone.json │ │ ├── magnetite_ore_stone.json │ │ ├── malachite_ore_andesite.json │ │ ├── malachite_ore_basalt.json │ │ ├── malachite_ore_diorite.json │ │ ├── malachite_ore_endstone.json │ │ ├── malachite_ore_granite.json │ │ ├── malachite_ore_granite_black.json │ │ ├── malachite_ore_granite_red.json │ │ ├── malachite_ore_marble.json │ │ ├── malachite_ore_netherrack.json │ │ ├── malachite_ore_sand.json │ │ ├── malachite_ore_sand_red.json │ │ ├── malachite_ore_sandstone.json │ │ ├── malachite_ore_stone.json │ │ ├── manganese_ore_andesite.json │ │ ├── manganese_ore_basalt.json │ │ ├── manganese_ore_diorite.json │ │ ├── manganese_ore_endstone.json │ │ ├── manganese_ore_granite.json │ │ ├── manganese_ore_granite_black.json │ │ ├── manganese_ore_granite_red.json │ │ ├── manganese_ore_marble.json │ │ ├── manganese_ore_netherrack.json │ │ ├── manganese_ore_sand.json │ │ ├── manganese_ore_sand_red.json │ │ ├── manganese_ore_sandstone.json │ │ ├── manganese_ore_stone.json │ │ ├── marble.json │ │ ├── molybdenite_ore_andesite.json │ │ ├── molybdenite_ore_basalt.json │ │ ├── molybdenite_ore_diorite.json │ │ ├── molybdenite_ore_endstone.json │ │ ├── molybdenite_ore_granite.json │ │ ├── molybdenite_ore_granite_black.json │ │ ├── molybdenite_ore_granite_red.json │ │ ├── molybdenite_ore_marble.json │ │ ├── molybdenite_ore_netherrack.json │ │ ├── molybdenite_ore_sand.json │ │ ├── molybdenite_ore_sand_red.json │ │ ├── molybdenite_ore_sandstone.json │ │ ├── molybdenite_ore_stone.json │ │ ├── molybdenum_ore_andesite.json │ │ ├── molybdenum_ore_basalt.json │ │ ├── molybdenum_ore_diorite.json │ │ ├── molybdenum_ore_endstone.json │ │ ├── molybdenum_ore_granite.json │ │ ├── molybdenum_ore_granite_black.json │ │ ├── molybdenum_ore_granite_red.json │ │ ├── molybdenum_ore_marble.json │ │ ├── molybdenum_ore_netherrack.json │ │ ├── molybdenum_ore_sand.json │ │ ├── molybdenum_ore_sand_red.json │ │ ├── molybdenum_ore_sandstone.json │ │ ├── molybdenum_ore_stone.json │ │ ├── naquadah_enriched_ore_andesite.json │ │ ├── naquadah_enriched_ore_basalt.json │ │ ├── naquadah_enriched_ore_diorite.json │ │ ├── naquadah_enriched_ore_endstone.json │ │ ├── naquadah_enriched_ore_granite.json │ │ ├── naquadah_enriched_ore_granite_black.json │ │ ├── naquadah_enriched_ore_granite_red.json │ │ ├── naquadah_enriched_ore_marble.json │ │ ├── naquadah_enriched_ore_netherrack.json │ │ ├── naquadah_enriched_ore_sand.json │ │ ├── naquadah_enriched_ore_sand_red.json │ │ ├── naquadah_enriched_ore_sandstone.json │ │ ├── naquadah_enriched_ore_stone.json │ │ ├── naquadah_ore_andesite.json │ │ ├── naquadah_ore_basalt.json │ │ ├── naquadah_ore_diorite.json │ │ ├── naquadah_ore_endstone.json │ │ ├── naquadah_ore_granite.json │ │ ├── naquadah_ore_granite_black.json │ │ ├── naquadah_ore_granite_red.json │ │ ├── naquadah_ore_marble.json │ │ ├── naquadah_ore_netherrack.json │ │ ├── naquadah_ore_sand.json │ │ ├── naquadah_ore_sand_red.json │ │ ├── naquadah_ore_sandstone.json │ │ ├── naquadah_ore_stone.json │ │ ├── neodymium_ore_andesite.json │ │ ├── neodymium_ore_basalt.json │ │ ├── neodymium_ore_diorite.json │ │ ├── neodymium_ore_endstone.json │ │ ├── neodymium_ore_granite.json │ │ ├── neodymium_ore_granite_black.json │ │ ├── neodymium_ore_granite_red.json │ │ ├── neodymium_ore_marble.json │ │ ├── neodymium_ore_netherrack.json │ │ ├── neodymium_ore_sand.json │ │ ├── neodymium_ore_sand_red.json │ │ ├── neodymium_ore_sandstone.json │ │ ├── neodymium_ore_stone.json │ │ ├── nether_quartz_ore_andesite.json │ │ ├── nether_quartz_ore_basalt.json │ │ ├── nether_quartz_ore_diorite.json │ │ ├── nether_quartz_ore_endstone.json │ │ ├── nether_quartz_ore_granite.json │ │ ├── nether_quartz_ore_granite_black.json │ │ ├── nether_quartz_ore_granite_red.json │ │ ├── nether_quartz_ore_marble.json │ │ ├── nether_quartz_ore_netherrack.json │ │ ├── nether_quartz_ore_sand.json │ │ ├── nether_quartz_ore_sand_red.json │ │ ├── nether_quartz_ore_sandstone.json │ │ ├── nether_quartz_ore_small_andesite.json │ │ ├── nether_quartz_ore_small_basalt.json │ │ ├── nether_quartz_ore_small_diorite.json │ │ ├── nether_quartz_ore_small_endstone.json │ │ ├── nether_quartz_ore_small_granite.json │ │ ├── nether_quartz_ore_small_granite_black.json │ │ ├── nether_quartz_ore_small_granite_red.json │ │ ├── nether_quartz_ore_small_marble.json │ │ ├── nether_quartz_ore_small_netherrack.json │ │ ├── nether_quartz_ore_small_sand.json │ │ ├── nether_quartz_ore_small_sand_red.json │ │ ├── nether_quartz_ore_small_sandstone.json │ │ ├── nether_quartz_ore_small_stone.json │ │ ├── nether_quartz_ore_stone.json │ │ ├── nickel_ore_andesite.json │ │ ├── nickel_ore_basalt.json │ │ ├── nickel_ore_diorite.json │ │ ├── nickel_ore_endstone.json │ │ ├── nickel_ore_granite.json │ │ ├── nickel_ore_granite_black.json │ │ ├── nickel_ore_granite_red.json │ │ ├── nickel_ore_marble.json │ │ ├── nickel_ore_netherrack.json │ │ ├── nickel_ore_sand.json │ │ ├── nickel_ore_sand_red.json │ │ ├── nickel_ore_sandstone.json │ │ ├── nickel_ore_small_andesite.json │ │ ├── nickel_ore_small_basalt.json │ │ ├── nickel_ore_small_diorite.json │ │ ├── nickel_ore_small_endstone.json │ │ ├── nickel_ore_small_granite.json │ │ ├── nickel_ore_small_granite_black.json │ │ ├── nickel_ore_small_granite_red.json │ │ ├── nickel_ore_small_marble.json │ │ ├── nickel_ore_small_netherrack.json │ │ ├── nickel_ore_small_sand.json │ │ ├── nickel_ore_small_sand_red.json │ │ ├── nickel_ore_small_sandstone.json │ │ ├── nickel_ore_small_stone.json │ │ ├── nickel_ore_stone.json │ │ ├── oilsands_ore_andesite.json │ │ ├── oilsands_ore_basalt.json │ │ ├── oilsands_ore_diorite.json │ │ ├── oilsands_ore_endstone.json │ │ ├── oilsands_ore_granite.json │ │ ├── oilsands_ore_granite_black.json │ │ ├── oilsands_ore_granite_red.json │ │ ├── oilsands_ore_marble.json │ │ ├── oilsands_ore_netherrack.json │ │ ├── oilsands_ore_sand.json │ │ ├── oilsands_ore_sand_red.json │ │ ├── oilsands_ore_sandstone.json │ │ ├── oilsands_ore_stone.json │ │ ├── olivine_ore_andesite.json │ │ ├── olivine_ore_basalt.json │ │ ├── olivine_ore_diorite.json │ │ ├── olivine_ore_endstone.json │ │ ├── olivine_ore_granite.json │ │ ├── olivine_ore_granite_black.json │ │ ├── olivine_ore_granite_red.json │ │ ├── olivine_ore_marble.json │ │ ├── olivine_ore_netherrack.json │ │ ├── olivine_ore_sand.json │ │ ├── olivine_ore_sand_red.json │ │ ├── olivine_ore_sandstone.json │ │ ├── olivine_ore_small_andesite.json │ │ ├── olivine_ore_small_basalt.json │ │ ├── olivine_ore_small_diorite.json │ │ ├── olivine_ore_small_endstone.json │ │ ├── olivine_ore_small_granite.json │ │ ├── olivine_ore_small_granite_black.json │ │ ├── olivine_ore_small_granite_red.json │ │ ├── olivine_ore_small_marble.json │ │ ├── olivine_ore_small_netherrack.json │ │ ├── olivine_ore_small_sand.json │ │ ├── olivine_ore_small_sand_red.json │ │ ├── olivine_ore_small_sandstone.json │ │ ├── olivine_ore_small_stone.json │ │ ├── olivine_ore_stone.json │ │ ├── opal_ore_andesite.json │ │ ├── opal_ore_basalt.json │ │ ├── opal_ore_diorite.json │ │ ├── opal_ore_endstone.json │ │ ├── opal_ore_granite.json │ │ ├── opal_ore_granite_black.json │ │ ├── opal_ore_granite_red.json │ │ ├── opal_ore_marble.json │ │ ├── opal_ore_netherrack.json │ │ ├── opal_ore_sand.json │ │ ├── opal_ore_sand_red.json │ │ ├── opal_ore_sandstone.json │ │ ├── opal_ore_small_andesite.json │ │ ├── opal_ore_small_basalt.json │ │ ├── opal_ore_small_diorite.json │ │ ├── opal_ore_small_endstone.json │ │ ├── opal_ore_small_granite.json │ │ ├── opal_ore_small_granite_black.json │ │ ├── opal_ore_small_granite_red.json │ │ ├── opal_ore_small_marble.json │ │ ├── opal_ore_small_netherrack.json │ │ ├── opal_ore_small_sand.json │ │ ├── opal_ore_small_sand_red.json │ │ ├── opal_ore_small_sandstone.json │ │ ├── opal_ore_small_stone.json │ │ ├── opal_ore_stone.json │ │ ├── palladium_ore_andesite.json │ │ ├── palladium_ore_basalt.json │ │ ├── palladium_ore_diorite.json │ │ ├── palladium_ore_endstone.json │ │ ├── palladium_ore_granite.json │ │ ├── palladium_ore_granite_black.json │ │ ├── palladium_ore_granite_red.json │ │ ├── palladium_ore_marble.json │ │ ├── palladium_ore_netherrack.json │ │ ├── palladium_ore_sand.json │ │ ├── palladium_ore_sand_red.json │ │ ├── palladium_ore_sandstone.json │ │ ├── palladium_ore_stone.json │ │ ├── pentlandite_ore_andesite.json │ │ ├── pentlandite_ore_basalt.json │ │ ├── pentlandite_ore_diorite.json │ │ ├── pentlandite_ore_endstone.json │ │ ├── pentlandite_ore_granite.json │ │ ├── pentlandite_ore_granite_black.json │ │ ├── pentlandite_ore_granite_red.json │ │ ├── pentlandite_ore_marble.json │ │ ├── pentlandite_ore_netherrack.json │ │ ├── pentlandite_ore_sand.json │ │ ├── pentlandite_ore_sand_red.json │ │ ├── pentlandite_ore_sandstone.json │ │ ├── pentlandite_ore_small_andesite.json │ │ ├── pentlandite_ore_small_basalt.json │ │ ├── pentlandite_ore_small_diorite.json │ │ ├── pentlandite_ore_small_endstone.json │ │ ├── pentlandite_ore_small_granite.json │ │ ├── pentlandite_ore_small_granite_black.json │ │ ├── pentlandite_ore_small_granite_red.json │ │ ├── pentlandite_ore_small_marble.json │ │ ├── pentlandite_ore_small_netherrack.json │ │ ├── pentlandite_ore_small_sand.json │ │ ├── pentlandite_ore_small_sand_red.json │ │ ├── pentlandite_ore_small_sandstone.json │ │ ├── pentlandite_ore_small_stone.json │ │ ├── pentlandite_ore_stone.json │ │ ├── phosphate_ore_andesite.json │ │ ├── phosphate_ore_basalt.json │ │ ├── phosphate_ore_diorite.json │ │ ├── phosphate_ore_endstone.json │ │ ├── phosphate_ore_granite.json │ │ ├── phosphate_ore_granite_black.json │ │ ├── phosphate_ore_granite_red.json │ │ ├── phosphate_ore_marble.json │ │ ├── phosphate_ore_netherrack.json │ │ ├── phosphate_ore_sand.json │ │ ├── phosphate_ore_sand_red.json │ │ ├── phosphate_ore_sandstone.json │ │ ├── phosphate_ore_stone.json │ │ ├── phosphorus_ore_andesite.json │ │ ├── phosphorus_ore_basalt.json │ │ ├── phosphorus_ore_diorite.json │ │ ├── phosphorus_ore_endstone.json │ │ ├── phosphorus_ore_granite.json │ │ ├── phosphorus_ore_granite_black.json │ │ ├── phosphorus_ore_granite_red.json │ │ ├── phosphorus_ore_marble.json │ │ ├── phosphorus_ore_netherrack.json │ │ ├── phosphorus_ore_sand.json │ │ ├── phosphorus_ore_sand_red.json │ │ ├── phosphorus_ore_sandstone.json │ │ ├── phosphorus_ore_stone.json │ │ ├── pitchblende_ore_andesite.json │ │ ├── pitchblende_ore_basalt.json │ │ ├── pitchblende_ore_diorite.json │ │ ├── pitchblende_ore_endstone.json │ │ ├── pitchblende_ore_granite.json │ │ ├── pitchblende_ore_granite_black.json │ │ ├── pitchblende_ore_granite_red.json │ │ ├── pitchblende_ore_marble.json │ │ ├── pitchblende_ore_netherrack.json │ │ ├── pitchblende_ore_sand.json │ │ ├── pitchblende_ore_sand_red.json │ │ ├── pitchblende_ore_sandstone.json │ │ ├── pitchblende_ore_stone.json │ │ ├── platinum_ore_andesite.json │ │ ├── platinum_ore_basalt.json │ │ ├── platinum_ore_diorite.json │ │ ├── platinum_ore_endstone.json │ │ ├── platinum_ore_granite.json │ │ ├── platinum_ore_granite_black.json │ │ ├── platinum_ore_granite_red.json │ │ ├── platinum_ore_marble.json │ │ ├── platinum_ore_netherrack.json │ │ ├── platinum_ore_sand.json │ │ ├── platinum_ore_sand_red.json │ │ ├── platinum_ore_sandstone.json │ │ ├── platinum_ore_small_andesite.json │ │ ├── platinum_ore_small_basalt.json │ │ ├── platinum_ore_small_diorite.json │ │ ├── platinum_ore_small_endstone.json │ │ ├── platinum_ore_small_granite.json │ │ ├── platinum_ore_small_granite_black.json │ │ ├── platinum_ore_small_granite_red.json │ │ ├── platinum_ore_small_marble.json │ │ ├── platinum_ore_small_netherrack.json │ │ ├── platinum_ore_small_sand.json │ │ ├── platinum_ore_small_sand_red.json │ │ ├── platinum_ore_small_sandstone.json │ │ ├── platinum_ore_small_stone.json │ │ ├── platinum_ore_stone.json │ │ ├── pyrite_ore_andesite.json │ │ ├── pyrite_ore_basalt.json │ │ ├── pyrite_ore_diorite.json │ │ ├── pyrite_ore_endstone.json │ │ ├── pyrite_ore_granite.json │ │ ├── pyrite_ore_granite_black.json │ │ ├── pyrite_ore_granite_red.json │ │ ├── pyrite_ore_marble.json │ │ ├── pyrite_ore_netherrack.json │ │ ├── pyrite_ore_sand.json │ │ ├── pyrite_ore_sand_red.json │ │ ├── pyrite_ore_sandstone.json │ │ ├── pyrite_ore_small_andesite.json │ │ ├── pyrite_ore_small_basalt.json │ │ ├── pyrite_ore_small_diorite.json │ │ ├── pyrite_ore_small_endstone.json │ │ ├── pyrite_ore_small_granite.json │ │ ├── pyrite_ore_small_granite_black.json │ │ ├── pyrite_ore_small_granite_red.json │ │ ├── pyrite_ore_small_marble.json │ │ ├── pyrite_ore_small_netherrack.json │ │ ├── pyrite_ore_small_sand.json │ │ ├── pyrite_ore_small_sand_red.json │ │ ├── pyrite_ore_small_sandstone.json │ │ ├── pyrite_ore_small_stone.json │ │ ├── pyrite_ore_stone.json │ │ ├── pyrolusite_ore_andesite.json │ │ ├── pyrolusite_ore_basalt.json │ │ ├── pyrolusite_ore_diorite.json │ │ ├── pyrolusite_ore_endstone.json │ │ ├── pyrolusite_ore_granite.json │ │ ├── pyrolusite_ore_granite_black.json │ │ ├── pyrolusite_ore_granite_red.json │ │ ├── pyrolusite_ore_marble.json │ │ ├── pyrolusite_ore_netherrack.json │ │ ├── pyrolusite_ore_sand.json │ │ ├── pyrolusite_ore_sand_red.json │ │ ├── pyrolusite_ore_sandstone.json │ │ ├── pyrolusite_ore_small_andesite.json │ │ ├── pyrolusite_ore_small_basalt.json │ │ ├── pyrolusite_ore_small_diorite.json │ │ ├── pyrolusite_ore_small_endstone.json │ │ ├── pyrolusite_ore_small_granite.json │ │ ├── pyrolusite_ore_small_granite_black.json │ │ ├── pyrolusite_ore_small_granite_red.json │ │ ├── pyrolusite_ore_small_marble.json │ │ ├── pyrolusite_ore_small_netherrack.json │ │ ├── pyrolusite_ore_small_sand.json │ │ ├── pyrolusite_ore_small_sand_red.json │ │ ├── pyrolusite_ore_small_sandstone.json │ │ ├── pyrolusite_ore_small_stone.json │ │ ├── pyrolusite_ore_stone.json │ │ ├── pyrope_ore_andesite.json │ │ ├── pyrope_ore_basalt.json │ │ ├── pyrope_ore_diorite.json │ │ ├── pyrope_ore_endstone.json │ │ ├── pyrope_ore_granite.json │ │ ├── pyrope_ore_granite_black.json │ │ ├── pyrope_ore_granite_red.json │ │ ├── pyrope_ore_marble.json │ │ ├── pyrope_ore_netherrack.json │ │ ├── pyrope_ore_sand.json │ │ ├── pyrope_ore_sand_red.json │ │ ├── pyrope_ore_sandstone.json │ │ ├── pyrope_ore_small_andesite.json │ │ ├── pyrope_ore_small_basalt.json │ │ ├── pyrope_ore_small_diorite.json │ │ ├── pyrope_ore_small_endstone.json │ │ ├── pyrope_ore_small_granite.json │ │ ├── pyrope_ore_small_granite_black.json │ │ ├── pyrope_ore_small_granite_red.json │ │ ├── pyrope_ore_small_marble.json │ │ ├── pyrope_ore_small_netherrack.json │ │ ├── pyrope_ore_small_sand.json │ │ ├── pyrope_ore_small_sand_red.json │ │ ├── pyrope_ore_small_sandstone.json │ │ ├── pyrope_ore_small_stone.json │ │ ├── pyrope_ore_stone.json │ │ ├── quartzite_ore_andesite.json │ │ ├── quartzite_ore_basalt.json │ │ ├── quartzite_ore_diorite.json │ │ ├── quartzite_ore_endstone.json │ │ ├── quartzite_ore_granite.json │ │ ├── quartzite_ore_granite_black.json │ │ ├── quartzite_ore_granite_red.json │ │ ├── quartzite_ore_marble.json │ │ ├── quartzite_ore_netherrack.json │ │ ├── quartzite_ore_sand.json │ │ ├── quartzite_ore_sand_red.json │ │ ├── quartzite_ore_sandstone.json │ │ ├── quartzite_ore_stone.json │ │ ├── red_garnet_ore_andesite.json │ │ ├── red_garnet_ore_basalt.json │ │ ├── red_garnet_ore_diorite.json │ │ ├── red_garnet_ore_endstone.json │ │ ├── red_garnet_ore_granite.json │ │ ├── red_garnet_ore_granite_black.json │ │ ├── red_garnet_ore_granite_red.json │ │ ├── red_garnet_ore_marble.json │ │ ├── red_garnet_ore_netherrack.json │ │ ├── red_garnet_ore_sand.json │ │ ├── red_garnet_ore_sand_red.json │ │ ├── red_garnet_ore_sandstone.json │ │ ├── red_garnet_ore_small_andesite.json │ │ ├── red_garnet_ore_small_basalt.json │ │ ├── red_garnet_ore_small_diorite.json │ │ ├── red_garnet_ore_small_endstone.json │ │ ├── red_garnet_ore_small_granite.json │ │ ├── red_garnet_ore_small_granite_black.json │ │ ├── red_garnet_ore_small_granite_red.json │ │ ├── red_garnet_ore_small_marble.json │ │ ├── red_garnet_ore_small_netherrack.json │ │ ├── red_garnet_ore_small_sand.json │ │ ├── red_garnet_ore_small_sand_red.json │ │ ├── red_garnet_ore_small_sandstone.json │ │ ├── red_garnet_ore_small_stone.json │ │ ├── red_garnet_ore_stone.json │ │ ├── redstone_ore_andesite.json │ │ ├── redstone_ore_basalt.json │ │ ├── redstone_ore_diorite.json │ │ ├── redstone_ore_endstone.json │ │ ├── redstone_ore_granite.json │ │ ├── redstone_ore_granite_black.json │ │ ├── redstone_ore_granite_red.json │ │ ├── redstone_ore_marble.json │ │ ├── redstone_ore_netherrack.json │ │ ├── redstone_ore_sand.json │ │ ├── redstone_ore_sand_red.json │ │ ├── redstone_ore_sandstone.json │ │ ├── redstone_ore_small_andesite.json │ │ ├── redstone_ore_small_basalt.json │ │ ├── redstone_ore_small_diorite.json │ │ ├── redstone_ore_small_endstone.json │ │ ├── redstone_ore_small_granite.json │ │ ├── redstone_ore_small_granite_black.json │ │ ├── redstone_ore_small_granite_red.json │ │ ├── redstone_ore_small_marble.json │ │ ├── redstone_ore_small_netherrack.json │ │ ├── redstone_ore_small_sand.json │ │ ├── redstone_ore_small_sand_red.json │ │ ├── redstone_ore_small_sandstone.json │ │ ├── redstone_ore_small_stone.json │ │ ├── redstone_ore_stone.json │ │ ├── rock_salt_ore_andesite.json │ │ ├── rock_salt_ore_basalt.json │ │ ├── rock_salt_ore_diorite.json │ │ ├── rock_salt_ore_endstone.json │ │ ├── rock_salt_ore_granite.json │ │ ├── rock_salt_ore_granite_black.json │ │ ├── rock_salt_ore_granite_red.json │ │ ├── rock_salt_ore_marble.json │ │ ├── rock_salt_ore_netherrack.json │ │ ├── rock_salt_ore_sand.json │ │ ├── rock_salt_ore_sand_red.json │ │ ├── rock_salt_ore_sandstone.json │ │ ├── rock_salt_ore_small_andesite.json │ │ ├── rock_salt_ore_small_basalt.json │ │ ├── rock_salt_ore_small_diorite.json │ │ ├── rock_salt_ore_small_endstone.json │ │ ├── rock_salt_ore_small_granite.json │ │ ├── rock_salt_ore_small_granite_black.json │ │ ├── rock_salt_ore_small_granite_red.json │ │ ├── rock_salt_ore_small_marble.json │ │ ├── rock_salt_ore_small_netherrack.json │ │ ├── rock_salt_ore_small_sand.json │ │ ├── rock_salt_ore_small_sand_red.json │ │ ├── rock_salt_ore_small_sandstone.json │ │ ├── rock_salt_ore_small_stone.json │ │ ├── rock_salt_ore_stone.json │ │ ├── ruby_ore_andesite.json │ │ ├── ruby_ore_basalt.json │ │ ├── ruby_ore_diorite.json │ │ ├── ruby_ore_endstone.json │ │ ├── ruby_ore_granite.json │ │ ├── ruby_ore_granite_black.json │ │ ├── ruby_ore_granite_red.json │ │ ├── ruby_ore_marble.json │ │ ├── ruby_ore_netherrack.json │ │ ├── ruby_ore_sand.json │ │ ├── ruby_ore_sand_red.json │ │ ├── ruby_ore_sandstone.json │ │ ├── ruby_ore_small_andesite.json │ │ ├── ruby_ore_small_basalt.json │ │ ├── ruby_ore_small_diorite.json │ │ ├── ruby_ore_small_endstone.json │ │ ├── ruby_ore_small_granite.json │ │ ├── ruby_ore_small_granite_black.json │ │ ├── ruby_ore_small_granite_red.json │ │ ├── ruby_ore_small_marble.json │ │ ├── ruby_ore_small_netherrack.json │ │ ├── ruby_ore_small_sand.json │ │ ├── ruby_ore_small_sand_red.json │ │ ├── ruby_ore_small_sandstone.json │ │ ├── ruby_ore_small_stone.json │ │ ├── ruby_ore_stone.json │ │ ├── salt_ore_andesite.json │ │ ├── salt_ore_basalt.json │ │ ├── salt_ore_diorite.json │ │ ├── salt_ore_endstone.json │ │ ├── salt_ore_granite.json │ │ ├── salt_ore_granite_black.json │ │ ├── salt_ore_granite_red.json │ │ ├── salt_ore_marble.json │ │ ├── salt_ore_netherrack.json │ │ ├── salt_ore_sand.json │ │ ├── salt_ore_sand_red.json │ │ ├── salt_ore_sandstone.json │ │ ├── salt_ore_small_andesite.json │ │ ├── salt_ore_small_basalt.json │ │ ├── salt_ore_small_diorite.json │ │ ├── salt_ore_small_endstone.json │ │ ├── salt_ore_small_granite.json │ │ ├── salt_ore_small_granite_black.json │ │ ├── salt_ore_small_granite_red.json │ │ ├── salt_ore_small_marble.json │ │ ├── salt_ore_small_netherrack.json │ │ ├── salt_ore_small_sand.json │ │ ├── salt_ore_small_sand_red.json │ │ ├── salt_ore_small_sandstone.json │ │ ├── salt_ore_small_stone.json │ │ ├── salt_ore_stone.json │ │ ├── saltpeter_ore_andesite.json │ │ ├── saltpeter_ore_basalt.json │ │ ├── saltpeter_ore_diorite.json │ │ ├── saltpeter_ore_endstone.json │ │ ├── saltpeter_ore_granite.json │ │ ├── saltpeter_ore_granite_black.json │ │ ├── saltpeter_ore_granite_red.json │ │ ├── saltpeter_ore_marble.json │ │ ├── saltpeter_ore_netherrack.json │ │ ├── saltpeter_ore_sand.json │ │ ├── saltpeter_ore_sand_red.json │ │ ├── saltpeter_ore_sandstone.json │ │ ├── saltpeter_ore_small_andesite.json │ │ ├── saltpeter_ore_small_basalt.json │ │ ├── saltpeter_ore_small_diorite.json │ │ ├── saltpeter_ore_small_endstone.json │ │ ├── saltpeter_ore_small_granite.json │ │ ├── saltpeter_ore_small_granite_black.json │ │ ├── saltpeter_ore_small_granite_red.json │ │ ├── saltpeter_ore_small_marble.json │ │ ├── saltpeter_ore_small_netherrack.json │ │ ├── saltpeter_ore_small_sand.json │ │ ├── saltpeter_ore_small_sand_red.json │ │ ├── saltpeter_ore_small_sandstone.json │ │ ├── saltpeter_ore_small_stone.json │ │ ├── saltpeter_ore_stone.json │ │ ├── scheelite_ore_andesite.json │ │ ├── scheelite_ore_basalt.json │ │ ├── scheelite_ore_diorite.json │ │ ├── scheelite_ore_endstone.json │ │ ├── scheelite_ore_granite.json │ │ ├── scheelite_ore_granite_black.json │ │ ├── scheelite_ore_granite_red.json │ │ ├── scheelite_ore_marble.json │ │ ├── scheelite_ore_netherrack.json │ │ ├── scheelite_ore_sand.json │ │ ├── scheelite_ore_sand_red.json │ │ ├── scheelite_ore_sandstone.json │ │ ├── scheelite_ore_stone.json │ │ ├── silver_ore_andesite.json │ │ ├── silver_ore_basalt.json │ │ ├── silver_ore_diorite.json │ │ ├── silver_ore_endstone.json │ │ ├── silver_ore_granite.json │ │ ├── silver_ore_granite_black.json │ │ ├── silver_ore_granite_red.json │ │ ├── silver_ore_marble.json │ │ ├── silver_ore_netherrack.json │ │ ├── silver_ore_sand.json │ │ ├── silver_ore_sand_red.json │ │ ├── silver_ore_sandstone.json │ │ ├── silver_ore_small_andesite.json │ │ ├── silver_ore_small_basalt.json │ │ ├── silver_ore_small_diorite.json │ │ ├── silver_ore_small_endstone.json │ │ ├── silver_ore_small_granite.json │ │ ├── silver_ore_small_granite_black.json │ │ ├── silver_ore_small_granite_red.json │ │ ├── silver_ore_small_marble.json │ │ ├── silver_ore_small_netherrack.json │ │ ├── silver_ore_small_sand.json │ │ ├── silver_ore_small_sand_red.json │ │ ├── silver_ore_small_sandstone.json │ │ ├── silver_ore_small_stone.json │ │ ├── silver_ore_stone.json │ │ ├── soapstone_ore_andesite.json │ │ ├── soapstone_ore_basalt.json │ │ ├── soapstone_ore_diorite.json │ │ ├── soapstone_ore_endstone.json │ │ ├── soapstone_ore_granite.json │ │ ├── soapstone_ore_granite_black.json │ │ ├── soapstone_ore_granite_red.json │ │ ├── soapstone_ore_marble.json │ │ ├── soapstone_ore_netherrack.json │ │ ├── soapstone_ore_sand.json │ │ ├── soapstone_ore_sand_red.json │ │ ├── soapstone_ore_sandstone.json │ │ ├── soapstone_ore_stone.json │ │ ├── spessartine_ore_andesite.json │ │ ├── spessartine_ore_basalt.json │ │ ├── spessartine_ore_diorite.json │ │ ├── spessartine_ore_endstone.json │ │ ├── spessartine_ore_granite.json │ │ ├── spessartine_ore_granite_black.json │ │ ├── spessartine_ore_granite_red.json │ │ ├── spessartine_ore_marble.json │ │ ├── spessartine_ore_netherrack.json │ │ ├── spessartine_ore_sand.json │ │ ├── spessartine_ore_sand_red.json │ │ ├── spessartine_ore_sandstone.json │ │ ├── spessartine_ore_small_andesite.json │ │ ├── spessartine_ore_small_basalt.json │ │ ├── spessartine_ore_small_diorite.json │ │ ├── spessartine_ore_small_endstone.json │ │ ├── spessartine_ore_small_granite.json │ │ ├── spessartine_ore_small_granite_black.json │ │ ├── spessartine_ore_small_granite_red.json │ │ ├── spessartine_ore_small_marble.json │ │ ├── spessartine_ore_small_netherrack.json │ │ ├── spessartine_ore_small_sand.json │ │ ├── spessartine_ore_small_sand_red.json │ │ ├── spessartine_ore_small_sandstone.json │ │ ├── spessartine_ore_small_stone.json │ │ ├── spessartine_ore_stone.json │ │ ├── sphalerite_ore_andesite.json │ │ ├── sphalerite_ore_basalt.json │ │ ├── sphalerite_ore_diorite.json │ │ ├── sphalerite_ore_endstone.json │ │ ├── sphalerite_ore_granite.json │ │ ├── sphalerite_ore_granite_black.json │ │ ├── sphalerite_ore_granite_red.json │ │ ├── sphalerite_ore_marble.json │ │ ├── sphalerite_ore_netherrack.json │ │ ├── sphalerite_ore_sand.json │ │ ├── sphalerite_ore_sand_red.json │ │ ├── sphalerite_ore_sandstone.json │ │ ├── sphalerite_ore_small_andesite.json │ │ ├── sphalerite_ore_small_basalt.json │ │ ├── sphalerite_ore_small_diorite.json │ │ ├── sphalerite_ore_small_endstone.json │ │ ├── sphalerite_ore_small_granite.json │ │ ├── sphalerite_ore_small_granite_black.json │ │ ├── sphalerite_ore_small_granite_red.json │ │ ├── sphalerite_ore_small_marble.json │ │ ├── sphalerite_ore_small_netherrack.json │ │ ├── sphalerite_ore_small_sand.json │ │ ├── sphalerite_ore_small_sand_red.json │ │ ├── sphalerite_ore_small_sandstone.json │ │ ├── sphalerite_ore_small_stone.json │ │ ├── sphalerite_ore_stone.json │ │ ├── spodumene_ore_andesite.json │ │ ├── spodumene_ore_basalt.json │ │ ├── spodumene_ore_diorite.json │ │ ├── spodumene_ore_endstone.json │ │ ├── spodumene_ore_granite.json │ │ ├── spodumene_ore_granite_black.json │ │ ├── spodumene_ore_granite_red.json │ │ ├── spodumene_ore_marble.json │ │ ├── spodumene_ore_netherrack.json │ │ ├── spodumene_ore_sand.json │ │ ├── spodumene_ore_sand_red.json │ │ ├── spodumene_ore_sandstone.json │ │ ├── spodumene_ore_stone.json │ │ ├── stibnite_ore_andesite.json │ │ ├── stibnite_ore_basalt.json │ │ ├── stibnite_ore_diorite.json │ │ ├── stibnite_ore_endstone.json │ │ ├── stibnite_ore_granite.json │ │ ├── stibnite_ore_granite_black.json │ │ ├── stibnite_ore_granite_red.json │ │ ├── stibnite_ore_marble.json │ │ ├── stibnite_ore_netherrack.json │ │ ├── stibnite_ore_sand.json │ │ ├── stibnite_ore_sand_red.json │ │ ├── stibnite_ore_sandstone.json │ │ ├── stibnite_ore_small_andesite.json │ │ ├── stibnite_ore_small_basalt.json │ │ ├── stibnite_ore_small_diorite.json │ │ ├── stibnite_ore_small_endstone.json │ │ ├── stibnite_ore_small_granite.json │ │ ├── stibnite_ore_small_granite_black.json │ │ ├── stibnite_ore_small_granite_red.json │ │ ├── stibnite_ore_small_marble.json │ │ ├── stibnite_ore_small_netherrack.json │ │ ├── stibnite_ore_small_sand.json │ │ ├── stibnite_ore_small_sand_red.json │ │ ├── stibnite_ore_small_sandstone.json │ │ ├── stibnite_ore_small_stone.json │ │ ├── stibnite_ore_stone.json │ │ ├── storage_aluminium_block.json │ │ ├── storage_aluminium_frame.json │ │ ├── storage_americium_block.json │ │ ├── storage_amethyst_block.json │ │ ├── storage_annealed_copper_block.json │ │ ├── storage_antimony_block.json │ │ ├── storage_arsenic_block.json │ │ ├── storage_battery_alloy_block.json │ │ ├── storage_beryllium_block.json │ │ ├── storage_bismuth_block.json │ │ ├── storage_bismuth_bronze_block.json │ │ ├── storage_black_bronze_block.json │ │ ├── storage_black_steel_block.json │ │ ├── storage_black_steel_frame.json │ │ ├── storage_blue_sapphire_block.json │ │ ├── storage_blue_steel_block.json │ │ ├── storage_blue_steel_frame.json │ │ ├── storage_blue_topaz_block.json │ │ ├── storage_brass_block.json │ │ ├── storage_brass_frame.json │ │ ├── storage_bronze_block.json │ │ ├── storage_bronze_frame.json │ │ ├── storage_caesium_block.json │ │ ├── storage_carbon_block.json │ │ ├── storage_cerium_block.json │ │ ├── storage_charcoal_block.json │ │ ├── storage_chrome_block.json │ │ ├── storage_coal_block.json │ │ ├── storage_coal_coke_block.json │ │ ├── storage_cobalt_block.json │ │ ├── storage_cobalt_brass_block.json │ │ ├── storage_copper_block.json │ │ ├── storage_cupronickel_block.json │ │ ├── storage_diamond_block.json │ │ ├── storage_dilithium_block.json │ │ ├── storage_duranium_block.json │ │ ├── storage_dysprosium_block.json │ │ ├── storage_electrum_block.json │ │ ├── storage_emerald_block.json │ │ ├── storage_endereye_block.json │ │ ├── storage_enderpearl_block.json │ │ ├── storage_epoxid_block.json │ │ ├── storage_europium_block.json │ │ ├── storage_fiber_reinforced_epoxy_resin_block.json │ │ ├── storage_gallium_arsenide_block.json │ │ ├── storage_gallium_block.json │ │ ├── storage_gold_block.json │ │ ├── storage_green_sapphire_block.json │ │ ├── storage_hsse_block.json │ │ ├── storage_hsse_frame.json │ │ ├── storage_hssg_block.json │ │ ├── storage_hssg_frame.json │ │ ├── storage_hsss_block.json │ │ ├── storage_indium_block.json │ │ ├── storage_invar_block.json │ │ ├── storage_invar_frame.json │ │ ├── storage_iridium_block.json │ │ ├── storage_iridium_frame.json │ │ ├── storage_iron_block.json │ │ ├── storage_iron_frame.json │ │ ├── storage_kanthal_block.json │ │ ├── storage_lanthanum_block.json │ │ ├── storage_lapis_block.json │ │ ├── storage_lead_block.json │ │ ├── storage_lignite_coal_block.json │ │ ├── storage_lignite_coke_block.json │ │ ├── storage_lithium_block.json │ │ ├── storage_lutetium_block.json │ │ ├── storage_magnalium_block.json │ │ ├── storage_magnesium_block.json │ │ ├── storage_magnetic_iron_block.json │ │ ├── storage_magnetic_neodymium_block.json │ │ ├── storage_magnetic_steel_block.json │ │ ├── storage_manganese_block.json │ │ ├── storage_molybdenum_block.json │ │ ├── storage_naquadah_alloy_block.json │ │ ├── storage_naquadah_block.json │ │ ├── storage_naquadah_enriched_block.json │ │ ├── storage_naquadria_block.json │ │ ├── storage_neodymium_block.json │ │ ├── storage_nether_quartz_block.json │ │ ├── storage_nether_star_block.json │ │ ├── storage_neutronium_block.json │ │ ├── storage_neutronium_frame.json │ │ ├── storage_nichrome_block.json │ │ ├── storage_nickel_block.json │ │ ├── storage_nickel_zinc_ferrite_block.json │ │ ├── storage_niobium_block.json │ │ ├── storage_niobium_titanium_block.json │ │ ├── storage_olivine_block.json │ │ ├── storage_opal_block.json │ │ ├── storage_osmiridium_block.json │ │ ├── storage_osmiridium_frame.json │ │ ├── storage_osmium_block.json │ │ ├── storage_palladium_block.json │ │ ├── storage_phosphorus_block.json │ │ ├── storage_plastic_block.json │ │ ├── storage_platinum_block.json │ │ ├── storage_plutonium_241_block.json │ │ ├── storage_plutonium_244_block.json │ │ ├── storage_polycaprolactam_block.json │ │ ├── storage_polyphenylene_sulfide_block.json │ │ ├── storage_polystyrene_block.json │ │ ├── storage_polytetrafluoroethylene_block.json │ │ ├── storage_polytetrafluoroethylene_frame.json │ │ ├── storage_polyvinyl_chloride_block.json │ │ ├── storage_potassium_block.json │ │ ├── storage_quartzite_block.json │ │ ├── storage_red_alloy_block.json │ │ ├── storage_red_garnet_block.json │ │ ├── storage_red_steel_block.json │ │ ├── storage_rose_gold_block.json │ │ ├── storage_rubber_block.json │ │ ├── storage_ruby_block.json │ │ ├── storage_silicon_block.json │ │ ├── storage_silicone_block.json │ │ ├── storage_silver_block.json │ │ ├── storage_soldering_alloy_block.json │ │ ├── storage_stainless_steel_block.json │ │ ├── storage_stainless_steel_frame.json │ │ ├── storage_steel_block.json │ │ ├── storage_steel_frame.json │ │ ├── storage_sterling_silver_block.json │ │ ├── storage_styrene_butadiene_rubber_block.json │ │ ├── storage_tantalum_block.json │ │ ├── storage_tanzanite_block.json │ │ ├── storage_thorium_block.json │ │ ├── storage_tin_block.json │ │ ├── storage_tin_frame.json │ │ ├── storage_titanium_block.json │ │ ├── storage_topaz_block.json │ │ ├── storage_tritanium_block.json │ │ ├── storage_tritanium_frame.json │ │ ├── storage_tungsten_block.json │ │ ├── storage_tungsten_carbide_block.json │ │ ├── storage_tungstensteel_block.json │ │ ├── storage_tungstensteel_frame.json │ │ ├── storage_ultimet_block.json │ │ ├── storage_uranium_235_block.json │ │ ├── storage_uranium_238_block.json │ │ ├── storage_vanadium_block.json │ │ ├── storage_vanadium_gallium_block.json │ │ ├── storage_vanadium_steel_block.json │ │ ├── storage_vibranium_block.json │ │ ├── storage_vibranium_frame.json │ │ ├── storage_wrought_iron_block.json │ │ ├── storage_wrought_iron_frame.json │ │ ├── storage_yellow_garnet_block.json │ │ ├── storage_yttrium_barium_cuprate_block.json │ │ ├── storage_yttrium_block.json │ │ ├── storage_zinc_block.json │ │ ├── sulfur_ore_andesite.json │ │ ├── sulfur_ore_basalt.json │ │ ├── sulfur_ore_diorite.json │ │ ├── sulfur_ore_endstone.json │ │ ├── sulfur_ore_granite.json │ │ ├── sulfur_ore_granite_black.json │ │ ├── sulfur_ore_granite_red.json │ │ ├── sulfur_ore_marble.json │ │ ├── sulfur_ore_netherrack.json │ │ ├── sulfur_ore_sand.json │ │ ├── sulfur_ore_sand_red.json │ │ ├── sulfur_ore_sandstone.json │ │ ├── sulfur_ore_small_andesite.json │ │ ├── sulfur_ore_small_basalt.json │ │ ├── sulfur_ore_small_diorite.json │ │ ├── sulfur_ore_small_endstone.json │ │ ├── sulfur_ore_small_granite.json │ │ ├── sulfur_ore_small_granite_black.json │ │ ├── sulfur_ore_small_granite_red.json │ │ ├── sulfur_ore_small_marble.json │ │ ├── sulfur_ore_small_netherrack.json │ │ ├── sulfur_ore_small_sand.json │ │ ├── sulfur_ore_small_sand_red.json │ │ ├── sulfur_ore_small_sandstone.json │ │ ├── sulfur_ore_small_stone.json │ │ ├── sulfur_ore_stone.json │ │ ├── talc_ore_andesite.json │ │ ├── talc_ore_basalt.json │ │ ├── talc_ore_diorite.json │ │ ├── talc_ore_endstone.json │ │ ├── talc_ore_granite.json │ │ ├── talc_ore_granite_black.json │ │ ├── talc_ore_granite_red.json │ │ ├── talc_ore_marble.json │ │ ├── talc_ore_netherrack.json │ │ ├── talc_ore_sand.json │ │ ├── talc_ore_sand_red.json │ │ ├── talc_ore_sandstone.json │ │ ├── talc_ore_stone.json │ │ ├── tantalite_ore_andesite.json │ │ ├── tantalite_ore_basalt.json │ │ ├── tantalite_ore_diorite.json │ │ ├── tantalite_ore_endstone.json │ │ ├── tantalite_ore_granite.json │ │ ├── tantalite_ore_granite_black.json │ │ ├── tantalite_ore_granite_red.json │ │ ├── tantalite_ore_marble.json │ │ ├── tantalite_ore_netherrack.json │ │ ├── tantalite_ore_sand.json │ │ ├── tantalite_ore_sand_red.json │ │ ├── tantalite_ore_sandstone.json │ │ ├── tantalite_ore_stone.json │ │ ├── tanzanite_ore_andesite.json │ │ ├── tanzanite_ore_basalt.json │ │ ├── tanzanite_ore_diorite.json │ │ ├── tanzanite_ore_endstone.json │ │ ├── tanzanite_ore_granite.json │ │ ├── tanzanite_ore_granite_black.json │ │ ├── tanzanite_ore_granite_red.json │ │ ├── tanzanite_ore_marble.json │ │ ├── tanzanite_ore_netherrack.json │ │ ├── tanzanite_ore_sand.json │ │ ├── tanzanite_ore_sand_red.json │ │ ├── tanzanite_ore_sandstone.json │ │ ├── tanzanite_ore_small_andesite.json │ │ ├── tanzanite_ore_small_basalt.json │ │ ├── tanzanite_ore_small_diorite.json │ │ ├── tanzanite_ore_small_endstone.json │ │ ├── tanzanite_ore_small_granite.json │ │ ├── tanzanite_ore_small_granite_black.json │ │ ├── tanzanite_ore_small_granite_red.json │ │ ├── tanzanite_ore_small_marble.json │ │ ├── tanzanite_ore_small_netherrack.json │ │ ├── tanzanite_ore_small_sand.json │ │ ├── tanzanite_ore_small_sand_red.json │ │ ├── tanzanite_ore_small_sandstone.json │ │ ├── tanzanite_ore_small_stone.json │ │ ├── tanzanite_ore_stone.json │ │ ├── tetrahedrite_ore_andesite.json │ │ ├── tetrahedrite_ore_basalt.json │ │ ├── tetrahedrite_ore_diorite.json │ │ ├── tetrahedrite_ore_endstone.json │ │ ├── tetrahedrite_ore_granite.json │ │ ├── tetrahedrite_ore_granite_black.json │ │ ├── tetrahedrite_ore_granite_red.json │ │ ├── tetrahedrite_ore_marble.json │ │ ├── tetrahedrite_ore_netherrack.json │ │ ├── tetrahedrite_ore_sand.json │ │ ├── tetrahedrite_ore_sand_red.json │ │ ├── tetrahedrite_ore_sandstone.json │ │ ├── tetrahedrite_ore_stone.json │ │ ├── thorium_ore_andesite.json │ │ ├── thorium_ore_basalt.json │ │ ├── thorium_ore_diorite.json │ │ ├── thorium_ore_endstone.json │ │ ├── thorium_ore_granite.json │ │ ├── thorium_ore_granite_black.json │ │ ├── thorium_ore_granite_red.json │ │ ├── thorium_ore_marble.json │ │ ├── thorium_ore_netherrack.json │ │ ├── thorium_ore_sand.json │ │ ├── thorium_ore_sand_red.json │ │ ├── thorium_ore_sandstone.json │ │ ├── thorium_ore_stone.json │ │ ├── tin_ore_andesite.json │ │ ├── tin_ore_basalt.json │ │ ├── tin_ore_diorite.json │ │ ├── tin_ore_endstone.json │ │ ├── tin_ore_granite.json │ │ ├── tin_ore_granite_black.json │ │ ├── tin_ore_granite_red.json │ │ ├── tin_ore_marble.json │ │ ├── tin_ore_netherrack.json │ │ ├── tin_ore_sand.json │ │ ├── tin_ore_sand_red.json │ │ ├── tin_ore_sandstone.json │ │ ├── tin_ore_small_andesite.json │ │ ├── tin_ore_small_basalt.json │ │ ├── tin_ore_small_diorite.json │ │ ├── tin_ore_small_endstone.json │ │ ├── tin_ore_small_granite.json │ │ ├── tin_ore_small_granite_black.json │ │ ├── tin_ore_small_granite_red.json │ │ ├── tin_ore_small_marble.json │ │ ├── tin_ore_small_netherrack.json │ │ ├── tin_ore_small_sand.json │ │ ├── tin_ore_small_sand_red.json │ │ ├── tin_ore_small_sandstone.json │ │ ├── tin_ore_small_stone.json │ │ ├── tin_ore_stone.json │ │ ├── topaz_ore_andesite.json │ │ ├── topaz_ore_basalt.json │ │ ├── topaz_ore_diorite.json │ │ ├── topaz_ore_endstone.json │ │ ├── topaz_ore_granite.json │ │ ├── topaz_ore_granite_black.json │ │ ├── topaz_ore_granite_red.json │ │ ├── topaz_ore_marble.json │ │ ├── topaz_ore_netherrack.json │ │ ├── topaz_ore_sand.json │ │ ├── topaz_ore_sand_red.json │ │ ├── topaz_ore_sandstone.json │ │ ├── topaz_ore_small_andesite.json │ │ ├── topaz_ore_small_basalt.json │ │ ├── topaz_ore_small_diorite.json │ │ ├── topaz_ore_small_endstone.json │ │ ├── topaz_ore_small_granite.json │ │ ├── topaz_ore_small_granite_black.json │ │ ├── topaz_ore_small_granite_red.json │ │ ├── topaz_ore_small_marble.json │ │ ├── topaz_ore_small_netherrack.json │ │ ├── topaz_ore_small_sand.json │ │ ├── topaz_ore_small_sand_red.json │ │ ├── topaz_ore_small_sandstone.json │ │ ├── topaz_ore_small_stone.json │ │ ├── topaz_ore_stone.json │ │ ├── tungstate_ore_andesite.json │ │ ├── tungstate_ore_basalt.json │ │ ├── tungstate_ore_diorite.json │ │ ├── tungstate_ore_endstone.json │ │ ├── tungstate_ore_granite.json │ │ ├── tungstate_ore_granite_black.json │ │ ├── tungstate_ore_granite_red.json │ │ ├── tungstate_ore_marble.json │ │ ├── tungstate_ore_netherrack.json │ │ ├── tungstate_ore_sand.json │ │ ├── tungstate_ore_sand_red.json │ │ ├── tungstate_ore_sandstone.json │ │ ├── tungstate_ore_stone.json │ │ ├── uraninite_ore_andesite.json │ │ ├── uraninite_ore_basalt.json │ │ ├── uraninite_ore_diorite.json │ │ ├── uraninite_ore_endstone.json │ │ ├── uraninite_ore_granite.json │ │ ├── uraninite_ore_granite_black.json │ │ ├── uraninite_ore_granite_red.json │ │ ├── uraninite_ore_marble.json │ │ ├── uraninite_ore_netherrack.json │ │ ├── uraninite_ore_sand.json │ │ ├── uraninite_ore_sand_red.json │ │ ├── uraninite_ore_sandstone.json │ │ ├── uraninite_ore_stone.json │ │ ├── uranium_238_ore_andesite.json │ │ ├── uranium_238_ore_basalt.json │ │ ├── uranium_238_ore_diorite.json │ │ ├── uranium_238_ore_endstone.json │ │ ├── uranium_238_ore_granite.json │ │ ├── uranium_238_ore_granite_black.json │ │ ├── uranium_238_ore_granite_red.json │ │ ├── uranium_238_ore_marble.json │ │ ├── uranium_238_ore_netherrack.json │ │ ├── uranium_238_ore_sand.json │ │ ├── uranium_238_ore_sand_red.json │ │ ├── uranium_238_ore_sandstone.json │ │ ├── uranium_238_ore_stone.json │ │ ├── uvarovite_ore_andesite.json │ │ ├── uvarovite_ore_basalt.json │ │ ├── uvarovite_ore_diorite.json │ │ ├── uvarovite_ore_endstone.json │ │ ├── uvarovite_ore_granite.json │ │ ├── uvarovite_ore_granite_black.json │ │ ├── uvarovite_ore_granite_red.json │ │ ├── uvarovite_ore_marble.json │ │ ├── uvarovite_ore_netherrack.json │ │ ├── uvarovite_ore_sand.json │ │ ├── uvarovite_ore_sand_red.json │ │ ├── uvarovite_ore_sandstone.json │ │ ├── uvarovite_ore_small_andesite.json │ │ ├── uvarovite_ore_small_basalt.json │ │ ├── uvarovite_ore_small_diorite.json │ │ ├── uvarovite_ore_small_endstone.json │ │ ├── uvarovite_ore_small_granite.json │ │ ├── uvarovite_ore_small_granite_black.json │ │ ├── uvarovite_ore_small_granite_red.json │ │ ├── uvarovite_ore_small_marble.json │ │ ├── uvarovite_ore_small_netherrack.json │ │ ├── uvarovite_ore_small_sand.json │ │ ├── uvarovite_ore_small_sand_red.json │ │ ├── uvarovite_ore_small_sandstone.json │ │ ├── uvarovite_ore_small_stone.json │ │ ├── uvarovite_ore_stone.json │ │ ├── vanadium_magnetite_ore_andesite.json │ │ ├── vanadium_magnetite_ore_basalt.json │ │ ├── vanadium_magnetite_ore_diorite.json │ │ ├── vanadium_magnetite_ore_endstone.json │ │ ├── vanadium_magnetite_ore_granite.json │ │ ├── vanadium_magnetite_ore_granite_black.json │ │ ├── vanadium_magnetite_ore_granite_red.json │ │ ├── vanadium_magnetite_ore_marble.json │ │ ├── vanadium_magnetite_ore_netherrack.json │ │ ├── vanadium_magnetite_ore_sand.json │ │ ├── vanadium_magnetite_ore_sand_red.json │ │ ├── vanadium_magnetite_ore_sandstone.json │ │ ├── vanadium_magnetite_ore_stone.json │ │ ├── wulfenite_ore_andesite.json │ │ ├── wulfenite_ore_basalt.json │ │ ├── wulfenite_ore_diorite.json │ │ ├── wulfenite_ore_endstone.json │ │ ├── wulfenite_ore_granite.json │ │ ├── wulfenite_ore_granite_black.json │ │ ├── wulfenite_ore_granite_red.json │ │ ├── wulfenite_ore_marble.json │ │ ├── wulfenite_ore_netherrack.json │ │ ├── wulfenite_ore_sand.json │ │ ├── wulfenite_ore_sand_red.json │ │ ├── wulfenite_ore_sandstone.json │ │ ├── wulfenite_ore_stone.json │ │ ├── yellow_garnet_ore_andesite.json │ │ ├── yellow_garnet_ore_basalt.json │ │ ├── yellow_garnet_ore_diorite.json │ │ ├── yellow_garnet_ore_endstone.json │ │ ├── yellow_garnet_ore_granite.json │ │ ├── yellow_garnet_ore_granite_black.json │ │ ├── yellow_garnet_ore_granite_red.json │ │ ├── yellow_garnet_ore_marble.json │ │ ├── yellow_garnet_ore_netherrack.json │ │ ├── yellow_garnet_ore_sand.json │ │ ├── yellow_garnet_ore_sand_red.json │ │ ├── yellow_garnet_ore_sandstone.json │ │ ├── yellow_garnet_ore_small_andesite.json │ │ ├── yellow_garnet_ore_small_basalt.json │ │ ├── yellow_garnet_ore_small_diorite.json │ │ ├── yellow_garnet_ore_small_endstone.json │ │ ├── yellow_garnet_ore_small_granite.json │ │ ├── yellow_garnet_ore_small_granite_black.json │ │ ├── yellow_garnet_ore_small_granite_red.json │ │ ├── yellow_garnet_ore_small_marble.json │ │ ├── yellow_garnet_ore_small_netherrack.json │ │ ├── yellow_garnet_ore_small_sand.json │ │ ├── yellow_garnet_ore_small_sand_red.json │ │ ├── yellow_garnet_ore_small_sandstone.json │ │ ├── yellow_garnet_ore_small_stone.json │ │ ├── yellow_garnet_ore_stone.json │ │ ├── yellow_limonite_ore_andesite.json │ │ ├── yellow_limonite_ore_basalt.json │ │ ├── yellow_limonite_ore_diorite.json │ │ ├── yellow_limonite_ore_endstone.json │ │ ├── yellow_limonite_ore_granite.json │ │ ├── yellow_limonite_ore_granite_black.json │ │ ├── yellow_limonite_ore_granite_red.json │ │ ├── yellow_limonite_ore_marble.json │ │ ├── yellow_limonite_ore_netherrack.json │ │ ├── yellow_limonite_ore_sand.json │ │ ├── yellow_limonite_ore_sand_red.json │ │ ├── yellow_limonite_ore_sandstone.json │ │ ├── yellow_limonite_ore_stone.json │ │ ├── zinc_ore_andesite.json │ │ ├── zinc_ore_basalt.json │ │ ├── zinc_ore_diorite.json │ │ ├── zinc_ore_endstone.json │ │ ├── zinc_ore_granite.json │ │ ├── zinc_ore_granite_black.json │ │ ├── zinc_ore_granite_red.json │ │ ├── zinc_ore_marble.json │ │ ├── zinc_ore_netherrack.json │ │ ├── zinc_ore_sand.json │ │ ├── zinc_ore_sand_red.json │ │ ├── zinc_ore_sandstone.json │ │ ├── zinc_ore_small_andesite.json │ │ ├── zinc_ore_small_basalt.json │ │ ├── zinc_ore_small_diorite.json │ │ ├── zinc_ore_small_endstone.json │ │ ├── zinc_ore_small_granite.json │ │ ├── zinc_ore_small_granite_black.json │ │ ├── zinc_ore_small_granite_red.json │ │ ├── zinc_ore_small_marble.json │ │ ├── zinc_ore_small_netherrack.json │ │ ├── zinc_ore_small_sand.json │ │ ├── zinc_ore_small_sand_red.json │ │ ├── zinc_ore_small_sandstone.json │ │ ├── zinc_ore_small_stone.json │ │ └── zinc_ore_stone.json │ ├── lang │ │ └── en_us.json │ ├── models │ │ ├── block │ │ │ ├── almandine_ore_andesite.json │ │ │ ├── almandine_ore_basalt.json │ │ │ ├── almandine_ore_diorite.json │ │ │ ├── almandine_ore_endstone.json │ │ │ ├── almandine_ore_granite.json │ │ │ ├── almandine_ore_granite_black.json │ │ │ ├── almandine_ore_granite_red.json │ │ │ ├── almandine_ore_marble.json │ │ │ ├── almandine_ore_netherrack.json │ │ │ ├── almandine_ore_sand.json │ │ │ ├── almandine_ore_sand_red.json │ │ │ ├── almandine_ore_sandstone.json │ │ │ ├── almandine_ore_small_andesite.json │ │ │ ├── almandine_ore_small_basalt.json │ │ │ ├── almandine_ore_small_diorite.json │ │ │ ├── almandine_ore_small_endstone.json │ │ │ ├── almandine_ore_small_granite.json │ │ │ ├── almandine_ore_small_granite_black.json │ │ │ ├── almandine_ore_small_granite_red.json │ │ │ ├── almandine_ore_small_marble.json │ │ │ ├── almandine_ore_small_netherrack.json │ │ │ ├── almandine_ore_small_sand.json │ │ │ ├── almandine_ore_small_sand_red.json │ │ │ ├── almandine_ore_small_sandstone.json │ │ │ ├── almandine_ore_small_stone.json │ │ │ ├── almandine_ore_stone.json │ │ │ ├── aluminium_ore_andesite.json │ │ │ ├── aluminium_ore_basalt.json │ │ │ ├── aluminium_ore_diorite.json │ │ │ ├── aluminium_ore_endstone.json │ │ │ ├── aluminium_ore_granite.json │ │ │ ├── aluminium_ore_granite_black.json │ │ │ ├── aluminium_ore_granite_red.json │ │ │ ├── aluminium_ore_marble.json │ │ │ ├── aluminium_ore_netherrack.json │ │ │ ├── aluminium_ore_sand.json │ │ │ ├── aluminium_ore_sand_red.json │ │ │ ├── aluminium_ore_sandstone.json │ │ │ ├── aluminium_ore_stone.json │ │ │ ├── amethyst_ore_andesite.json │ │ │ ├── amethyst_ore_basalt.json │ │ │ ├── amethyst_ore_diorite.json │ │ │ ├── amethyst_ore_endstone.json │ │ │ ├── amethyst_ore_granite.json │ │ │ ├── amethyst_ore_granite_black.json │ │ │ ├── amethyst_ore_granite_red.json │ │ │ ├── amethyst_ore_marble.json │ │ │ ├── amethyst_ore_netherrack.json │ │ │ ├── amethyst_ore_sand.json │ │ │ ├── amethyst_ore_sand_red.json │ │ │ ├── amethyst_ore_sandstone.json │ │ │ ├── amethyst_ore_small_andesite.json │ │ │ ├── amethyst_ore_small_basalt.json │ │ │ ├── amethyst_ore_small_diorite.json │ │ │ ├── amethyst_ore_small_endstone.json │ │ │ ├── amethyst_ore_small_granite.json │ │ │ ├── amethyst_ore_small_granite_black.json │ │ │ ├── amethyst_ore_small_granite_red.json │ │ │ ├── amethyst_ore_small_marble.json │ │ │ ├── amethyst_ore_small_netherrack.json │ │ │ ├── amethyst_ore_small_sand.json │ │ │ ├── amethyst_ore_small_sand_red.json │ │ │ ├── amethyst_ore_small_sandstone.json │ │ │ ├── amethyst_ore_small_stone.json │ │ │ ├── amethyst_ore_stone.json │ │ │ ├── andradite_ore_andesite.json │ │ │ ├── andradite_ore_basalt.json │ │ │ ├── andradite_ore_diorite.json │ │ │ ├── andradite_ore_endstone.json │ │ │ ├── andradite_ore_granite.json │ │ │ ├── andradite_ore_granite_black.json │ │ │ ├── andradite_ore_granite_red.json │ │ │ ├── andradite_ore_marble.json │ │ │ ├── andradite_ore_netherrack.json │ │ │ ├── andradite_ore_sand.json │ │ │ ├── andradite_ore_sand_red.json │ │ │ ├── andradite_ore_sandstone.json │ │ │ ├── andradite_ore_small_andesite.json │ │ │ ├── andradite_ore_small_basalt.json │ │ │ ├── andradite_ore_small_diorite.json │ │ │ ├── andradite_ore_small_endstone.json │ │ │ ├── andradite_ore_small_granite.json │ │ │ ├── andradite_ore_small_granite_black.json │ │ │ ├── andradite_ore_small_granite_red.json │ │ │ ├── andradite_ore_small_marble.json │ │ │ ├── andradite_ore_small_netherrack.json │ │ │ ├── andradite_ore_small_sand.json │ │ │ ├── andradite_ore_small_sand_red.json │ │ │ ├── andradite_ore_small_sandstone.json │ │ │ ├── andradite_ore_small_stone.json │ │ │ ├── andradite_ore_stone.json │ │ │ ├── banded_iron_ore_andesite.json │ │ │ ├── banded_iron_ore_basalt.json │ │ │ ├── banded_iron_ore_diorite.json │ │ │ ├── banded_iron_ore_endstone.json │ │ │ ├── banded_iron_ore_granite.json │ │ │ ├── banded_iron_ore_granite_black.json │ │ │ ├── banded_iron_ore_granite_red.json │ │ │ ├── banded_iron_ore_marble.json │ │ │ ├── banded_iron_ore_netherrack.json │ │ │ ├── banded_iron_ore_sand.json │ │ │ ├── banded_iron_ore_sand_red.json │ │ │ ├── banded_iron_ore_sandstone.json │ │ │ ├── banded_iron_ore_stone.json │ │ │ ├── barite_ore_andesite.json │ │ │ ├── barite_ore_basalt.json │ │ │ ├── barite_ore_diorite.json │ │ │ ├── barite_ore_endstone.json │ │ │ ├── barite_ore_granite.json │ │ │ ├── barite_ore_granite_black.json │ │ │ ├── barite_ore_granite_red.json │ │ │ ├── barite_ore_marble.json │ │ │ ├── barite_ore_netherrack.json │ │ │ ├── barite_ore_sand.json │ │ │ ├── barite_ore_sand_red.json │ │ │ ├── barite_ore_sandstone.json │ │ │ ├── barite_ore_stone.json │ │ │ ├── basalt.json │ │ │ ├── basic_fire_brick.json │ │ │ ├── bastnasite_ore_andesite.json │ │ │ ├── bastnasite_ore_basalt.json │ │ │ ├── bastnasite_ore_diorite.json │ │ │ ├── bastnasite_ore_endstone.json │ │ │ ├── bastnasite_ore_granite.json │ │ │ ├── bastnasite_ore_granite_black.json │ │ │ ├── bastnasite_ore_granite_red.json │ │ │ ├── bastnasite_ore_marble.json │ │ │ ├── bastnasite_ore_netherrack.json │ │ │ ├── bastnasite_ore_sand.json │ │ │ ├── bastnasite_ore_sand_red.json │ │ │ ├── bastnasite_ore_sandstone.json │ │ │ ├── bastnasite_ore_stone.json │ │ │ ├── bauxite_ore_andesite.json │ │ │ ├── bauxite_ore_basalt.json │ │ │ ├── bauxite_ore_diorite.json │ │ │ ├── bauxite_ore_endstone.json │ │ │ ├── bauxite_ore_granite.json │ │ │ ├── bauxite_ore_granite_black.json │ │ │ ├── bauxite_ore_granite_red.json │ │ │ ├── bauxite_ore_marble.json │ │ │ ├── bauxite_ore_netherrack.json │ │ │ ├── bauxite_ore_sand.json │ │ │ ├── bauxite_ore_sand_red.json │ │ │ ├── bauxite_ore_sandstone.json │ │ │ ├── bauxite_ore_stone.json │ │ │ ├── bentonite_ore_andesite.json │ │ │ ├── bentonite_ore_basalt.json │ │ │ ├── bentonite_ore_diorite.json │ │ │ ├── bentonite_ore_endstone.json │ │ │ ├── bentonite_ore_granite.json │ │ │ ├── bentonite_ore_granite_black.json │ │ │ ├── bentonite_ore_granite_red.json │ │ │ ├── bentonite_ore_marble.json │ │ │ ├── bentonite_ore_netherrack.json │ │ │ ├── bentonite_ore_sand.json │ │ │ ├── bentonite_ore_sand_red.json │ │ │ ├── bentonite_ore_sandstone.json │ │ │ ├── bentonite_ore_stone.json │ │ │ ├── beryllium_ore_andesite.json │ │ │ ├── beryllium_ore_basalt.json │ │ │ ├── beryllium_ore_diorite.json │ │ │ ├── beryllium_ore_endstone.json │ │ │ ├── beryllium_ore_granite.json │ │ │ ├── beryllium_ore_granite_black.json │ │ │ ├── beryllium_ore_granite_red.json │ │ │ ├── beryllium_ore_marble.json │ │ │ ├── beryllium_ore_netherrack.json │ │ │ ├── beryllium_ore_sand.json │ │ │ ├── beryllium_ore_sand_red.json │ │ │ ├── beryllium_ore_sandstone.json │ │ │ ├── beryllium_ore_stone.json │ │ │ ├── bismuth_ore_andesite.json │ │ │ ├── bismuth_ore_basalt.json │ │ │ ├── bismuth_ore_diorite.json │ │ │ ├── bismuth_ore_endstone.json │ │ │ ├── bismuth_ore_granite.json │ │ │ ├── bismuth_ore_granite_black.json │ │ │ ├── bismuth_ore_granite_red.json │ │ │ ├── bismuth_ore_marble.json │ │ │ ├── bismuth_ore_netherrack.json │ │ │ ├── bismuth_ore_sand.json │ │ │ ├── bismuth_ore_sand_red.json │ │ │ ├── bismuth_ore_sandstone.json │ │ │ ├── bismuth_ore_small_andesite.json │ │ │ ├── bismuth_ore_small_basalt.json │ │ │ ├── bismuth_ore_small_diorite.json │ │ │ ├── bismuth_ore_small_endstone.json │ │ │ ├── bismuth_ore_small_granite.json │ │ │ ├── bismuth_ore_small_granite_black.json │ │ │ ├── bismuth_ore_small_granite_red.json │ │ │ ├── bismuth_ore_small_marble.json │ │ │ ├── bismuth_ore_small_netherrack.json │ │ │ ├── bismuth_ore_small_sand.json │ │ │ ├── bismuth_ore_small_sand_red.json │ │ │ ├── bismuth_ore_small_sandstone.json │ │ │ ├── bismuth_ore_small_stone.json │ │ │ ├── bismuth_ore_stone.json │ │ │ ├── blue_sapphire_ore_andesite.json │ │ │ ├── blue_sapphire_ore_basalt.json │ │ │ ├── blue_sapphire_ore_diorite.json │ │ │ ├── blue_sapphire_ore_endstone.json │ │ │ ├── blue_sapphire_ore_granite.json │ │ │ ├── blue_sapphire_ore_granite_black.json │ │ │ ├── blue_sapphire_ore_granite_red.json │ │ │ ├── blue_sapphire_ore_marble.json │ │ │ ├── blue_sapphire_ore_netherrack.json │ │ │ ├── blue_sapphire_ore_sand.json │ │ │ ├── blue_sapphire_ore_sand_red.json │ │ │ ├── blue_sapphire_ore_sandstone.json │ │ │ ├── blue_sapphire_ore_small_andesite.json │ │ │ ├── blue_sapphire_ore_small_basalt.json │ │ │ ├── blue_sapphire_ore_small_diorite.json │ │ │ ├── blue_sapphire_ore_small_endstone.json │ │ │ ├── blue_sapphire_ore_small_granite.json │ │ │ ├── blue_sapphire_ore_small_granite_black.json │ │ │ ├── blue_sapphire_ore_small_granite_red.json │ │ │ ├── blue_sapphire_ore_small_marble.json │ │ │ ├── blue_sapphire_ore_small_netherrack.json │ │ │ ├── blue_sapphire_ore_small_sand.json │ │ │ ├── blue_sapphire_ore_small_sand_red.json │ │ │ ├── blue_sapphire_ore_small_sandstone.json │ │ │ ├── blue_sapphire_ore_small_stone.json │ │ │ ├── blue_sapphire_ore_stone.json │ │ │ ├── blue_topaz_ore_andesite.json │ │ │ ├── blue_topaz_ore_basalt.json │ │ │ ├── blue_topaz_ore_diorite.json │ │ │ ├── blue_topaz_ore_endstone.json │ │ │ ├── blue_topaz_ore_granite.json │ │ │ ├── blue_topaz_ore_granite_black.json │ │ │ ├── blue_topaz_ore_granite_red.json │ │ │ ├── blue_topaz_ore_marble.json │ │ │ ├── blue_topaz_ore_netherrack.json │ │ │ ├── blue_topaz_ore_sand.json │ │ │ ├── blue_topaz_ore_sand_red.json │ │ │ ├── blue_topaz_ore_sandstone.json │ │ │ ├── blue_topaz_ore_small_andesite.json │ │ │ ├── blue_topaz_ore_small_basalt.json │ │ │ ├── blue_topaz_ore_small_diorite.json │ │ │ ├── blue_topaz_ore_small_endstone.json │ │ │ ├── blue_topaz_ore_small_granite.json │ │ │ ├── blue_topaz_ore_small_granite_black.json │ │ │ ├── blue_topaz_ore_small_granite_red.json │ │ │ ├── blue_topaz_ore_small_marble.json │ │ │ ├── blue_topaz_ore_small_netherrack.json │ │ │ ├── blue_topaz_ore_small_sand.json │ │ │ ├── blue_topaz_ore_small_sand_red.json │ │ │ ├── blue_topaz_ore_small_sandstone.json │ │ │ ├── blue_topaz_ore_small_stone.json │ │ │ ├── blue_topaz_ore_stone.json │ │ │ ├── brown_limonite_ore_andesite.json │ │ │ ├── brown_limonite_ore_basalt.json │ │ │ ├── brown_limonite_ore_diorite.json │ │ │ ├── brown_limonite_ore_endstone.json │ │ │ ├── brown_limonite_ore_granite.json │ │ │ ├── brown_limonite_ore_granite_black.json │ │ │ ├── brown_limonite_ore_granite_red.json │ │ │ ├── brown_limonite_ore_marble.json │ │ │ ├── brown_limonite_ore_netherrack.json │ │ │ ├── brown_limonite_ore_sand.json │ │ │ ├── brown_limonite_ore_sand_red.json │ │ │ ├── brown_limonite_ore_sandstone.json │ │ │ ├── brown_limonite_ore_stone.json │ │ │ ├── cable_aluminium_huge.json │ │ │ ├── cable_aluminium_large.json │ │ │ ├── cable_aluminium_normal.json │ │ │ ├── cable_aluminium_small.json │ │ │ ├── cable_aluminium_tiny.json │ │ │ ├── cable_aluminium_vtiny.json │ │ │ ├── cable_annealed_copper_huge.json │ │ │ ├── cable_annealed_copper_large.json │ │ │ ├── cable_annealed_copper_normal.json │ │ │ ├── cable_annealed_copper_small.json │ │ │ ├── cable_annealed_copper_tiny.json │ │ │ ├── cable_annealed_copper_vtiny.json │ │ │ ├── cable_cobalt_huge.json │ │ │ ├── cable_cobalt_large.json │ │ │ ├── cable_cobalt_normal.json │ │ │ ├── cable_cobalt_small.json │ │ │ ├── cable_cobalt_tiny.json │ │ │ ├── cable_cobalt_vtiny.json │ │ │ ├── cable_copper_huge.json │ │ │ ├── cable_copper_large.json │ │ │ ├── cable_copper_normal.json │ │ │ ├── cable_copper_small.json │ │ │ ├── cable_copper_tiny.json │ │ │ ├── cable_copper_vtiny.json │ │ │ ├── cable_cupronickel_huge.json │ │ │ ├── cable_cupronickel_large.json │ │ │ ├── cable_cupronickel_normal.json │ │ │ ├── cable_cupronickel_small.json │ │ │ ├── cable_cupronickel_tiny.json │ │ │ ├── cable_cupronickel_vtiny.json │ │ │ ├── cable_duranium_huge.json │ │ │ ├── cable_duranium_large.json │ │ │ ├── cable_duranium_normal.json │ │ │ ├── cable_duranium_small.json │ │ │ ├── cable_duranium_tiny.json │ │ │ ├── cable_duranium_vtiny.json │ │ │ ├── cable_electrum_huge.json │ │ │ ├── cable_electrum_large.json │ │ │ ├── cable_electrum_normal.json │ │ │ ├── cable_electrum_small.json │ │ │ ├── cable_electrum_tiny.json │ │ │ ├── cable_electrum_vtiny.json │ │ │ ├── cable_gold_huge.json │ │ │ ├── cable_gold_large.json │ │ │ ├── cable_gold_normal.json │ │ │ ├── cable_gold_small.json │ │ │ ├── cable_gold_tiny.json │ │ │ ├── cable_gold_vtiny.json │ │ │ ├── cable_graphene_huge.json │ │ │ ├── cable_graphene_large.json │ │ │ ├── cable_graphene_normal.json │ │ │ ├── cable_graphene_small.json │ │ │ ├── cable_graphene_tiny.json │ │ │ ├── cable_graphene_vtiny.json │ │ │ ├── cable_hssg_huge.json │ │ │ ├── cable_hssg_large.json │ │ │ ├── cable_hssg_normal.json │ │ │ ├── cable_hssg_small.json │ │ │ ├── cable_hssg_tiny.json │ │ │ ├── cable_hssg_vtiny.json │ │ │ ├── cable_iron_huge.json │ │ │ ├── cable_iron_large.json │ │ │ ├── cable_iron_normal.json │ │ │ ├── cable_iron_small.json │ │ │ ├── cable_iron_tiny.json │ │ │ ├── cable_iron_vtiny.json │ │ │ ├── cable_kanthal_huge.json │ │ │ ├── cable_kanthal_large.json │ │ │ ├── cable_kanthal_normal.json │ │ │ ├── cable_kanthal_small.json │ │ │ ├── cable_kanthal_tiny.json │ │ │ ├── cable_kanthal_vtiny.json │ │ │ ├── cable_lead_huge.json │ │ │ ├── cable_lead_large.json │ │ │ ├── cable_lead_normal.json │ │ │ ├── cable_lead_small.json │ │ │ ├── cable_lead_tiny.json │ │ │ ├── cable_lead_vtiny.json │ │ │ ├── cable_naquadah_alloy_huge.json │ │ │ ├── cable_naquadah_alloy_large.json │ │ │ ├── cable_naquadah_alloy_normal.json │ │ │ ├── cable_naquadah_alloy_small.json │ │ │ ├── cable_naquadah_alloy_tiny.json │ │ │ ├── cable_naquadah_alloy_vtiny.json │ │ │ ├── cable_naquadah_huge.json │ │ │ ├── cable_naquadah_large.json │ │ │ ├── cable_naquadah_normal.json │ │ │ ├── cable_naquadah_small.json │ │ │ ├── cable_naquadah_tiny.json │ │ │ ├── cable_naquadah_vtiny.json │ │ │ ├── cable_nichrome_huge.json │ │ │ ├── cable_nichrome_large.json │ │ │ ├── cable_nichrome_normal.json │ │ │ ├── cable_nichrome_small.json │ │ │ ├── cable_nichrome_tiny.json │ │ │ ├── cable_nichrome_vtiny.json │ │ │ ├── cable_nickel_huge.json │ │ │ ├── cable_nickel_large.json │ │ │ ├── cable_nickel_normal.json │ │ │ ├── cable_nickel_small.json │ │ │ ├── cable_nickel_tiny.json │ │ │ ├── cable_nickel_vtiny.json │ │ │ ├── cable_niobium_titanium_huge.json │ │ │ ├── cable_niobium_titanium_large.json │ │ │ ├── cable_niobium_titanium_normal.json │ │ │ ├── cable_niobium_titanium_small.json │ │ │ ├── cable_niobium_titanium_tiny.json │ │ │ ├── cable_niobium_titanium_vtiny.json │ │ │ ├── cable_osmium_huge.json │ │ │ ├── cable_osmium_large.json │ │ │ ├── cable_osmium_normal.json │ │ │ ├── cable_osmium_small.json │ │ │ ├── cable_osmium_tiny.json │ │ │ ├── cable_osmium_vtiny.json │ │ │ ├── cable_platinum_huge.json │ │ │ ├── cable_platinum_large.json │ │ │ ├── cable_platinum_normal.json │ │ │ ├── cable_platinum_small.json │ │ │ ├── cable_platinum_tiny.json │ │ │ ├── cable_platinum_vtiny.json │ │ │ ├── cable_red_alloy_huge.json │ │ │ ├── cable_red_alloy_large.json │ │ │ ├── cable_red_alloy_normal.json │ │ │ ├── cable_red_alloy_small.json │ │ │ ├── cable_red_alloy_tiny.json │ │ │ ├── cable_red_alloy_vtiny.json │ │ │ ├── cable_silver_huge.json │ │ │ ├── cable_silver_large.json │ │ │ ├── cable_silver_normal.json │ │ │ ├── cable_silver_small.json │ │ │ ├── cable_silver_tiny.json │ │ │ ├── cable_silver_vtiny.json │ │ │ ├── cable_soldering_alloy_huge.json │ │ │ ├── cable_soldering_alloy_large.json │ │ │ ├── cable_soldering_alloy_normal.json │ │ │ ├── cable_soldering_alloy_small.json │ │ │ ├── cable_soldering_alloy_tiny.json │ │ │ ├── cable_soldering_alloy_vtiny.json │ │ │ ├── cable_steel_huge.json │ │ │ ├── cable_steel_large.json │ │ │ ├── cable_steel_normal.json │ │ │ ├── cable_steel_small.json │ │ │ ├── cable_steel_tiny.json │ │ │ ├── cable_steel_vtiny.json │ │ │ ├── cable_superconductor_huge.json │ │ │ ├── cable_superconductor_large.json │ │ │ ├── cable_superconductor_normal.json │ │ │ ├── cable_superconductor_small.json │ │ │ ├── cable_superconductor_tiny.json │ │ │ ├── cable_superconductor_vtiny.json │ │ │ ├── cable_tin_huge.json │ │ │ ├── cable_tin_large.json │ │ │ ├── cable_tin_normal.json │ │ │ ├── cable_tin_small.json │ │ │ ├── cable_tin_tiny.json │ │ │ ├── cable_tin_vtiny.json │ │ │ ├── cable_titanium_huge.json │ │ │ ├── cable_titanium_large.json │ │ │ ├── cable_titanium_normal.json │ │ │ ├── cable_titanium_small.json │ │ │ ├── cable_titanium_tiny.json │ │ │ ├── cable_titanium_vtiny.json │ │ │ ├── cable_tungsten_huge.json │ │ │ ├── cable_tungsten_large.json │ │ │ ├── cable_tungsten_normal.json │ │ │ ├── cable_tungsten_small.json │ │ │ ├── cable_tungsten_tiny.json │ │ │ ├── cable_tungsten_vtiny.json │ │ │ ├── cable_tungstensteel_huge.json │ │ │ ├── cable_tungstensteel_large.json │ │ │ ├── cable_tungstensteel_normal.json │ │ │ ├── cable_tungstensteel_small.json │ │ │ ├── cable_tungstensteel_tiny.json │ │ │ ├── cable_tungstensteel_vtiny.json │ │ │ ├── cable_vanadium_gallium_huge.json │ │ │ ├── cable_vanadium_gallium_large.json │ │ │ ├── cable_vanadium_gallium_normal.json │ │ │ ├── cable_vanadium_gallium_small.json │ │ │ ├── cable_vanadium_gallium_tiny.json │ │ │ ├── cable_vanadium_gallium_vtiny.json │ │ │ ├── cable_yttrium_barium_cuprate_huge.json │ │ │ ├── cable_yttrium_barium_cuprate_large.json │ │ │ ├── cable_yttrium_barium_cuprate_normal.json │ │ │ ├── cable_yttrium_barium_cuprate_small.json │ │ │ ├── cable_yttrium_barium_cuprate_tiny.json │ │ │ ├── cable_yttrium_barium_cuprate_vtiny.json │ │ │ ├── cable_zinc_huge.json │ │ │ ├── cable_zinc_large.json │ │ │ ├── cable_zinc_normal.json │ │ │ ├── cable_zinc_small.json │ │ │ ├── cable_zinc_tiny.json │ │ │ ├── cable_zinc_vtiny.json │ │ │ ├── calcite_ore_andesite.json │ │ │ ├── calcite_ore_basalt.json │ │ │ ├── calcite_ore_diorite.json │ │ │ ├── calcite_ore_endstone.json │ │ │ ├── calcite_ore_granite.json │ │ │ ├── calcite_ore_granite_black.json │ │ │ ├── calcite_ore_granite_red.json │ │ │ ├── calcite_ore_marble.json │ │ │ ├── calcite_ore_netherrack.json │ │ │ ├── calcite_ore_sand.json │ │ │ ├── calcite_ore_sand_red.json │ │ │ ├── calcite_ore_sandstone.json │ │ │ ├── calcite_ore_stone.json │ │ │ ├── casing_bricked_bronze.json │ │ │ ├── casing_bricked_steel.json │ │ │ ├── casing_bronze.json │ │ │ ├── casing_bronze_plated_brick.json │ │ │ ├── casing_engine_intake.json │ │ │ ├── casing_ev.json │ │ │ ├── casing_fire_brick.json │ │ │ ├── casing_firebox_bronze.json │ │ │ ├── casing_firebox_steel.json │ │ │ ├── casing_firebox_titanium.json │ │ │ ├── casing_firebox_tungstensteel.json │ │ │ ├── casing_frost_proof.json │ │ │ ├── casing_fusion_1.json │ │ │ ├── casing_fusion_2.json │ │ │ ├── casing_fusion_3.json │ │ │ ├── casing_gearbox_bronze.json │ │ │ ├── casing_gearbox_steel.json │ │ │ ├── casing_gearbox_titanium.json │ │ │ ├── casing_gearbox_tungstensteel.json │ │ │ ├── casing_heat_proof.json │ │ │ ├── casing_hv.json │ │ │ ├── casing_iv.json │ │ │ ├── casing_luv.json │ │ │ ├── casing_lv.json │ │ │ ├── casing_max.json │ │ │ ├── casing_mv.json │ │ │ ├── casing_pipe_bronze.json │ │ │ ├── casing_pipe_steel.json │ │ │ ├── casing_pipe_titanium.json │ │ │ ├── casing_pipe_tungstensteel.json │ │ │ ├── casing_radiation_proof.json │ │ │ ├── casing_solid_steel.json │ │ │ ├── casing_stainless_steel.json │ │ │ ├── casing_steel.json │ │ │ ├── casing_titanium.json │ │ │ ├── casing_tungstensteel.json │ │ │ ├── casing_turbine_1.json │ │ │ ├── casing_turbine_2.json │ │ │ ├── casing_turbine_3.json │ │ │ ├── casing_turbine_4.json │ │ │ ├── casing_ulv.json │ │ │ ├── casing_uv.json │ │ │ ├── casing_zpm.json │ │ │ ├── cassiterite_ore_andesite.json │ │ │ ├── cassiterite_ore_basalt.json │ │ │ ├── cassiterite_ore_diorite.json │ │ │ ├── cassiterite_ore_endstone.json │ │ │ ├── cassiterite_ore_granite.json │ │ │ ├── cassiterite_ore_granite_black.json │ │ │ ├── cassiterite_ore_granite_red.json │ │ │ ├── cassiterite_ore_marble.json │ │ │ ├── cassiterite_ore_netherrack.json │ │ │ ├── cassiterite_ore_sand.json │ │ │ ├── cassiterite_ore_sand_red.json │ │ │ ├── cassiterite_ore_sandstone.json │ │ │ ├── cassiterite_ore_small_andesite.json │ │ │ ├── cassiterite_ore_small_basalt.json │ │ │ ├── cassiterite_ore_small_diorite.json │ │ │ ├── cassiterite_ore_small_endstone.json │ │ │ ├── cassiterite_ore_small_granite.json │ │ │ ├── cassiterite_ore_small_granite_black.json │ │ │ ├── cassiterite_ore_small_granite_red.json │ │ │ ├── cassiterite_ore_small_marble.json │ │ │ ├── cassiterite_ore_small_netherrack.json │ │ │ ├── cassiterite_ore_small_sand.json │ │ │ ├── cassiterite_ore_small_sand_red.json │ │ │ ├── cassiterite_ore_small_sandstone.json │ │ │ ├── cassiterite_ore_small_stone.json │ │ │ ├── cassiterite_ore_stone.json │ │ │ ├── chalcopyrite_ore_andesite.json │ │ │ ├── chalcopyrite_ore_basalt.json │ │ │ ├── chalcopyrite_ore_diorite.json │ │ │ ├── chalcopyrite_ore_endstone.json │ │ │ ├── chalcopyrite_ore_granite.json │ │ │ ├── chalcopyrite_ore_granite_black.json │ │ │ ├── chalcopyrite_ore_granite_red.json │ │ │ ├── chalcopyrite_ore_marble.json │ │ │ ├── chalcopyrite_ore_netherrack.json │ │ │ ├── chalcopyrite_ore_sand.json │ │ │ ├── chalcopyrite_ore_sand_red.json │ │ │ ├── chalcopyrite_ore_sandstone.json │ │ │ ├── chalcopyrite_ore_small_andesite.json │ │ │ ├── chalcopyrite_ore_small_basalt.json │ │ │ ├── chalcopyrite_ore_small_diorite.json │ │ │ ├── chalcopyrite_ore_small_endstone.json │ │ │ ├── chalcopyrite_ore_small_granite.json │ │ │ ├── chalcopyrite_ore_small_granite_black.json │ │ │ ├── chalcopyrite_ore_small_granite_red.json │ │ │ ├── chalcopyrite_ore_small_marble.json │ │ │ ├── chalcopyrite_ore_small_netherrack.json │ │ │ ├── chalcopyrite_ore_small_sand.json │ │ │ ├── chalcopyrite_ore_small_sand_red.json │ │ │ ├── chalcopyrite_ore_small_sandstone.json │ │ │ ├── chalcopyrite_ore_small_stone.json │ │ │ ├── chalcopyrite_ore_stone.json │ │ │ ├── cinnabar_ore_andesite.json │ │ │ ├── cinnabar_ore_basalt.json │ │ │ ├── cinnabar_ore_diorite.json │ │ │ ├── cinnabar_ore_endstone.json │ │ │ ├── cinnabar_ore_granite.json │ │ │ ├── cinnabar_ore_granite_black.json │ │ │ ├── cinnabar_ore_granite_red.json │ │ │ ├── cinnabar_ore_marble.json │ │ │ ├── cinnabar_ore_netherrack.json │ │ │ ├── cinnabar_ore_sand.json │ │ │ ├── cinnabar_ore_sand_red.json │ │ │ ├── cinnabar_ore_sandstone.json │ │ │ ├── cinnabar_ore_stone.json │ │ │ ├── coal_ore_andesite.json │ │ │ ├── coal_ore_basalt.json │ │ │ ├── coal_ore_diorite.json │ │ │ ├── coal_ore_endstone.json │ │ │ ├── coal_ore_granite.json │ │ │ ├── coal_ore_granite_black.json │ │ │ ├── coal_ore_granite_red.json │ │ │ ├── coal_ore_marble.json │ │ │ ├── coal_ore_netherrack.json │ │ │ ├── coal_ore_sand.json │ │ │ ├── coal_ore_sand_red.json │ │ │ ├── coal_ore_sandstone.json │ │ │ ├── coal_ore_small_andesite.json │ │ │ ├── coal_ore_small_basalt.json │ │ │ ├── coal_ore_small_diorite.json │ │ │ ├── coal_ore_small_endstone.json │ │ │ ├── coal_ore_small_granite.json │ │ │ ├── coal_ore_small_granite_black.json │ │ │ ├── coal_ore_small_granite_red.json │ │ │ ├── coal_ore_small_marble.json │ │ │ ├── coal_ore_small_netherrack.json │ │ │ ├── coal_ore_small_sand.json │ │ │ ├── coal_ore_small_sand_red.json │ │ │ ├── coal_ore_small_sandstone.json │ │ │ ├── coal_ore_small_stone.json │ │ │ ├── coal_ore_stone.json │ │ │ ├── cobaltite_ore_andesite.json │ │ │ ├── cobaltite_ore_basalt.json │ │ │ ├── cobaltite_ore_diorite.json │ │ │ ├── cobaltite_ore_endstone.json │ │ │ ├── cobaltite_ore_granite.json │ │ │ ├── cobaltite_ore_granite_black.json │ │ │ ├── cobaltite_ore_granite_red.json │ │ │ ├── cobaltite_ore_marble.json │ │ │ ├── cobaltite_ore_netherrack.json │ │ │ ├── cobaltite_ore_sand.json │ │ │ ├── cobaltite_ore_sand_red.json │ │ │ ├── cobaltite_ore_sandstone.json │ │ │ ├── cobaltite_ore_stone.json │ │ │ ├── coil_cupronickel.json │ │ │ ├── coil_fusion.json │ │ │ ├── coil_hssg.json │ │ │ ├── coil_kanthal.json │ │ │ ├── coil_naquadah.json │ │ │ ├── coil_naquadah_alloy.json │ │ │ ├── coil_nichrome.json │ │ │ ├── coil_superconductor.json │ │ │ ├── coil_tungstensteel.json │ │ │ ├── cooperite_ore_andesite.json │ │ │ ├── cooperite_ore_basalt.json │ │ │ ├── cooperite_ore_diorite.json │ │ │ ├── cooperite_ore_endstone.json │ │ │ ├── cooperite_ore_granite.json │ │ │ ├── cooperite_ore_granite_black.json │ │ │ ├── cooperite_ore_granite_red.json │ │ │ ├── cooperite_ore_marble.json │ │ │ ├── cooperite_ore_netherrack.json │ │ │ ├── cooperite_ore_sand.json │ │ │ ├── cooperite_ore_sand_red.json │ │ │ ├── cooperite_ore_sandstone.json │ │ │ ├── cooperite_ore_small_andesite.json │ │ │ ├── cooperite_ore_small_basalt.json │ │ │ ├── cooperite_ore_small_diorite.json │ │ │ ├── cooperite_ore_small_endstone.json │ │ │ ├── cooperite_ore_small_granite.json │ │ │ ├── cooperite_ore_small_granite_black.json │ │ │ ├── cooperite_ore_small_granite_red.json │ │ │ ├── cooperite_ore_small_marble.json │ │ │ ├── cooperite_ore_small_netherrack.json │ │ │ ├── cooperite_ore_small_sand.json │ │ │ ├── cooperite_ore_small_sand_red.json │ │ │ ├── cooperite_ore_small_sandstone.json │ │ │ ├── cooperite_ore_small_stone.json │ │ │ ├── cooperite_ore_stone.json │ │ │ ├── copper_ore_andesite.json │ │ │ ├── copper_ore_basalt.json │ │ │ ├── copper_ore_diorite.json │ │ │ ├── copper_ore_endstone.json │ │ │ ├── copper_ore_granite.json │ │ │ ├── copper_ore_granite_black.json │ │ │ ├── copper_ore_granite_red.json │ │ │ ├── copper_ore_marble.json │ │ │ ├── copper_ore_netherrack.json │ │ │ ├── copper_ore_sand.json │ │ │ ├── copper_ore_sand_red.json │ │ │ ├── copper_ore_sandstone.json │ │ │ ├── copper_ore_small_andesite.json │ │ │ ├── copper_ore_small_basalt.json │ │ │ ├── copper_ore_small_diorite.json │ │ │ ├── copper_ore_small_endstone.json │ │ │ ├── copper_ore_small_granite.json │ │ │ ├── copper_ore_small_granite_black.json │ │ │ ├── copper_ore_small_granite_red.json │ │ │ ├── copper_ore_small_marble.json │ │ │ ├── copper_ore_small_netherrack.json │ │ │ ├── copper_ore_small_sand.json │ │ │ ├── copper_ore_small_sand_red.json │ │ │ ├── copper_ore_small_sandstone.json │ │ │ ├── copper_ore_small_stone.json │ │ │ ├── copper_ore_stone.json │ │ │ ├── diamond_ore_andesite.json │ │ │ ├── diamond_ore_basalt.json │ │ │ ├── diamond_ore_diorite.json │ │ │ ├── diamond_ore_endstone.json │ │ │ ├── diamond_ore_granite.json │ │ │ ├── diamond_ore_granite_black.json │ │ │ ├── diamond_ore_granite_red.json │ │ │ ├── diamond_ore_marble.json │ │ │ ├── diamond_ore_netherrack.json │ │ │ ├── diamond_ore_sand.json │ │ │ ├── diamond_ore_sand_red.json │ │ │ ├── diamond_ore_sandstone.json │ │ │ ├── diamond_ore_small_andesite.json │ │ │ ├── diamond_ore_small_basalt.json │ │ │ ├── diamond_ore_small_diorite.json │ │ │ ├── diamond_ore_small_endstone.json │ │ │ ├── diamond_ore_small_granite.json │ │ │ ├── diamond_ore_small_granite_black.json │ │ │ ├── diamond_ore_small_granite_red.json │ │ │ ├── diamond_ore_small_marble.json │ │ │ ├── diamond_ore_small_netherrack.json │ │ │ ├── diamond_ore_small_sand.json │ │ │ ├── diamond_ore_small_sand_red.json │ │ │ ├── diamond_ore_small_sandstone.json │ │ │ ├── diamond_ore_small_stone.json │ │ │ ├── diamond_ore_stone.json │ │ │ ├── emerald_ore_andesite.json │ │ │ ├── emerald_ore_basalt.json │ │ │ ├── emerald_ore_diorite.json │ │ │ ├── emerald_ore_endstone.json │ │ │ ├── emerald_ore_granite.json │ │ │ ├── emerald_ore_granite_black.json │ │ │ ├── emerald_ore_granite_red.json │ │ │ ├── emerald_ore_marble.json │ │ │ ├── emerald_ore_netherrack.json │ │ │ ├── emerald_ore_sand.json │ │ │ ├── emerald_ore_sand_red.json │ │ │ ├── emerald_ore_sandstone.json │ │ │ ├── emerald_ore_small_andesite.json │ │ │ ├── emerald_ore_small_basalt.json │ │ │ ├── emerald_ore_small_diorite.json │ │ │ ├── emerald_ore_small_endstone.json │ │ │ ├── emerald_ore_small_granite.json │ │ │ ├── emerald_ore_small_granite_black.json │ │ │ ├── emerald_ore_small_granite_red.json │ │ │ ├── emerald_ore_small_marble.json │ │ │ ├── emerald_ore_small_netherrack.json │ │ │ ├── emerald_ore_small_sand.json │ │ │ ├── emerald_ore_small_sand_red.json │ │ │ ├── emerald_ore_small_sandstone.json │ │ │ ├── emerald_ore_small_stone.json │ │ │ ├── emerald_ore_stone.json │ │ │ ├── fluid_pipe_bronze_huge.json │ │ │ ├── fluid_pipe_bronze_large.json │ │ │ ├── fluid_pipe_bronze_normal.json │ │ │ ├── fluid_pipe_bronze_small.json │ │ │ ├── fluid_pipe_bronze_tiny.json │ │ │ ├── fluid_pipe_bronze_vtiny.json │ │ │ ├── fluid_pipe_copper_huge.json │ │ │ ├── fluid_pipe_copper_large.json │ │ │ ├── fluid_pipe_copper_normal.json │ │ │ ├── fluid_pipe_copper_small.json │ │ │ ├── fluid_pipe_copper_tiny.json │ │ │ ├── fluid_pipe_copper_vtiny.json │ │ │ ├── fluid_pipe_high_pressure_large.json │ │ │ ├── fluid_pipe_high_pressure_normal.json │ │ │ ├── fluid_pipe_high_pressure_small.json │ │ │ ├── fluid_pipe_plasma_containment_normal.json │ │ │ ├── fluid_pipe_plastic_huge.json │ │ │ ├── fluid_pipe_plastic_large.json │ │ │ ├── fluid_pipe_plastic_normal.json │ │ │ ├── fluid_pipe_plastic_small.json │ │ │ ├── fluid_pipe_plastic_tiny.json │ │ │ ├── fluid_pipe_plastic_vtiny.json │ │ │ ├── fluid_pipe_polytetrafluoroethylene_huge.json │ │ │ ├── fluid_pipe_polytetrafluoroethylene_large.json │ │ │ ├── fluid_pipe_polytetrafluoroethylene_normal.json │ │ │ ├── fluid_pipe_polytetrafluoroethylene_small.json │ │ │ ├── fluid_pipe_polytetrafluoroethylene_tiny.json │ │ │ ├── fluid_pipe_polytetrafluoroethylene_vtiny.json │ │ │ ├── fluid_pipe_stainless_steel_huge.json │ │ │ ├── fluid_pipe_stainless_steel_large.json │ │ │ ├── fluid_pipe_stainless_steel_normal.json │ │ │ ├── fluid_pipe_stainless_steel_small.json │ │ │ ├── fluid_pipe_stainless_steel_tiny.json │ │ │ ├── fluid_pipe_stainless_steel_vtiny.json │ │ │ ├── fluid_pipe_steel_huge.json │ │ │ ├── fluid_pipe_steel_large.json │ │ │ ├── fluid_pipe_steel_normal.json │ │ │ ├── fluid_pipe_steel_small.json │ │ │ ├── fluid_pipe_steel_tiny.json │ │ │ ├── fluid_pipe_steel_vtiny.json │ │ │ ├── fluid_pipe_titanium_huge.json │ │ │ ├── fluid_pipe_titanium_large.json │ │ │ ├── fluid_pipe_titanium_normal.json │ │ │ ├── fluid_pipe_titanium_small.json │ │ │ ├── fluid_pipe_titanium_tiny.json │ │ │ ├── fluid_pipe_titanium_vtiny.json │ │ │ ├── fluid_pipe_tungstensteel_huge.json │ │ │ ├── fluid_pipe_tungstensteel_large.json │ │ │ ├── fluid_pipe_tungstensteel_normal.json │ │ │ ├── fluid_pipe_tungstensteel_small.json │ │ │ ├── fluid_pipe_tungstensteel_tiny.json │ │ │ ├── fluid_pipe_tungstensteel_vtiny.json │ │ │ ├── fluid_pipe_wood_large.json │ │ │ ├── fluid_pipe_wood_normal.json │ │ │ ├── fluid_pipe_wood_small.json │ │ │ ├── galena_ore_andesite.json │ │ │ ├── galena_ore_basalt.json │ │ │ ├── galena_ore_diorite.json │ │ │ ├── galena_ore_endstone.json │ │ │ ├── galena_ore_granite.json │ │ │ ├── galena_ore_granite_black.json │ │ │ ├── galena_ore_granite_red.json │ │ │ ├── galena_ore_marble.json │ │ │ ├── galena_ore_netherrack.json │ │ │ ├── galena_ore_sand.json │ │ │ ├── galena_ore_sand_red.json │ │ │ ├── galena_ore_sandstone.json │ │ │ ├── galena_ore_small_andesite.json │ │ │ ├── galena_ore_small_basalt.json │ │ │ ├── galena_ore_small_diorite.json │ │ │ ├── galena_ore_small_endstone.json │ │ │ ├── galena_ore_small_granite.json │ │ │ ├── galena_ore_small_granite_black.json │ │ │ ├── galena_ore_small_granite_red.json │ │ │ ├── galena_ore_small_marble.json │ │ │ ├── galena_ore_small_netherrack.json │ │ │ ├── galena_ore_small_sand.json │ │ │ ├── galena_ore_small_sand_red.json │ │ │ ├── galena_ore_small_sandstone.json │ │ │ ├── galena_ore_small_stone.json │ │ │ ├── galena_ore_stone.json │ │ │ ├── garnierite_ore_andesite.json │ │ │ ├── garnierite_ore_basalt.json │ │ │ ├── garnierite_ore_diorite.json │ │ │ ├── garnierite_ore_endstone.json │ │ │ ├── garnierite_ore_granite.json │ │ │ ├── garnierite_ore_granite_black.json │ │ │ ├── garnierite_ore_granite_red.json │ │ │ ├── garnierite_ore_marble.json │ │ │ ├── garnierite_ore_netherrack.json │ │ │ ├── garnierite_ore_sand.json │ │ │ ├── garnierite_ore_sand_red.json │ │ │ ├── garnierite_ore_sandstone.json │ │ │ ├── garnierite_ore_small_andesite.json │ │ │ ├── garnierite_ore_small_basalt.json │ │ │ ├── garnierite_ore_small_diorite.json │ │ │ ├── garnierite_ore_small_endstone.json │ │ │ ├── garnierite_ore_small_granite.json │ │ │ ├── garnierite_ore_small_granite_black.json │ │ │ ├── garnierite_ore_small_granite_red.json │ │ │ ├── garnierite_ore_small_marble.json │ │ │ ├── garnierite_ore_small_netherrack.json │ │ │ ├── garnierite_ore_small_sand.json │ │ │ ├── garnierite_ore_small_sand_red.json │ │ │ ├── garnierite_ore_small_sandstone.json │ │ │ ├── garnierite_ore_small_stone.json │ │ │ ├── garnierite_ore_stone.json │ │ │ ├── glauconite_ore_andesite.json │ │ │ ├── glauconite_ore_basalt.json │ │ │ ├── glauconite_ore_diorite.json │ │ │ ├── glauconite_ore_endstone.json │ │ │ ├── glauconite_ore_granite.json │ │ │ ├── glauconite_ore_granite_black.json │ │ │ ├── glauconite_ore_granite_red.json │ │ │ ├── glauconite_ore_marble.json │ │ │ ├── glauconite_ore_netherrack.json │ │ │ ├── glauconite_ore_sand.json │ │ │ ├── glauconite_ore_sand_red.json │ │ │ ├── glauconite_ore_sandstone.json │ │ │ ├── glauconite_ore_stone.json │ │ │ ├── gold_ore_andesite.json │ │ │ ├── gold_ore_basalt.json │ │ │ ├── gold_ore_diorite.json │ │ │ ├── gold_ore_endstone.json │ │ │ ├── gold_ore_granite.json │ │ │ ├── gold_ore_granite_black.json │ │ │ ├── gold_ore_granite_red.json │ │ │ ├── gold_ore_marble.json │ │ │ ├── gold_ore_netherrack.json │ │ │ ├── gold_ore_sand.json │ │ │ ├── gold_ore_sand_red.json │ │ │ ├── gold_ore_sandstone.json │ │ │ ├── gold_ore_small_andesite.json │ │ │ ├── gold_ore_small_basalt.json │ │ │ ├── gold_ore_small_diorite.json │ │ │ ├── gold_ore_small_endstone.json │ │ │ ├── gold_ore_small_granite.json │ │ │ ├── gold_ore_small_granite_black.json │ │ │ ├── gold_ore_small_granite_red.json │ │ │ ├── gold_ore_small_marble.json │ │ │ ├── gold_ore_small_netherrack.json │ │ │ ├── gold_ore_small_sand.json │ │ │ ├── gold_ore_small_sand_red.json │ │ │ ├── gold_ore_small_sandstone.json │ │ │ ├── gold_ore_small_stone.json │ │ │ ├── gold_ore_stone.json │ │ │ ├── granite_black.json │ │ │ ├── granite_red.json │ │ │ ├── graphite_ore_andesite.json │ │ │ ├── graphite_ore_basalt.json │ │ │ ├── graphite_ore_diorite.json │ │ │ ├── graphite_ore_endstone.json │ │ │ ├── graphite_ore_granite.json │ │ │ ├── graphite_ore_granite_black.json │ │ │ ├── graphite_ore_granite_red.json │ │ │ ├── graphite_ore_marble.json │ │ │ ├── graphite_ore_netherrack.json │ │ │ ├── graphite_ore_sand.json │ │ │ ├── graphite_ore_sand_red.json │ │ │ ├── graphite_ore_sandstone.json │ │ │ ├── graphite_ore_small_andesite.json │ │ │ ├── graphite_ore_small_basalt.json │ │ │ ├── graphite_ore_small_diorite.json │ │ │ ├── graphite_ore_small_endstone.json │ │ │ ├── graphite_ore_small_granite.json │ │ │ ├── graphite_ore_small_granite_black.json │ │ │ ├── graphite_ore_small_granite_red.json │ │ │ ├── graphite_ore_small_marble.json │ │ │ ├── graphite_ore_small_netherrack.json │ │ │ ├── graphite_ore_small_sand.json │ │ │ ├── graphite_ore_small_sand_red.json │ │ │ ├── graphite_ore_small_sandstone.json │ │ │ ├── graphite_ore_small_stone.json │ │ │ ├── graphite_ore_stone.json │ │ │ ├── green_sapphire_ore_andesite.json │ │ │ ├── green_sapphire_ore_basalt.json │ │ │ ├── green_sapphire_ore_diorite.json │ │ │ ├── green_sapphire_ore_endstone.json │ │ │ ├── green_sapphire_ore_granite.json │ │ │ ├── green_sapphire_ore_granite_black.json │ │ │ ├── green_sapphire_ore_granite_red.json │ │ │ ├── green_sapphire_ore_marble.json │ │ │ ├── green_sapphire_ore_netherrack.json │ │ │ ├── green_sapphire_ore_sand.json │ │ │ ├── green_sapphire_ore_sand_red.json │ │ │ ├── green_sapphire_ore_sandstone.json │ │ │ ├── green_sapphire_ore_small_andesite.json │ │ │ ├── green_sapphire_ore_small_basalt.json │ │ │ ├── green_sapphire_ore_small_diorite.json │ │ │ ├── green_sapphire_ore_small_endstone.json │ │ │ ├── green_sapphire_ore_small_granite.json │ │ │ ├── green_sapphire_ore_small_granite_black.json │ │ │ ├── green_sapphire_ore_small_granite_red.json │ │ │ ├── green_sapphire_ore_small_marble.json │ │ │ ├── green_sapphire_ore_small_netherrack.json │ │ │ ├── green_sapphire_ore_small_sand.json │ │ │ ├── green_sapphire_ore_small_sand_red.json │ │ │ ├── green_sapphire_ore_small_sandstone.json │ │ │ ├── green_sapphire_ore_small_stone.json │ │ │ ├── green_sapphire_ore_stone.json │ │ │ ├── grossular_ore_andesite.json │ │ │ ├── grossular_ore_basalt.json │ │ │ ├── grossular_ore_diorite.json │ │ │ ├── grossular_ore_endstone.json │ │ │ ├── grossular_ore_granite.json │ │ │ ├── grossular_ore_granite_black.json │ │ │ ├── grossular_ore_granite_red.json │ │ │ ├── grossular_ore_marble.json │ │ │ ├── grossular_ore_netherrack.json │ │ │ ├── grossular_ore_sand.json │ │ │ ├── grossular_ore_sand_red.json │ │ │ ├── grossular_ore_sandstone.json │ │ │ ├── grossular_ore_small_andesite.json │ │ │ ├── grossular_ore_small_basalt.json │ │ │ ├── grossular_ore_small_diorite.json │ │ │ ├── grossular_ore_small_endstone.json │ │ │ ├── grossular_ore_small_granite.json │ │ │ ├── grossular_ore_small_granite_black.json │ │ │ ├── grossular_ore_small_granite_red.json │ │ │ ├── grossular_ore_small_marble.json │ │ │ ├── grossular_ore_small_netherrack.json │ │ │ ├── grossular_ore_small_sand.json │ │ │ ├── grossular_ore_small_sand_red.json │ │ │ ├── grossular_ore_small_sandstone.json │ │ │ ├── grossular_ore_small_stone.json │ │ │ ├── grossular_ore_stone.json │ │ │ ├── ilmenite_ore_andesite.json │ │ │ ├── ilmenite_ore_basalt.json │ │ │ ├── ilmenite_ore_diorite.json │ │ │ ├── ilmenite_ore_endstone.json │ │ │ ├── ilmenite_ore_granite.json │ │ │ ├── ilmenite_ore_granite_black.json │ │ │ ├── ilmenite_ore_granite_red.json │ │ │ ├── ilmenite_ore_marble.json │ │ │ ├── ilmenite_ore_netherrack.json │ │ │ ├── ilmenite_ore_sand.json │ │ │ ├── ilmenite_ore_sand_red.json │ │ │ ├── ilmenite_ore_sandstone.json │ │ │ ├── ilmenite_ore_stone.json │ │ │ ├── iridium_ore_andesite.json │ │ │ ├── iridium_ore_basalt.json │ │ │ ├── iridium_ore_diorite.json │ │ │ ├── iridium_ore_endstone.json │ │ │ ├── iridium_ore_granite.json │ │ │ ├── iridium_ore_granite_black.json │ │ │ ├── iridium_ore_granite_red.json │ │ │ ├── iridium_ore_marble.json │ │ │ ├── iridium_ore_netherrack.json │ │ │ ├── iridium_ore_sand.json │ │ │ ├── iridium_ore_sand_red.json │ │ │ ├── iridium_ore_sandstone.json │ │ │ ├── iridium_ore_small_andesite.json │ │ │ ├── iridium_ore_small_basalt.json │ │ │ ├── iridium_ore_small_diorite.json │ │ │ ├── iridium_ore_small_endstone.json │ │ │ ├── iridium_ore_small_granite.json │ │ │ ├── iridium_ore_small_granite_black.json │ │ │ ├── iridium_ore_small_granite_red.json │ │ │ ├── iridium_ore_small_marble.json │ │ │ ├── iridium_ore_small_netherrack.json │ │ │ ├── iridium_ore_small_sand.json │ │ │ ├── iridium_ore_small_sand_red.json │ │ │ ├── iridium_ore_small_sandstone.json │ │ │ ├── iridium_ore_small_stone.json │ │ │ ├── iridium_ore_stone.json │ │ │ ├── iron_ore_andesite.json │ │ │ ├── iron_ore_basalt.json │ │ │ ├── iron_ore_diorite.json │ │ │ ├── iron_ore_endstone.json │ │ │ ├── iron_ore_granite.json │ │ │ ├── iron_ore_granite_black.json │ │ │ ├── iron_ore_granite_red.json │ │ │ ├── iron_ore_marble.json │ │ │ ├── iron_ore_netherrack.json │ │ │ ├── iron_ore_sand.json │ │ │ ├── iron_ore_sand_red.json │ │ │ ├── iron_ore_sandstone.json │ │ │ ├── iron_ore_small_andesite.json │ │ │ ├── iron_ore_small_basalt.json │ │ │ ├── iron_ore_small_diorite.json │ │ │ ├── iron_ore_small_endstone.json │ │ │ ├── iron_ore_small_granite.json │ │ │ ├── iron_ore_small_granite_black.json │ │ │ ├── iron_ore_small_granite_red.json │ │ │ ├── iron_ore_small_marble.json │ │ │ ├── iron_ore_small_netherrack.json │ │ │ ├── iron_ore_small_sand.json │ │ │ ├── iron_ore_small_sand_red.json │ │ │ ├── iron_ore_small_sandstone.json │ │ │ ├── iron_ore_small_stone.json │ │ │ ├── iron_ore_stone.json │ │ │ ├── item_pipe_brass_huge.json │ │ │ ├── item_pipe_brass_large.json │ │ │ ├── item_pipe_brass_normal.json │ │ │ ├── item_pipe_brass_small.json │ │ │ ├── item_pipe_brass_tiny.json │ │ │ ├── item_pipe_brass_vtiny.json │ │ │ ├── item_pipe_cobalt_brass_huge.json │ │ │ ├── item_pipe_cobalt_brass_large.json │ │ │ ├── item_pipe_cobalt_brass_normal.json │ │ │ ├── item_pipe_cobalt_brass_small.json │ │ │ ├── item_pipe_cobalt_brass_tiny.json │ │ │ ├── item_pipe_cobalt_brass_vtiny.json │ │ │ ├── item_pipe_cupronickel_huge.json │ │ │ ├── item_pipe_cupronickel_large.json │ │ │ ├── item_pipe_cupronickel_normal.json │ │ │ ├── item_pipe_cupronickel_small.json │ │ │ ├── item_pipe_cupronickel_tiny.json │ │ │ ├── item_pipe_cupronickel_vtiny.json │ │ │ ├── item_pipe_electrum_huge.json │ │ │ ├── item_pipe_electrum_large.json │ │ │ ├── item_pipe_electrum_normal.json │ │ │ ├── item_pipe_electrum_small.json │ │ │ ├── item_pipe_electrum_tiny.json │ │ │ ├── item_pipe_electrum_vtiny.json │ │ │ ├── item_pipe_osmium_huge.json │ │ │ ├── item_pipe_osmium_large.json │ │ │ ├── item_pipe_osmium_normal.json │ │ │ ├── item_pipe_osmium_small.json │ │ │ ├── item_pipe_osmium_tiny.json │ │ │ ├── item_pipe_osmium_vtiny.json │ │ │ ├── item_pipe_platinum_huge.json │ │ │ ├── item_pipe_platinum_large.json │ │ │ ├── item_pipe_platinum_normal.json │ │ │ ├── item_pipe_platinum_small.json │ │ │ ├── item_pipe_platinum_tiny.json │ │ │ ├── item_pipe_platinum_vtiny.json │ │ │ ├── item_pipe_polyvinyl_chloride_huge.json │ │ │ ├── item_pipe_polyvinyl_chloride_large.json │ │ │ ├── item_pipe_polyvinyl_chloride_normal.json │ │ │ ├── item_pipe_polyvinyl_chloride_small.json │ │ │ ├── item_pipe_polyvinyl_chloride_tiny.json │ │ │ ├── item_pipe_polyvinyl_chloride_vtiny.json │ │ │ ├── item_pipe_rose_gold_huge.json │ │ │ ├── item_pipe_rose_gold_large.json │ │ │ ├── item_pipe_rose_gold_normal.json │ │ │ ├── item_pipe_rose_gold_small.json │ │ │ ├── item_pipe_rose_gold_tiny.json │ │ │ ├── item_pipe_rose_gold_vtiny.json │ │ │ ├── item_pipe_sterling_silver_huge.json │ │ │ ├── item_pipe_sterling_silver_large.json │ │ │ ├── item_pipe_sterling_silver_normal.json │ │ │ ├── item_pipe_sterling_silver_small.json │ │ │ ├── item_pipe_sterling_silver_tiny.json │ │ │ ├── item_pipe_sterling_silver_vtiny.json │ │ │ ├── item_pipe_ultimet_huge.json │ │ │ ├── item_pipe_ultimet_large.json │ │ │ ├── item_pipe_ultimet_normal.json │ │ │ ├── item_pipe_ultimet_small.json │ │ │ ├── item_pipe_ultimet_tiny.json │ │ │ ├── item_pipe_ultimet_vtiny.json │ │ │ ├── lapis_ore_andesite.json │ │ │ ├── lapis_ore_basalt.json │ │ │ ├── lapis_ore_diorite.json │ │ │ ├── lapis_ore_endstone.json │ │ │ ├── lapis_ore_granite.json │ │ │ ├── lapis_ore_granite_black.json │ │ │ ├── lapis_ore_granite_red.json │ │ │ ├── lapis_ore_marble.json │ │ │ ├── lapis_ore_netherrack.json │ │ │ ├── lapis_ore_sand.json │ │ │ ├── lapis_ore_sand_red.json │ │ │ ├── lapis_ore_sandstone.json │ │ │ ├── lapis_ore_small_andesite.json │ │ │ ├── lapis_ore_small_basalt.json │ │ │ ├── lapis_ore_small_diorite.json │ │ │ ├── lapis_ore_small_endstone.json │ │ │ ├── lapis_ore_small_granite.json │ │ │ ├── lapis_ore_small_granite_black.json │ │ │ ├── lapis_ore_small_granite_red.json │ │ │ ├── lapis_ore_small_marble.json │ │ │ ├── lapis_ore_small_netherrack.json │ │ │ ├── lapis_ore_small_sand.json │ │ │ ├── lapis_ore_small_sand_red.json │ │ │ ├── lapis_ore_small_sandstone.json │ │ │ ├── lapis_ore_small_stone.json │ │ │ ├── lapis_ore_stone.json │ │ │ ├── lead_ore_andesite.json │ │ │ ├── lead_ore_basalt.json │ │ │ ├── lead_ore_diorite.json │ │ │ ├── lead_ore_endstone.json │ │ │ ├── lead_ore_granite.json │ │ │ ├── lead_ore_granite_black.json │ │ │ ├── lead_ore_granite_red.json │ │ │ ├── lead_ore_marble.json │ │ │ ├── lead_ore_netherrack.json │ │ │ ├── lead_ore_sand.json │ │ │ ├── lead_ore_sand_red.json │ │ │ ├── lead_ore_sandstone.json │ │ │ ├── lead_ore_small_andesite.json │ │ │ ├── lead_ore_small_basalt.json │ │ │ ├── lead_ore_small_diorite.json │ │ │ ├── lead_ore_small_endstone.json │ │ │ ├── lead_ore_small_granite.json │ │ │ ├── lead_ore_small_granite_black.json │ │ │ ├── lead_ore_small_granite_red.json │ │ │ ├── lead_ore_small_marble.json │ │ │ ├── lead_ore_small_netherrack.json │ │ │ ├── lead_ore_small_sand.json │ │ │ ├── lead_ore_small_sand_red.json │ │ │ ├── lead_ore_small_sandstone.json │ │ │ ├── lead_ore_small_stone.json │ │ │ ├── lead_ore_stone.json │ │ │ ├── lepidolite_ore_andesite.json │ │ │ ├── lepidolite_ore_basalt.json │ │ │ ├── lepidolite_ore_diorite.json │ │ │ ├── lepidolite_ore_endstone.json │ │ │ ├── lepidolite_ore_granite.json │ │ │ ├── lepidolite_ore_granite_black.json │ │ │ ├── lepidolite_ore_granite_red.json │ │ │ ├── lepidolite_ore_marble.json │ │ │ ├── lepidolite_ore_netherrack.json │ │ │ ├── lepidolite_ore_sand.json │ │ │ ├── lepidolite_ore_sand_red.json │ │ │ ├── lepidolite_ore_sandstone.json │ │ │ ├── lepidolite_ore_stone.json │ │ │ ├── lignite_coal_ore_andesite.json │ │ │ ├── lignite_coal_ore_basalt.json │ │ │ ├── lignite_coal_ore_diorite.json │ │ │ ├── lignite_coal_ore_endstone.json │ │ │ ├── lignite_coal_ore_granite.json │ │ │ ├── lignite_coal_ore_granite_black.json │ │ │ ├── lignite_coal_ore_granite_red.json │ │ │ ├── lignite_coal_ore_marble.json │ │ │ ├── lignite_coal_ore_netherrack.json │ │ │ ├── lignite_coal_ore_sand.json │ │ │ ├── lignite_coal_ore_sand_red.json │ │ │ ├── lignite_coal_ore_sandstone.json │ │ │ ├── lignite_coal_ore_stone.json │ │ │ ├── lithium_ore_andesite.json │ │ │ ├── lithium_ore_basalt.json │ │ │ ├── lithium_ore_diorite.json │ │ │ ├── lithium_ore_endstone.json │ │ │ ├── lithium_ore_granite.json │ │ │ ├── lithium_ore_granite_black.json │ │ │ ├── lithium_ore_granite_red.json │ │ │ ├── lithium_ore_marble.json │ │ │ ├── lithium_ore_netherrack.json │ │ │ ├── lithium_ore_sand.json │ │ │ ├── lithium_ore_sand_red.json │ │ │ ├── lithium_ore_sandstone.json │ │ │ ├── lithium_ore_stone.json │ │ │ ├── magnesite_ore_andesite.json │ │ │ ├── magnesite_ore_basalt.json │ │ │ ├── magnesite_ore_diorite.json │ │ │ ├── magnesite_ore_endstone.json │ │ │ ├── magnesite_ore_granite.json │ │ │ ├── magnesite_ore_granite_black.json │ │ │ ├── magnesite_ore_granite_red.json │ │ │ ├── magnesite_ore_marble.json │ │ │ ├── magnesite_ore_netherrack.json │ │ │ ├── magnesite_ore_sand.json │ │ │ ├── magnesite_ore_sand_red.json │ │ │ ├── magnesite_ore_sandstone.json │ │ │ ├── magnesite_ore_stone.json │ │ │ ├── magnetite_ore_andesite.json │ │ │ ├── magnetite_ore_basalt.json │ │ │ ├── magnetite_ore_diorite.json │ │ │ ├── magnetite_ore_endstone.json │ │ │ ├── magnetite_ore_granite.json │ │ │ ├── magnetite_ore_granite_black.json │ │ │ ├── magnetite_ore_granite_red.json │ │ │ ├── magnetite_ore_marble.json │ │ │ ├── magnetite_ore_netherrack.json │ │ │ ├── magnetite_ore_sand.json │ │ │ ├── magnetite_ore_sand_red.json │ │ │ ├── magnetite_ore_sandstone.json │ │ │ ├── magnetite_ore_stone.json │ │ │ ├── malachite_ore_andesite.json │ │ │ ├── malachite_ore_basalt.json │ │ │ ├── malachite_ore_diorite.json │ │ │ ├── malachite_ore_endstone.json │ │ │ ├── malachite_ore_granite.json │ │ │ ├── malachite_ore_granite_black.json │ │ │ ├── malachite_ore_granite_red.json │ │ │ ├── malachite_ore_marble.json │ │ │ ├── malachite_ore_netherrack.json │ │ │ ├── malachite_ore_sand.json │ │ │ ├── malachite_ore_sand_red.json │ │ │ ├── malachite_ore_sandstone.json │ │ │ ├── malachite_ore_stone.json │ │ │ ├── manganese_ore_andesite.json │ │ │ ├── manganese_ore_basalt.json │ │ │ ├── manganese_ore_diorite.json │ │ │ ├── manganese_ore_endstone.json │ │ │ ├── manganese_ore_granite.json │ │ │ ├── manganese_ore_granite_black.json │ │ │ ├── manganese_ore_granite_red.json │ │ │ ├── manganese_ore_marble.json │ │ │ ├── manganese_ore_netherrack.json │ │ │ ├── manganese_ore_sand.json │ │ │ ├── manganese_ore_sand_red.json │ │ │ ├── manganese_ore_sandstone.json │ │ │ ├── manganese_ore_stone.json │ │ │ ├── marble.json │ │ │ ├── molybdenite_ore_andesite.json │ │ │ ├── molybdenite_ore_basalt.json │ │ │ ├── molybdenite_ore_diorite.json │ │ │ ├── molybdenite_ore_endstone.json │ │ │ ├── molybdenite_ore_granite.json │ │ │ ├── molybdenite_ore_granite_black.json │ │ │ ├── molybdenite_ore_granite_red.json │ │ │ ├── molybdenite_ore_marble.json │ │ │ ├── molybdenite_ore_netherrack.json │ │ │ ├── molybdenite_ore_sand.json │ │ │ ├── molybdenite_ore_sand_red.json │ │ │ ├── molybdenite_ore_sandstone.json │ │ │ ├── molybdenite_ore_stone.json │ │ │ ├── molybdenum_ore_andesite.json │ │ │ ├── molybdenum_ore_basalt.json │ │ │ ├── molybdenum_ore_diorite.json │ │ │ ├── molybdenum_ore_endstone.json │ │ │ ├── molybdenum_ore_granite.json │ │ │ ├── molybdenum_ore_granite_black.json │ │ │ ├── molybdenum_ore_granite_red.json │ │ │ ├── molybdenum_ore_marble.json │ │ │ ├── molybdenum_ore_netherrack.json │ │ │ ├── molybdenum_ore_sand.json │ │ │ ├── molybdenum_ore_sand_red.json │ │ │ ├── molybdenum_ore_sandstone.json │ │ │ ├── molybdenum_ore_stone.json │ │ │ ├── naquadah_enriched_ore_andesite.json │ │ │ ├── naquadah_enriched_ore_basalt.json │ │ │ ├── naquadah_enriched_ore_diorite.json │ │ │ ├── naquadah_enriched_ore_endstone.json │ │ │ ├── naquadah_enriched_ore_granite.json │ │ │ ├── naquadah_enriched_ore_granite_black.json │ │ │ ├── naquadah_enriched_ore_granite_red.json │ │ │ ├── naquadah_enriched_ore_marble.json │ │ │ ├── naquadah_enriched_ore_netherrack.json │ │ │ ├── naquadah_enriched_ore_sand.json │ │ │ ├── naquadah_enriched_ore_sand_red.json │ │ │ ├── naquadah_enriched_ore_sandstone.json │ │ │ ├── naquadah_enriched_ore_stone.json │ │ │ ├── naquadah_ore_andesite.json │ │ │ ├── naquadah_ore_basalt.json │ │ │ ├── naquadah_ore_diorite.json │ │ │ ├── naquadah_ore_endstone.json │ │ │ ├── naquadah_ore_granite.json │ │ │ ├── naquadah_ore_granite_black.json │ │ │ ├── naquadah_ore_granite_red.json │ │ │ ├── naquadah_ore_marble.json │ │ │ ├── naquadah_ore_netherrack.json │ │ │ ├── naquadah_ore_sand.json │ │ │ ├── naquadah_ore_sand_red.json │ │ │ ├── naquadah_ore_sandstone.json │ │ │ ├── naquadah_ore_stone.json │ │ │ ├── neodymium_ore_andesite.json │ │ │ ├── neodymium_ore_basalt.json │ │ │ ├── neodymium_ore_diorite.json │ │ │ ├── neodymium_ore_endstone.json │ │ │ ├── neodymium_ore_granite.json │ │ │ ├── neodymium_ore_granite_black.json │ │ │ ├── neodymium_ore_granite_red.json │ │ │ ├── neodymium_ore_marble.json │ │ │ ├── neodymium_ore_netherrack.json │ │ │ ├── neodymium_ore_sand.json │ │ │ ├── neodymium_ore_sand_red.json │ │ │ ├── neodymium_ore_sandstone.json │ │ │ ├── neodymium_ore_stone.json │ │ │ ├── nether_quartz_ore_andesite.json │ │ │ ├── nether_quartz_ore_basalt.json │ │ │ ├── nether_quartz_ore_diorite.json │ │ │ ├── nether_quartz_ore_endstone.json │ │ │ ├── nether_quartz_ore_granite.json │ │ │ ├── nether_quartz_ore_granite_black.json │ │ │ ├── nether_quartz_ore_granite_red.json │ │ │ ├── nether_quartz_ore_marble.json │ │ │ ├── nether_quartz_ore_netherrack.json │ │ │ ├── nether_quartz_ore_sand.json │ │ │ ├── nether_quartz_ore_sand_red.json │ │ │ ├── nether_quartz_ore_sandstone.json │ │ │ ├── nether_quartz_ore_small_andesite.json │ │ │ ├── nether_quartz_ore_small_basalt.json │ │ │ ├── nether_quartz_ore_small_diorite.json │ │ │ ├── nether_quartz_ore_small_endstone.json │ │ │ ├── nether_quartz_ore_small_granite.json │ │ │ ├── nether_quartz_ore_small_granite_black.json │ │ │ ├── nether_quartz_ore_small_granite_red.json │ │ │ ├── nether_quartz_ore_small_marble.json │ │ │ ├── nether_quartz_ore_small_netherrack.json │ │ │ ├── nether_quartz_ore_small_sand.json │ │ │ ├── nether_quartz_ore_small_sand_red.json │ │ │ ├── nether_quartz_ore_small_sandstone.json │ │ │ ├── nether_quartz_ore_small_stone.json │ │ │ ├── nether_quartz_ore_stone.json │ │ │ ├── nickel_ore_andesite.json │ │ │ ├── nickel_ore_basalt.json │ │ │ ├── nickel_ore_diorite.json │ │ │ ├── nickel_ore_endstone.json │ │ │ ├── nickel_ore_granite.json │ │ │ ├── nickel_ore_granite_black.json │ │ │ ├── nickel_ore_granite_red.json │ │ │ ├── nickel_ore_marble.json │ │ │ ├── nickel_ore_netherrack.json │ │ │ ├── nickel_ore_sand.json │ │ │ ├── nickel_ore_sand_red.json │ │ │ ├── nickel_ore_sandstone.json │ │ │ ├── nickel_ore_small_andesite.json │ │ │ ├── nickel_ore_small_basalt.json │ │ │ ├── nickel_ore_small_diorite.json │ │ │ ├── nickel_ore_small_endstone.json │ │ │ ├── nickel_ore_small_granite.json │ │ │ ├── nickel_ore_small_granite_black.json │ │ │ ├── nickel_ore_small_granite_red.json │ │ │ ├── nickel_ore_small_marble.json │ │ │ ├── nickel_ore_small_netherrack.json │ │ │ ├── nickel_ore_small_sand.json │ │ │ ├── nickel_ore_small_sand_red.json │ │ │ ├── nickel_ore_small_sandstone.json │ │ │ ├── nickel_ore_small_stone.json │ │ │ ├── nickel_ore_stone.json │ │ │ ├── oilsands_ore_andesite.json │ │ │ ├── oilsands_ore_basalt.json │ │ │ ├── oilsands_ore_diorite.json │ │ │ ├── oilsands_ore_endstone.json │ │ │ ├── oilsands_ore_granite.json │ │ │ ├── oilsands_ore_granite_black.json │ │ │ ├── oilsands_ore_granite_red.json │ │ │ ├── oilsands_ore_marble.json │ │ │ ├── oilsands_ore_netherrack.json │ │ │ ├── oilsands_ore_sand.json │ │ │ ├── oilsands_ore_sand_red.json │ │ │ ├── oilsands_ore_sandstone.json │ │ │ ├── oilsands_ore_stone.json │ │ │ ├── olivine_ore_andesite.json │ │ │ ├── olivine_ore_basalt.json │ │ │ ├── olivine_ore_diorite.json │ │ │ ├── olivine_ore_endstone.json │ │ │ ├── olivine_ore_granite.json │ │ │ ├── olivine_ore_granite_black.json │ │ │ ├── olivine_ore_granite_red.json │ │ │ ├── olivine_ore_marble.json │ │ │ ├── olivine_ore_netherrack.json │ │ │ ├── olivine_ore_sand.json │ │ │ ├── olivine_ore_sand_red.json │ │ │ ├── olivine_ore_sandstone.json │ │ │ ├── olivine_ore_small_andesite.json │ │ │ ├── olivine_ore_small_basalt.json │ │ │ ├── olivine_ore_small_diorite.json │ │ │ ├── olivine_ore_small_endstone.json │ │ │ ├── olivine_ore_small_granite.json │ │ │ ├── olivine_ore_small_granite_black.json │ │ │ ├── olivine_ore_small_granite_red.json │ │ │ ├── olivine_ore_small_marble.json │ │ │ ├── olivine_ore_small_netherrack.json │ │ │ ├── olivine_ore_small_sand.json │ │ │ ├── olivine_ore_small_sand_red.json │ │ │ ├── olivine_ore_small_sandstone.json │ │ │ ├── olivine_ore_small_stone.json │ │ │ ├── olivine_ore_stone.json │ │ │ ├── opal_ore_andesite.json │ │ │ ├── opal_ore_basalt.json │ │ │ ├── opal_ore_diorite.json │ │ │ ├── opal_ore_endstone.json │ │ │ ├── opal_ore_granite.json │ │ │ ├── opal_ore_granite_black.json │ │ │ ├── opal_ore_granite_red.json │ │ │ ├── opal_ore_marble.json │ │ │ ├── opal_ore_netherrack.json │ │ │ ├── opal_ore_sand.json │ │ │ ├── opal_ore_sand_red.json │ │ │ ├── opal_ore_sandstone.json │ │ │ ├── opal_ore_small_andesite.json │ │ │ ├── opal_ore_small_basalt.json │ │ │ ├── opal_ore_small_diorite.json │ │ │ ├── opal_ore_small_endstone.json │ │ │ ├── opal_ore_small_granite.json │ │ │ ├── opal_ore_small_granite_black.json │ │ │ ├── opal_ore_small_granite_red.json │ │ │ ├── opal_ore_small_marble.json │ │ │ ├── opal_ore_small_netherrack.json │ │ │ ├── opal_ore_small_sand.json │ │ │ ├── opal_ore_small_sand_red.json │ │ │ ├── opal_ore_small_sandstone.json │ │ │ ├── opal_ore_small_stone.json │ │ │ ├── opal_ore_stone.json │ │ │ ├── palladium_ore_andesite.json │ │ │ ├── palladium_ore_basalt.json │ │ │ ├── palladium_ore_diorite.json │ │ │ ├── palladium_ore_endstone.json │ │ │ ├── palladium_ore_granite.json │ │ │ ├── palladium_ore_granite_black.json │ │ │ ├── palladium_ore_granite_red.json │ │ │ ├── palladium_ore_marble.json │ │ │ ├── palladium_ore_netherrack.json │ │ │ ├── palladium_ore_sand.json │ │ │ ├── palladium_ore_sand_red.json │ │ │ ├── palladium_ore_sandstone.json │ │ │ ├── palladium_ore_stone.json │ │ │ ├── pentlandite_ore_andesite.json │ │ │ ├── pentlandite_ore_basalt.json │ │ │ ├── pentlandite_ore_diorite.json │ │ │ ├── pentlandite_ore_endstone.json │ │ │ ├── pentlandite_ore_granite.json │ │ │ ├── pentlandite_ore_granite_black.json │ │ │ ├── pentlandite_ore_granite_red.json │ │ │ ├── pentlandite_ore_marble.json │ │ │ ├── pentlandite_ore_netherrack.json │ │ │ ├── pentlandite_ore_sand.json │ │ │ ├── pentlandite_ore_sand_red.json │ │ │ ├── pentlandite_ore_sandstone.json │ │ │ ├── pentlandite_ore_small_andesite.json │ │ │ ├── pentlandite_ore_small_basalt.json │ │ │ ├── pentlandite_ore_small_diorite.json │ │ │ ├── pentlandite_ore_small_endstone.json │ │ │ ├── pentlandite_ore_small_granite.json │ │ │ ├── pentlandite_ore_small_granite_black.json │ │ │ ├── pentlandite_ore_small_granite_red.json │ │ │ ├── pentlandite_ore_small_marble.json │ │ │ ├── pentlandite_ore_small_netherrack.json │ │ │ ├── pentlandite_ore_small_sand.json │ │ │ ├── pentlandite_ore_small_sand_red.json │ │ │ ├── pentlandite_ore_small_sandstone.json │ │ │ ├── pentlandite_ore_small_stone.json │ │ │ ├── pentlandite_ore_stone.json │ │ │ ├── phosphate_ore_andesite.json │ │ │ ├── phosphate_ore_basalt.json │ │ │ ├── phosphate_ore_diorite.json │ │ │ ├── phosphate_ore_endstone.json │ │ │ ├── phosphate_ore_granite.json │ │ │ ├── phosphate_ore_granite_black.json │ │ │ ├── phosphate_ore_granite_red.json │ │ │ ├── phosphate_ore_marble.json │ │ │ ├── phosphate_ore_netherrack.json │ │ │ ├── phosphate_ore_sand.json │ │ │ ├── phosphate_ore_sand_red.json │ │ │ ├── phosphate_ore_sandstone.json │ │ │ ├── phosphate_ore_stone.json │ │ │ ├── phosphorus_ore_andesite.json │ │ │ ├── phosphorus_ore_basalt.json │ │ │ ├── phosphorus_ore_diorite.json │ │ │ ├── phosphorus_ore_endstone.json │ │ │ ├── phosphorus_ore_granite.json │ │ │ ├── phosphorus_ore_granite_black.json │ │ │ ├── phosphorus_ore_granite_red.json │ │ │ ├── phosphorus_ore_marble.json │ │ │ ├── phosphorus_ore_netherrack.json │ │ │ ├── phosphorus_ore_sand.json │ │ │ ├── phosphorus_ore_sand_red.json │ │ │ ├── phosphorus_ore_sandstone.json │ │ │ ├── phosphorus_ore_stone.json │ │ │ ├── pipe │ │ │ │ ├── huge │ │ │ │ │ ├── all.json │ │ │ │ │ ├── all_culled.json │ │ │ │ │ ├── arrow.json │ │ │ │ │ ├── arrow_culled.json │ │ │ │ │ ├── base.json │ │ │ │ │ ├── base_culled.json │ │ │ │ │ ├── corner.json │ │ │ │ │ ├── corner_culled.json │ │ │ │ │ ├── cross.json │ │ │ │ │ ├── cross_culled.json │ │ │ │ │ ├── elbow.json │ │ │ │ │ ├── elbow_culled.json │ │ │ │ │ ├── five.json │ │ │ │ │ ├── five_culled.json │ │ │ │ │ ├── line.json │ │ │ │ │ ├── line_culled.json │ │ │ │ │ ├── line_inv.json │ │ │ │ │ ├── side.json │ │ │ │ │ ├── side_culled.json │ │ │ │ │ ├── single.json │ │ │ │ │ └── single_culled.json │ │ │ │ ├── large │ │ │ │ │ ├── all.json │ │ │ │ │ ├── all_culled.json │ │ │ │ │ ├── arrow.json │ │ │ │ │ ├── arrow_culled.json │ │ │ │ │ ├── base.json │ │ │ │ │ ├── base_culled.json │ │ │ │ │ ├── corner.json │ │ │ │ │ ├── corner_culled.json │ │ │ │ │ ├── cross.json │ │ │ │ │ ├── cross_culled.json │ │ │ │ │ ├── elbow.json │ │ │ │ │ ├── elbow_culled.json │ │ │ │ │ ├── five.json │ │ │ │ │ ├── five_culled.json │ │ │ │ │ ├── line.json │ │ │ │ │ ├── line_culled.json │ │ │ │ │ ├── line_inv.json │ │ │ │ │ ├── side.json │ │ │ │ │ ├── side_culled.json │ │ │ │ │ ├── single.json │ │ │ │ │ └── single_culled.json │ │ │ │ ├── normal │ │ │ │ │ ├── all.json │ │ │ │ │ ├── all_culled.json │ │ │ │ │ ├── arrow.json │ │ │ │ │ ├── arrow_culled.json │ │ │ │ │ ├── base.json │ │ │ │ │ ├── base_culled.json │ │ │ │ │ ├── corner.json │ │ │ │ │ ├── corner_culled.json │ │ │ │ │ ├── cross.json │ │ │ │ │ ├── cross_culled.json │ │ │ │ │ ├── elbow.json │ │ │ │ │ ├── elbow_culled.json │ │ │ │ │ ├── five.json │ │ │ │ │ ├── five_culled.json │ │ │ │ │ ├── line.json │ │ │ │ │ ├── line_culled.json │ │ │ │ │ ├── line_inv.json │ │ │ │ │ ├── side.json │ │ │ │ │ ├── side_culled.json │ │ │ │ │ ├── single.json │ │ │ │ │ └── single_culled.json │ │ │ │ ├── small │ │ │ │ │ ├── all.json │ │ │ │ │ ├── all_culled.json │ │ │ │ │ ├── arrow.json │ │ │ │ │ ├── arrow_culled.json │ │ │ │ │ ├── base.json │ │ │ │ │ ├── base_culled.json │ │ │ │ │ ├── corner.json │ │ │ │ │ ├── corner_culled.json │ │ │ │ │ ├── cross.json │ │ │ │ │ ├── cross_culled.json │ │ │ │ │ ├── elbow.json │ │ │ │ │ ├── elbow_culled.json │ │ │ │ │ ├── five.json │ │ │ │ │ ├── five_culled.json │ │ │ │ │ ├── line.json │ │ │ │ │ ├── line_culled.json │ │ │ │ │ ├── line_inv.json │ │ │ │ │ ├── side.json │ │ │ │ │ ├── side_culled.json │ │ │ │ │ ├── single.json │ │ │ │ │ └── single_culled.json │ │ │ │ ├── tiny │ │ │ │ │ ├── all.json │ │ │ │ │ ├── all_culled.json │ │ │ │ │ ├── arrow.json │ │ │ │ │ ├── arrow_culled.json │ │ │ │ │ ├── base.json │ │ │ │ │ ├── base_culled.json │ │ │ │ │ ├── corner.json │ │ │ │ │ ├── corner_culled.json │ │ │ │ │ ├── cross.json │ │ │ │ │ ├── cross_culled.json │ │ │ │ │ ├── elbow.json │ │ │ │ │ ├── elbow_culled.json │ │ │ │ │ ├── five.json │ │ │ │ │ ├── five_culled.json │ │ │ │ │ ├── line.json │ │ │ │ │ ├── line_culled.json │ │ │ │ │ ├── line_inv.json │ │ │ │ │ ├── side.json │ │ │ │ │ ├── side_culled.json │ │ │ │ │ ├── single.json │ │ │ │ │ └── single_culled.json │ │ │ │ └── vtiny │ │ │ │ │ ├── all.json │ │ │ │ │ ├── all_culled.json │ │ │ │ │ ├── arrow.json │ │ │ │ │ ├── arrow_culled.json │ │ │ │ │ ├── base.json │ │ │ │ │ ├── base_culled.json │ │ │ │ │ ├── corner.json │ │ │ │ │ ├── corner_culled.json │ │ │ │ │ ├── cross.json │ │ │ │ │ ├── cross_culled.json │ │ │ │ │ ├── elbow.json │ │ │ │ │ ├── elbow_culled.json │ │ │ │ │ ├── five.json │ │ │ │ │ ├── five_culled.json │ │ │ │ │ ├── line.json │ │ │ │ │ ├── line_culled.json │ │ │ │ │ ├── line_inv.json │ │ │ │ │ ├── side.json │ │ │ │ │ ├── side_culled.json │ │ │ │ │ ├── single.json │ │ │ │ │ └── single_culled.json │ │ │ ├── pitchblende_ore_andesite.json │ │ │ ├── pitchblende_ore_basalt.json │ │ │ ├── pitchblende_ore_diorite.json │ │ │ ├── pitchblende_ore_endstone.json │ │ │ ├── pitchblende_ore_granite.json │ │ │ ├── pitchblende_ore_granite_black.json │ │ │ ├── pitchblende_ore_granite_red.json │ │ │ ├── pitchblende_ore_marble.json │ │ │ ├── pitchblende_ore_netherrack.json │ │ │ ├── pitchblende_ore_sand.json │ │ │ ├── pitchblende_ore_sand_red.json │ │ │ ├── pitchblende_ore_sandstone.json │ │ │ ├── pitchblende_ore_stone.json │ │ │ ├── platinum_ore_andesite.json │ │ │ ├── platinum_ore_basalt.json │ │ │ ├── platinum_ore_diorite.json │ │ │ ├── platinum_ore_endstone.json │ │ │ ├── platinum_ore_granite.json │ │ │ ├── platinum_ore_granite_black.json │ │ │ ├── platinum_ore_granite_red.json │ │ │ ├── platinum_ore_marble.json │ │ │ ├── platinum_ore_netherrack.json │ │ │ ├── platinum_ore_sand.json │ │ │ ├── platinum_ore_sand_red.json │ │ │ ├── platinum_ore_sandstone.json │ │ │ ├── platinum_ore_small_andesite.json │ │ │ ├── platinum_ore_small_basalt.json │ │ │ ├── platinum_ore_small_diorite.json │ │ │ ├── platinum_ore_small_endstone.json │ │ │ ├── platinum_ore_small_granite.json │ │ │ ├── platinum_ore_small_granite_black.json │ │ │ ├── platinum_ore_small_granite_red.json │ │ │ ├── platinum_ore_small_marble.json │ │ │ ├── platinum_ore_small_netherrack.json │ │ │ ├── platinum_ore_small_sand.json │ │ │ ├── platinum_ore_small_sand_red.json │ │ │ ├── platinum_ore_small_sandstone.json │ │ │ ├── platinum_ore_small_stone.json │ │ │ ├── platinum_ore_stone.json │ │ │ ├── preset │ │ │ │ ├── layered.json │ │ │ │ └── simple.json │ │ │ ├── pyrite_ore_andesite.json │ │ │ ├── pyrite_ore_basalt.json │ │ │ ├── pyrite_ore_diorite.json │ │ │ ├── pyrite_ore_endstone.json │ │ │ ├── pyrite_ore_granite.json │ │ │ ├── pyrite_ore_granite_black.json │ │ │ ├── pyrite_ore_granite_red.json │ │ │ ├── pyrite_ore_marble.json │ │ │ ├── pyrite_ore_netherrack.json │ │ │ ├── pyrite_ore_sand.json │ │ │ ├── pyrite_ore_sand_red.json │ │ │ ├── pyrite_ore_sandstone.json │ │ │ ├── pyrite_ore_small_andesite.json │ │ │ ├── pyrite_ore_small_basalt.json │ │ │ ├── pyrite_ore_small_diorite.json │ │ │ ├── pyrite_ore_small_endstone.json │ │ │ ├── pyrite_ore_small_granite.json │ │ │ ├── pyrite_ore_small_granite_black.json │ │ │ ├── pyrite_ore_small_granite_red.json │ │ │ ├── pyrite_ore_small_marble.json │ │ │ ├── pyrite_ore_small_netherrack.json │ │ │ ├── pyrite_ore_small_sand.json │ │ │ ├── pyrite_ore_small_sand_red.json │ │ │ ├── pyrite_ore_small_sandstone.json │ │ │ ├── pyrite_ore_small_stone.json │ │ │ ├── pyrite_ore_stone.json │ │ │ ├── pyrolusite_ore_andesite.json │ │ │ ├── pyrolusite_ore_basalt.json │ │ │ ├── pyrolusite_ore_diorite.json │ │ │ ├── pyrolusite_ore_endstone.json │ │ │ ├── pyrolusite_ore_granite.json │ │ │ ├── pyrolusite_ore_granite_black.json │ │ │ ├── pyrolusite_ore_granite_red.json │ │ │ ├── pyrolusite_ore_marble.json │ │ │ ├── pyrolusite_ore_netherrack.json │ │ │ ├── pyrolusite_ore_sand.json │ │ │ ├── pyrolusite_ore_sand_red.json │ │ │ ├── pyrolusite_ore_sandstone.json │ │ │ ├── pyrolusite_ore_small_andesite.json │ │ │ ├── pyrolusite_ore_small_basalt.json │ │ │ ├── pyrolusite_ore_small_diorite.json │ │ │ ├── pyrolusite_ore_small_endstone.json │ │ │ ├── pyrolusite_ore_small_granite.json │ │ │ ├── pyrolusite_ore_small_granite_black.json │ │ │ ├── pyrolusite_ore_small_granite_red.json │ │ │ ├── pyrolusite_ore_small_marble.json │ │ │ ├── pyrolusite_ore_small_netherrack.json │ │ │ ├── pyrolusite_ore_small_sand.json │ │ │ ├── pyrolusite_ore_small_sand_red.json │ │ │ ├── pyrolusite_ore_small_sandstone.json │ │ │ ├── pyrolusite_ore_small_stone.json │ │ │ ├── pyrolusite_ore_stone.json │ │ │ ├── pyrope_ore_andesite.json │ │ │ ├── pyrope_ore_basalt.json │ │ │ ├── pyrope_ore_diorite.json │ │ │ ├── pyrope_ore_endstone.json │ │ │ ├── pyrope_ore_granite.json │ │ │ ├── pyrope_ore_granite_black.json │ │ │ ├── pyrope_ore_granite_red.json │ │ │ ├── pyrope_ore_marble.json │ │ │ ├── pyrope_ore_netherrack.json │ │ │ ├── pyrope_ore_sand.json │ │ │ ├── pyrope_ore_sand_red.json │ │ │ ├── pyrope_ore_sandstone.json │ │ │ ├── pyrope_ore_small_andesite.json │ │ │ ├── pyrope_ore_small_basalt.json │ │ │ ├── pyrope_ore_small_diorite.json │ │ │ ├── pyrope_ore_small_endstone.json │ │ │ ├── pyrope_ore_small_granite.json │ │ │ ├── pyrope_ore_small_granite_black.json │ │ │ ├── pyrope_ore_small_granite_red.json │ │ │ ├── pyrope_ore_small_marble.json │ │ │ ├── pyrope_ore_small_netherrack.json │ │ │ ├── pyrope_ore_small_sand.json │ │ │ ├── pyrope_ore_small_sand_red.json │ │ │ ├── pyrope_ore_small_sandstone.json │ │ │ ├── pyrope_ore_small_stone.json │ │ │ ├── pyrope_ore_stone.json │ │ │ ├── quartzite_ore_andesite.json │ │ │ ├── quartzite_ore_basalt.json │ │ │ ├── quartzite_ore_diorite.json │ │ │ ├── quartzite_ore_endstone.json │ │ │ ├── quartzite_ore_granite.json │ │ │ ├── quartzite_ore_granite_black.json │ │ │ ├── quartzite_ore_granite_red.json │ │ │ ├── quartzite_ore_marble.json │ │ │ ├── quartzite_ore_netherrack.json │ │ │ ├── quartzite_ore_sand.json │ │ │ ├── quartzite_ore_sand_red.json │ │ │ ├── quartzite_ore_sandstone.json │ │ │ ├── quartzite_ore_stone.json │ │ │ ├── red_garnet_ore_andesite.json │ │ │ ├── red_garnet_ore_basalt.json │ │ │ ├── red_garnet_ore_diorite.json │ │ │ ├── red_garnet_ore_endstone.json │ │ │ ├── red_garnet_ore_granite.json │ │ │ ├── red_garnet_ore_granite_black.json │ │ │ ├── red_garnet_ore_granite_red.json │ │ │ ├── red_garnet_ore_marble.json │ │ │ ├── red_garnet_ore_netherrack.json │ │ │ ├── red_garnet_ore_sand.json │ │ │ ├── red_garnet_ore_sand_red.json │ │ │ ├── red_garnet_ore_sandstone.json │ │ │ ├── red_garnet_ore_small_andesite.json │ │ │ ├── red_garnet_ore_small_basalt.json │ │ │ ├── red_garnet_ore_small_diorite.json │ │ │ ├── red_garnet_ore_small_endstone.json │ │ │ ├── red_garnet_ore_small_granite.json │ │ │ ├── red_garnet_ore_small_granite_black.json │ │ │ ├── red_garnet_ore_small_granite_red.json │ │ │ ├── red_garnet_ore_small_marble.json │ │ │ ├── red_garnet_ore_small_netherrack.json │ │ │ ├── red_garnet_ore_small_sand.json │ │ │ ├── red_garnet_ore_small_sand_red.json │ │ │ ├── red_garnet_ore_small_sandstone.json │ │ │ ├── red_garnet_ore_small_stone.json │ │ │ ├── red_garnet_ore_stone.json │ │ │ ├── redstone_ore_andesite.json │ │ │ ├── redstone_ore_basalt.json │ │ │ ├── redstone_ore_diorite.json │ │ │ ├── redstone_ore_endstone.json │ │ │ ├── redstone_ore_granite.json │ │ │ ├── redstone_ore_granite_black.json │ │ │ ├── redstone_ore_granite_red.json │ │ │ ├── redstone_ore_marble.json │ │ │ ├── redstone_ore_netherrack.json │ │ │ ├── redstone_ore_sand.json │ │ │ ├── redstone_ore_sand_red.json │ │ │ ├── redstone_ore_sandstone.json │ │ │ ├── redstone_ore_small_andesite.json │ │ │ ├── redstone_ore_small_basalt.json │ │ │ ├── redstone_ore_small_diorite.json │ │ │ ├── redstone_ore_small_endstone.json │ │ │ ├── redstone_ore_small_granite.json │ │ │ ├── redstone_ore_small_granite_black.json │ │ │ ├── redstone_ore_small_granite_red.json │ │ │ ├── redstone_ore_small_marble.json │ │ │ ├── redstone_ore_small_netherrack.json │ │ │ ├── redstone_ore_small_sand.json │ │ │ ├── redstone_ore_small_sand_red.json │ │ │ ├── redstone_ore_small_sandstone.json │ │ │ ├── redstone_ore_small_stone.json │ │ │ ├── redstone_ore_stone.json │ │ │ ├── rock_salt_ore_andesite.json │ │ │ ├── rock_salt_ore_basalt.json │ │ │ ├── rock_salt_ore_diorite.json │ │ │ ├── rock_salt_ore_endstone.json │ │ │ ├── rock_salt_ore_granite.json │ │ │ ├── rock_salt_ore_granite_black.json │ │ │ ├── rock_salt_ore_granite_red.json │ │ │ ├── rock_salt_ore_marble.json │ │ │ ├── rock_salt_ore_netherrack.json │ │ │ ├── rock_salt_ore_sand.json │ │ │ ├── rock_salt_ore_sand_red.json │ │ │ ├── rock_salt_ore_sandstone.json │ │ │ ├── rock_salt_ore_small_andesite.json │ │ │ ├── rock_salt_ore_small_basalt.json │ │ │ ├── rock_salt_ore_small_diorite.json │ │ │ ├── rock_salt_ore_small_endstone.json │ │ │ ├── rock_salt_ore_small_granite.json │ │ │ ├── rock_salt_ore_small_granite_black.json │ │ │ ├── rock_salt_ore_small_granite_red.json │ │ │ ├── rock_salt_ore_small_marble.json │ │ │ ├── rock_salt_ore_small_netherrack.json │ │ │ ├── rock_salt_ore_small_sand.json │ │ │ ├── rock_salt_ore_small_sand_red.json │ │ │ ├── rock_salt_ore_small_sandstone.json │ │ │ ├── rock_salt_ore_small_stone.json │ │ │ ├── rock_salt_ore_stone.json │ │ │ ├── ruby_ore_andesite.json │ │ │ ├── ruby_ore_basalt.json │ │ │ ├── ruby_ore_diorite.json │ │ │ ├── ruby_ore_endstone.json │ │ │ ├── ruby_ore_granite.json │ │ │ ├── ruby_ore_granite_black.json │ │ │ ├── ruby_ore_granite_red.json │ │ │ ├── ruby_ore_marble.json │ │ │ ├── ruby_ore_netherrack.json │ │ │ ├── ruby_ore_sand.json │ │ │ ├── ruby_ore_sand_red.json │ │ │ ├── ruby_ore_sandstone.json │ │ │ ├── ruby_ore_small_andesite.json │ │ │ ├── ruby_ore_small_basalt.json │ │ │ ├── ruby_ore_small_diorite.json │ │ │ ├── ruby_ore_small_endstone.json │ │ │ ├── ruby_ore_small_granite.json │ │ │ ├── ruby_ore_small_granite_black.json │ │ │ ├── ruby_ore_small_granite_red.json │ │ │ ├── ruby_ore_small_marble.json │ │ │ ├── ruby_ore_small_netherrack.json │ │ │ ├── ruby_ore_small_sand.json │ │ │ ├── ruby_ore_small_sand_red.json │ │ │ ├── ruby_ore_small_sandstone.json │ │ │ ├── ruby_ore_small_stone.json │ │ │ ├── ruby_ore_stone.json │ │ │ ├── salt_ore_andesite.json │ │ │ ├── salt_ore_basalt.json │ │ │ ├── salt_ore_diorite.json │ │ │ ├── salt_ore_endstone.json │ │ │ ├── salt_ore_granite.json │ │ │ ├── salt_ore_granite_black.json │ │ │ ├── salt_ore_granite_red.json │ │ │ ├── salt_ore_marble.json │ │ │ ├── salt_ore_netherrack.json │ │ │ ├── salt_ore_sand.json │ │ │ ├── salt_ore_sand_red.json │ │ │ ├── salt_ore_sandstone.json │ │ │ ├── salt_ore_small_andesite.json │ │ │ ├── salt_ore_small_basalt.json │ │ │ ├── salt_ore_small_diorite.json │ │ │ ├── salt_ore_small_endstone.json │ │ │ ├── salt_ore_small_granite.json │ │ │ ├── salt_ore_small_granite_black.json │ │ │ ├── salt_ore_small_granite_red.json │ │ │ ├── salt_ore_small_marble.json │ │ │ ├── salt_ore_small_netherrack.json │ │ │ ├── salt_ore_small_sand.json │ │ │ ├── salt_ore_small_sand_red.json │ │ │ ├── salt_ore_small_sandstone.json │ │ │ ├── salt_ore_small_stone.json │ │ │ ├── salt_ore_stone.json │ │ │ ├── saltpeter_ore_andesite.json │ │ │ ├── saltpeter_ore_basalt.json │ │ │ ├── saltpeter_ore_diorite.json │ │ │ ├── saltpeter_ore_endstone.json │ │ │ ├── saltpeter_ore_granite.json │ │ │ ├── saltpeter_ore_granite_black.json │ │ │ ├── saltpeter_ore_granite_red.json │ │ │ ├── saltpeter_ore_marble.json │ │ │ ├── saltpeter_ore_netherrack.json │ │ │ ├── saltpeter_ore_sand.json │ │ │ ├── saltpeter_ore_sand_red.json │ │ │ ├── saltpeter_ore_sandstone.json │ │ │ ├── saltpeter_ore_small_andesite.json │ │ │ ├── saltpeter_ore_small_basalt.json │ │ │ ├── saltpeter_ore_small_diorite.json │ │ │ ├── saltpeter_ore_small_endstone.json │ │ │ ├── saltpeter_ore_small_granite.json │ │ │ ├── saltpeter_ore_small_granite_black.json │ │ │ ├── saltpeter_ore_small_granite_red.json │ │ │ ├── saltpeter_ore_small_marble.json │ │ │ ├── saltpeter_ore_small_netherrack.json │ │ │ ├── saltpeter_ore_small_sand.json │ │ │ ├── saltpeter_ore_small_sand_red.json │ │ │ ├── saltpeter_ore_small_sandstone.json │ │ │ ├── saltpeter_ore_small_stone.json │ │ │ ├── saltpeter_ore_stone.json │ │ │ ├── scheelite_ore_andesite.json │ │ │ ├── scheelite_ore_basalt.json │ │ │ ├── scheelite_ore_diorite.json │ │ │ ├── scheelite_ore_endstone.json │ │ │ ├── scheelite_ore_granite.json │ │ │ ├── scheelite_ore_granite_black.json │ │ │ ├── scheelite_ore_granite_red.json │ │ │ ├── scheelite_ore_marble.json │ │ │ ├── scheelite_ore_netherrack.json │ │ │ ├── scheelite_ore_sand.json │ │ │ ├── scheelite_ore_sand_red.json │ │ │ ├── scheelite_ore_sandstone.json │ │ │ ├── scheelite_ore_stone.json │ │ │ ├── silver_ore_andesite.json │ │ │ ├── silver_ore_basalt.json │ │ │ ├── silver_ore_diorite.json │ │ │ ├── silver_ore_endstone.json │ │ │ ├── silver_ore_granite.json │ │ │ ├── silver_ore_granite_black.json │ │ │ ├── silver_ore_granite_red.json │ │ │ ├── silver_ore_marble.json │ │ │ ├── silver_ore_netherrack.json │ │ │ ├── silver_ore_sand.json │ │ │ ├── silver_ore_sand_red.json │ │ │ ├── silver_ore_sandstone.json │ │ │ ├── silver_ore_small_andesite.json │ │ │ ├── silver_ore_small_basalt.json │ │ │ ├── silver_ore_small_diorite.json │ │ │ ├── silver_ore_small_endstone.json │ │ │ ├── silver_ore_small_granite.json │ │ │ ├── silver_ore_small_granite_black.json │ │ │ ├── silver_ore_small_granite_red.json │ │ │ ├── silver_ore_small_marble.json │ │ │ ├── silver_ore_small_netherrack.json │ │ │ ├── silver_ore_small_sand.json │ │ │ ├── silver_ore_small_sand_red.json │ │ │ ├── silver_ore_small_sandstone.json │ │ │ ├── silver_ore_small_stone.json │ │ │ ├── silver_ore_stone.json │ │ │ ├── soapstone_ore_andesite.json │ │ │ ├── soapstone_ore_basalt.json │ │ │ ├── soapstone_ore_diorite.json │ │ │ ├── soapstone_ore_endstone.json │ │ │ ├── soapstone_ore_granite.json │ │ │ ├── soapstone_ore_granite_black.json │ │ │ ├── soapstone_ore_granite_red.json │ │ │ ├── soapstone_ore_marble.json │ │ │ ├── soapstone_ore_netherrack.json │ │ │ ├── soapstone_ore_sand.json │ │ │ ├── soapstone_ore_sand_red.json │ │ │ ├── soapstone_ore_sandstone.json │ │ │ ├── soapstone_ore_stone.json │ │ │ ├── spessartine_ore_andesite.json │ │ │ ├── spessartine_ore_basalt.json │ │ │ ├── spessartine_ore_diorite.json │ │ │ ├── spessartine_ore_endstone.json │ │ │ ├── spessartine_ore_granite.json │ │ │ ├── spessartine_ore_granite_black.json │ │ │ ├── spessartine_ore_granite_red.json │ │ │ ├── spessartine_ore_marble.json │ │ │ ├── spessartine_ore_netherrack.json │ │ │ ├── spessartine_ore_sand.json │ │ │ ├── spessartine_ore_sand_red.json │ │ │ ├── spessartine_ore_sandstone.json │ │ │ ├── spessartine_ore_small_andesite.json │ │ │ ├── spessartine_ore_small_basalt.json │ │ │ ├── spessartine_ore_small_diorite.json │ │ │ ├── spessartine_ore_small_endstone.json │ │ │ ├── spessartine_ore_small_granite.json │ │ │ ├── spessartine_ore_small_granite_black.json │ │ │ ├── spessartine_ore_small_granite_red.json │ │ │ ├── spessartine_ore_small_marble.json │ │ │ ├── spessartine_ore_small_netherrack.json │ │ │ ├── spessartine_ore_small_sand.json │ │ │ ├── spessartine_ore_small_sand_red.json │ │ │ ├── spessartine_ore_small_sandstone.json │ │ │ ├── spessartine_ore_small_stone.json │ │ │ ├── spessartine_ore_stone.json │ │ │ ├── sphalerite_ore_andesite.json │ │ │ ├── sphalerite_ore_basalt.json │ │ │ ├── sphalerite_ore_diorite.json │ │ │ ├── sphalerite_ore_endstone.json │ │ │ ├── sphalerite_ore_granite.json │ │ │ ├── sphalerite_ore_granite_black.json │ │ │ ├── sphalerite_ore_granite_red.json │ │ │ ├── sphalerite_ore_marble.json │ │ │ ├── sphalerite_ore_netherrack.json │ │ │ ├── sphalerite_ore_sand.json │ │ │ ├── sphalerite_ore_sand_red.json │ │ │ ├── sphalerite_ore_sandstone.json │ │ │ ├── sphalerite_ore_small_andesite.json │ │ │ ├── sphalerite_ore_small_basalt.json │ │ │ ├── sphalerite_ore_small_diorite.json │ │ │ ├── sphalerite_ore_small_endstone.json │ │ │ ├── sphalerite_ore_small_granite.json │ │ │ ├── sphalerite_ore_small_granite_black.json │ │ │ ├── sphalerite_ore_small_granite_red.json │ │ │ ├── sphalerite_ore_small_marble.json │ │ │ ├── sphalerite_ore_small_netherrack.json │ │ │ ├── sphalerite_ore_small_sand.json │ │ │ ├── sphalerite_ore_small_sand_red.json │ │ │ ├── sphalerite_ore_small_sandstone.json │ │ │ ├── sphalerite_ore_small_stone.json │ │ │ ├── sphalerite_ore_stone.json │ │ │ ├── spodumene_ore_andesite.json │ │ │ ├── spodumene_ore_basalt.json │ │ │ ├── spodumene_ore_diorite.json │ │ │ ├── spodumene_ore_endstone.json │ │ │ ├── spodumene_ore_granite.json │ │ │ ├── spodumene_ore_granite_black.json │ │ │ ├── spodumene_ore_granite_red.json │ │ │ ├── spodumene_ore_marble.json │ │ │ ├── spodumene_ore_netherrack.json │ │ │ ├── spodumene_ore_sand.json │ │ │ ├── spodumene_ore_sand_red.json │ │ │ ├── spodumene_ore_sandstone.json │ │ │ ├── spodumene_ore_stone.json │ │ │ ├── stibnite_ore_andesite.json │ │ │ ├── stibnite_ore_basalt.json │ │ │ ├── stibnite_ore_diorite.json │ │ │ ├── stibnite_ore_endstone.json │ │ │ ├── stibnite_ore_granite.json │ │ │ ├── stibnite_ore_granite_black.json │ │ │ ├── stibnite_ore_granite_red.json │ │ │ ├── stibnite_ore_marble.json │ │ │ ├── stibnite_ore_netherrack.json │ │ │ ├── stibnite_ore_sand.json │ │ │ ├── stibnite_ore_sand_red.json │ │ │ ├── stibnite_ore_sandstone.json │ │ │ ├── stibnite_ore_small_andesite.json │ │ │ ├── stibnite_ore_small_basalt.json │ │ │ ├── stibnite_ore_small_diorite.json │ │ │ ├── stibnite_ore_small_endstone.json │ │ │ ├── stibnite_ore_small_granite.json │ │ │ ├── stibnite_ore_small_granite_black.json │ │ │ ├── stibnite_ore_small_granite_red.json │ │ │ ├── stibnite_ore_small_marble.json │ │ │ ├── stibnite_ore_small_netherrack.json │ │ │ ├── stibnite_ore_small_sand.json │ │ │ ├── stibnite_ore_small_sand_red.json │ │ │ ├── stibnite_ore_small_sandstone.json │ │ │ ├── stibnite_ore_small_stone.json │ │ │ ├── stibnite_ore_stone.json │ │ │ ├── storage_aluminium_block.json │ │ │ ├── storage_aluminium_frame.json │ │ │ ├── storage_americium_block.json │ │ │ ├── storage_amethyst_block.json │ │ │ ├── storage_annealed_copper_block.json │ │ │ ├── storage_antimony_block.json │ │ │ ├── storage_arsenic_block.json │ │ │ ├── storage_battery_alloy_block.json │ │ │ ├── storage_beryllium_block.json │ │ │ ├── storage_bismuth_block.json │ │ │ ├── storage_bismuth_bronze_block.json │ │ │ ├── storage_black_bronze_block.json │ │ │ ├── storage_black_steel_block.json │ │ │ ├── storage_black_steel_frame.json │ │ │ ├── storage_blue_sapphire_block.json │ │ │ ├── storage_blue_steel_block.json │ │ │ ├── storage_blue_steel_frame.json │ │ │ ├── storage_blue_topaz_block.json │ │ │ ├── storage_brass_block.json │ │ │ ├── storage_brass_frame.json │ │ │ ├── storage_bronze_block.json │ │ │ ├── storage_bronze_frame.json │ │ │ ├── storage_caesium_block.json │ │ │ ├── storage_carbon_block.json │ │ │ ├── storage_cerium_block.json │ │ │ ├── storage_charcoal_block.json │ │ │ ├── storage_chrome_block.json │ │ │ ├── storage_coal_block.json │ │ │ ├── storage_coal_coke_block.json │ │ │ ├── storage_cobalt_block.json │ │ │ ├── storage_cobalt_brass_block.json │ │ │ ├── storage_copper_block.json │ │ │ ├── storage_cupronickel_block.json │ │ │ ├── storage_diamond_block.json │ │ │ ├── storage_dilithium_block.json │ │ │ ├── storage_duranium_block.json │ │ │ ├── storage_dysprosium_block.json │ │ │ ├── storage_electrum_block.json │ │ │ ├── storage_emerald_block.json │ │ │ ├── storage_endereye_block.json │ │ │ ├── storage_enderpearl_block.json │ │ │ ├── storage_epoxid_block.json │ │ │ ├── storage_europium_block.json │ │ │ ├── storage_fiber_reinforced_epoxy_resin_block.json │ │ │ ├── storage_gallium_arsenide_block.json │ │ │ ├── storage_gallium_block.json │ │ │ ├── storage_gold_block.json │ │ │ ├── storage_green_sapphire_block.json │ │ │ ├── storage_hsse_block.json │ │ │ ├── storage_hsse_frame.json │ │ │ ├── storage_hssg_block.json │ │ │ ├── storage_hssg_frame.json │ │ │ ├── storage_hsss_block.json │ │ │ ├── storage_indium_block.json │ │ │ ├── storage_invar_block.json │ │ │ ├── storage_invar_frame.json │ │ │ ├── storage_iridium_block.json │ │ │ ├── storage_iridium_frame.json │ │ │ ├── storage_iron_block.json │ │ │ ├── storage_iron_frame.json │ │ │ ├── storage_kanthal_block.json │ │ │ ├── storage_lanthanum_block.json │ │ │ ├── storage_lapis_block.json │ │ │ ├── storage_lead_block.json │ │ │ ├── storage_lignite_coal_block.json │ │ │ ├── storage_lignite_coke_block.json │ │ │ ├── storage_lithium_block.json │ │ │ ├── storage_lutetium_block.json │ │ │ ├── storage_magnalium_block.json │ │ │ ├── storage_magnesium_block.json │ │ │ ├── storage_magnetic_iron_block.json │ │ │ ├── storage_magnetic_neodymium_block.json │ │ │ ├── storage_magnetic_steel_block.json │ │ │ ├── storage_manganese_block.json │ │ │ ├── storage_molybdenum_block.json │ │ │ ├── storage_naquadah_alloy_block.json │ │ │ ├── storage_naquadah_block.json │ │ │ ├── storage_naquadah_enriched_block.json │ │ │ ├── storage_naquadria_block.json │ │ │ ├── storage_neodymium_block.json │ │ │ ├── storage_nether_quartz_block.json │ │ │ ├── storage_nether_star_block.json │ │ │ ├── storage_neutronium_block.json │ │ │ ├── storage_neutronium_frame.json │ │ │ ├── storage_nichrome_block.json │ │ │ ├── storage_nickel_block.json │ │ │ ├── storage_nickel_zinc_ferrite_block.json │ │ │ ├── storage_niobium_block.json │ │ │ ├── storage_niobium_titanium_block.json │ │ │ ├── storage_olivine_block.json │ │ │ ├── storage_opal_block.json │ │ │ ├── storage_osmiridium_block.json │ │ │ ├── storage_osmiridium_frame.json │ │ │ ├── storage_osmium_block.json │ │ │ ├── storage_palladium_block.json │ │ │ ├── storage_phosphorus_block.json │ │ │ ├── storage_plastic_block.json │ │ │ ├── storage_platinum_block.json │ │ │ ├── storage_plutonium_241_block.json │ │ │ ├── storage_plutonium_244_block.json │ │ │ ├── storage_polycaprolactam_block.json │ │ │ ├── storage_polyphenylene_sulfide_block.json │ │ │ ├── storage_polystyrene_block.json │ │ │ ├── storage_polytetrafluoroethylene_block.json │ │ │ ├── storage_polytetrafluoroethylene_frame.json │ │ │ ├── storage_polyvinyl_chloride_block.json │ │ │ ├── storage_potassium_block.json │ │ │ ├── storage_quartzite_block.json │ │ │ ├── storage_red_alloy_block.json │ │ │ ├── storage_red_garnet_block.json │ │ │ ├── storage_red_steel_block.json │ │ │ ├── storage_rose_gold_block.json │ │ │ ├── storage_rubber_block.json │ │ │ ├── storage_ruby_block.json │ │ │ ├── storage_silicon_block.json │ │ │ ├── storage_silicone_block.json │ │ │ ├── storage_silver_block.json │ │ │ ├── storage_soldering_alloy_block.json │ │ │ ├── storage_stainless_steel_block.json │ │ │ ├── storage_stainless_steel_frame.json │ │ │ ├── storage_steel_block.json │ │ │ ├── storage_steel_frame.json │ │ │ ├── storage_sterling_silver_block.json │ │ │ ├── storage_styrene_butadiene_rubber_block.json │ │ │ ├── storage_tantalum_block.json │ │ │ ├── storage_tanzanite_block.json │ │ │ ├── storage_thorium_block.json │ │ │ ├── storage_tin_block.json │ │ │ ├── storage_tin_frame.json │ │ │ ├── storage_titanium_block.json │ │ │ ├── storage_topaz_block.json │ │ │ ├── storage_tritanium_block.json │ │ │ ├── storage_tritanium_frame.json │ │ │ ├── storage_tungsten_block.json │ │ │ ├── storage_tungsten_carbide_block.json │ │ │ ├── storage_tungstensteel_block.json │ │ │ ├── storage_tungstensteel_frame.json │ │ │ ├── storage_ultimet_block.json │ │ │ ├── storage_uranium_235_block.json │ │ │ ├── storage_uranium_238_block.json │ │ │ ├── storage_vanadium_block.json │ │ │ ├── storage_vanadium_gallium_block.json │ │ │ ├── storage_vanadium_steel_block.json │ │ │ ├── storage_vibranium_block.json │ │ │ ├── storage_vibranium_frame.json │ │ │ ├── storage_wrought_iron_block.json │ │ │ ├── storage_wrought_iron_frame.json │ │ │ ├── storage_yellow_garnet_block.json │ │ │ ├── storage_yttrium_barium_cuprate_block.json │ │ │ ├── storage_yttrium_block.json │ │ │ ├── storage_zinc_block.json │ │ │ ├── sulfur_ore_andesite.json │ │ │ ├── sulfur_ore_basalt.json │ │ │ ├── sulfur_ore_diorite.json │ │ │ ├── sulfur_ore_endstone.json │ │ │ ├── sulfur_ore_granite.json │ │ │ ├── sulfur_ore_granite_black.json │ │ │ ├── sulfur_ore_granite_red.json │ │ │ ├── sulfur_ore_marble.json │ │ │ ├── sulfur_ore_netherrack.json │ │ │ ├── sulfur_ore_sand.json │ │ │ ├── sulfur_ore_sand_red.json │ │ │ ├── sulfur_ore_sandstone.json │ │ │ ├── sulfur_ore_small_andesite.json │ │ │ ├── sulfur_ore_small_basalt.json │ │ │ ├── sulfur_ore_small_diorite.json │ │ │ ├── sulfur_ore_small_endstone.json │ │ │ ├── sulfur_ore_small_granite.json │ │ │ ├── sulfur_ore_small_granite_black.json │ │ │ ├── sulfur_ore_small_granite_red.json │ │ │ ├── sulfur_ore_small_marble.json │ │ │ ├── sulfur_ore_small_netherrack.json │ │ │ ├── sulfur_ore_small_sand.json │ │ │ ├── sulfur_ore_small_sand_red.json │ │ │ ├── sulfur_ore_small_sandstone.json │ │ │ ├── sulfur_ore_small_stone.json │ │ │ ├── sulfur_ore_stone.json │ │ │ ├── talc_ore_andesite.json │ │ │ ├── talc_ore_basalt.json │ │ │ ├── talc_ore_diorite.json │ │ │ ├── talc_ore_endstone.json │ │ │ ├── talc_ore_granite.json │ │ │ ├── talc_ore_granite_black.json │ │ │ ├── talc_ore_granite_red.json │ │ │ ├── talc_ore_marble.json │ │ │ ├── talc_ore_netherrack.json │ │ │ ├── talc_ore_sand.json │ │ │ ├── talc_ore_sand_red.json │ │ │ ├── talc_ore_sandstone.json │ │ │ ├── talc_ore_stone.json │ │ │ ├── tantalite_ore_andesite.json │ │ │ ├── tantalite_ore_basalt.json │ │ │ ├── tantalite_ore_diorite.json │ │ │ ├── tantalite_ore_endstone.json │ │ │ ├── tantalite_ore_granite.json │ │ │ ├── tantalite_ore_granite_black.json │ │ │ ├── tantalite_ore_granite_red.json │ │ │ ├── tantalite_ore_marble.json │ │ │ ├── tantalite_ore_netherrack.json │ │ │ ├── tantalite_ore_sand.json │ │ │ ├── tantalite_ore_sand_red.json │ │ │ ├── tantalite_ore_sandstone.json │ │ │ ├── tantalite_ore_stone.json │ │ │ ├── tanzanite_ore_andesite.json │ │ │ ├── tanzanite_ore_basalt.json │ │ │ ├── tanzanite_ore_diorite.json │ │ │ ├── tanzanite_ore_endstone.json │ │ │ ├── tanzanite_ore_granite.json │ │ │ ├── tanzanite_ore_granite_black.json │ │ │ ├── tanzanite_ore_granite_red.json │ │ │ ├── tanzanite_ore_marble.json │ │ │ ├── tanzanite_ore_netherrack.json │ │ │ ├── tanzanite_ore_sand.json │ │ │ ├── tanzanite_ore_sand_red.json │ │ │ ├── tanzanite_ore_sandstone.json │ │ │ ├── tanzanite_ore_small_andesite.json │ │ │ ├── tanzanite_ore_small_basalt.json │ │ │ ├── tanzanite_ore_small_diorite.json │ │ │ ├── tanzanite_ore_small_endstone.json │ │ │ ├── tanzanite_ore_small_granite.json │ │ │ ├── tanzanite_ore_small_granite_black.json │ │ │ ├── tanzanite_ore_small_granite_red.json │ │ │ ├── tanzanite_ore_small_marble.json │ │ │ ├── tanzanite_ore_small_netherrack.json │ │ │ ├── tanzanite_ore_small_sand.json │ │ │ ├── tanzanite_ore_small_sand_red.json │ │ │ ├── tanzanite_ore_small_sandstone.json │ │ │ ├── tanzanite_ore_small_stone.json │ │ │ ├── tanzanite_ore_stone.json │ │ │ ├── tetrahedrite_ore_andesite.json │ │ │ ├── tetrahedrite_ore_basalt.json │ │ │ ├── tetrahedrite_ore_diorite.json │ │ │ ├── tetrahedrite_ore_endstone.json │ │ │ ├── tetrahedrite_ore_granite.json │ │ │ ├── tetrahedrite_ore_granite_black.json │ │ │ ├── tetrahedrite_ore_granite_red.json │ │ │ ├── tetrahedrite_ore_marble.json │ │ │ ├── tetrahedrite_ore_netherrack.json │ │ │ ├── tetrahedrite_ore_sand.json │ │ │ ├── tetrahedrite_ore_sand_red.json │ │ │ ├── tetrahedrite_ore_sandstone.json │ │ │ ├── tetrahedrite_ore_stone.json │ │ │ ├── thorium_ore_andesite.json │ │ │ ├── thorium_ore_basalt.json │ │ │ ├── thorium_ore_diorite.json │ │ │ ├── thorium_ore_endstone.json │ │ │ ├── thorium_ore_granite.json │ │ │ ├── thorium_ore_granite_black.json │ │ │ ├── thorium_ore_granite_red.json │ │ │ ├── thorium_ore_marble.json │ │ │ ├── thorium_ore_netherrack.json │ │ │ ├── thorium_ore_sand.json │ │ │ ├── thorium_ore_sand_red.json │ │ │ ├── thorium_ore_sandstone.json │ │ │ ├── thorium_ore_stone.json │ │ │ ├── tin_ore_andesite.json │ │ │ ├── tin_ore_basalt.json │ │ │ ├── tin_ore_diorite.json │ │ │ ├── tin_ore_endstone.json │ │ │ ├── tin_ore_granite.json │ │ │ ├── tin_ore_granite_black.json │ │ │ ├── tin_ore_granite_red.json │ │ │ ├── tin_ore_marble.json │ │ │ ├── tin_ore_netherrack.json │ │ │ ├── tin_ore_sand.json │ │ │ ├── tin_ore_sand_red.json │ │ │ ├── tin_ore_sandstone.json │ │ │ ├── tin_ore_small_andesite.json │ │ │ ├── tin_ore_small_basalt.json │ │ │ ├── tin_ore_small_diorite.json │ │ │ ├── tin_ore_small_endstone.json │ │ │ ├── tin_ore_small_granite.json │ │ │ ├── tin_ore_small_granite_black.json │ │ │ ├── tin_ore_small_granite_red.json │ │ │ ├── tin_ore_small_marble.json │ │ │ ├── tin_ore_small_netherrack.json │ │ │ ├── tin_ore_small_sand.json │ │ │ ├── tin_ore_small_sand_red.json │ │ │ ├── tin_ore_small_sandstone.json │ │ │ ├── tin_ore_small_stone.json │ │ │ ├── tin_ore_stone.json │ │ │ ├── topaz_ore_andesite.json │ │ │ ├── topaz_ore_basalt.json │ │ │ ├── topaz_ore_diorite.json │ │ │ ├── topaz_ore_endstone.json │ │ │ ├── topaz_ore_granite.json │ │ │ ├── topaz_ore_granite_black.json │ │ │ ├── topaz_ore_granite_red.json │ │ │ ├── topaz_ore_marble.json │ │ │ ├── topaz_ore_netherrack.json │ │ │ ├── topaz_ore_sand.json │ │ │ ├── topaz_ore_sand_red.json │ │ │ ├── topaz_ore_sandstone.json │ │ │ ├── topaz_ore_small_andesite.json │ │ │ ├── topaz_ore_small_basalt.json │ │ │ ├── topaz_ore_small_diorite.json │ │ │ ├── topaz_ore_small_endstone.json │ │ │ ├── topaz_ore_small_granite.json │ │ │ ├── topaz_ore_small_granite_black.json │ │ │ ├── topaz_ore_small_granite_red.json │ │ │ ├── topaz_ore_small_marble.json │ │ │ ├── topaz_ore_small_netherrack.json │ │ │ ├── topaz_ore_small_sand.json │ │ │ ├── topaz_ore_small_sand_red.json │ │ │ ├── topaz_ore_small_sandstone.json │ │ │ ├── topaz_ore_small_stone.json │ │ │ ├── topaz_ore_stone.json │ │ │ ├── tungstate_ore_andesite.json │ │ │ ├── tungstate_ore_basalt.json │ │ │ ├── tungstate_ore_diorite.json │ │ │ ├── tungstate_ore_endstone.json │ │ │ ├── tungstate_ore_granite.json │ │ │ ├── tungstate_ore_granite_black.json │ │ │ ├── tungstate_ore_granite_red.json │ │ │ ├── tungstate_ore_marble.json │ │ │ ├── tungstate_ore_netherrack.json │ │ │ ├── tungstate_ore_sand.json │ │ │ ├── tungstate_ore_sand_red.json │ │ │ ├── tungstate_ore_sandstone.json │ │ │ ├── tungstate_ore_stone.json │ │ │ ├── uraninite_ore_andesite.json │ │ │ ├── uraninite_ore_basalt.json │ │ │ ├── uraninite_ore_diorite.json │ │ │ ├── uraninite_ore_endstone.json │ │ │ ├── uraninite_ore_granite.json │ │ │ ├── uraninite_ore_granite_black.json │ │ │ ├── uraninite_ore_granite_red.json │ │ │ ├── uraninite_ore_marble.json │ │ │ ├── uraninite_ore_netherrack.json │ │ │ ├── uraninite_ore_sand.json │ │ │ ├── uraninite_ore_sand_red.json │ │ │ ├── uraninite_ore_sandstone.json │ │ │ ├── uraninite_ore_stone.json │ │ │ ├── uranium_238_ore_andesite.json │ │ │ ├── uranium_238_ore_basalt.json │ │ │ ├── uranium_238_ore_diorite.json │ │ │ ├── uranium_238_ore_endstone.json │ │ │ ├── uranium_238_ore_granite.json │ │ │ ├── uranium_238_ore_granite_black.json │ │ │ ├── uranium_238_ore_granite_red.json │ │ │ ├── uranium_238_ore_marble.json │ │ │ ├── uranium_238_ore_netherrack.json │ │ │ ├── uranium_238_ore_sand.json │ │ │ ├── uranium_238_ore_sand_red.json │ │ │ ├── uranium_238_ore_sandstone.json │ │ │ ├── uranium_238_ore_stone.json │ │ │ ├── uvarovite_ore_andesite.json │ │ │ ├── uvarovite_ore_basalt.json │ │ │ ├── uvarovite_ore_diorite.json │ │ │ ├── uvarovite_ore_endstone.json │ │ │ ├── uvarovite_ore_granite.json │ │ │ ├── uvarovite_ore_granite_black.json │ │ │ ├── uvarovite_ore_granite_red.json │ │ │ ├── uvarovite_ore_marble.json │ │ │ ├── uvarovite_ore_netherrack.json │ │ │ ├── uvarovite_ore_sand.json │ │ │ ├── uvarovite_ore_sand_red.json │ │ │ ├── uvarovite_ore_sandstone.json │ │ │ ├── uvarovite_ore_small_andesite.json │ │ │ ├── uvarovite_ore_small_basalt.json │ │ │ ├── uvarovite_ore_small_diorite.json │ │ │ ├── uvarovite_ore_small_endstone.json │ │ │ ├── uvarovite_ore_small_granite.json │ │ │ ├── uvarovite_ore_small_granite_black.json │ │ │ ├── uvarovite_ore_small_granite_red.json │ │ │ ├── uvarovite_ore_small_marble.json │ │ │ ├── uvarovite_ore_small_netherrack.json │ │ │ ├── uvarovite_ore_small_sand.json │ │ │ ├── uvarovite_ore_small_sand_red.json │ │ │ ├── uvarovite_ore_small_sandstone.json │ │ │ ├── uvarovite_ore_small_stone.json │ │ │ ├── uvarovite_ore_stone.json │ │ │ ├── vanadium_magnetite_ore_andesite.json │ │ │ ├── vanadium_magnetite_ore_basalt.json │ │ │ ├── vanadium_magnetite_ore_diorite.json │ │ │ ├── vanadium_magnetite_ore_endstone.json │ │ │ ├── vanadium_magnetite_ore_granite.json │ │ │ ├── vanadium_magnetite_ore_granite_black.json │ │ │ ├── vanadium_magnetite_ore_granite_red.json │ │ │ ├── vanadium_magnetite_ore_marble.json │ │ │ ├── vanadium_magnetite_ore_netherrack.json │ │ │ ├── vanadium_magnetite_ore_sand.json │ │ │ ├── vanadium_magnetite_ore_sand_red.json │ │ │ ├── vanadium_magnetite_ore_sandstone.json │ │ │ ├── vanadium_magnetite_ore_stone.json │ │ │ ├── wulfenite_ore_andesite.json │ │ │ ├── wulfenite_ore_basalt.json │ │ │ ├── wulfenite_ore_diorite.json │ │ │ ├── wulfenite_ore_endstone.json │ │ │ ├── wulfenite_ore_granite.json │ │ │ ├── wulfenite_ore_granite_black.json │ │ │ ├── wulfenite_ore_granite_red.json │ │ │ ├── wulfenite_ore_marble.json │ │ │ ├── wulfenite_ore_netherrack.json │ │ │ ├── wulfenite_ore_sand.json │ │ │ ├── wulfenite_ore_sand_red.json │ │ │ ├── wulfenite_ore_sandstone.json │ │ │ ├── wulfenite_ore_stone.json │ │ │ ├── yellow_garnet_ore_andesite.json │ │ │ ├── yellow_garnet_ore_basalt.json │ │ │ ├── yellow_garnet_ore_diorite.json │ │ │ ├── yellow_garnet_ore_endstone.json │ │ │ ├── yellow_garnet_ore_granite.json │ │ │ ├── yellow_garnet_ore_granite_black.json │ │ │ ├── yellow_garnet_ore_granite_red.json │ │ │ ├── yellow_garnet_ore_marble.json │ │ │ ├── yellow_garnet_ore_netherrack.json │ │ │ ├── yellow_garnet_ore_sand.json │ │ │ ├── yellow_garnet_ore_sand_red.json │ │ │ ├── yellow_garnet_ore_sandstone.json │ │ │ ├── yellow_garnet_ore_small_andesite.json │ │ │ ├── yellow_garnet_ore_small_basalt.json │ │ │ ├── yellow_garnet_ore_small_diorite.json │ │ │ ├── yellow_garnet_ore_small_endstone.json │ │ │ ├── yellow_garnet_ore_small_granite.json │ │ │ ├── yellow_garnet_ore_small_granite_black.json │ │ │ ├── yellow_garnet_ore_small_granite_red.json │ │ │ ├── yellow_garnet_ore_small_marble.json │ │ │ ├── yellow_garnet_ore_small_netherrack.json │ │ │ ├── yellow_garnet_ore_small_sand.json │ │ │ ├── yellow_garnet_ore_small_sand_red.json │ │ │ ├── yellow_garnet_ore_small_sandstone.json │ │ │ ├── yellow_garnet_ore_small_stone.json │ │ │ ├── yellow_garnet_ore_stone.json │ │ │ ├── yellow_limonite_ore_andesite.json │ │ │ ├── yellow_limonite_ore_basalt.json │ │ │ ├── yellow_limonite_ore_diorite.json │ │ │ ├── yellow_limonite_ore_endstone.json │ │ │ ├── yellow_limonite_ore_granite.json │ │ │ ├── yellow_limonite_ore_granite_black.json │ │ │ ├── yellow_limonite_ore_granite_red.json │ │ │ ├── yellow_limonite_ore_marble.json │ │ │ ├── yellow_limonite_ore_netherrack.json │ │ │ ├── yellow_limonite_ore_sand.json │ │ │ ├── yellow_limonite_ore_sand_red.json │ │ │ ├── yellow_limonite_ore_sandstone.json │ │ │ ├── yellow_limonite_ore_stone.json │ │ │ ├── zinc_ore_andesite.json │ │ │ ├── zinc_ore_basalt.json │ │ │ ├── zinc_ore_diorite.json │ │ │ ├── zinc_ore_endstone.json │ │ │ ├── zinc_ore_granite.json │ │ │ ├── zinc_ore_granite_black.json │ │ │ ├── zinc_ore_granite_red.json │ │ │ ├── zinc_ore_marble.json │ │ │ ├── zinc_ore_netherrack.json │ │ │ ├── zinc_ore_sand.json │ │ │ ├── zinc_ore_sand_red.json │ │ │ ├── zinc_ore_sandstone.json │ │ │ ├── zinc_ore_small_andesite.json │ │ │ ├── zinc_ore_small_basalt.json │ │ │ ├── zinc_ore_small_diorite.json │ │ │ ├── zinc_ore_small_endstone.json │ │ │ ├── zinc_ore_small_granite.json │ │ │ ├── zinc_ore_small_granite_black.json │ │ │ ├── zinc_ore_small_granite_red.json │ │ │ ├── zinc_ore_small_marble.json │ │ │ ├── zinc_ore_small_netherrack.json │ │ │ ├── zinc_ore_small_sand.json │ │ │ ├── zinc_ore_small_sand_red.json │ │ │ ├── zinc_ore_small_sandstone.json │ │ │ ├── zinc_ore_small_stone.json │ │ │ └── zinc_ore_stone.json │ │ └── item │ │ │ ├── adv_circuit_parts.json │ │ │ ├── almandine_ore_andesite.json │ │ │ ├── almandine_ore_basalt.json │ │ │ ├── almandine_ore_diorite.json │ │ │ ├── almandine_ore_endstone.json │ │ │ ├── almandine_ore_granite.json │ │ │ ├── almandine_ore_granite_black.json │ │ │ ├── almandine_ore_granite_red.json │ │ │ ├── almandine_ore_marble.json │ │ │ ├── almandine_ore_netherrack.json │ │ │ ├── almandine_ore_sand.json │ │ │ ├── almandine_ore_sand_red.json │ │ │ ├── almandine_ore_sandstone.json │ │ │ ├── almandine_ore_small_andesite.json │ │ │ ├── almandine_ore_small_basalt.json │ │ │ ├── almandine_ore_small_diorite.json │ │ │ ├── almandine_ore_small_endstone.json │ │ │ ├── almandine_ore_small_granite.json │ │ │ ├── almandine_ore_small_granite_black.json │ │ │ ├── almandine_ore_small_granite_red.json │ │ │ ├── almandine_ore_small_marble.json │ │ │ ├── almandine_ore_small_netherrack.json │ │ │ ├── almandine_ore_small_sand.json │ │ │ ├── almandine_ore_small_sand_red.json │ │ │ ├── almandine_ore_small_sandstone.json │ │ │ ├── almandine_ore_small_stone.json │ │ │ ├── almandine_ore_stone.json │ │ │ ├── aluminium_ore_andesite.json │ │ │ ├── aluminium_ore_basalt.json │ │ │ ├── aluminium_ore_diorite.json │ │ │ ├── aluminium_ore_endstone.json │ │ │ ├── aluminium_ore_granite.json │ │ │ ├── aluminium_ore_granite_black.json │ │ │ ├── aluminium_ore_granite_red.json │ │ │ ├── aluminium_ore_marble.json │ │ │ ├── aluminium_ore_netherrack.json │ │ │ ├── aluminium_ore_sand.json │ │ │ ├── aluminium_ore_sand_red.json │ │ │ ├── aluminium_ore_sandstone.json │ │ │ ├── aluminium_ore_stone.json │ │ │ ├── amethyst_ore_andesite.json │ │ │ ├── amethyst_ore_basalt.json │ │ │ ├── amethyst_ore_diorite.json │ │ │ ├── amethyst_ore_endstone.json │ │ │ ├── amethyst_ore_granite.json │ │ │ ├── amethyst_ore_granite_black.json │ │ │ ├── amethyst_ore_granite_red.json │ │ │ ├── amethyst_ore_marble.json │ │ │ ├── amethyst_ore_netherrack.json │ │ │ ├── amethyst_ore_sand.json │ │ │ ├── amethyst_ore_sand_red.json │ │ │ ├── amethyst_ore_sandstone.json │ │ │ ├── amethyst_ore_small_andesite.json │ │ │ ├── amethyst_ore_small_basalt.json │ │ │ ├── amethyst_ore_small_diorite.json │ │ │ ├── amethyst_ore_small_endstone.json │ │ │ ├── amethyst_ore_small_granite.json │ │ │ ├── amethyst_ore_small_granite_black.json │ │ │ ├── amethyst_ore_small_granite_red.json │ │ │ ├── amethyst_ore_small_marble.json │ │ │ ├── amethyst_ore_small_netherrack.json │ │ │ ├── amethyst_ore_small_sand.json │ │ │ ├── amethyst_ore_small_sand_red.json │ │ │ ├── amethyst_ore_small_sandstone.json │ │ │ ├── amethyst_ore_small_stone.json │ │ │ ├── amethyst_ore_stone.json │ │ │ ├── andradite_ore_andesite.json │ │ │ ├── andradite_ore_basalt.json │ │ │ ├── andradite_ore_diorite.json │ │ │ ├── andradite_ore_endstone.json │ │ │ ├── andradite_ore_granite.json │ │ │ ├── andradite_ore_granite_black.json │ │ │ ├── andradite_ore_granite_red.json │ │ │ ├── andradite_ore_marble.json │ │ │ ├── andradite_ore_netherrack.json │ │ │ ├── andradite_ore_sand.json │ │ │ ├── andradite_ore_sand_red.json │ │ │ ├── andradite_ore_sandstone.json │ │ │ ├── andradite_ore_small_andesite.json │ │ │ ├── andradite_ore_small_basalt.json │ │ │ ├── andradite_ore_small_diorite.json │ │ │ ├── andradite_ore_small_endstone.json │ │ │ ├── andradite_ore_small_granite.json │ │ │ ├── andradite_ore_small_granite_black.json │ │ │ ├── andradite_ore_small_granite_red.json │ │ │ ├── andradite_ore_small_marble.json │ │ │ ├── andradite_ore_small_netherrack.json │ │ │ ├── andradite_ore_small_sand.json │ │ │ ├── andradite_ore_small_sand_red.json │ │ │ ├── andradite_ore_small_sandstone.json │ │ │ ├── andradite_ore_small_stone.json │ │ │ ├── andradite_ore_stone.json │ │ │ ├── axe.json │ │ │ ├── banded_iron_ore_andesite.json │ │ │ ├── banded_iron_ore_basalt.json │ │ │ ├── banded_iron_ore_diorite.json │ │ │ ├── banded_iron_ore_endstone.json │ │ │ ├── banded_iron_ore_granite.json │ │ │ ├── banded_iron_ore_granite_black.json │ │ │ ├── banded_iron_ore_granite_red.json │ │ │ ├── banded_iron_ore_marble.json │ │ │ ├── banded_iron_ore_netherrack.json │ │ │ ├── banded_iron_ore_sand.json │ │ │ ├── banded_iron_ore_sand_red.json │ │ │ ├── banded_iron_ore_sandstone.json │ │ │ ├── banded_iron_ore_stone.json │ │ │ ├── barite_ore_andesite.json │ │ │ ├── barite_ore_basalt.json │ │ │ ├── barite_ore_diorite.json │ │ │ ├── barite_ore_endstone.json │ │ │ ├── barite_ore_granite.json │ │ │ ├── barite_ore_granite_black.json │ │ │ ├── barite_ore_granite_red.json │ │ │ ├── barite_ore_marble.json │ │ │ ├── barite_ore_netherrack.json │ │ │ ├── barite_ore_sand.json │ │ │ ├── barite_ore_sand_red.json │ │ │ ├── barite_ore_sandstone.json │ │ │ ├── barite_ore_stone.json │ │ │ ├── basalt.json │ │ │ ├── basic_fire_brick.json │ │ │ ├── bastnasite_ore_andesite.json │ │ │ ├── bastnasite_ore_basalt.json │ │ │ ├── bastnasite_ore_diorite.json │ │ │ ├── bastnasite_ore_endstone.json │ │ │ ├── bastnasite_ore_granite.json │ │ │ ├── bastnasite_ore_granite_black.json │ │ │ ├── bastnasite_ore_granite_red.json │ │ │ ├── bastnasite_ore_marble.json │ │ │ ├── bastnasite_ore_netherrack.json │ │ │ ├── bastnasite_ore_sand.json │ │ │ ├── bastnasite_ore_sand_red.json │ │ │ ├── bastnasite_ore_sandstone.json │ │ │ ├── bastnasite_ore_stone.json │ │ │ ├── battery_energy_orb.json │ │ │ ├── battery_energy_orb_cluster.json │ │ │ ├── battery_hull_large.json │ │ │ ├── battery_hull_medium.json │ │ │ ├── battery_hull_small.json │ │ │ ├── battery_large_acid.json │ │ │ ├── battery_large_cadmium.json │ │ │ ├── battery_large_lithium.json │ │ │ ├── battery_large_mercury.json │ │ │ ├── battery_large_sodium.json │ │ │ ├── battery_medium_acid.json │ │ │ ├── battery_medium_cadmium.json │ │ │ ├── battery_medium_lithium.json │ │ │ ├── battery_medium_mercury.json │ │ │ ├── battery_medium_sodium.json │ │ │ ├── battery_small_acid.json │ │ │ ├── battery_small_cadmium.json │ │ │ ├── battery_small_lithium.json │ │ │ ├── battery_small_mercury.json │ │ │ ├── battery_small_sodium.json │ │ │ ├── battery_tantalum.json │ │ │ ├── bauxite_ore_andesite.json │ │ │ ├── bauxite_ore_basalt.json │ │ │ ├── bauxite_ore_diorite.json │ │ │ ├── bauxite_ore_endstone.json │ │ │ ├── bauxite_ore_granite.json │ │ │ ├── bauxite_ore_granite_black.json │ │ │ ├── bauxite_ore_granite_red.json │ │ │ ├── bauxite_ore_marble.json │ │ │ ├── bauxite_ore_netherrack.json │ │ │ ├── bauxite_ore_sand.json │ │ │ ├── bauxite_ore_sand_red.json │ │ │ ├── bauxite_ore_sandstone.json │ │ │ ├── bauxite_ore_stone.json │ │ │ ├── bentonite_ore_andesite.json │ │ │ ├── bentonite_ore_basalt.json │ │ │ ├── bentonite_ore_diorite.json │ │ │ ├── bentonite_ore_endstone.json │ │ │ ├── bentonite_ore_granite.json │ │ │ ├── bentonite_ore_granite_black.json │ │ │ ├── bentonite_ore_granite_red.json │ │ │ ├── bentonite_ore_marble.json │ │ │ ├── bentonite_ore_netherrack.json │ │ │ ├── bentonite_ore_sand.json │ │ │ ├── bentonite_ore_sand_red.json │ │ │ ├── bentonite_ore_sandstone.json │ │ │ ├── bentonite_ore_stone.json │ │ │ ├── beryllium_ore_andesite.json │ │ │ ├── beryllium_ore_basalt.json │ │ │ ├── beryllium_ore_diorite.json │ │ │ ├── beryllium_ore_endstone.json │ │ │ ├── beryllium_ore_granite.json │ │ │ ├── beryllium_ore_granite_black.json │ │ │ ├── beryllium_ore_granite_red.json │ │ │ ├── beryllium_ore_marble.json │ │ │ ├── beryllium_ore_netherrack.json │ │ │ ├── beryllium_ore_sand.json │ │ │ ├── beryllium_ore_sand_red.json │ │ │ ├── beryllium_ore_sandstone.json │ │ │ ├── beryllium_ore_stone.json │ │ │ ├── bismuth_ore_andesite.json │ │ │ ├── bismuth_ore_basalt.json │ │ │ ├── bismuth_ore_diorite.json │ │ │ ├── bismuth_ore_endstone.json │ │ │ ├── bismuth_ore_granite.json │ │ │ ├── bismuth_ore_granite_black.json │ │ │ ├── bismuth_ore_granite_red.json │ │ │ ├── bismuth_ore_marble.json │ │ │ ├── bismuth_ore_netherrack.json │ │ │ ├── bismuth_ore_sand.json │ │ │ ├── bismuth_ore_sand_red.json │ │ │ ├── bismuth_ore_sandstone.json │ │ │ ├── bismuth_ore_small_andesite.json │ │ │ ├── bismuth_ore_small_basalt.json │ │ │ ├── bismuth_ore_small_diorite.json │ │ │ ├── bismuth_ore_small_endstone.json │ │ │ ├── bismuth_ore_small_granite.json │ │ │ ├── bismuth_ore_small_granite_black.json │ │ │ ├── bismuth_ore_small_granite_red.json │ │ │ ├── bismuth_ore_small_marble.json │ │ │ ├── bismuth_ore_small_netherrack.json │ │ │ ├── bismuth_ore_small_sand.json │ │ │ ├── bismuth_ore_small_sand_red.json │ │ │ ├── bismuth_ore_small_sandstone.json │ │ │ ├── bismuth_ore_small_stone.json │ │ │ ├── bismuth_ore_stone.json │ │ │ ├── blue_sapphire_ore_andesite.json │ │ │ ├── blue_sapphire_ore_basalt.json │ │ │ ├── blue_sapphire_ore_diorite.json │ │ │ ├── blue_sapphire_ore_endstone.json │ │ │ ├── blue_sapphire_ore_granite.json │ │ │ ├── blue_sapphire_ore_granite_black.json │ │ │ ├── blue_sapphire_ore_granite_red.json │ │ │ ├── blue_sapphire_ore_marble.json │ │ │ ├── blue_sapphire_ore_netherrack.json │ │ │ ├── blue_sapphire_ore_sand.json │ │ │ ├── blue_sapphire_ore_sand_red.json │ │ │ ├── blue_sapphire_ore_sandstone.json │ │ │ ├── blue_sapphire_ore_small_andesite.json │ │ │ ├── blue_sapphire_ore_small_basalt.json │ │ │ ├── blue_sapphire_ore_small_diorite.json │ │ │ ├── blue_sapphire_ore_small_endstone.json │ │ │ ├── blue_sapphire_ore_small_granite.json │ │ │ ├── blue_sapphire_ore_small_granite_black.json │ │ │ ├── blue_sapphire_ore_small_granite_red.json │ │ │ ├── blue_sapphire_ore_small_marble.json │ │ │ ├── blue_sapphire_ore_small_netherrack.json │ │ │ ├── blue_sapphire_ore_small_sand.json │ │ │ ├── blue_sapphire_ore_small_sand_red.json │ │ │ ├── blue_sapphire_ore_small_sandstone.json │ │ │ ├── blue_sapphire_ore_small_stone.json │ │ │ ├── blue_sapphire_ore_stone.json │ │ │ ├── blue_topaz_ore_andesite.json │ │ │ ├── blue_topaz_ore_basalt.json │ │ │ ├── blue_topaz_ore_diorite.json │ │ │ ├── blue_topaz_ore_endstone.json │ │ │ ├── blue_topaz_ore_granite.json │ │ │ ├── blue_topaz_ore_granite_black.json │ │ │ ├── blue_topaz_ore_granite_red.json │ │ │ ├── blue_topaz_ore_marble.json │ │ │ ├── blue_topaz_ore_netherrack.json │ │ │ ├── blue_topaz_ore_sand.json │ │ │ ├── blue_topaz_ore_sand_red.json │ │ │ ├── blue_topaz_ore_sandstone.json │ │ │ ├── blue_topaz_ore_small_andesite.json │ │ │ ├── blue_topaz_ore_small_basalt.json │ │ │ ├── blue_topaz_ore_small_diorite.json │ │ │ ├── blue_topaz_ore_small_endstone.json │ │ │ ├── blue_topaz_ore_small_granite.json │ │ │ ├── blue_topaz_ore_small_granite_black.json │ │ │ ├── blue_topaz_ore_small_granite_red.json │ │ │ ├── blue_topaz_ore_small_marble.json │ │ │ ├── blue_topaz_ore_small_netherrack.json │ │ │ ├── blue_topaz_ore_small_sand.json │ │ │ ├── blue_topaz_ore_small_sand_red.json │ │ │ ├── blue_topaz_ore_small_sandstone.json │ │ │ ├── blue_topaz_ore_small_stone.json │ │ │ ├── blue_topaz_ore_stone.json │ │ │ ├── bolt_aluminium.json │ │ │ ├── bolt_beryllium.json │ │ │ ├── bolt_bismuth_bronze.json │ │ │ ├── bolt_black_bronze.json │ │ │ ├── bolt_black_steel.json │ │ │ ├── bolt_blue_steel.json │ │ │ ├── bolt_bronze.json │ │ │ ├── bolt_chrome.json │ │ │ ├── bolt_cobalt.json │ │ │ ├── bolt_cobalt_brass.json │ │ │ ├── bolt_duranium.json │ │ │ ├── bolt_electrum.json │ │ │ ├── bolt_epoxid.json │ │ │ ├── bolt_fiber_reinforced_epoxy_resin.json │ │ │ ├── bolt_gold.json │ │ │ ├── bolt_hsse.json │ │ │ ├── bolt_hssg.json │ │ │ ├── bolt_hsss.json │ │ │ ├── bolt_invar.json │ │ │ ├── bolt_iridium.json │ │ │ ├── bolt_iron.json │ │ │ ├── bolt_kanthal.json │ │ │ ├── bolt_magnetic_iron.json │ │ │ ├── bolt_magnetic_steel.json │ │ │ ├── bolt_molybdenum.json │ │ │ ├── bolt_naquadah.json │ │ │ ├── bolt_naquadah_alloy.json │ │ │ ├── bolt_naquadah_enriched.json │ │ │ ├── bolt_naquadria.json │ │ │ ├── bolt_neutronium.json │ │ │ ├── bolt_nichrome.json │ │ │ ├── bolt_nickel_zinc_ferrite.json │ │ │ ├── bolt_osmiridium.json │ │ │ ├── bolt_osmium.json │ │ │ ├── bolt_palladium.json │ │ │ ├── bolt_platinum.json │ │ │ ├── bolt_plutonium_241.json │ │ │ ├── bolt_plutonium_244.json │ │ │ ├── bolt_polycaprolactam.json │ │ │ ├── bolt_polyphenylene_sulfide.json │ │ │ ├── bolt_polytetrafluoroethylene.json │ │ │ ├── bolt_polyvinyl_chloride.json │ │ │ ├── bolt_red_steel.json │ │ │ ├── bolt_rose_gold.json │ │ │ ├── bolt_rubber.json │ │ │ ├── bolt_silicone.json │ │ │ ├── bolt_stainless_steel.json │ │ │ ├── bolt_steel.json │ │ │ ├── bolt_sterling_silver.json │ │ │ ├── bolt_styrene_butadiene_rubber.json │ │ │ ├── bolt_thorium.json │ │ │ ├── bolt_tin.json │ │ │ ├── bolt_titanium.json │ │ │ ├── bolt_tritanium.json │ │ │ ├── bolt_tungsten.json │ │ │ ├── bolt_tungsten_carbide.json │ │ │ ├── bolt_tungstensteel.json │ │ │ ├── bolt_uranium_235.json │ │ │ ├── bolt_vanadium_steel.json │ │ │ ├── bolt_vibranium.json │ │ │ ├── bolt_wrought_iron.json │ │ │ ├── branch_cutter.json │ │ │ ├── brown_limonite_ore_andesite.json │ │ │ ├── brown_limonite_ore_basalt.json │ │ │ ├── brown_limonite_ore_diorite.json │ │ │ ├── brown_limonite_ore_endstone.json │ │ │ ├── brown_limonite_ore_granite.json │ │ │ ├── brown_limonite_ore_granite_black.json │ │ │ ├── brown_limonite_ore_granite_red.json │ │ │ ├── brown_limonite_ore_marble.json │ │ │ ├── brown_limonite_ore_netherrack.json │ │ │ ├── brown_limonite_ore_sand.json │ │ │ ├── brown_limonite_ore_sand_red.json │ │ │ ├── brown_limonite_ore_sandstone.json │ │ │ ├── brown_limonite_ore_stone.json │ │ │ ├── buzzsaw.json │ │ │ ├── cable_aluminium_huge.json │ │ │ ├── cable_aluminium_large.json │ │ │ ├── cable_aluminium_normal.json │ │ │ ├── cable_aluminium_small.json │ │ │ ├── cable_aluminium_tiny.json │ │ │ ├── cable_aluminium_vtiny.json │ │ │ ├── cable_annealed_copper_huge.json │ │ │ ├── cable_annealed_copper_large.json │ │ │ ├── cable_annealed_copper_normal.json │ │ │ ├── cable_annealed_copper_small.json │ │ │ ├── cable_annealed_copper_tiny.json │ │ │ ├── cable_annealed_copper_vtiny.json │ │ │ ├── cable_cobalt_huge.json │ │ │ ├── cable_cobalt_large.json │ │ │ ├── cable_cobalt_normal.json │ │ │ ├── cable_cobalt_small.json │ │ │ ├── cable_cobalt_tiny.json │ │ │ ├── cable_cobalt_vtiny.json │ │ │ ├── cable_copper_huge.json │ │ │ ├── cable_copper_large.json │ │ │ ├── cable_copper_normal.json │ │ │ ├── cable_copper_small.json │ │ │ ├── cable_copper_tiny.json │ │ │ ├── cable_copper_vtiny.json │ │ │ ├── cable_cupronickel_huge.json │ │ │ ├── cable_cupronickel_large.json │ │ │ ├── cable_cupronickel_normal.json │ │ │ ├── cable_cupronickel_small.json │ │ │ ├── cable_cupronickel_tiny.json │ │ │ ├── cable_cupronickel_vtiny.json │ │ │ ├── cable_duranium_huge.json │ │ │ ├── cable_duranium_large.json │ │ │ ├── cable_duranium_normal.json │ │ │ ├── cable_duranium_small.json │ │ │ ├── cable_duranium_tiny.json │ │ │ ├── cable_duranium_vtiny.json │ │ │ ├── cable_electrum_huge.json │ │ │ ├── cable_electrum_large.json │ │ │ ├── cable_electrum_normal.json │ │ │ ├── cable_electrum_small.json │ │ │ ├── cable_electrum_tiny.json │ │ │ ├── cable_electrum_vtiny.json │ │ │ ├── cable_gold_huge.json │ │ │ ├── cable_gold_large.json │ │ │ ├── cable_gold_normal.json │ │ │ ├── cable_gold_small.json │ │ │ ├── cable_gold_tiny.json │ │ │ ├── cable_gold_vtiny.json │ │ │ ├── cable_graphene_huge.json │ │ │ ├── cable_graphene_large.json │ │ │ ├── cable_graphene_normal.json │ │ │ ├── cable_graphene_small.json │ │ │ ├── cable_graphene_tiny.json │ │ │ ├── cable_graphene_vtiny.json │ │ │ ├── cable_hssg_huge.json │ │ │ ├── cable_hssg_large.json │ │ │ ├── cable_hssg_normal.json │ │ │ ├── cable_hssg_small.json │ │ │ ├── cable_hssg_tiny.json │ │ │ ├── cable_hssg_vtiny.json │ │ │ ├── cable_iron_huge.json │ │ │ ├── cable_iron_large.json │ │ │ ├── cable_iron_normal.json │ │ │ ├── cable_iron_small.json │ │ │ ├── cable_iron_tiny.json │ │ │ ├── cable_iron_vtiny.json │ │ │ ├── cable_kanthal_huge.json │ │ │ ├── cable_kanthal_large.json │ │ │ ├── cable_kanthal_normal.json │ │ │ ├── cable_kanthal_small.json │ │ │ ├── cable_kanthal_tiny.json │ │ │ ├── cable_kanthal_vtiny.json │ │ │ ├── cable_lead_huge.json │ │ │ ├── cable_lead_large.json │ │ │ ├── cable_lead_normal.json │ │ │ ├── cable_lead_small.json │ │ │ ├── cable_lead_tiny.json │ │ │ ├── cable_lead_vtiny.json │ │ │ ├── cable_naquadah_alloy_huge.json │ │ │ ├── cable_naquadah_alloy_large.json │ │ │ ├── cable_naquadah_alloy_normal.json │ │ │ ├── cable_naquadah_alloy_small.json │ │ │ ├── cable_naquadah_alloy_tiny.json │ │ │ ├── cable_naquadah_alloy_vtiny.json │ │ │ ├── cable_naquadah_huge.json │ │ │ ├── cable_naquadah_large.json │ │ │ ├── cable_naquadah_normal.json │ │ │ ├── cable_naquadah_small.json │ │ │ ├── cable_naquadah_tiny.json │ │ │ ├── cable_naquadah_vtiny.json │ │ │ ├── cable_nichrome_huge.json │ │ │ ├── cable_nichrome_large.json │ │ │ ├── cable_nichrome_normal.json │ │ │ ├── cable_nichrome_small.json │ │ │ ├── cable_nichrome_tiny.json │ │ │ ├── cable_nichrome_vtiny.json │ │ │ ├── cable_nickel_huge.json │ │ │ ├── cable_nickel_large.json │ │ │ ├── cable_nickel_normal.json │ │ │ ├── cable_nickel_small.json │ │ │ ├── cable_nickel_tiny.json │ │ │ ├── cable_nickel_vtiny.json │ │ │ ├── cable_niobium_titanium_huge.json │ │ │ ├── cable_niobium_titanium_large.json │ │ │ ├── cable_niobium_titanium_normal.json │ │ │ ├── cable_niobium_titanium_small.json │ │ │ ├── cable_niobium_titanium_tiny.json │ │ │ ├── cable_niobium_titanium_vtiny.json │ │ │ ├── cable_osmium_huge.json │ │ │ ├── cable_osmium_large.json │ │ │ ├── cable_osmium_normal.json │ │ │ ├── cable_osmium_small.json │ │ │ ├── cable_osmium_tiny.json │ │ │ ├── cable_osmium_vtiny.json │ │ │ ├── cable_platinum_huge.json │ │ │ ├── cable_platinum_large.json │ │ │ ├── cable_platinum_normal.json │ │ │ ├── cable_platinum_small.json │ │ │ ├── cable_platinum_tiny.json │ │ │ ├── cable_platinum_vtiny.json │ │ │ ├── cable_red_alloy_huge.json │ │ │ ├── cable_red_alloy_large.json │ │ │ ├── cable_red_alloy_normal.json │ │ │ ├── cable_red_alloy_small.json │ │ │ ├── cable_red_alloy_tiny.json │ │ │ ├── cable_red_alloy_vtiny.json │ │ │ ├── cable_silver_huge.json │ │ │ ├── cable_silver_large.json │ │ │ ├── cable_silver_normal.json │ │ │ ├── cable_silver_small.json │ │ │ ├── cable_silver_tiny.json │ │ │ ├── cable_silver_vtiny.json │ │ │ ├── cable_soldering_alloy_huge.json │ │ │ ├── cable_soldering_alloy_large.json │ │ │ ├── cable_soldering_alloy_normal.json │ │ │ ├── cable_soldering_alloy_small.json │ │ │ ├── cable_soldering_alloy_tiny.json │ │ │ ├── cable_soldering_alloy_vtiny.json │ │ │ ├── cable_steel_huge.json │ │ │ ├── cable_steel_large.json │ │ │ ├── cable_steel_normal.json │ │ │ ├── cable_steel_small.json │ │ │ ├── cable_steel_tiny.json │ │ │ ├── cable_steel_vtiny.json │ │ │ ├── cable_superconductor_huge.json │ │ │ ├── cable_superconductor_large.json │ │ │ ├── cable_superconductor_normal.json │ │ │ ├── cable_superconductor_small.json │ │ │ ├── cable_superconductor_tiny.json │ │ │ ├── cable_superconductor_vtiny.json │ │ │ ├── cable_tin_huge.json │ │ │ ├── cable_tin_large.json │ │ │ ├── cable_tin_normal.json │ │ │ ├── cable_tin_small.json │ │ │ ├── cable_tin_tiny.json │ │ │ ├── cable_tin_vtiny.json │ │ │ ├── cable_titanium_huge.json │ │ │ ├── cable_titanium_large.json │ │ │ ├── cable_titanium_normal.json │ │ │ ├── cable_titanium_small.json │ │ │ ├── cable_titanium_tiny.json │ │ │ ├── cable_titanium_vtiny.json │ │ │ ├── cable_tungsten_huge.json │ │ │ ├── cable_tungsten_large.json │ │ │ ├── cable_tungsten_normal.json │ │ │ ├── cable_tungsten_small.json │ │ │ ├── cable_tungsten_tiny.json │ │ │ ├── cable_tungsten_vtiny.json │ │ │ ├── cable_tungstensteel_huge.json │ │ │ ├── cable_tungstensteel_large.json │ │ │ ├── cable_tungstensteel_normal.json │ │ │ ├── cable_tungstensteel_small.json │ │ │ ├── cable_tungstensteel_tiny.json │ │ │ ├── cable_tungstensteel_vtiny.json │ │ │ ├── cable_vanadium_gallium_huge.json │ │ │ ├── cable_vanadium_gallium_large.json │ │ │ ├── cable_vanadium_gallium_normal.json │ │ │ ├── cable_vanadium_gallium_small.json │ │ │ ├── cable_vanadium_gallium_tiny.json │ │ │ ├── cable_vanadium_gallium_vtiny.json │ │ │ ├── cable_yttrium_barium_cuprate_huge.json │ │ │ ├── cable_yttrium_barium_cuprate_large.json │ │ │ ├── cable_yttrium_barium_cuprate_normal.json │ │ │ ├── cable_yttrium_barium_cuprate_small.json │ │ │ ├── cable_yttrium_barium_cuprate_tiny.json │ │ │ ├── cable_yttrium_barium_cuprate_vtiny.json │ │ │ ├── cable_zinc_huge.json │ │ │ ├── cable_zinc_large.json │ │ │ ├── cable_zinc_normal.json │ │ │ ├── cable_zinc_small.json │ │ │ ├── cable_zinc_tiny.json │ │ │ ├── cable_zinc_vtiny.json │ │ │ ├── calcite_ore_andesite.json │ │ │ ├── calcite_ore_basalt.json │ │ │ ├── calcite_ore_diorite.json │ │ │ ├── calcite_ore_endstone.json │ │ │ ├── calcite_ore_granite.json │ │ │ ├── calcite_ore_granite_black.json │ │ │ ├── calcite_ore_granite_red.json │ │ │ ├── calcite_ore_marble.json │ │ │ ├── calcite_ore_netherrack.json │ │ │ ├── calcite_ore_sand.json │ │ │ ├── calcite_ore_sand_red.json │ │ │ ├── calcite_ore_sandstone.json │ │ │ ├── calcite_ore_stone.json │ │ │ ├── casing_bricked_bronze.json │ │ │ ├── casing_bricked_steel.json │ │ │ ├── casing_bronze.json │ │ │ ├── casing_bronze_plated_brick.json │ │ │ ├── casing_engine_intake.json │ │ │ ├── casing_ev.json │ │ │ ├── casing_fire_brick.json │ │ │ ├── casing_firebox_bronze.json │ │ │ ├── casing_firebox_steel.json │ │ │ ├── casing_firebox_titanium.json │ │ │ ├── casing_firebox_tungstensteel.json │ │ │ ├── casing_frost_proof.json │ │ │ ├── casing_fusion_1.json │ │ │ ├── casing_fusion_2.json │ │ │ ├── casing_fusion_3.json │ │ │ ├── casing_gearbox_bronze.json │ │ │ ├── casing_gearbox_steel.json │ │ │ ├── casing_gearbox_titanium.json │ │ │ ├── casing_gearbox_tungstensteel.json │ │ │ ├── casing_heat_proof.json │ │ │ ├── casing_hv.json │ │ │ ├── casing_iv.json │ │ │ ├── casing_luv.json │ │ │ ├── casing_lv.json │ │ │ ├── casing_max.json │ │ │ ├── casing_mv.json │ │ │ ├── casing_pipe_bronze.json │ │ │ ├── casing_pipe_steel.json │ │ │ ├── casing_pipe_titanium.json │ │ │ ├── casing_pipe_tungstensteel.json │ │ │ ├── casing_radiation_proof.json │ │ │ ├── casing_solid_steel.json │ │ │ ├── casing_stainless_steel.json │ │ │ ├── casing_steel.json │ │ │ ├── casing_titanium.json │ │ │ ├── casing_tungstensteel.json │ │ │ ├── casing_turbine_1.json │ │ │ ├── casing_turbine_2.json │ │ │ ├── casing_turbine_3.json │ │ │ ├── casing_turbine_4.json │ │ │ ├── casing_ulv.json │ │ │ ├── casing_uv.json │ │ │ ├── casing_zpm.json │ │ │ ├── cassiterite_ore_andesite.json │ │ │ ├── cassiterite_ore_basalt.json │ │ │ ├── cassiterite_ore_diorite.json │ │ │ ├── cassiterite_ore_endstone.json │ │ │ ├── cassiterite_ore_granite.json │ │ │ ├── cassiterite_ore_granite_black.json │ │ │ ├── cassiterite_ore_granite_red.json │ │ │ ├── cassiterite_ore_marble.json │ │ │ ├── cassiterite_ore_netherrack.json │ │ │ ├── cassiterite_ore_sand.json │ │ │ ├── cassiterite_ore_sand_red.json │ │ │ ├── cassiterite_ore_sandstone.json │ │ │ ├── cassiterite_ore_small_andesite.json │ │ │ ├── cassiterite_ore_small_basalt.json │ │ │ ├── cassiterite_ore_small_diorite.json │ │ │ ├── cassiterite_ore_small_endstone.json │ │ │ ├── cassiterite_ore_small_granite.json │ │ │ ├── cassiterite_ore_small_granite_black.json │ │ │ ├── cassiterite_ore_small_granite_red.json │ │ │ ├── cassiterite_ore_small_marble.json │ │ │ ├── cassiterite_ore_small_netherrack.json │ │ │ ├── cassiterite_ore_small_sand.json │ │ │ ├── cassiterite_ore_small_sand_red.json │ │ │ ├── cassiterite_ore_small_sandstone.json │ │ │ ├── cassiterite_ore_small_stone.json │ │ │ ├── cassiterite_ore_stone.json │ │ │ ├── chainsaw.json │ │ │ ├── chalcopyrite_ore_andesite.json │ │ │ ├── chalcopyrite_ore_basalt.json │ │ │ ├── chalcopyrite_ore_diorite.json │ │ │ ├── chalcopyrite_ore_endstone.json │ │ │ ├── chalcopyrite_ore_granite.json │ │ │ ├── chalcopyrite_ore_granite_black.json │ │ │ ├── chalcopyrite_ore_granite_red.json │ │ │ ├── chalcopyrite_ore_marble.json │ │ │ ├── chalcopyrite_ore_netherrack.json │ │ │ ├── chalcopyrite_ore_sand.json │ │ │ ├── chalcopyrite_ore_sand_red.json │ │ │ ├── chalcopyrite_ore_sandstone.json │ │ │ ├── chalcopyrite_ore_small_andesite.json │ │ │ ├── chalcopyrite_ore_small_basalt.json │ │ │ ├── chalcopyrite_ore_small_diorite.json │ │ │ ├── chalcopyrite_ore_small_endstone.json │ │ │ ├── chalcopyrite_ore_small_granite.json │ │ │ ├── chalcopyrite_ore_small_granite_black.json │ │ │ ├── chalcopyrite_ore_small_granite_red.json │ │ │ ├── chalcopyrite_ore_small_marble.json │ │ │ ├── chalcopyrite_ore_small_netherrack.json │ │ │ ├── chalcopyrite_ore_small_sand.json │ │ │ ├── chalcopyrite_ore_small_sand_red.json │ │ │ ├── chalcopyrite_ore_small_sandstone.json │ │ │ ├── chalcopyrite_ore_small_stone.json │ │ │ ├── chalcopyrite_ore_stone.json │ │ │ ├── cinnabar_ore_andesite.json │ │ │ ├── cinnabar_ore_basalt.json │ │ │ ├── cinnabar_ore_diorite.json │ │ │ ├── cinnabar_ore_endstone.json │ │ │ ├── cinnabar_ore_granite.json │ │ │ ├── cinnabar_ore_granite_black.json │ │ │ ├── cinnabar_ore_granite_red.json │ │ │ ├── cinnabar_ore_marble.json │ │ │ ├── cinnabar_ore_netherrack.json │ │ │ ├── cinnabar_ore_sand.json │ │ │ ├── cinnabar_ore_sand_red.json │ │ │ ├── cinnabar_ore_sandstone.json │ │ │ ├── cinnabar_ore_stone.json │ │ │ ├── circuit_adv.json │ │ │ ├── circuit_basic.json │ │ │ ├── circuit_board_adv.json │ │ │ ├── circuit_board_basic.json │ │ │ ├── circuit_board_empty.json │ │ │ ├── circuit_board_processor.json │ │ │ ├── circuit_board_processor_empty.json │ │ │ ├── circuit_data_control.json │ │ │ ├── circuit_data_orb.json │ │ │ ├── circuit_data_storage.json │ │ │ ├── circuit_energy_flow.json │ │ │ ├── circuit_good.json │ │ │ ├── coal_ore_andesite.json │ │ │ ├── coal_ore_basalt.json │ │ │ ├── coal_ore_diorite.json │ │ │ ├── coal_ore_endstone.json │ │ │ ├── coal_ore_granite.json │ │ │ ├── coal_ore_granite_black.json │ │ │ ├── coal_ore_granite_red.json │ │ │ ├── coal_ore_marble.json │ │ │ ├── coal_ore_netherrack.json │ │ │ ├── coal_ore_sand.json │ │ │ ├── coal_ore_sand_red.json │ │ │ ├── coal_ore_sandstone.json │ │ │ ├── coal_ore_small_andesite.json │ │ │ ├── coal_ore_small_basalt.json │ │ │ ├── coal_ore_small_diorite.json │ │ │ ├── coal_ore_small_endstone.json │ │ │ ├── coal_ore_small_granite.json │ │ │ ├── coal_ore_small_granite_black.json │ │ │ ├── coal_ore_small_granite_red.json │ │ │ ├── coal_ore_small_marble.json │ │ │ ├── coal_ore_small_netherrack.json │ │ │ ├── coal_ore_small_sand.json │ │ │ ├── coal_ore_small_sand_red.json │ │ │ ├── coal_ore_small_sandstone.json │ │ │ ├── coal_ore_small_stone.json │ │ │ ├── coal_ore_stone.json │ │ │ ├── cobaltite_ore_andesite.json │ │ │ ├── cobaltite_ore_basalt.json │ │ │ ├── cobaltite_ore_diorite.json │ │ │ ├── cobaltite_ore_endstone.json │ │ │ ├── cobaltite_ore_granite.json │ │ │ ├── cobaltite_ore_granite_black.json │ │ │ ├── cobaltite_ore_granite_red.json │ │ │ ├── cobaltite_ore_marble.json │ │ │ ├── cobaltite_ore_netherrack.json │ │ │ ├── cobaltite_ore_sand.json │ │ │ ├── cobaltite_ore_sand_red.json │ │ │ ├── cobaltite_ore_sandstone.json │ │ │ ├── cobaltite_ore_stone.json │ │ │ ├── coil_cupronickel.json │ │ │ ├── coil_fusion.json │ │ │ ├── coil_hssg.json │ │ │ ├── coil_kanthal.json │ │ │ ├── coil_naquadah.json │ │ │ ├── coil_naquadah_alloy.json │ │ │ ├── coil_nichrome.json │ │ │ ├── coil_superconductor.json │ │ │ ├── coil_tungstensteel.json │ │ │ ├── comb_aluminium.json │ │ │ ├── comb_certus.json │ │ │ ├── comb_chrome.json │ │ │ ├── comb_coal.json │ │ │ ├── comb_copper.json │ │ │ ├── comb_diamond.json │ │ │ ├── comb_emerald.json │ │ │ ├── comb_gold.json │ │ │ ├── comb_iridium.json │ │ │ ├── comb_iron.json │ │ │ ├── comb_lapis.json │ │ │ ├── comb_lead.json │ │ │ ├── comb_lignite.json │ │ │ ├── comb_manganese.json │ │ │ ├── comb_naquadah.json │ │ │ ├── comb_nickel.json │ │ │ ├── comb_oil.json │ │ │ ├── comb_olivine.json │ │ │ ├── comb_platinum.json │ │ │ ├── comb_plutonium.json │ │ │ ├── comb_redstone.json │ │ │ ├── comb_resin.json │ │ │ ├── comb_ruby.json │ │ │ ├── comb_sapphire.json │ │ │ ├── comb_silver.json │ │ │ ├── comb_slag.json │ │ │ ├── comb_steel.json │ │ │ ├── comb_stone.json │ │ │ ├── comb_tin.json │ │ │ ├── comb_titanium.json │ │ │ ├── comb_tungsten.json │ │ │ ├── comb_uranium.json │ │ │ ├── comb_zinc.json │ │ │ ├── computer_monitor.json │ │ │ ├── conveyor_ev.json │ │ │ ├── conveyor_hv.json │ │ │ ├── conveyor_iv.json │ │ │ ├── conveyor_lv.json │ │ │ ├── conveyor_mv.json │ │ │ ├── cooperite_ore_andesite.json │ │ │ ├── cooperite_ore_basalt.json │ │ │ ├── cooperite_ore_diorite.json │ │ │ ├── cooperite_ore_endstone.json │ │ │ ├── cooperite_ore_granite.json │ │ │ ├── cooperite_ore_granite_black.json │ │ │ ├── cooperite_ore_granite_red.json │ │ │ ├── cooperite_ore_marble.json │ │ │ ├── cooperite_ore_netherrack.json │ │ │ ├── cooperite_ore_sand.json │ │ │ ├── cooperite_ore_sand_red.json │ │ │ ├── cooperite_ore_sandstone.json │ │ │ ├── cooperite_ore_small_andesite.json │ │ │ ├── cooperite_ore_small_basalt.json │ │ │ ├── cooperite_ore_small_diorite.json │ │ │ ├── cooperite_ore_small_endstone.json │ │ │ ├── cooperite_ore_small_granite.json │ │ │ ├── cooperite_ore_small_granite_black.json │ │ │ ├── cooperite_ore_small_granite_red.json │ │ │ ├── cooperite_ore_small_marble.json │ │ │ ├── cooperite_ore_small_netherrack.json │ │ │ ├── cooperite_ore_small_sand.json │ │ │ ├── cooperite_ore_small_sand_red.json │ │ │ ├── cooperite_ore_small_sandstone.json │ │ │ ├── cooperite_ore_small_stone.json │ │ │ ├── cooperite_ore_stone.json │ │ │ ├── copper_ore_andesite.json │ │ │ ├── copper_ore_basalt.json │ │ │ ├── copper_ore_diorite.json │ │ │ ├── copper_ore_endstone.json │ │ │ ├── copper_ore_granite.json │ │ │ ├── copper_ore_granite_black.json │ │ │ ├── copper_ore_granite_red.json │ │ │ ├── copper_ore_marble.json │ │ │ ├── copper_ore_netherrack.json │ │ │ ├── copper_ore_sand.json │ │ │ ├── copper_ore_sand_red.json │ │ │ ├── copper_ore_sandstone.json │ │ │ ├── copper_ore_small_andesite.json │ │ │ ├── copper_ore_small_basalt.json │ │ │ ├── copper_ore_small_diorite.json │ │ │ ├── copper_ore_small_endstone.json │ │ │ ├── copper_ore_small_granite.json │ │ │ ├── copper_ore_small_granite_black.json │ │ │ ├── copper_ore_small_granite_red.json │ │ │ ├── copper_ore_small_marble.json │ │ │ ├── copper_ore_small_netherrack.json │ │ │ ├── copper_ore_small_sand.json │ │ │ ├── copper_ore_small_sand_red.json │ │ │ ├── copper_ore_small_sandstone.json │ │ │ ├── copper_ore_small_stone.json │ │ │ ├── copper_ore_stone.json │ │ │ ├── crowbar.json │ │ │ ├── crushed_almandine.json │ │ │ ├── crushed_aluminium.json │ │ │ ├── crushed_amethyst.json │ │ │ ├── crushed_andradite.json │ │ │ ├── crushed_banded_iron.json │ │ │ ├── crushed_barite.json │ │ │ ├── crushed_bastnasite.json │ │ │ ├── crushed_bauxite.json │ │ │ ├── crushed_bentonite.json │ │ │ ├── crushed_beryllium.json │ │ │ ├── crushed_bismuth.json │ │ │ ├── crushed_blue_sapphire.json │ │ │ ├── crushed_blue_topaz.json │ │ │ ├── crushed_brown_limonite.json │ │ │ ├── crushed_calcite.json │ │ │ ├── crushed_cassiterite.json │ │ │ ├── crushed_centrifuged_almandine.json │ │ │ ├── crushed_centrifuged_aluminium.json │ │ │ ├── crushed_centrifuged_amethyst.json │ │ │ ├── crushed_centrifuged_andradite.json │ │ │ ├── crushed_centrifuged_banded_iron.json │ │ │ ├── crushed_centrifuged_barite.json │ │ │ ├── crushed_centrifuged_bastnasite.json │ │ │ ├── crushed_centrifuged_bauxite.json │ │ │ ├── crushed_centrifuged_bentonite.json │ │ │ ├── crushed_centrifuged_beryllium.json │ │ │ ├── crushed_centrifuged_bismuth.json │ │ │ ├── crushed_centrifuged_blue_sapphire.json │ │ │ ├── crushed_centrifuged_blue_topaz.json │ │ │ ├── crushed_centrifuged_brown_limonite.json │ │ │ ├── crushed_centrifuged_calcite.json │ │ │ ├── crushed_centrifuged_cassiterite.json │ │ │ ├── crushed_centrifuged_chalcopyrite.json │ │ │ ├── crushed_centrifuged_cinnabar.json │ │ │ ├── crushed_centrifuged_coal.json │ │ │ ├── crushed_centrifuged_cobaltite.json │ │ │ ├── crushed_centrifuged_cooperite.json │ │ │ ├── crushed_centrifuged_copper.json │ │ │ ├── crushed_centrifuged_diamond.json │ │ │ ├── crushed_centrifuged_emerald.json │ │ │ ├── crushed_centrifuged_galena.json │ │ │ ├── crushed_centrifuged_garnierite.json │ │ │ ├── crushed_centrifuged_glauconite.json │ │ │ ├── crushed_centrifuged_gold.json │ │ │ ├── crushed_centrifuged_graphite.json │ │ │ ├── crushed_centrifuged_green_sapphire.json │ │ │ ├── crushed_centrifuged_grossular.json │ │ │ ├── crushed_centrifuged_ilmenite.json │ │ │ ├── crushed_centrifuged_iridium.json │ │ │ ├── crushed_centrifuged_iron.json │ │ │ ├── crushed_centrifuged_lapis.json │ │ │ ├── crushed_centrifuged_lead.json │ │ │ ├── crushed_centrifuged_lepidolite.json │ │ │ ├── crushed_centrifuged_lignite_coal.json │ │ │ ├── crushed_centrifuged_lithium.json │ │ │ ├── crushed_centrifuged_magnesite.json │ │ │ ├── crushed_centrifuged_magnetite.json │ │ │ ├── crushed_centrifuged_malachite.json │ │ │ ├── crushed_centrifuged_manganese.json │ │ │ ├── crushed_centrifuged_molybdenite.json │ │ │ ├── crushed_centrifuged_molybdenum.json │ │ │ ├── crushed_centrifuged_naquadah.json │ │ │ ├── crushed_centrifuged_naquadah_enriched.json │ │ │ ├── crushed_centrifuged_neodymium.json │ │ │ ├── crushed_centrifuged_nether_quartz.json │ │ │ ├── crushed_centrifuged_nickel.json │ │ │ ├── crushed_centrifuged_oilsands.json │ │ │ ├── crushed_centrifuged_olivine.json │ │ │ ├── crushed_centrifuged_opal.json │ │ │ ├── crushed_centrifuged_palladium.json │ │ │ ├── crushed_centrifuged_pentlandite.json │ │ │ ├── crushed_centrifuged_phosphate.json │ │ │ ├── crushed_centrifuged_phosphorus.json │ │ │ ├── crushed_centrifuged_pitchblende.json │ │ │ ├── crushed_centrifuged_platinum.json │ │ │ ├── crushed_centrifuged_pyrite.json │ │ │ ├── crushed_centrifuged_pyrolusite.json │ │ │ ├── crushed_centrifuged_pyrope.json │ │ │ ├── crushed_centrifuged_quartzite.json │ │ │ ├── crushed_centrifuged_red_garnet.json │ │ │ ├── crushed_centrifuged_redstone.json │ │ │ ├── crushed_centrifuged_rock_salt.json │ │ │ ├── crushed_centrifuged_ruby.json │ │ │ ├── crushed_centrifuged_salt.json │ │ │ ├── crushed_centrifuged_saltpeter.json │ │ │ ├── crushed_centrifuged_scheelite.json │ │ │ ├── crushed_centrifuged_silver.json │ │ │ ├── crushed_centrifuged_soapstone.json │ │ │ ├── crushed_centrifuged_spessartine.json │ │ │ ├── crushed_centrifuged_sphalerite.json │ │ │ ├── crushed_centrifuged_spodumene.json │ │ │ ├── crushed_centrifuged_stibnite.json │ │ │ ├── crushed_centrifuged_sulfur.json │ │ │ ├── crushed_centrifuged_talc.json │ │ │ ├── crushed_centrifuged_tantalite.json │ │ │ ├── crushed_centrifuged_tanzanite.json │ │ │ ├── crushed_centrifuged_tetrahedrite.json │ │ │ ├── crushed_centrifuged_thorium.json │ │ │ ├── crushed_centrifuged_tin.json │ │ │ ├── crushed_centrifuged_topaz.json │ │ │ ├── crushed_centrifuged_tungstate.json │ │ │ ├── crushed_centrifuged_uraninite.json │ │ │ ├── crushed_centrifuged_uranium_238.json │ │ │ ├── crushed_centrifuged_uvarovite.json │ │ │ ├── crushed_centrifuged_vanadium_magnetite.json │ │ │ ├── crushed_centrifuged_wulfenite.json │ │ │ ├── crushed_centrifuged_yellow_garnet.json │ │ │ ├── crushed_centrifuged_yellow_limonite.json │ │ │ ├── crushed_centrifuged_zinc.json │ │ │ ├── crushed_chalcopyrite.json │ │ │ ├── crushed_cinnabar.json │ │ │ ├── crushed_coal.json │ │ │ ├── crushed_cobaltite.json │ │ │ ├── crushed_cooperite.json │ │ │ ├── crushed_copper.json │ │ │ ├── crushed_diamond.json │ │ │ ├── crushed_emerald.json │ │ │ ├── crushed_galena.json │ │ │ ├── crushed_garnierite.json │ │ │ ├── crushed_glauconite.json │ │ │ ├── crushed_gold.json │ │ │ ├── crushed_graphite.json │ │ │ ├── crushed_green_sapphire.json │ │ │ ├── crushed_grossular.json │ │ │ ├── crushed_ilmenite.json │ │ │ ├── crushed_iridium.json │ │ │ ├── crushed_iron.json │ │ │ ├── crushed_lapis.json │ │ │ ├── crushed_lead.json │ │ │ ├── crushed_lepidolite.json │ │ │ ├── crushed_lignite_coal.json │ │ │ ├── crushed_lithium.json │ │ │ ├── crushed_magnesite.json │ │ │ ├── crushed_magnetite.json │ │ │ ├── crushed_malachite.json │ │ │ ├── crushed_manganese.json │ │ │ ├── crushed_molybdenite.json │ │ │ ├── crushed_molybdenum.json │ │ │ ├── crushed_naquadah.json │ │ │ ├── crushed_naquadah_enriched.json │ │ │ ├── crushed_neodymium.json │ │ │ ├── crushed_nether_quartz.json │ │ │ ├── crushed_nickel.json │ │ │ ├── crushed_oilsands.json │ │ │ ├── crushed_olivine.json │ │ │ ├── crushed_opal.json │ │ │ ├── crushed_palladium.json │ │ │ ├── crushed_pentlandite.json │ │ │ ├── crushed_phosphate.json │ │ │ ├── crushed_phosphorus.json │ │ │ ├── crushed_pitchblende.json │ │ │ ├── crushed_platinum.json │ │ │ ├── crushed_purified_almandine.json │ │ │ ├── crushed_purified_aluminium.json │ │ │ ├── crushed_purified_amethyst.json │ │ │ ├── crushed_purified_andradite.json │ │ │ ├── crushed_purified_banded_iron.json │ │ │ ├── crushed_purified_barite.json │ │ │ ├── crushed_purified_bastnasite.json │ │ │ ├── crushed_purified_bauxite.json │ │ │ ├── crushed_purified_bentonite.json │ │ │ ├── crushed_purified_beryllium.json │ │ │ ├── crushed_purified_bismuth.json │ │ │ ├── crushed_purified_blue_sapphire.json │ │ │ ├── crushed_purified_blue_topaz.json │ │ │ ├── crushed_purified_brown_limonite.json │ │ │ ├── crushed_purified_calcite.json │ │ │ ├── crushed_purified_cassiterite.json │ │ │ ├── crushed_purified_chalcopyrite.json │ │ │ ├── crushed_purified_cinnabar.json │ │ │ ├── crushed_purified_coal.json │ │ │ ├── crushed_purified_cobaltite.json │ │ │ ├── crushed_purified_cooperite.json │ │ │ ├── crushed_purified_copper.json │ │ │ ├── crushed_purified_diamond.json │ │ │ ├── crushed_purified_emerald.json │ │ │ ├── crushed_purified_galena.json │ │ │ ├── crushed_purified_garnierite.json │ │ │ ├── crushed_purified_glauconite.json │ │ │ ├── crushed_purified_gold.json │ │ │ ├── crushed_purified_graphite.json │ │ │ ├── crushed_purified_green_sapphire.json │ │ │ ├── crushed_purified_grossular.json │ │ │ ├── crushed_purified_ilmenite.json │ │ │ ├── crushed_purified_iridium.json │ │ │ ├── crushed_purified_iron.json │ │ │ ├── crushed_purified_lapis.json │ │ │ ├── crushed_purified_lead.json │ │ │ ├── crushed_purified_lepidolite.json │ │ │ ├── crushed_purified_lignite_coal.json │ │ │ ├── crushed_purified_lithium.json │ │ │ ├── crushed_purified_magnesite.json │ │ │ ├── crushed_purified_magnetite.json │ │ │ ├── crushed_purified_malachite.json │ │ │ ├── crushed_purified_manganese.json │ │ │ ├── crushed_purified_molybdenite.json │ │ │ ├── crushed_purified_molybdenum.json │ │ │ ├── crushed_purified_naquadah.json │ │ │ ├── crushed_purified_naquadah_enriched.json │ │ │ ├── crushed_purified_neodymium.json │ │ │ ├── crushed_purified_nether_quartz.json │ │ │ ├── crushed_purified_nickel.json │ │ │ ├── crushed_purified_oilsands.json │ │ │ ├── crushed_purified_olivine.json │ │ │ ├── crushed_purified_opal.json │ │ │ ├── crushed_purified_palladium.json │ │ │ ├── crushed_purified_pentlandite.json │ │ │ ├── crushed_purified_phosphate.json │ │ │ ├── crushed_purified_phosphorus.json │ │ │ ├── crushed_purified_pitchblende.json │ │ │ ├── crushed_purified_platinum.json │ │ │ ├── crushed_purified_pyrite.json │ │ │ ├── crushed_purified_pyrolusite.json │ │ │ ├── crushed_purified_pyrope.json │ │ │ ├── crushed_purified_quartzite.json │ │ │ ├── crushed_purified_red_garnet.json │ │ │ ├── crushed_purified_redstone.json │ │ │ ├── crushed_purified_rock_salt.json │ │ │ ├── crushed_purified_ruby.json │ │ │ ├── crushed_purified_salt.json │ │ │ ├── crushed_purified_saltpeter.json │ │ │ ├── crushed_purified_scheelite.json │ │ │ ├── crushed_purified_silver.json │ │ │ ├── crushed_purified_soapstone.json │ │ │ ├── crushed_purified_spessartine.json │ │ │ ├── crushed_purified_sphalerite.json │ │ │ ├── crushed_purified_spodumene.json │ │ │ ├── crushed_purified_stibnite.json │ │ │ ├── crushed_purified_sulfur.json │ │ │ ├── crushed_purified_talc.json │ │ │ ├── crushed_purified_tantalite.json │ │ │ ├── crushed_purified_tanzanite.json │ │ │ ├── crushed_purified_tetrahedrite.json │ │ │ ├── crushed_purified_thorium.json │ │ │ ├── crushed_purified_tin.json │ │ │ ├── crushed_purified_topaz.json │ │ │ ├── crushed_purified_tungstate.json │ │ │ ├── crushed_purified_uraninite.json │ │ │ ├── crushed_purified_uranium_238.json │ │ │ ├── crushed_purified_uvarovite.json │ │ │ ├── crushed_purified_vanadium_magnetite.json │ │ │ ├── crushed_purified_wulfenite.json │ │ │ ├── crushed_purified_yellow_garnet.json │ │ │ ├── crushed_purified_yellow_limonite.json │ │ │ ├── crushed_purified_zinc.json │ │ │ ├── crushed_pyrite.json │ │ │ ├── crushed_pyrolusite.json │ │ │ ├── crushed_pyrope.json │ │ │ ├── crushed_quartzite.json │ │ │ ├── crushed_red_garnet.json │ │ │ ├── crushed_redstone.json │ │ │ ├── crushed_rock_salt.json │ │ │ ├── crushed_ruby.json │ │ │ ├── crushed_salt.json │ │ │ ├── crushed_saltpeter.json │ │ │ ├── crushed_scheelite.json │ │ │ ├── crushed_silver.json │ │ │ ├── crushed_soapstone.json │ │ │ ├── crushed_spessartine.json │ │ │ ├── crushed_sphalerite.json │ │ │ ├── crushed_spodumene.json │ │ │ ├── crushed_stibnite.json │ │ │ ├── crushed_sulfur.json │ │ │ ├── crushed_talc.json │ │ │ ├── crushed_tantalite.json │ │ │ ├── crushed_tanzanite.json │ │ │ ├── crushed_tetrahedrite.json │ │ │ ├── crushed_thorium.json │ │ │ ├── crushed_tin.json │ │ │ ├── crushed_topaz.json │ │ │ ├── crushed_tungstate.json │ │ │ ├── crushed_uraninite.json │ │ │ ├── crushed_uranium_238.json │ │ │ ├── crushed_uvarovite.json │ │ │ ├── crushed_vanadium_magnetite.json │ │ │ ├── crushed_wulfenite.json │ │ │ ├── crushed_yellow_garnet.json │ │ │ ├── crushed_yellow_limonite.json │ │ │ ├── crushed_zinc.json │ │ │ ├── data_stick.json │ │ │ ├── debug_scanner.json │ │ │ ├── diamond_grind_head.json │ │ │ ├── diamond_ore_andesite.json │ │ │ ├── diamond_ore_basalt.json │ │ │ ├── diamond_ore_diorite.json │ │ │ ├── diamond_ore_endstone.json │ │ │ ├── diamond_ore_granite.json │ │ │ ├── diamond_ore_granite_black.json │ │ │ ├── diamond_ore_granite_red.json │ │ │ ├── diamond_ore_marble.json │ │ │ ├── diamond_ore_netherrack.json │ │ │ ├── diamond_ore_sand.json │ │ │ ├── diamond_ore_sand_red.json │ │ │ ├── diamond_ore_sandstone.json │ │ │ ├── diamond_ore_small_andesite.json │ │ │ ├── diamond_ore_small_basalt.json │ │ │ ├── diamond_ore_small_diorite.json │ │ │ ├── diamond_ore_small_endstone.json │ │ │ ├── diamond_ore_small_granite.json │ │ │ ├── diamond_ore_small_granite_black.json │ │ │ ├── diamond_ore_small_granite_red.json │ │ │ ├── diamond_ore_small_marble.json │ │ │ ├── diamond_ore_small_netherrack.json │ │ │ ├── diamond_ore_small_sand.json │ │ │ ├── diamond_ore_small_sand_red.json │ │ │ ├── diamond_ore_small_sandstone.json │ │ │ ├── diamond_ore_small_stone.json │ │ │ ├── diamond_ore_stone.json │ │ │ ├── diamond_saw_blade.json │ │ │ ├── drill.json │ │ │ ├── drop_aluminium.json │ │ │ ├── drop_copper.json │ │ │ ├── drop_emerald.json │ │ │ ├── drop_gold.json │ │ │ ├── drop_iridium.json │ │ │ ├── drop_iron.json │ │ │ ├── drop_lead.json │ │ │ ├── drop_manganese.json │ │ │ ├── drop_naquadah.json │ │ │ ├── drop_nickel.json │ │ │ ├── drop_oil.json │ │ │ ├── drop_osmium.json │ │ │ ├── drop_platinum.json │ │ │ ├── drop_silver.json │ │ │ ├── drop_thorium.json │ │ │ ├── drop_tin.json │ │ │ ├── drop_titanium.json │ │ │ ├── drop_tungsten.json │ │ │ ├── drop_uranite.json │ │ │ ├── drop_uranium.json │ │ │ ├── drop_uua.json │ │ │ ├── drop_uum.json │ │ │ ├── drop_zinc.json │ │ │ ├── dust_almandine.json │ │ │ ├── dust_aluminium.json │ │ │ ├── dust_americium.json │ │ │ ├── dust_amethyst.json │ │ │ ├── dust_andradite.json │ │ │ ├── dust_annealed_copper.json │ │ │ ├── dust_antimony.json │ │ │ ├── dust_antimony_trioxide.json │ │ │ ├── dust_arsenic.json │ │ │ ├── dust_arsenic_trioxide.json │ │ │ ├── dust_ash.json │ │ │ ├── dust_banded_iron.json │ │ │ ├── dust_barite.json │ │ │ ├── dust_barium.json │ │ │ ├── dust_basalt.json │ │ │ ├── dust_bastnasite.json │ │ │ ├── dust_battery_alloy.json │ │ │ ├── dust_bauxite.json │ │ │ ├── dust_bentonite.json │ │ │ ├── dust_beryllium.json │ │ │ ├── dust_biotite.json │ │ │ ├── dust_bismuth.json │ │ │ ├── dust_bismuth_bronze.json │ │ │ ├── dust_black_bronze.json │ │ │ ├── dust_black_granite.json │ │ │ ├── dust_black_steel.json │ │ │ ├── dust_blaze.json │ │ │ ├── dust_blue_sapphire.json │ │ │ ├── dust_blue_steel.json │ │ │ ├── dust_blue_topaz.json │ │ │ ├── dust_boron.json │ │ │ ├── dust_brass.json │ │ │ ├── dust_brick.json │ │ │ ├── dust_bronze.json │ │ │ ├── dust_brown_limonite.json │ │ │ ├── dust_cadmium.json │ │ │ ├── dust_caesium.json │ │ │ ├── dust_calcite.json │ │ │ ├── dust_calcium.json │ │ │ ├── dust_carbon.json │ │ │ ├── dust_cassiterite.json │ │ │ ├── dust_cerium.json │ │ │ ├── dust_chalcopyrite.json │ │ │ ├── dust_charcoal.json │ │ │ ├── dust_chrome.json │ │ │ ├── dust_cinnabar.json │ │ │ ├── dust_clay.json │ │ │ ├── dust_coal.json │ │ │ ├── dust_coal_coke.json │ │ │ ├── dust_cobalt.json │ │ │ ├── dust_cobalt_brass.json │ │ │ ├── dust_cobalt_oxide.json │ │ │ ├── dust_cobaltite.json │ │ │ ├── dust_concrete.json │ │ │ ├── dust_cooperite.json │ │ │ ├── dust_copper.json │ │ │ ├── dust_cupric_oxide.json │ │ │ ├── dust_cupronickel.json │ │ │ ├── dust_dark_ash.json │ │ │ ├── dust_diamond.json │ │ │ ├── dust_dilithium.json │ │ │ ├── dust_duranium.json │ │ │ ├── dust_dysprosium.json │ │ │ ├── dust_electrum.json │ │ │ ├── dust_emerald.json │ │ │ ├── dust_endereye.json │ │ │ ├── dust_enderpearl.json │ │ │ ├── dust_endstone.json │ │ │ ├── dust_epoxid.json │ │ │ ├── dust_europium.json │ │ │ ├── dust_ferrite_mixture.json │ │ │ ├── dust_ferrosilite.json │ │ │ ├── dust_fiber_reinforced_epoxy_resin.json │ │ │ ├── dust_fireclay.json │ │ │ ├── dust_flint.json │ │ │ ├── dust_galena.json │ │ │ ├── dust_gallium.json │ │ │ ├── dust_gallium_arsenide.json │ │ │ ├── dust_garnierite.json │ │ │ ├── dust_glass.json │ │ │ ├── dust_glauconite.json │ │ │ ├── dust_gold.json │ │ │ ├── dust_graphene.json │ │ │ ├── dust_graphite.json │ │ │ ├── dust_green_sapphire.json │ │ │ ├── dust_grossular.json │ │ │ ├── dust_hsse.json │ │ │ ├── dust_hssg.json │ │ │ ├── dust_hsss.json │ │ │ ├── dust_ilmenite.json │ │ │ ├── dust_impure_almandine.json │ │ │ ├── dust_impure_aluminium.json │ │ │ ├── dust_impure_amethyst.json │ │ │ ├── dust_impure_andradite.json │ │ │ ├── dust_impure_banded_iron.json │ │ │ ├── dust_impure_barite.json │ │ │ ├── dust_impure_bastnasite.json │ │ │ ├── dust_impure_bauxite.json │ │ │ ├── dust_impure_bentonite.json │ │ │ ├── dust_impure_beryllium.json │ │ │ ├── dust_impure_bismuth.json │ │ │ ├── dust_impure_blue_sapphire.json │ │ │ ├── dust_impure_blue_topaz.json │ │ │ ├── dust_impure_brown_limonite.json │ │ │ ├── dust_impure_calcite.json │ │ │ ├── dust_impure_cassiterite.json │ │ │ ├── dust_impure_chalcopyrite.json │ │ │ ├── dust_impure_cinnabar.json │ │ │ ├── dust_impure_coal.json │ │ │ ├── dust_impure_cobaltite.json │ │ │ ├── dust_impure_cooperite.json │ │ │ ├── dust_impure_copper.json │ │ │ ├── dust_impure_diamond.json │ │ │ ├── dust_impure_emerald.json │ │ │ ├── dust_impure_galena.json │ │ │ ├── dust_impure_garnierite.json │ │ │ ├── dust_impure_glauconite.json │ │ │ ├── dust_impure_gold.json │ │ │ ├── dust_impure_graphite.json │ │ │ ├── dust_impure_green_sapphire.json │ │ │ ├── dust_impure_grossular.json │ │ │ ├── dust_impure_ilmenite.json │ │ │ ├── dust_impure_iridium.json │ │ │ ├── dust_impure_iron.json │ │ │ ├── dust_impure_lapis.json │ │ │ ├── dust_impure_lead.json │ │ │ ├── dust_impure_lepidolite.json │ │ │ ├── dust_impure_lignite_coal.json │ │ │ ├── dust_impure_lithium.json │ │ │ ├── dust_impure_magnesite.json │ │ │ ├── dust_impure_magnetite.json │ │ │ ├── dust_impure_malachite.json │ │ │ ├── dust_impure_manganese.json │ │ │ ├── dust_impure_molybdenite.json │ │ │ ├── dust_impure_molybdenum.json │ │ │ ├── dust_impure_naquadah.json │ │ │ ├── dust_impure_naquadah_enriched.json │ │ │ ├── dust_impure_neodymium.json │ │ │ ├── dust_impure_nether_quartz.json │ │ │ ├── dust_impure_nickel.json │ │ │ ├── dust_impure_oilsands.json │ │ │ ├── dust_impure_olivine.json │ │ │ ├── dust_impure_opal.json │ │ │ ├── dust_impure_palladium.json │ │ │ ├── dust_impure_pentlandite.json │ │ │ ├── dust_impure_phosphate.json │ │ │ ├── dust_impure_phosphorus.json │ │ │ ├── dust_impure_pitchblende.json │ │ │ ├── dust_impure_platinum.json │ │ │ ├── dust_impure_pyrite.json │ │ │ ├── dust_impure_pyrolusite.json │ │ │ ├── dust_impure_pyrope.json │ │ │ ├── dust_impure_quartzite.json │ │ │ ├── dust_impure_red_garnet.json │ │ │ ├── dust_impure_redstone.json │ │ │ ├── dust_impure_rock_salt.json │ │ │ ├── dust_impure_ruby.json │ │ │ ├── dust_impure_salt.json │ │ │ ├── dust_impure_saltpeter.json │ │ │ ├── dust_impure_scheelite.json │ │ │ ├── dust_impure_silver.json │ │ │ ├── dust_impure_soapstone.json │ │ │ ├── dust_impure_spessartine.json │ │ │ ├── dust_impure_sphalerite.json │ │ │ ├── dust_impure_spodumene.json │ │ │ ├── dust_impure_stibnite.json │ │ │ ├── dust_impure_stone.json │ │ │ ├── dust_impure_sulfur.json │ │ │ ├── dust_impure_talc.json │ │ │ ├── dust_impure_tantalite.json │ │ │ ├── dust_impure_tanzanite.json │ │ │ ├── dust_impure_tetrahedrite.json │ │ │ ├── dust_impure_thorium.json │ │ │ ├── dust_impure_tin.json │ │ │ ├── dust_impure_topaz.json │ │ │ ├── dust_impure_tungstate.json │ │ │ ├── dust_impure_uraninite.json │ │ │ ├── dust_impure_uranium_238.json │ │ │ ├── dust_impure_uvarovite.json │ │ │ ├── dust_impure_vanadium_magnetite.json │ │ │ ├── dust_impure_wulfenite.json │ │ │ ├── dust_impure_yellow_garnet.json │ │ │ ├── dust_impure_yellow_limonite.json │ │ │ ├── dust_impure_zinc.json │ │ │ ├── dust_indium.json │ │ │ ├── dust_invar.json │ │ │ ├── dust_iridium.json │ │ │ ├── dust_iridium_sodium_oxide.json │ │ │ ├── dust_iron.json │ │ │ ├── dust_kanthal.json │ │ │ ├── dust_lanthanum.json │ │ │ ├── dust_lapis.json │ │ │ ├── dust_lead.json │ │ │ ├── dust_lepidolite.json │ │ │ ├── dust_lignite_coal.json │ │ │ ├── dust_lignite_coke.json │ │ │ ├── dust_lithium.json │ │ │ ├── dust_lutetium.json │ │ │ ├── dust_magnalium.json │ │ │ ├── dust_magnesia.json │ │ │ ├── dust_magnesite.json │ │ │ ├── dust_magnesium.json │ │ │ ├── dust_magnesiumchloride.json │ │ │ ├── dust_magnetic_iron.json │ │ │ ├── dust_magnetic_neodymium.json │ │ │ ├── dust_magnetic_steel.json │ │ │ ├── dust_magnetite.json │ │ │ ├── dust_malachite.json │ │ │ ├── dust_manganese.json │ │ │ ├── dust_marble.json │ │ │ ├── dust_massicot.json │ │ │ ├── dust_molybdenite.json │ │ │ ├── dust_molybdenum.json │ │ │ ├── dust_naquadah.json │ │ │ ├── dust_naquadah_alloy.json │ │ │ ├── dust_naquadah_enriched.json │ │ │ ├── dust_naquadria.json │ │ │ ├── dust_neodymium.json │ │ │ ├── dust_nether_quartz.json │ │ │ ├── dust_nether_star.json │ │ │ ├── dust_netherrack.json │ │ │ ├── dust_neutronium.json │ │ │ ├── dust_nichrome.json │ │ │ ├── dust_nickel.json │ │ │ ├── dust_nickel_zinc_ferrite.json │ │ │ ├── dust_niobium.json │ │ │ ├── dust_niobium_titanium.json │ │ │ ├── dust_obsidian.json │ │ │ ├── dust_oilsands.json │ │ │ ├── dust_olivine.json │ │ │ ├── dust_opal.json │ │ │ ├── dust_osmiridium.json │ │ │ ├── dust_osmium.json │ │ │ ├── dust_palladium.json │ │ │ ├── dust_pentlandite.json │ │ │ ├── dust_phosphate.json │ │ │ ├── dust_phosphor.json │ │ │ ├── dust_phosphorous_pentoxide.json │ │ │ ├── dust_phosphorus.json │ │ │ ├── dust_pitchblende.json │ │ │ ├── dust_plastic.json │ │ │ ├── dust_platinum.json │ │ │ ├── dust_platinum_group_sludge.json │ │ │ ├── dust_plutonium_241.json │ │ │ ├── dust_plutonium_244.json │ │ │ ├── dust_polycaprolactam.json │ │ │ ├── dust_polydimethylsiloxane.json │ │ │ ├── dust_polyphenylene_sulfide.json │ │ │ ├── dust_polystyrene.json │ │ │ ├── dust_polytetrafluoroethylene.json │ │ │ ├── dust_polyvinyl_chloride.json │ │ │ ├── dust_potash.json │ │ │ ├── dust_potassium.json │ │ │ ├── dust_potassium_feldspar.json │ │ │ ├── dust_pure_almandine.json │ │ │ ├── dust_pure_aluminium.json │ │ │ ├── dust_pure_amethyst.json │ │ │ ├── dust_pure_andradite.json │ │ │ ├── dust_pure_banded_iron.json │ │ │ ├── dust_pure_barite.json │ │ │ ├── dust_pure_bastnasite.json │ │ │ ├── dust_pure_bauxite.json │ │ │ ├── dust_pure_bentonite.json │ │ │ ├── dust_pure_beryllium.json │ │ │ ├── dust_pure_bismuth.json │ │ │ ├── dust_pure_blue_sapphire.json │ │ │ ├── dust_pure_blue_topaz.json │ │ │ ├── dust_pure_brown_limonite.json │ │ │ ├── dust_pure_calcite.json │ │ │ ├── dust_pure_cassiterite.json │ │ │ ├── dust_pure_chalcopyrite.json │ │ │ ├── dust_pure_cinnabar.json │ │ │ ├── dust_pure_coal.json │ │ │ ├── dust_pure_cobaltite.json │ │ │ ├── dust_pure_cooperite.json │ │ │ ├── dust_pure_copper.json │ │ │ ├── dust_pure_diamond.json │ │ │ ├── dust_pure_emerald.json │ │ │ ├── dust_pure_galena.json │ │ │ ├── dust_pure_garnierite.json │ │ │ ├── dust_pure_glauconite.json │ │ │ ├── dust_pure_gold.json │ │ │ ├── dust_pure_graphite.json │ │ │ ├── dust_pure_green_sapphire.json │ │ │ ├── dust_pure_grossular.json │ │ │ ├── dust_pure_ilmenite.json │ │ │ ├── dust_pure_iridium.json │ │ │ ├── dust_pure_iron.json │ │ │ ├── dust_pure_lapis.json │ │ │ ├── dust_pure_lead.json │ │ │ ├── dust_pure_lepidolite.json │ │ │ ├── dust_pure_lignite_coal.json │ │ │ ├── dust_pure_lithium.json │ │ │ ├── dust_pure_magnesite.json │ │ │ ├── dust_pure_magnetite.json │ │ │ ├── dust_pure_malachite.json │ │ │ ├── dust_pure_manganese.json │ │ │ ├── dust_pure_molybdenite.json │ │ │ ├── dust_pure_molybdenum.json │ │ │ ├── dust_pure_naquadah.json │ │ │ ├── dust_pure_naquadah_enriched.json │ │ │ ├── dust_pure_neodymium.json │ │ │ ├── dust_pure_nether_quartz.json │ │ │ ├── dust_pure_nickel.json │ │ │ ├── dust_pure_oilsands.json │ │ │ ├── dust_pure_olivine.json │ │ │ ├── dust_pure_opal.json │ │ │ ├── dust_pure_palladium.json │ │ │ ├── dust_pure_pentlandite.json │ │ │ ├── dust_pure_phosphate.json │ │ │ ├── dust_pure_phosphorus.json │ │ │ ├── dust_pure_pitchblende.json │ │ │ ├── dust_pure_platinum.json │ │ │ ├── dust_pure_pyrite.json │ │ │ ├── dust_pure_pyrolusite.json │ │ │ ├── dust_pure_pyrope.json │ │ │ ├── dust_pure_quartzite.json │ │ │ ├── dust_pure_red_garnet.json │ │ │ ├── dust_pure_redstone.json │ │ │ ├── dust_pure_rock_salt.json │ │ │ ├── dust_pure_ruby.json │ │ │ ├── dust_pure_salt.json │ │ │ ├── dust_pure_saltpeter.json │ │ │ ├── dust_pure_scheelite.json │ │ │ ├── dust_pure_silver.json │ │ │ ├── dust_pure_soapstone.json │ │ │ ├── dust_pure_spessartine.json │ │ │ ├── dust_pure_sphalerite.json │ │ │ ├── dust_pure_spodumene.json │ │ │ ├── dust_pure_stibnite.json │ │ │ ├── dust_pure_sulfur.json │ │ │ ├── dust_pure_talc.json │ │ │ ├── dust_pure_tantalite.json │ │ │ ├── dust_pure_tanzanite.json │ │ │ ├── dust_pure_tetrahedrite.json │ │ │ ├── dust_pure_thorium.json │ │ │ ├── dust_pure_tin.json │ │ │ ├── dust_pure_topaz.json │ │ │ ├── dust_pure_tungstate.json │ │ │ ├── dust_pure_uraninite.json │ │ │ ├── dust_pure_uranium_238.json │ │ │ ├── dust_pure_uvarovite.json │ │ │ ├── dust_pure_vanadium_magnetite.json │ │ │ ├── dust_pure_wulfenite.json │ │ │ ├── dust_pure_yellow_garnet.json │ │ │ ├── dust_pure_yellow_limonite.json │ │ │ ├── dust_pure_zinc.json │ │ │ ├── dust_pyrite.json │ │ │ ├── dust_pyrolusite.json │ │ │ ├── dust_pyrope.json │ │ │ ├── dust_quartzite.json │ │ │ ├── dust_quicklime.json │ │ │ ├── dust_rare_earth.json │ │ │ ├── dust_raw_rubber.json │ │ │ ├── dust_raw_styrene_butadiene_rubber.json │ │ │ ├── dust_red_alloy.json │ │ │ ├── dust_red_garnet.json │ │ │ ├── dust_red_granite.json │ │ │ ├── dust_red_steel.json │ │ │ ├── dust_rock_salt.json │ │ │ ├── dust_rose_gold.json │ │ │ ├── dust_rubber.json │ │ │ ├── dust_ruby.json │ │ │ ├── dust_rutile.json │ │ │ ├── dust_salt.json │ │ │ ├── dust_saltpeter.json │ │ │ ├── dust_scheelite.json │ │ │ ├── dust_silicon.json │ │ │ ├── dust_silicon_dioxide.json │ │ │ ├── dust_silicone.json │ │ │ ├── dust_silver.json │ │ │ ├── dust_small_almandine.json │ │ │ ├── dust_small_aluminium.json │ │ │ ├── dust_small_americium.json │ │ │ ├── dust_small_amethyst.json │ │ │ ├── dust_small_andradite.json │ │ │ ├── dust_small_annealed_copper.json │ │ │ ├── dust_small_antimony.json │ │ │ ├── dust_small_antimony_trioxide.json │ │ │ ├── dust_small_arsenic.json │ │ │ ├── dust_small_arsenic_trioxide.json │ │ │ ├── dust_small_ash.json │ │ │ ├── dust_small_banded_iron.json │ │ │ ├── dust_small_barite.json │ │ │ ├── dust_small_barium.json │ │ │ ├── dust_small_basalt.json │ │ │ ├── dust_small_bastnasite.json │ │ │ ├── dust_small_battery_alloy.json │ │ │ ├── dust_small_bauxite.json │ │ │ ├── dust_small_bentonite.json │ │ │ ├── dust_small_beryllium.json │ │ │ ├── dust_small_biotite.json │ │ │ ├── dust_small_bismuth.json │ │ │ ├── dust_small_bismuth_bronze.json │ │ │ ├── dust_small_black_bronze.json │ │ │ ├── dust_small_black_granite.json │ │ │ ├── dust_small_black_steel.json │ │ │ ├── dust_small_blaze.json │ │ │ ├── dust_small_blue_sapphire.json │ │ │ ├── dust_small_blue_steel.json │ │ │ ├── dust_small_blue_topaz.json │ │ │ ├── dust_small_boron.json │ │ │ ├── dust_small_brass.json │ │ │ ├── dust_small_brick.json │ │ │ ├── dust_small_bronze.json │ │ │ ├── dust_small_brown_limonite.json │ │ │ ├── dust_small_cadmium.json │ │ │ ├── dust_small_caesium.json │ │ │ ├── dust_small_calcite.json │ │ │ ├── dust_small_calcium.json │ │ │ ├── dust_small_carbon.json │ │ │ ├── dust_small_cassiterite.json │ │ │ ├── dust_small_cerium.json │ │ │ ├── dust_small_chalcopyrite.json │ │ │ ├── dust_small_charcoal.json │ │ │ ├── dust_small_chrome.json │ │ │ ├── dust_small_cinnabar.json │ │ │ ├── dust_small_clay.json │ │ │ ├── dust_small_coal.json │ │ │ ├── dust_small_coal_coke.json │ │ │ ├── dust_small_cobalt.json │ │ │ ├── dust_small_cobalt_brass.json │ │ │ ├── dust_small_cobalt_oxide.json │ │ │ ├── dust_small_cobaltite.json │ │ │ ├── dust_small_concrete.json │ │ │ ├── dust_small_cooperite.json │ │ │ ├── dust_small_copper.json │ │ │ ├── dust_small_cupric_oxide.json │ │ │ ├── dust_small_cupronickel.json │ │ │ ├── dust_small_dark_ash.json │ │ │ ├── dust_small_diamond.json │ │ │ ├── dust_small_dilithium.json │ │ │ ├── dust_small_duranium.json │ │ │ ├── dust_small_dysprosium.json │ │ │ ├── dust_small_electrum.json │ │ │ ├── dust_small_emerald.json │ │ │ ├── dust_small_endereye.json │ │ │ ├── dust_small_enderpearl.json │ │ │ ├── dust_small_endstone.json │ │ │ ├── dust_small_epoxid.json │ │ │ ├── dust_small_europium.json │ │ │ ├── dust_small_ferrite_mixture.json │ │ │ ├── dust_small_ferrosilite.json │ │ │ ├── dust_small_fiber_reinforced_epoxy_resin.json │ │ │ ├── dust_small_fireclay.json │ │ │ ├── dust_small_flint.json │ │ │ ├── dust_small_galena.json │ │ │ ├── dust_small_gallium.json │ │ │ ├── dust_small_gallium_arsenide.json │ │ │ ├── dust_small_garnierite.json │ │ │ ├── dust_small_glass.json │ │ │ ├── dust_small_glauconite.json │ │ │ ├── dust_small_glowstone.json │ │ │ ├── dust_small_gold.json │ │ │ ├── dust_small_graphene.json │ │ │ ├── dust_small_graphite.json │ │ │ ├── dust_small_green_sapphire.json │ │ │ ├── dust_small_grossular.json │ │ │ ├── dust_small_hsse.json │ │ │ ├── dust_small_hssg.json │ │ │ ├── dust_small_hsss.json │ │ │ ├── dust_small_ilmenite.json │ │ │ ├── dust_small_indium.json │ │ │ ├── dust_small_invar.json │ │ │ ├── dust_small_iridium.json │ │ │ ├── dust_small_iridium_sodium_oxide.json │ │ │ ├── dust_small_iron.json │ │ │ ├── dust_small_kanthal.json │ │ │ ├── dust_small_lanthanum.json │ │ │ ├── dust_small_lapis.json │ │ │ ├── dust_small_lead.json │ │ │ ├── dust_small_lepidolite.json │ │ │ ├── dust_small_lignite_coal.json │ │ │ ├── dust_small_lignite_coke.json │ │ │ ├── dust_small_lithium.json │ │ │ ├── dust_small_lutetium.json │ │ │ ├── dust_small_magnalium.json │ │ │ ├── dust_small_magnesia.json │ │ │ ├── dust_small_magnesite.json │ │ │ ├── dust_small_magnesium.json │ │ │ ├── dust_small_magnesiumchloride.json │ │ │ ├── dust_small_magnetic_iron.json │ │ │ ├── dust_small_magnetic_neodymium.json │ │ │ ├── dust_small_magnetic_steel.json │ │ │ ├── dust_small_magnetite.json │ │ │ ├── dust_small_malachite.json │ │ │ ├── dust_small_manganese.json │ │ │ ├── dust_small_marble.json │ │ │ ├── dust_small_massicot.json │ │ │ ├── dust_small_molybdenite.json │ │ │ ├── dust_small_molybdenum.json │ │ │ ├── dust_small_naquadah.json │ │ │ ├── dust_small_naquadah_alloy.json │ │ │ ├── dust_small_naquadah_enriched.json │ │ │ ├── dust_small_naquadria.json │ │ │ ├── dust_small_neodymium.json │ │ │ ├── dust_small_nether_quartz.json │ │ │ ├── dust_small_nether_star.json │ │ │ ├── dust_small_netherrack.json │ │ │ ├── dust_small_neutronium.json │ │ │ ├── dust_small_nichrome.json │ │ │ ├── dust_small_nickel.json │ │ │ ├── dust_small_nickel_zinc_ferrite.json │ │ │ ├── dust_small_niobium.json │ │ │ ├── dust_small_niobium_titanium.json │ │ │ ├── dust_small_obsidian.json │ │ │ ├── dust_small_oilsands.json │ │ │ ├── dust_small_olivine.json │ │ │ ├── dust_small_opal.json │ │ │ ├── dust_small_osmiridium.json │ │ │ ├── dust_small_osmium.json │ │ │ ├── dust_small_palladium.json │ │ │ ├── dust_small_pentlandite.json │ │ │ ├── dust_small_phosphate.json │ │ │ ├── dust_small_phosphor.json │ │ │ ├── dust_small_phosphorous_pentoxide.json │ │ │ ├── dust_small_phosphorus.json │ │ │ ├── dust_small_pitchblende.json │ │ │ ├── dust_small_plastic.json │ │ │ ├── dust_small_platinum.json │ │ │ ├── dust_small_platinum_group_sludge.json │ │ │ ├── dust_small_plutonium_241.json │ │ │ ├── dust_small_plutonium_244.json │ │ │ ├── dust_small_polycaprolactam.json │ │ │ ├── dust_small_polydimethylsiloxane.json │ │ │ ├── dust_small_polyphenylene_sulfide.json │ │ │ ├── dust_small_polystyrene.json │ │ │ ├── dust_small_polytetrafluoroethylene.json │ │ │ ├── dust_small_polyvinyl_chloride.json │ │ │ ├── dust_small_potash.json │ │ │ ├── dust_small_potassium.json │ │ │ ├── dust_small_potassium_feldspar.json │ │ │ ├── dust_small_pyrite.json │ │ │ ├── dust_small_pyrolusite.json │ │ │ ├── dust_small_pyrope.json │ │ │ ├── dust_small_quartzite.json │ │ │ ├── dust_small_quicklime.json │ │ │ ├── dust_small_rare_earth.json │ │ │ ├── dust_small_raw_rubber.json │ │ │ ├── dust_small_raw_styrene_butadiene_rubber.json │ │ │ ├── dust_small_red_alloy.json │ │ │ ├── dust_small_red_garnet.json │ │ │ ├── dust_small_red_granite.json │ │ │ ├── dust_small_red_steel.json │ │ │ ├── dust_small_redstone.json │ │ │ ├── dust_small_rock_salt.json │ │ │ ├── dust_small_rose_gold.json │ │ │ ├── dust_small_rubber.json │ │ │ ├── dust_small_ruby.json │ │ │ ├── dust_small_rutile.json │ │ │ ├── dust_small_salt.json │ │ │ ├── dust_small_saltpeter.json │ │ │ ├── dust_small_scheelite.json │ │ │ ├── dust_small_silicon.json │ │ │ ├── dust_small_silicon_dioxide.json │ │ │ ├── dust_small_silicone.json │ │ │ ├── dust_small_silver.json │ │ │ ├── dust_small_soapstone.json │ │ │ ├── dust_small_soda_ash.json │ │ │ ├── dust_small_sodium.json │ │ │ ├── dust_small_sodium_bisulfate.json │ │ │ ├── dust_small_sodium_hydroxide.json │ │ │ ├── dust_small_sodium_sulfide.json │ │ │ ├── dust_small_soldering_alloy.json │ │ │ ├── dust_small_spessartine.json │ │ │ ├── dust_small_sphalerite.json │ │ │ ├── dust_small_spodumene.json │ │ │ ├── dust_small_stainless_steel.json │ │ │ ├── dust_small_steel.json │ │ │ ├── dust_small_sterling_silver.json │ │ │ ├── dust_small_stibnite.json │ │ │ ├── dust_small_stone.json │ │ │ ├── dust_small_styrene_butadiene_rubber.json │ │ │ ├── dust_small_sulfur.json │ │ │ ├── dust_small_talc.json │ │ │ ├── dust_small_tantalite.json │ │ │ ├── dust_small_tantalum.json │ │ │ ├── dust_small_tanzanite.json │ │ │ ├── dust_small_tetrahedrite.json │ │ │ ├── dust_small_thorium.json │ │ │ ├── dust_small_tin.json │ │ │ ├── dust_small_titanium.json │ │ │ ├── dust_small_topaz.json │ │ │ ├── dust_small_tritanium.json │ │ │ ├── dust_small_tungstate.json │ │ │ ├── dust_small_tungsten.json │ │ │ ├── dust_small_tungsten_carbide.json │ │ │ ├── dust_small_tungstensteel.json │ │ │ ├── dust_small_ultimet.json │ │ │ ├── dust_small_uraninite.json │ │ │ ├── dust_small_uranium_235.json │ │ │ ├── dust_small_uranium_238.json │ │ │ ├── dust_small_uvarovite.json │ │ │ ├── dust_small_vanadium.json │ │ │ ├── dust_small_vanadium_gallium.json │ │ │ ├── dust_small_vanadium_magnetite.json │ │ │ ├── dust_small_vanadium_steel.json │ │ │ ├── dust_small_vibranium.json │ │ │ ├── dust_small_wood.json │ │ │ ├── dust_small_wrought_iron.json │ │ │ ├── dust_small_wulfenite.json │ │ │ ├── dust_small_yellow_garnet.json │ │ │ ├── dust_small_yellow_limonite.json │ │ │ ├── dust_small_yttrium.json │ │ │ ├── dust_small_yttrium_barium_cuprate.json │ │ │ ├── dust_small_zinc.json │ │ │ ├── dust_soapstone.json │ │ │ ├── dust_soda_ash.json │ │ │ ├── dust_sodium.json │ │ │ ├── dust_sodium_bisulfate.json │ │ │ ├── dust_sodium_hydroxide.json │ │ │ ├── dust_sodium_sulfide.json │ │ │ ├── dust_soldering_alloy.json │ │ │ ├── dust_spessartine.json │ │ │ ├── dust_sphalerite.json │ │ │ ├── dust_spodumene.json │ │ │ ├── dust_stainless_steel.json │ │ │ ├── dust_steel.json │ │ │ ├── dust_sterling_silver.json │ │ │ ├── dust_stibnite.json │ │ │ ├── dust_stone.json │ │ │ ├── dust_styrene_butadiene_rubber.json │ │ │ ├── dust_sulfur.json │ │ │ ├── dust_talc.json │ │ │ ├── dust_tantalite.json │ │ │ ├── dust_tantalum.json │ │ │ ├── dust_tanzanite.json │ │ │ ├── dust_tetrahedrite.json │ │ │ ├── dust_thorium.json │ │ │ ├── dust_tin.json │ │ │ ├── dust_tiny_almandine.json │ │ │ ├── dust_tiny_aluminium.json │ │ │ ├── dust_tiny_americium.json │ │ │ ├── dust_tiny_amethyst.json │ │ │ ├── dust_tiny_andradite.json │ │ │ ├── dust_tiny_annealed_copper.json │ │ │ ├── dust_tiny_antimony.json │ │ │ ├── dust_tiny_antimony_trioxide.json │ │ │ ├── dust_tiny_arsenic.json │ │ │ ├── dust_tiny_arsenic_trioxide.json │ │ │ ├── dust_tiny_ash.json │ │ │ ├── dust_tiny_banded_iron.json │ │ │ ├── dust_tiny_barite.json │ │ │ ├── dust_tiny_barium.json │ │ │ ├── dust_tiny_basalt.json │ │ │ ├── dust_tiny_bastnasite.json │ │ │ ├── dust_tiny_battery_alloy.json │ │ │ ├── dust_tiny_bauxite.json │ │ │ ├── dust_tiny_bentonite.json │ │ │ ├── dust_tiny_beryllium.json │ │ │ ├── dust_tiny_biotite.json │ │ │ ├── dust_tiny_bismuth.json │ │ │ ├── dust_tiny_bismuth_bronze.json │ │ │ ├── dust_tiny_black_bronze.json │ │ │ ├── dust_tiny_black_granite.json │ │ │ ├── dust_tiny_black_steel.json │ │ │ ├── dust_tiny_blaze.json │ │ │ ├── dust_tiny_blue_sapphire.json │ │ │ ├── dust_tiny_blue_steel.json │ │ │ ├── dust_tiny_blue_topaz.json │ │ │ ├── dust_tiny_boron.json │ │ │ ├── dust_tiny_brass.json │ │ │ ├── dust_tiny_brick.json │ │ │ ├── dust_tiny_bronze.json │ │ │ ├── dust_tiny_brown_limonite.json │ │ │ ├── dust_tiny_cadmium.json │ │ │ ├── dust_tiny_caesium.json │ │ │ ├── dust_tiny_calcite.json │ │ │ ├── dust_tiny_calcium.json │ │ │ ├── dust_tiny_carbon.json │ │ │ ├── dust_tiny_cassiterite.json │ │ │ ├── dust_tiny_cerium.json │ │ │ ├── dust_tiny_chalcopyrite.json │ │ │ ├── dust_tiny_charcoal.json │ │ │ ├── dust_tiny_chrome.json │ │ │ ├── dust_tiny_cinnabar.json │ │ │ ├── dust_tiny_clay.json │ │ │ ├── dust_tiny_coal.json │ │ │ ├── dust_tiny_coal_coke.json │ │ │ ├── dust_tiny_cobalt.json │ │ │ ├── dust_tiny_cobalt_brass.json │ │ │ ├── dust_tiny_cobalt_oxide.json │ │ │ ├── dust_tiny_cobaltite.json │ │ │ ├── dust_tiny_concrete.json │ │ │ ├── dust_tiny_cooperite.json │ │ │ ├── dust_tiny_copper.json │ │ │ ├── dust_tiny_cupric_oxide.json │ │ │ ├── dust_tiny_cupronickel.json │ │ │ ├── dust_tiny_dark_ash.json │ │ │ ├── dust_tiny_diamond.json │ │ │ ├── dust_tiny_dilithium.json │ │ │ ├── dust_tiny_duranium.json │ │ │ ├── dust_tiny_dysprosium.json │ │ │ ├── dust_tiny_electrum.json │ │ │ ├── dust_tiny_emerald.json │ │ │ ├── dust_tiny_endereye.json │ │ │ ├── dust_tiny_enderpearl.json │ │ │ ├── dust_tiny_endstone.json │ │ │ ├── dust_tiny_epoxid.json │ │ │ ├── dust_tiny_europium.json │ │ │ ├── dust_tiny_ferrite_mixture.json │ │ │ ├── dust_tiny_ferrosilite.json │ │ │ ├── dust_tiny_fiber_reinforced_epoxy_resin.json │ │ │ ├── dust_tiny_fireclay.json │ │ │ ├── dust_tiny_flint.json │ │ │ ├── dust_tiny_galena.json │ │ │ ├── dust_tiny_gallium.json │ │ │ ├── dust_tiny_gallium_arsenide.json │ │ │ ├── dust_tiny_garnierite.json │ │ │ ├── dust_tiny_glass.json │ │ │ ├── dust_tiny_glauconite.json │ │ │ ├── dust_tiny_glowstone.json │ │ │ ├── dust_tiny_gold.json │ │ │ ├── dust_tiny_graphene.json │ │ │ ├── dust_tiny_graphite.json │ │ │ ├── dust_tiny_green_sapphire.json │ │ │ ├── dust_tiny_grossular.json │ │ │ ├── dust_tiny_hsse.json │ │ │ ├── dust_tiny_hssg.json │ │ │ ├── dust_tiny_hsss.json │ │ │ ├── dust_tiny_ilmenite.json │ │ │ ├── dust_tiny_indium.json │ │ │ ├── dust_tiny_invar.json │ │ │ ├── dust_tiny_iridium.json │ │ │ ├── dust_tiny_iridium_sodium_oxide.json │ │ │ ├── dust_tiny_iron.json │ │ │ ├── dust_tiny_kanthal.json │ │ │ ├── dust_tiny_lanthanum.json │ │ │ ├── dust_tiny_lapis.json │ │ │ ├── dust_tiny_lead.json │ │ │ ├── dust_tiny_lepidolite.json │ │ │ ├── dust_tiny_lignite_coal.json │ │ │ ├── dust_tiny_lignite_coke.json │ │ │ ├── dust_tiny_lithium.json │ │ │ ├── dust_tiny_lutetium.json │ │ │ ├── dust_tiny_magnalium.json │ │ │ ├── dust_tiny_magnesia.json │ │ │ ├── dust_tiny_magnesite.json │ │ │ ├── dust_tiny_magnesium.json │ │ │ ├── dust_tiny_magnesiumchloride.json │ │ │ ├── dust_tiny_magnetic_iron.json │ │ │ ├── dust_tiny_magnetic_neodymium.json │ │ │ ├── dust_tiny_magnetic_steel.json │ │ │ ├── dust_tiny_magnetite.json │ │ │ ├── dust_tiny_malachite.json │ │ │ ├── dust_tiny_manganese.json │ │ │ ├── dust_tiny_marble.json │ │ │ ├── dust_tiny_massicot.json │ │ │ ├── dust_tiny_molybdenite.json │ │ │ ├── dust_tiny_molybdenum.json │ │ │ ├── dust_tiny_naquadah.json │ │ │ ├── dust_tiny_naquadah_alloy.json │ │ │ ├── dust_tiny_naquadah_enriched.json │ │ │ ├── dust_tiny_naquadria.json │ │ │ ├── dust_tiny_neodymium.json │ │ │ ├── dust_tiny_nether_quartz.json │ │ │ ├── dust_tiny_nether_star.json │ │ │ ├── dust_tiny_netherrack.json │ │ │ ├── dust_tiny_neutronium.json │ │ │ ├── dust_tiny_nichrome.json │ │ │ ├── dust_tiny_nickel.json │ │ │ ├── dust_tiny_nickel_zinc_ferrite.json │ │ │ ├── dust_tiny_niobium.json │ │ │ ├── dust_tiny_niobium_titanium.json │ │ │ ├── dust_tiny_obsidian.json │ │ │ ├── dust_tiny_oilsands.json │ │ │ ├── dust_tiny_olivine.json │ │ │ ├── dust_tiny_opal.json │ │ │ ├── dust_tiny_osmiridium.json │ │ │ ├── dust_tiny_osmium.json │ │ │ ├── dust_tiny_palladium.json │ │ │ ├── dust_tiny_pentlandite.json │ │ │ ├── dust_tiny_phosphate.json │ │ │ ├── dust_tiny_phosphor.json │ │ │ ├── dust_tiny_phosphorous_pentoxide.json │ │ │ ├── dust_tiny_phosphorus.json │ │ │ ├── dust_tiny_pitchblende.json │ │ │ ├── dust_tiny_plastic.json │ │ │ ├── dust_tiny_platinum.json │ │ │ ├── dust_tiny_platinum_group_sludge.json │ │ │ ├── dust_tiny_plutonium_241.json │ │ │ ├── dust_tiny_plutonium_244.json │ │ │ ├── dust_tiny_polycaprolactam.json │ │ │ ├── dust_tiny_polydimethylsiloxane.json │ │ │ ├── dust_tiny_polyphenylene_sulfide.json │ │ │ ├── dust_tiny_polystyrene.json │ │ │ ├── dust_tiny_polytetrafluoroethylene.json │ │ │ ├── dust_tiny_polyvinyl_chloride.json │ │ │ ├── dust_tiny_potash.json │ │ │ ├── dust_tiny_potassium.json │ │ │ ├── dust_tiny_potassium_feldspar.json │ │ │ ├── dust_tiny_pyrite.json │ │ │ ├── dust_tiny_pyrolusite.json │ │ │ ├── dust_tiny_pyrope.json │ │ │ ├── dust_tiny_quartzite.json │ │ │ ├── dust_tiny_quicklime.json │ │ │ ├── dust_tiny_rare_earth.json │ │ │ ├── dust_tiny_raw_rubber.json │ │ │ ├── dust_tiny_raw_styrene_butadiene_rubber.json │ │ │ ├── dust_tiny_red_alloy.json │ │ │ ├── dust_tiny_red_garnet.json │ │ │ ├── dust_tiny_red_granite.json │ │ │ ├── dust_tiny_red_steel.json │ │ │ ├── dust_tiny_redstone.json │ │ │ ├── dust_tiny_rock_salt.json │ │ │ ├── dust_tiny_rose_gold.json │ │ │ ├── dust_tiny_rubber.json │ │ │ ├── dust_tiny_ruby.json │ │ │ ├── dust_tiny_rutile.json │ │ │ ├── dust_tiny_salt.json │ │ │ ├── dust_tiny_saltpeter.json │ │ │ ├── dust_tiny_scheelite.json │ │ │ ├── dust_tiny_silicon.json │ │ │ ├── dust_tiny_silicon_dioxide.json │ │ │ ├── dust_tiny_silicone.json │ │ │ ├── dust_tiny_silver.json │ │ │ ├── dust_tiny_soapstone.json │ │ │ ├── dust_tiny_soda_ash.json │ │ │ ├── dust_tiny_sodium.json │ │ │ ├── dust_tiny_sodium_bisulfate.json │ │ │ ├── dust_tiny_sodium_hydroxide.json │ │ │ ├── dust_tiny_sodium_sulfide.json │ │ │ ├── dust_tiny_soldering_alloy.json │ │ │ ├── dust_tiny_spessartine.json │ │ │ ├── dust_tiny_sphalerite.json │ │ │ ├── dust_tiny_spodumene.json │ │ │ ├── dust_tiny_stainless_steel.json │ │ │ ├── dust_tiny_steel.json │ │ │ ├── dust_tiny_sterling_silver.json │ │ │ ├── dust_tiny_stibnite.json │ │ │ ├── dust_tiny_stone.json │ │ │ ├── dust_tiny_styrene_butadiene_rubber.json │ │ │ ├── dust_tiny_sulfur.json │ │ │ ├── dust_tiny_talc.json │ │ │ ├── dust_tiny_tantalite.json │ │ │ ├── dust_tiny_tantalum.json │ │ │ ├── dust_tiny_tanzanite.json │ │ │ ├── dust_tiny_tetrahedrite.json │ │ │ ├── dust_tiny_thorium.json │ │ │ ├── dust_tiny_tin.json │ │ │ ├── dust_tiny_titanium.json │ │ │ ├── dust_tiny_topaz.json │ │ │ ├── dust_tiny_tritanium.json │ │ │ ├── dust_tiny_tungstate.json │ │ │ ├── dust_tiny_tungsten.json │ │ │ ├── dust_tiny_tungsten_carbide.json │ │ │ ├── dust_tiny_tungstensteel.json │ │ │ ├── dust_tiny_ultimet.json │ │ │ ├── dust_tiny_uraninite.json │ │ │ ├── dust_tiny_uranium_235.json │ │ │ ├── dust_tiny_uranium_238.json │ │ │ ├── dust_tiny_uvarovite.json │ │ │ ├── dust_tiny_vanadium.json │ │ │ ├── dust_tiny_vanadium_gallium.json │ │ │ ├── dust_tiny_vanadium_magnetite.json │ │ │ ├── dust_tiny_vanadium_steel.json │ │ │ ├── dust_tiny_vibranium.json │ │ │ ├── dust_tiny_wood.json │ │ │ ├── dust_tiny_wrought_iron.json │ │ │ ├── dust_tiny_wulfenite.json │ │ │ ├── dust_tiny_yellow_garnet.json │ │ │ ├── dust_tiny_yellow_limonite.json │ │ │ ├── dust_tiny_yttrium.json │ │ │ ├── dust_tiny_yttrium_barium_cuprate.json │ │ │ ├── dust_tiny_zinc.json │ │ │ ├── dust_titanium.json │ │ │ ├── dust_topaz.json │ │ │ ├── dust_tritanium.json │ │ │ ├── dust_tungstate.json │ │ │ ├── dust_tungsten.json │ │ │ ├── dust_tungsten_carbide.json │ │ │ ├── dust_tungstensteel.json │ │ │ ├── dust_ultimet.json │ │ │ ├── dust_uraninite.json │ │ │ ├── dust_uranium_235.json │ │ │ ├── dust_uranium_238.json │ │ │ ├── dust_uvarovite.json │ │ │ ├── dust_vanadium.json │ │ │ ├── dust_vanadium_gallium.json │ │ │ ├── dust_vanadium_magnetite.json │ │ │ ├── dust_vanadium_steel.json │ │ │ ├── dust_vibranium.json │ │ │ ├── dust_wood.json │ │ │ ├── dust_wrought_iron.json │ │ │ ├── dust_wulfenite.json │ │ │ ├── dust_yellow_garnet.json │ │ │ ├── dust_yellow_limonite.json │ │ │ ├── dust_yttrium.json │ │ │ ├── dust_yttrium_barium_cuprate.json │ │ │ ├── dust_zinc.json │ │ │ ├── emerald_ore_andesite.json │ │ │ ├── emerald_ore_basalt.json │ │ │ ├── emerald_ore_diorite.json │ │ │ ├── emerald_ore_endstone.json │ │ │ ├── emerald_ore_granite.json │ │ │ ├── emerald_ore_granite_black.json │ │ │ ├── emerald_ore_granite_red.json │ │ │ ├── emerald_ore_marble.json │ │ │ ├── emerald_ore_netherrack.json │ │ │ ├── emerald_ore_sand.json │ │ │ ├── emerald_ore_sand_red.json │ │ │ ├── emerald_ore_sandstone.json │ │ │ ├── emerald_ore_small_andesite.json │ │ │ ├── emerald_ore_small_basalt.json │ │ │ ├── emerald_ore_small_diorite.json │ │ │ ├── emerald_ore_small_endstone.json │ │ │ ├── emerald_ore_small_granite.json │ │ │ ├── emerald_ore_small_granite_black.json │ │ │ ├── emerald_ore_small_granite_red.json │ │ │ ├── emerald_ore_small_marble.json │ │ │ ├── emerald_ore_small_netherrack.json │ │ │ ├── emerald_ore_small_sand.json │ │ │ ├── emerald_ore_small_sand_red.json │ │ │ ├── emerald_ore_small_sandstone.json │ │ │ ├── emerald_ore_small_stone.json │ │ │ ├── emerald_ore_stone.json │ │ │ ├── emitter_ev.json │ │ │ ├── emitter_hv.json │ │ │ ├── emitter_iv.json │ │ │ ├── emitter_lv.json │ │ │ ├── emitter_mv.json │ │ │ ├── empty_shape_plate.json │ │ │ ├── engraved_crystal_chip.json │ │ │ ├── engraved_lapotron_chip.json │ │ │ ├── etched_wiring_ev.json │ │ │ ├── etched_wiring_hv.json │ │ │ ├── etched_wiring_mv.json │ │ │ ├── field_gen_ev.json │ │ │ ├── field_gen_hv.json │ │ │ ├── field_gen_iv.json │ │ │ ├── field_gen_lv.json │ │ │ ├── field_gen_mv.json │ │ │ ├── file.json │ │ │ ├── fluid_pipe_bronze_huge.json │ │ │ ├── fluid_pipe_bronze_large.json │ │ │ ├── fluid_pipe_bronze_normal.json │ │ │ ├── fluid_pipe_bronze_small.json │ │ │ ├── fluid_pipe_bronze_tiny.json │ │ │ ├── fluid_pipe_bronze_vtiny.json │ │ │ ├── fluid_pipe_copper_huge.json │ │ │ ├── fluid_pipe_copper_large.json │ │ │ ├── fluid_pipe_copper_normal.json │ │ │ ├── fluid_pipe_copper_small.json │ │ │ ├── fluid_pipe_copper_tiny.json │ │ │ ├── fluid_pipe_copper_vtiny.json │ │ │ ├── fluid_pipe_high_pressure_large.json │ │ │ ├── fluid_pipe_high_pressure_normal.json │ │ │ ├── fluid_pipe_high_pressure_small.json │ │ │ ├── fluid_pipe_plasma_containment_normal.json │ │ │ ├── fluid_pipe_plastic_huge.json │ │ │ ├── fluid_pipe_plastic_large.json │ │ │ ├── fluid_pipe_plastic_normal.json │ │ │ ├── fluid_pipe_plastic_small.json │ │ │ ├── fluid_pipe_plastic_tiny.json │ │ │ ├── fluid_pipe_plastic_vtiny.json │ │ │ ├── fluid_pipe_polytetrafluoroethylene_huge.json │ │ │ ├── fluid_pipe_polytetrafluoroethylene_large.json │ │ │ ├── fluid_pipe_polytetrafluoroethylene_normal.json │ │ │ ├── fluid_pipe_polytetrafluoroethylene_small.json │ │ │ ├── fluid_pipe_polytetrafluoroethylene_tiny.json │ │ │ ├── fluid_pipe_polytetrafluoroethylene_vtiny.json │ │ │ ├── fluid_pipe_stainless_steel_huge.json │ │ │ ├── fluid_pipe_stainless_steel_large.json │ │ │ ├── fluid_pipe_stainless_steel_normal.json │ │ │ ├── fluid_pipe_stainless_steel_small.json │ │ │ ├── fluid_pipe_stainless_steel_tiny.json │ │ │ ├── fluid_pipe_stainless_steel_vtiny.json │ │ │ ├── fluid_pipe_steel_huge.json │ │ │ ├── fluid_pipe_steel_large.json │ │ │ ├── fluid_pipe_steel_normal.json │ │ │ ├── fluid_pipe_steel_small.json │ │ │ ├── fluid_pipe_steel_tiny.json │ │ │ ├── fluid_pipe_steel_vtiny.json │ │ │ ├── fluid_pipe_titanium_huge.json │ │ │ ├── fluid_pipe_titanium_large.json │ │ │ ├── fluid_pipe_titanium_normal.json │ │ │ ├── fluid_pipe_titanium_small.json │ │ │ ├── fluid_pipe_titanium_tiny.json │ │ │ ├── fluid_pipe_titanium_vtiny.json │ │ │ ├── fluid_pipe_tungstensteel_huge.json │ │ │ ├── fluid_pipe_tungstensteel_large.json │ │ │ ├── fluid_pipe_tungstensteel_normal.json │ │ │ ├── fluid_pipe_tungstensteel_small.json │ │ │ ├── fluid_pipe_tungstensteel_tiny.json │ │ │ ├── fluid_pipe_tungstensteel_vtiny.json │ │ │ ├── fluid_pipe_wood_large.json │ │ │ ├── fluid_pipe_wood_normal.json │ │ │ ├── fluid_pipe_wood_small.json │ │ │ ├── fluid_regulator_ev.json │ │ │ ├── fluid_regulator_hv.json │ │ │ ├── fluid_regulator_iv.json │ │ │ ├── fluid_regulator_lv.json │ │ │ ├── fluid_regulator_mv.json │ │ │ ├── foil_aluminium.json │ │ │ ├── foil_annealed_copper.json │ │ │ ├── foil_copper.json │ │ │ ├── foil_electrum.json │ │ │ ├── foil_gold.json │ │ │ ├── foil_lead.json │ │ │ ├── foil_niobium_titanium.json │ │ │ ├── foil_osmium.json │ │ │ ├── foil_platinum.json │ │ │ ├── foil_polyphenylene_sulfide.json │ │ │ ├── foil_polyvinyl_chloride.json │ │ │ ├── foil_red_alloy.json │ │ │ ├── foil_silicon.json │ │ │ ├── foil_silicone.json │ │ │ ├── foil_soldering_alloy.json │ │ │ ├── foil_steel.json │ │ │ ├── foil_tin.json │ │ │ ├── foil_tungsten.json │ │ │ ├── foil_yttrium_barium_cuprate.json │ │ │ ├── foil_zinc.json │ │ │ ├── galena_ore_andesite.json │ │ │ ├── galena_ore_basalt.json │ │ │ ├── galena_ore_diorite.json │ │ │ ├── galena_ore_endstone.json │ │ │ ├── galena_ore_granite.json │ │ │ ├── galena_ore_granite_black.json │ │ │ ├── galena_ore_granite_red.json │ │ │ ├── galena_ore_marble.json │ │ │ ├── galena_ore_netherrack.json │ │ │ ├── galena_ore_sand.json │ │ │ ├── galena_ore_sand_red.json │ │ │ ├── galena_ore_sandstone.json │ │ │ ├── galena_ore_small_andesite.json │ │ │ ├── galena_ore_small_basalt.json │ │ │ ├── galena_ore_small_diorite.json │ │ │ ├── galena_ore_small_endstone.json │ │ │ ├── galena_ore_small_granite.json │ │ │ ├── galena_ore_small_granite_black.json │ │ │ ├── galena_ore_small_granite_red.json │ │ │ ├── galena_ore_small_marble.json │ │ │ ├── galena_ore_small_netherrack.json │ │ │ ├── galena_ore_small_sand.json │ │ │ ├── galena_ore_small_sand_red.json │ │ │ ├── galena_ore_small_sandstone.json │ │ │ ├── galena_ore_small_stone.json │ │ │ ├── galena_ore_stone.json │ │ │ ├── garnierite_ore_andesite.json │ │ │ ├── garnierite_ore_basalt.json │ │ │ ├── garnierite_ore_diorite.json │ │ │ ├── garnierite_ore_endstone.json │ │ │ ├── garnierite_ore_granite.json │ │ │ ├── garnierite_ore_granite_black.json │ │ │ ├── garnierite_ore_granite_red.json │ │ │ ├── garnierite_ore_marble.json │ │ │ ├── garnierite_ore_netherrack.json │ │ │ ├── garnierite_ore_sand.json │ │ │ ├── garnierite_ore_sand_red.json │ │ │ ├── garnierite_ore_sandstone.json │ │ │ ├── garnierite_ore_small_andesite.json │ │ │ ├── garnierite_ore_small_basalt.json │ │ │ ├── garnierite_ore_small_diorite.json │ │ │ ├── garnierite_ore_small_endstone.json │ │ │ ├── garnierite_ore_small_granite.json │ │ │ ├── garnierite_ore_small_granite_black.json │ │ │ ├── garnierite_ore_small_granite_red.json │ │ │ ├── garnierite_ore_small_marble.json │ │ │ ├── garnierite_ore_small_netherrack.json │ │ │ ├── garnierite_ore_small_sand.json │ │ │ ├── garnierite_ore_small_sand_red.json │ │ │ ├── garnierite_ore_small_sandstone.json │ │ │ ├── garnierite_ore_small_stone.json │ │ │ ├── garnierite_ore_stone.json │ │ │ ├── gear_aluminium.json │ │ │ ├── gear_bronze.json │ │ │ ├── gear_cobalt_brass.json │ │ │ ├── gear_copper.json │ │ │ ├── gear_gold.json │ │ │ ├── gear_hsse.json │ │ │ ├── gear_hssg.json │ │ │ ├── gear_iron.json │ │ │ ├── gear_neutronium.json │ │ │ ├── gear_stainless_steel.json │ │ │ ├── gear_steel.json │ │ │ ├── gear_stone.json │ │ │ ├── gear_tin.json │ │ │ ├── gear_tungstensteel.json │ │ │ ├── gear_wood.json │ │ │ ├── gem_amethyst.json │ │ │ ├── gem_blue_sapphire.json │ │ │ ├── gem_blue_topaz.json │ │ │ ├── gem_brittle_amethyst.json │ │ │ ├── gem_brittle_blue_sapphire.json │ │ │ ├── gem_brittle_blue_topaz.json │ │ │ ├── gem_brittle_diamond.json │ │ │ ├── gem_brittle_dilithium.json │ │ │ ├── gem_brittle_emerald.json │ │ │ ├── gem_brittle_endereye.json │ │ │ ├── gem_brittle_green_sapphire.json │ │ │ ├── gem_brittle_olivine.json │ │ │ ├── gem_brittle_opal.json │ │ │ ├── gem_brittle_red_garnet.json │ │ │ ├── gem_brittle_ruby.json │ │ │ ├── gem_brittle_tanzanite.json │ │ │ ├── gem_brittle_topaz.json │ │ │ ├── gem_brittle_yellow_garnet.json │ │ │ ├── gem_coal_coke.json │ │ │ ├── gem_dilithium.json │ │ │ ├── gem_endereye.json │ │ │ ├── gem_enderpearl.json │ │ │ ├── gem_green_sapphire.json │ │ │ ├── gem_lignite_coal.json │ │ │ ├── gem_lignite_coke.json │ │ │ ├── gem_nether_quartz.json │ │ │ ├── gem_nether_star.json │ │ │ ├── gem_olivine.json │ │ │ ├── gem_opal.json │ │ │ ├── gem_phosphorus.json │ │ │ ├── gem_polished_amethyst.json │ │ │ ├── gem_polished_blue_sapphire.json │ │ │ ├── gem_polished_blue_topaz.json │ │ │ ├── gem_polished_diamond.json │ │ │ ├── gem_polished_dilithium.json │ │ │ ├── gem_polished_emerald.json │ │ │ ├── gem_polished_endereye.json │ │ │ ├── gem_polished_green_sapphire.json │ │ │ ├── gem_polished_olivine.json │ │ │ ├── gem_polished_opal.json │ │ │ ├── gem_polished_red_garnet.json │ │ │ ├── gem_polished_ruby.json │ │ │ ├── gem_polished_tanzanite.json │ │ │ ├── gem_polished_topaz.json │ │ │ ├── gem_polished_yellow_garnet.json │ │ │ ├── gem_quartzite.json │ │ │ ├── gem_red_garnet.json │ │ │ ├── gem_ruby.json │ │ │ ├── gem_tanzanite.json │ │ │ ├── gem_topaz.json │ │ │ ├── gem_yellow_garnet.json │ │ │ ├── glauconite_ore_andesite.json │ │ │ ├── glauconite_ore_basalt.json │ │ │ ├── glauconite_ore_diorite.json │ │ │ ├── glauconite_ore_endstone.json │ │ │ ├── glauconite_ore_granite.json │ │ │ ├── glauconite_ore_granite_black.json │ │ │ ├── glauconite_ore_granite_red.json │ │ │ ├── glauconite_ore_marble.json │ │ │ ├── glauconite_ore_netherrack.json │ │ │ ├── glauconite_ore_sand.json │ │ │ ├── glauconite_ore_sand_red.json │ │ │ ├── glauconite_ore_sandstone.json │ │ │ ├── glauconite_ore_stone.json │ │ │ ├── gold_ore_andesite.json │ │ │ ├── gold_ore_basalt.json │ │ │ ├── gold_ore_diorite.json │ │ │ ├── gold_ore_endstone.json │ │ │ ├── gold_ore_granite.json │ │ │ ├── gold_ore_granite_black.json │ │ │ ├── gold_ore_granite_red.json │ │ │ ├── gold_ore_marble.json │ │ │ ├── gold_ore_netherrack.json │ │ │ ├── gold_ore_sand.json │ │ │ ├── gold_ore_sand_red.json │ │ │ ├── gold_ore_sandstone.json │ │ │ ├── gold_ore_small_andesite.json │ │ │ ├── gold_ore_small_basalt.json │ │ │ ├── gold_ore_small_diorite.json │ │ │ ├── gold_ore_small_endstone.json │ │ │ ├── gold_ore_small_granite.json │ │ │ ├── gold_ore_small_granite_black.json │ │ │ ├── gold_ore_small_granite_red.json │ │ │ ├── gold_ore_small_marble.json │ │ │ ├── gold_ore_small_netherrack.json │ │ │ ├── gold_ore_small_sand.json │ │ │ ├── gold_ore_small_sand_red.json │ │ │ ├── gold_ore_small_sandstone.json │ │ │ ├── gold_ore_small_stone.json │ │ │ ├── gold_ore_stone.json │ │ │ ├── granite_black.json │ │ │ ├── granite_red.json │ │ │ ├── graphite_ore_andesite.json │ │ │ ├── graphite_ore_basalt.json │ │ │ ├── graphite_ore_diorite.json │ │ │ ├── graphite_ore_endstone.json │ │ │ ├── graphite_ore_granite.json │ │ │ ├── graphite_ore_granite_black.json │ │ │ ├── graphite_ore_granite_red.json │ │ │ ├── graphite_ore_marble.json │ │ │ ├── graphite_ore_netherrack.json │ │ │ ├── graphite_ore_sand.json │ │ │ ├── graphite_ore_sand_red.json │ │ │ ├── graphite_ore_sandstone.json │ │ │ ├── graphite_ore_small_andesite.json │ │ │ ├── graphite_ore_small_basalt.json │ │ │ ├── graphite_ore_small_diorite.json │ │ │ ├── graphite_ore_small_endstone.json │ │ │ ├── graphite_ore_small_granite.json │ │ │ ├── graphite_ore_small_granite_black.json │ │ │ ├── graphite_ore_small_granite_red.json │ │ │ ├── graphite_ore_small_marble.json │ │ │ ├── graphite_ore_small_netherrack.json │ │ │ ├── graphite_ore_small_sand.json │ │ │ ├── graphite_ore_small_sand_red.json │ │ │ ├── graphite_ore_small_sandstone.json │ │ │ ├── graphite_ore_small_stone.json │ │ │ ├── graphite_ore_stone.json │ │ │ ├── gravi_star.json │ │ │ ├── green_sapphire_ore_andesite.json │ │ │ ├── green_sapphire_ore_basalt.json │ │ │ ├── green_sapphire_ore_diorite.json │ │ │ ├── green_sapphire_ore_endstone.json │ │ │ ├── green_sapphire_ore_granite.json │ │ │ ├── green_sapphire_ore_granite_black.json │ │ │ ├── green_sapphire_ore_granite_red.json │ │ │ ├── green_sapphire_ore_marble.json │ │ │ ├── green_sapphire_ore_netherrack.json │ │ │ ├── green_sapphire_ore_sand.json │ │ │ ├── green_sapphire_ore_sand_red.json │ │ │ ├── green_sapphire_ore_sandstone.json │ │ │ ├── green_sapphire_ore_small_andesite.json │ │ │ ├── green_sapphire_ore_small_basalt.json │ │ │ ├── green_sapphire_ore_small_diorite.json │ │ │ ├── green_sapphire_ore_small_endstone.json │ │ │ ├── green_sapphire_ore_small_granite.json │ │ │ ├── green_sapphire_ore_small_granite_black.json │ │ │ ├── green_sapphire_ore_small_granite_red.json │ │ │ ├── green_sapphire_ore_small_marble.json │ │ │ ├── green_sapphire_ore_small_netherrack.json │ │ │ ├── green_sapphire_ore_small_sand.json │ │ │ ├── green_sapphire_ore_small_sand_red.json │ │ │ ├── green_sapphire_ore_small_sandstone.json │ │ │ ├── green_sapphire_ore_small_stone.json │ │ │ ├── green_sapphire_ore_stone.json │ │ │ ├── grossular_ore_andesite.json │ │ │ ├── grossular_ore_basalt.json │ │ │ ├── grossular_ore_diorite.json │ │ │ ├── grossular_ore_endstone.json │ │ │ ├── grossular_ore_granite.json │ │ │ ├── grossular_ore_granite_black.json │ │ │ ├── grossular_ore_granite_red.json │ │ │ ├── grossular_ore_marble.json │ │ │ ├── grossular_ore_netherrack.json │ │ │ ├── grossular_ore_sand.json │ │ │ ├── grossular_ore_sand_red.json │ │ │ ├── grossular_ore_sandstone.json │ │ │ ├── grossular_ore_small_andesite.json │ │ │ ├── grossular_ore_small_basalt.json │ │ │ ├── grossular_ore_small_diorite.json │ │ │ ├── grossular_ore_small_endstone.json │ │ │ ├── grossular_ore_small_granite.json │ │ │ ├── grossular_ore_small_granite_black.json │ │ │ ├── grossular_ore_small_granite_red.json │ │ │ ├── grossular_ore_small_marble.json │ │ │ ├── grossular_ore_small_netherrack.json │ │ │ ├── grossular_ore_small_sand.json │ │ │ ├── grossular_ore_small_sand_red.json │ │ │ ├── grossular_ore_small_sandstone.json │ │ │ ├── grossular_ore_small_stone.json │ │ │ ├── grossular_ore_stone.json │ │ │ ├── hammer.json │ │ │ ├── hoe.json │ │ │ ├── ilmenite_ore_andesite.json │ │ │ ├── ilmenite_ore_basalt.json │ │ │ ├── ilmenite_ore_diorite.json │ │ │ ├── ilmenite_ore_endstone.json │ │ │ ├── ilmenite_ore_granite.json │ │ │ ├── ilmenite_ore_granite_black.json │ │ │ ├── ilmenite_ore_granite_red.json │ │ │ ├── ilmenite_ore_marble.json │ │ │ ├── ilmenite_ore_netherrack.json │ │ │ ├── ilmenite_ore_sand.json │ │ │ ├── ilmenite_ore_sand_red.json │ │ │ ├── ilmenite_ore_sandstone.json │ │ │ ├── ilmenite_ore_stone.json │ │ │ ├── ingot_aluminium.json │ │ │ ├── ingot_americium.json │ │ │ ├── ingot_annealed_copper.json │ │ │ ├── ingot_antimony.json │ │ │ ├── ingot_arsenic.json │ │ │ ├── ingot_battery_alloy.json │ │ │ ├── ingot_beryllium.json │ │ │ ├── ingot_bismuth.json │ │ │ ├── ingot_bismuth_bronze.json │ │ │ ├── ingot_black_bronze.json │ │ │ ├── ingot_black_steel.json │ │ │ ├── ingot_blue_steel.json │ │ │ ├── ingot_brass.json │ │ │ ├── ingot_bronze.json │ │ │ ├── ingot_caesium.json │ │ │ ├── ingot_carbon.json │ │ │ ├── ingot_cerium.json │ │ │ ├── ingot_chrome.json │ │ │ ├── ingot_cobalt.json │ │ │ ├── ingot_cobalt_brass.json │ │ │ ├── ingot_copper.json │ │ │ ├── ingot_cupronickel.json │ │ │ ├── ingot_duranium.json │ │ │ ├── ingot_dysprosium.json │ │ │ ├── ingot_electrum.json │ │ │ ├── ingot_epoxid.json │ │ │ ├── ingot_europium.json │ │ │ ├── ingot_fiber_reinforced_epoxy_resin.json │ │ │ ├── ingot_gallium.json │ │ │ ├── ingot_gallium_arsenide.json │ │ │ ├── ingot_hot_black_bronze.json │ │ │ ├── ingot_hot_hsse.json │ │ │ ├── ingot_hot_hssg.json │ │ │ ├── ingot_hot_hsss.json │ │ │ ├── ingot_hot_iridium.json │ │ │ ├── ingot_hot_kanthal.json │ │ │ ├── ingot_hot_lutetium.json │ │ │ ├── ingot_hot_naquadah.json │ │ │ ├── ingot_hot_naquadah_alloy.json │ │ │ ├── ingot_hot_naquadah_enriched.json │ │ │ ├── ingot_hot_naquadria.json │ │ │ ├── ingot_hot_neutronium.json │ │ │ ├── ingot_hot_nichrome.json │ │ │ ├── ingot_hot_niobium.json │ │ │ ├── ingot_hot_niobium_titanium.json │ │ │ ├── ingot_hot_osmiridium.json │ │ │ ├── ingot_hot_osmium.json │ │ │ ├── ingot_hot_palladium.json │ │ │ ├── ingot_hot_titanium.json │ │ │ ├── ingot_hot_tungsten.json │ │ │ ├── ingot_hot_tungsten_carbide.json │ │ │ ├── ingot_hot_tungstensteel.json │ │ │ ├── ingot_hot_ultimet.json │ │ │ ├── ingot_hot_vanadium.json │ │ │ ├── ingot_hot_vanadium_gallium.json │ │ │ ├── ingot_hot_yttrium.json │ │ │ ├── ingot_hot_yttrium_barium_cuprate.json │ │ │ ├── ingot_hsse.json │ │ │ ├── ingot_hssg.json │ │ │ ├── ingot_hsss.json │ │ │ ├── ingot_indium.json │ │ │ ├── ingot_invar.json │ │ │ ├── ingot_iridium.json │ │ │ ├── ingot_kanthal.json │ │ │ ├── ingot_lanthanum.json │ │ │ ├── ingot_lead.json │ │ │ ├── ingot_lithium.json │ │ │ ├── ingot_lutetium.json │ │ │ ├── ingot_magnalium.json │ │ │ ├── ingot_magnesium.json │ │ │ ├── ingot_magnetic_iron.json │ │ │ ├── ingot_magnetic_neodymium.json │ │ │ ├── ingot_magnetic_steel.json │ │ │ ├── ingot_manganese.json │ │ │ ├── ingot_molybdenum.json │ │ │ ├── ingot_naquadah.json │ │ │ ├── ingot_naquadah_alloy.json │ │ │ ├── ingot_naquadah_enriched.json │ │ │ ├── ingot_naquadria.json │ │ │ ├── ingot_neodymium.json │ │ │ ├── ingot_neutronium.json │ │ │ ├── ingot_nichrome.json │ │ │ ├── ingot_nickel.json │ │ │ ├── ingot_nickel_zinc_ferrite.json │ │ │ ├── ingot_niobium.json │ │ │ ├── ingot_niobium_titanium.json │ │ │ ├── ingot_osmiridium.json │ │ │ ├── ingot_osmium.json │ │ │ ├── ingot_palladium.json │ │ │ ├── ingot_plastic.json │ │ │ ├── ingot_platinum.json │ │ │ ├── ingot_plutonium_241.json │ │ │ ├── ingot_plutonium_244.json │ │ │ ├── ingot_polycaprolactam.json │ │ │ ├── ingot_polyphenylene_sulfide.json │ │ │ ├── ingot_polystyrene.json │ │ │ ├── ingot_polytetrafluoroethylene.json │ │ │ ├── ingot_polyvinyl_chloride.json │ │ │ ├── ingot_potassium.json │ │ │ ├── ingot_red_alloy.json │ │ │ ├── ingot_red_steel.json │ │ │ ├── ingot_rose_gold.json │ │ │ ├── ingot_rubber.json │ │ │ ├── ingot_silicon.json │ │ │ ├── ingot_silicone.json │ │ │ ├── ingot_silver.json │ │ │ ├── ingot_soldering_alloy.json │ │ │ ├── ingot_stainless_steel.json │ │ │ ├── ingot_steel.json │ │ │ ├── ingot_sterling_silver.json │ │ │ ├── ingot_styrene_butadiene_rubber.json │ │ │ ├── ingot_tantalum.json │ │ │ ├── ingot_thorium.json │ │ │ ├── ingot_tin.json │ │ │ ├── ingot_titanium.json │ │ │ ├── ingot_tritanium.json │ │ │ ├── ingot_tungsten.json │ │ │ ├── ingot_tungsten_carbide.json │ │ │ ├── ingot_tungstensteel.json │ │ │ ├── ingot_ultimet.json │ │ │ ├── ingot_uranium_235.json │ │ │ ├── ingot_uranium_238.json │ │ │ ├── ingot_vanadium.json │ │ │ ├── ingot_vanadium_gallium.json │ │ │ ├── ingot_vanadium_steel.json │ │ │ ├── ingot_vibranium.json │ │ │ ├── ingot_wrought_iron.json │ │ │ ├── ingot_yttrium.json │ │ │ ├── ingot_yttrium_barium_cuprate.json │ │ │ ├── ingot_zinc.json │ │ │ ├── iridium_alloy_ingot.json │ │ │ ├── iridium_neutron_reflector.json │ │ │ ├── iridium_ore_andesite.json │ │ │ ├── iridium_ore_basalt.json │ │ │ ├── iridium_ore_diorite.json │ │ │ ├── iridium_ore_endstone.json │ │ │ ├── iridium_ore_granite.json │ │ │ ├── iridium_ore_granite_black.json │ │ │ ├── iridium_ore_granite_red.json │ │ │ ├── iridium_ore_marble.json │ │ │ ├── iridium_ore_netherrack.json │ │ │ ├── iridium_ore_sand.json │ │ │ ├── iridium_ore_sand_red.json │ │ │ ├── iridium_ore_sandstone.json │ │ │ ├── iridium_ore_small_andesite.json │ │ │ ├── iridium_ore_small_basalt.json │ │ │ ├── iridium_ore_small_diorite.json │ │ │ ├── iridium_ore_small_endstone.json │ │ │ ├── iridium_ore_small_granite.json │ │ │ ├── iridium_ore_small_granite_black.json │ │ │ ├── iridium_ore_small_granite_red.json │ │ │ ├── iridium_ore_small_marble.json │ │ │ ├── iridium_ore_small_netherrack.json │ │ │ ├── iridium_ore_small_sand.json │ │ │ ├── iridium_ore_small_sand_red.json │ │ │ ├── iridium_ore_small_sandstone.json │ │ │ ├── iridium_ore_small_stone.json │ │ │ ├── iridium_ore_stone.json │ │ │ ├── iridium_reinforced_plate.json │ │ │ ├── iron_ore_andesite.json │ │ │ ├── iron_ore_basalt.json │ │ │ ├── iron_ore_diorite.json │ │ │ ├── iron_ore_endstone.json │ │ │ ├── iron_ore_granite.json │ │ │ ├── iron_ore_granite_black.json │ │ │ ├── iron_ore_granite_red.json │ │ │ ├── iron_ore_marble.json │ │ │ ├── iron_ore_netherrack.json │ │ │ ├── iron_ore_sand.json │ │ │ ├── iron_ore_sand_red.json │ │ │ ├── iron_ore_sandstone.json │ │ │ ├── iron_ore_small_andesite.json │ │ │ ├── iron_ore_small_basalt.json │ │ │ ├── iron_ore_small_diorite.json │ │ │ ├── iron_ore_small_endstone.json │ │ │ ├── iron_ore_small_granite.json │ │ │ ├── iron_ore_small_granite_black.json │ │ │ ├── iron_ore_small_granite_red.json │ │ │ ├── iron_ore_small_marble.json │ │ │ ├── iron_ore_small_netherrack.json │ │ │ ├── iron_ore_small_sand.json │ │ │ ├── iron_ore_small_sand_red.json │ │ │ ├── iron_ore_small_sandstone.json │ │ │ ├── iron_ore_small_stone.json │ │ │ ├── iron_ore_stone.json │ │ │ ├── item_filter.json │ │ │ ├── item_pipe_brass_huge.json │ │ │ ├── item_pipe_brass_large.json │ │ │ ├── item_pipe_brass_normal.json │ │ │ ├── item_pipe_brass_small.json │ │ │ ├── item_pipe_brass_tiny.json │ │ │ ├── item_pipe_brass_vtiny.json │ │ │ ├── item_pipe_cobalt_brass_huge.json │ │ │ ├── item_pipe_cobalt_brass_large.json │ │ │ ├── item_pipe_cobalt_brass_normal.json │ │ │ ├── item_pipe_cobalt_brass_small.json │ │ │ ├── item_pipe_cobalt_brass_tiny.json │ │ │ ├── item_pipe_cobalt_brass_vtiny.json │ │ │ ├── item_pipe_cupronickel_huge.json │ │ │ ├── item_pipe_cupronickel_large.json │ │ │ ├── item_pipe_cupronickel_normal.json │ │ │ ├── item_pipe_cupronickel_small.json │ │ │ ├── item_pipe_cupronickel_tiny.json │ │ │ ├── item_pipe_cupronickel_vtiny.json │ │ │ ├── item_pipe_electrum_huge.json │ │ │ ├── item_pipe_electrum_large.json │ │ │ ├── item_pipe_electrum_normal.json │ │ │ ├── item_pipe_electrum_small.json │ │ │ ├── item_pipe_electrum_tiny.json │ │ │ ├── item_pipe_electrum_vtiny.json │ │ │ ├── item_pipe_osmium_huge.json │ │ │ ├── item_pipe_osmium_large.json │ │ │ ├── item_pipe_osmium_normal.json │ │ │ ├── item_pipe_osmium_small.json │ │ │ ├── item_pipe_osmium_tiny.json │ │ │ ├── item_pipe_osmium_vtiny.json │ │ │ ├── item_pipe_platinum_huge.json │ │ │ ├── item_pipe_platinum_large.json │ │ │ ├── item_pipe_platinum_normal.json │ │ │ ├── item_pipe_platinum_small.json │ │ │ ├── item_pipe_platinum_tiny.json │ │ │ ├── item_pipe_platinum_vtiny.json │ │ │ ├── item_pipe_polyvinyl_chloride_huge.json │ │ │ ├── item_pipe_polyvinyl_chloride_large.json │ │ │ ├── item_pipe_polyvinyl_chloride_normal.json │ │ │ ├── item_pipe_polyvinyl_chloride_small.json │ │ │ ├── item_pipe_polyvinyl_chloride_tiny.json │ │ │ ├── item_pipe_polyvinyl_chloride_vtiny.json │ │ │ ├── item_pipe_rose_gold_huge.json │ │ │ ├── item_pipe_rose_gold_large.json │ │ │ ├── item_pipe_rose_gold_normal.json │ │ │ ├── item_pipe_rose_gold_small.json │ │ │ ├── item_pipe_rose_gold_tiny.json │ │ │ ├── item_pipe_rose_gold_vtiny.json │ │ │ ├── item_pipe_sterling_silver_huge.json │ │ │ ├── item_pipe_sterling_silver_large.json │ │ │ ├── item_pipe_sterling_silver_normal.json │ │ │ ├── item_pipe_sterling_silver_small.json │ │ │ ├── item_pipe_sterling_silver_tiny.json │ │ │ ├── item_pipe_sterling_silver_vtiny.json │ │ │ ├── item_pipe_ultimet_huge.json │ │ │ ├── item_pipe_ultimet_large.json │ │ │ ├── item_pipe_ultimet_normal.json │ │ │ ├── item_pipe_ultimet_small.json │ │ │ ├── item_pipe_ultimet_tiny.json │ │ │ ├── item_pipe_ultimet_vtiny.json │ │ │ ├── jackhammer.json │ │ │ ├── knife.json │ │ │ ├── lapis_ore_andesite.json │ │ │ ├── lapis_ore_basalt.json │ │ │ ├── lapis_ore_diorite.json │ │ │ ├── lapis_ore_endstone.json │ │ │ ├── lapis_ore_granite.json │ │ │ ├── lapis_ore_granite_black.json │ │ │ ├── lapis_ore_granite_red.json │ │ │ ├── lapis_ore_marble.json │ │ │ ├── lapis_ore_netherrack.json │ │ │ ├── lapis_ore_sand.json │ │ │ ├── lapis_ore_sand_red.json │ │ │ ├── lapis_ore_sandstone.json │ │ │ ├── lapis_ore_small_andesite.json │ │ │ ├── lapis_ore_small_basalt.json │ │ │ ├── lapis_ore_small_diorite.json │ │ │ ├── lapis_ore_small_endstone.json │ │ │ ├── lapis_ore_small_granite.json │ │ │ ├── lapis_ore_small_granite_black.json │ │ │ ├── lapis_ore_small_granite_red.json │ │ │ ├── lapis_ore_small_marble.json │ │ │ ├── lapis_ore_small_netherrack.json │ │ │ ├── lapis_ore_small_sand.json │ │ │ ├── lapis_ore_small_sand_red.json │ │ │ ├── lapis_ore_small_sandstone.json │ │ │ ├── lapis_ore_small_stone.json │ │ │ ├── lapis_ore_stone.json │ │ │ ├── lead_ore_andesite.json │ │ │ ├── lead_ore_basalt.json │ │ │ ├── lead_ore_diorite.json │ │ │ ├── lead_ore_endstone.json │ │ │ ├── lead_ore_granite.json │ │ │ ├── lead_ore_granite_black.json │ │ │ ├── lead_ore_granite_red.json │ │ │ ├── lead_ore_marble.json │ │ │ ├── lead_ore_netherrack.json │ │ │ ├── lead_ore_sand.json │ │ │ ├── lead_ore_sand_red.json │ │ │ ├── lead_ore_sandstone.json │ │ │ ├── lead_ore_small_andesite.json │ │ │ ├── lead_ore_small_basalt.json │ │ │ ├── lead_ore_small_diorite.json │ │ │ ├── lead_ore_small_endstone.json │ │ │ ├── lead_ore_small_granite.json │ │ │ ├── lead_ore_small_granite_black.json │ │ │ ├── lead_ore_small_granite_red.json │ │ │ ├── lead_ore_small_marble.json │ │ │ ├── lead_ore_small_netherrack.json │ │ │ ├── lead_ore_small_sand.json │ │ │ ├── lead_ore_small_sand_red.json │ │ │ ├── lead_ore_small_sandstone.json │ │ │ ├── lead_ore_small_stone.json │ │ │ ├── lead_ore_stone.json │ │ │ ├── lens_amethyst.json │ │ │ ├── lens_blue_sapphire.json │ │ │ ├── lens_blue_topaz.json │ │ │ ├── lens_diamond.json │ │ │ ├── lens_dilithium.json │ │ │ ├── lens_emerald.json │ │ │ ├── lens_endereye.json │ │ │ ├── lens_glass.json │ │ │ ├── lens_green_sapphire.json │ │ │ ├── lens_olivine.json │ │ │ ├── lens_opal.json │ │ │ ├── lens_red_garnet.json │ │ │ ├── lens_ruby.json │ │ │ ├── lens_tanzanite.json │ │ │ ├── lens_topaz.json │ │ │ ├── lens_yellow_garnet.json │ │ │ ├── lepidolite_ore_andesite.json │ │ │ ├── lepidolite_ore_basalt.json │ │ │ ├── lepidolite_ore_diorite.json │ │ │ ├── lepidolite_ore_endstone.json │ │ │ ├── lepidolite_ore_granite.json │ │ │ ├── lepidolite_ore_granite_black.json │ │ │ ├── lepidolite_ore_granite_red.json │ │ │ ├── lepidolite_ore_marble.json │ │ │ ├── lepidolite_ore_netherrack.json │ │ │ ├── lepidolite_ore_sand.json │ │ │ ├── lepidolite_ore_sand_red.json │ │ │ ├── lepidolite_ore_sandstone.json │ │ │ ├── lepidolite_ore_stone.json │ │ │ ├── lignite_coal_ore_andesite.json │ │ │ ├── lignite_coal_ore_basalt.json │ │ │ ├── lignite_coal_ore_diorite.json │ │ │ ├── lignite_coal_ore_endstone.json │ │ │ ├── lignite_coal_ore_granite.json │ │ │ ├── lignite_coal_ore_granite_black.json │ │ │ ├── lignite_coal_ore_granite_red.json │ │ │ ├── lignite_coal_ore_marble.json │ │ │ ├── lignite_coal_ore_netherrack.json │ │ │ ├── lignite_coal_ore_sand.json │ │ │ ├── lignite_coal_ore_sand_red.json │ │ │ ├── lignite_coal_ore_sandstone.json │ │ │ ├── lignite_coal_ore_stone.json │ │ │ ├── lithium_ore_andesite.json │ │ │ ├── lithium_ore_basalt.json │ │ │ ├── lithium_ore_diorite.json │ │ │ ├── lithium_ore_endstone.json │ │ │ ├── lithium_ore_granite.json │ │ │ ├── lithium_ore_granite_black.json │ │ │ ├── lithium_ore_granite_red.json │ │ │ ├── lithium_ore_marble.json │ │ │ ├── lithium_ore_netherrack.json │ │ │ ├── lithium_ore_sand.json │ │ │ ├── lithium_ore_sand_red.json │ │ │ ├── lithium_ore_sandstone.json │ │ │ ├── lithium_ore_stone.json │ │ │ ├── magnesite_ore_andesite.json │ │ │ ├── magnesite_ore_basalt.json │ │ │ ├── magnesite_ore_diorite.json │ │ │ ├── magnesite_ore_endstone.json │ │ │ ├── magnesite_ore_granite.json │ │ │ ├── magnesite_ore_granite_black.json │ │ │ ├── magnesite_ore_granite_red.json │ │ │ ├── magnesite_ore_marble.json │ │ │ ├── magnesite_ore_netherrack.json │ │ │ ├── magnesite_ore_sand.json │ │ │ ├── magnesite_ore_sand_red.json │ │ │ ├── magnesite_ore_sandstone.json │ │ │ ├── magnesite_ore_stone.json │ │ │ ├── magnetite_ore_andesite.json │ │ │ ├── magnetite_ore_basalt.json │ │ │ ├── magnetite_ore_diorite.json │ │ │ ├── magnetite_ore_endstone.json │ │ │ ├── magnetite_ore_granite.json │ │ │ ├── magnetite_ore_granite_black.json │ │ │ ├── magnetite_ore_granite_red.json │ │ │ ├── magnetite_ore_marble.json │ │ │ ├── magnetite_ore_netherrack.json │ │ │ ├── magnetite_ore_sand.json │ │ │ ├── magnetite_ore_sand_red.json │ │ │ ├── magnetite_ore_sandstone.json │ │ │ ├── magnetite_ore_stone.json │ │ │ ├── malachite_ore_andesite.json │ │ │ ├── malachite_ore_basalt.json │ │ │ ├── malachite_ore_diorite.json │ │ │ ├── malachite_ore_endstone.json │ │ │ ├── malachite_ore_granite.json │ │ │ ├── malachite_ore_granite_black.json │ │ │ ├── malachite_ore_granite_red.json │ │ │ ├── malachite_ore_marble.json │ │ │ ├── malachite_ore_netherrack.json │ │ │ ├── malachite_ore_sand.json │ │ │ ├── malachite_ore_sand_red.json │ │ │ ├── malachite_ore_sandstone.json │ │ │ ├── malachite_ore_stone.json │ │ │ ├── manganese_ore_andesite.json │ │ │ ├── manganese_ore_basalt.json │ │ │ ├── manganese_ore_diorite.json │ │ │ ├── manganese_ore_endstone.json │ │ │ ├── manganese_ore_granite.json │ │ │ ├── manganese_ore_granite_black.json │ │ │ ├── manganese_ore_granite_red.json │ │ │ ├── manganese_ore_marble.json │ │ │ ├── manganese_ore_netherrack.json │ │ │ ├── manganese_ore_sand.json │ │ │ ├── manganese_ore_sand_red.json │ │ │ ├── manganese_ore_sandstone.json │ │ │ ├── manganese_ore_stone.json │ │ │ ├── marble.json │ │ │ ├── mold_anvil.json │ │ │ ├── mold_ball.json │ │ │ ├── mold_block.json │ │ │ ├── mold_bottle.json │ │ │ ├── mold_coinage.json │ │ │ ├── mold_gear.json │ │ │ ├── mold_ingot.json │ │ │ ├── mold_nugget.json │ │ │ ├── mold_plate.json │ │ │ ├── mold_small_gear.json │ │ │ ├── molybdenite_ore_andesite.json │ │ │ ├── molybdenite_ore_basalt.json │ │ │ ├── molybdenite_ore_diorite.json │ │ │ ├── molybdenite_ore_endstone.json │ │ │ ├── molybdenite_ore_granite.json │ │ │ ├── molybdenite_ore_granite_black.json │ │ │ ├── molybdenite_ore_granite_red.json │ │ │ ├── molybdenite_ore_marble.json │ │ │ ├── molybdenite_ore_netherrack.json │ │ │ ├── molybdenite_ore_sand.json │ │ │ ├── molybdenite_ore_sand_red.json │ │ │ ├── molybdenite_ore_sandstone.json │ │ │ ├── molybdenite_ore_stone.json │ │ │ ├── molybdenum_ore_andesite.json │ │ │ ├── molybdenum_ore_basalt.json │ │ │ ├── molybdenum_ore_diorite.json │ │ │ ├── molybdenum_ore_endstone.json │ │ │ ├── molybdenum_ore_granite.json │ │ │ ├── molybdenum_ore_granite_black.json │ │ │ ├── molybdenum_ore_granite_red.json │ │ │ ├── molybdenum_ore_marble.json │ │ │ ├── molybdenum_ore_netherrack.json │ │ │ ├── molybdenum_ore_sand.json │ │ │ ├── molybdenum_ore_sand_red.json │ │ │ ├── molybdenum_ore_sandstone.json │ │ │ ├── molybdenum_ore_stone.json │ │ │ ├── mortar.json │ │ │ ├── motor_ev.json │ │ │ ├── motor_hv.json │ │ │ ├── motor_iv.json │ │ │ ├── motor_lv.json │ │ │ ├── motor_mv.json │ │ │ ├── nand_chip.json │ │ │ ├── naquadah_enriched_ore_andesite.json │ │ │ ├── naquadah_enriched_ore_basalt.json │ │ │ ├── naquadah_enriched_ore_diorite.json │ │ │ ├── naquadah_enriched_ore_endstone.json │ │ │ ├── naquadah_enriched_ore_granite.json │ │ │ ├── naquadah_enriched_ore_granite_black.json │ │ │ ├── naquadah_enriched_ore_granite_red.json │ │ │ ├── naquadah_enriched_ore_marble.json │ │ │ ├── naquadah_enriched_ore_netherrack.json │ │ │ ├── naquadah_enriched_ore_sand.json │ │ │ ├── naquadah_enriched_ore_sand_red.json │ │ │ ├── naquadah_enriched_ore_sandstone.json │ │ │ ├── naquadah_enriched_ore_stone.json │ │ │ ├── naquadah_ore_andesite.json │ │ │ ├── naquadah_ore_basalt.json │ │ │ ├── naquadah_ore_diorite.json │ │ │ ├── naquadah_ore_endstone.json │ │ │ ├── naquadah_ore_granite.json │ │ │ ├── naquadah_ore_granite_black.json │ │ │ ├── naquadah_ore_granite_red.json │ │ │ ├── naquadah_ore_marble.json │ │ │ ├── naquadah_ore_netherrack.json │ │ │ ├── naquadah_ore_sand.json │ │ │ ├── naquadah_ore_sand_red.json │ │ │ ├── naquadah_ore_sandstone.json │ │ │ ├── naquadah_ore_stone.json │ │ │ ├── neodymium_ore_andesite.json │ │ │ ├── neodymium_ore_basalt.json │ │ │ ├── neodymium_ore_diorite.json │ │ │ ├── neodymium_ore_endstone.json │ │ │ ├── neodymium_ore_granite.json │ │ │ ├── neodymium_ore_granite_black.json │ │ │ ├── neodymium_ore_granite_red.json │ │ │ ├── neodymium_ore_marble.json │ │ │ ├── neodymium_ore_netherrack.json │ │ │ ├── neodymium_ore_sand.json │ │ │ ├── neodymium_ore_sand_red.json │ │ │ ├── neodymium_ore_sandstone.json │ │ │ ├── neodymium_ore_stone.json │ │ │ ├── nether_quartz_ore_andesite.json │ │ │ ├── nether_quartz_ore_basalt.json │ │ │ ├── nether_quartz_ore_diorite.json │ │ │ ├── nether_quartz_ore_endstone.json │ │ │ ├── nether_quartz_ore_granite.json │ │ │ ├── nether_quartz_ore_granite_black.json │ │ │ ├── nether_quartz_ore_granite_red.json │ │ │ ├── nether_quartz_ore_marble.json │ │ │ ├── nether_quartz_ore_netherrack.json │ │ │ ├── nether_quartz_ore_sand.json │ │ │ ├── nether_quartz_ore_sand_red.json │ │ │ ├── nether_quartz_ore_sandstone.json │ │ │ ├── nether_quartz_ore_small_andesite.json │ │ │ ├── nether_quartz_ore_small_basalt.json │ │ │ ├── nether_quartz_ore_small_diorite.json │ │ │ ├── nether_quartz_ore_small_endstone.json │ │ │ ├── nether_quartz_ore_small_granite.json │ │ │ ├── nether_quartz_ore_small_granite_black.json │ │ │ ├── nether_quartz_ore_small_granite_red.json │ │ │ ├── nether_quartz_ore_small_marble.json │ │ │ ├── nether_quartz_ore_small_netherrack.json │ │ │ ├── nether_quartz_ore_small_sand.json │ │ │ ├── nether_quartz_ore_small_sand_red.json │ │ │ ├── nether_quartz_ore_small_sandstone.json │ │ │ ├── nether_quartz_ore_small_stone.json │ │ │ ├── nether_quartz_ore_stone.json │ │ │ ├── nickel_ore_andesite.json │ │ │ ├── nickel_ore_basalt.json │ │ │ ├── nickel_ore_diorite.json │ │ │ ├── nickel_ore_endstone.json │ │ │ ├── nickel_ore_granite.json │ │ │ ├── nickel_ore_granite_black.json │ │ │ ├── nickel_ore_granite_red.json │ │ │ ├── nickel_ore_marble.json │ │ │ ├── nickel_ore_netherrack.json │ │ │ ├── nickel_ore_sand.json │ │ │ ├── nickel_ore_sand_red.json │ │ │ ├── nickel_ore_sandstone.json │ │ │ ├── nickel_ore_small_andesite.json │ │ │ ├── nickel_ore_small_basalt.json │ │ │ ├── nickel_ore_small_diorite.json │ │ │ ├── nickel_ore_small_endstone.json │ │ │ ├── nickel_ore_small_granite.json │ │ │ ├── nickel_ore_small_granite_black.json │ │ │ ├── nickel_ore_small_granite_red.json │ │ │ ├── nickel_ore_small_marble.json │ │ │ ├── nickel_ore_small_netherrack.json │ │ │ ├── nickel_ore_small_sand.json │ │ │ ├── nickel_ore_small_sand_red.json │ │ │ ├── nickel_ore_small_sandstone.json │ │ │ ├── nickel_ore_small_stone.json │ │ │ ├── nickel_ore_stone.json │ │ │ ├── nugget_aluminium.json │ │ │ ├── nugget_americium.json │ │ │ ├── nugget_annealed_copper.json │ │ │ ├── nugget_antimony.json │ │ │ ├── nugget_arsenic.json │ │ │ ├── nugget_battery_alloy.json │ │ │ ├── nugget_beryllium.json │ │ │ ├── nugget_bismuth.json │ │ │ ├── nugget_bismuth_bronze.json │ │ │ ├── nugget_black_bronze.json │ │ │ ├── nugget_black_steel.json │ │ │ ├── nugget_blue_steel.json │ │ │ ├── nugget_brass.json │ │ │ ├── nugget_bronze.json │ │ │ ├── nugget_caesium.json │ │ │ ├── nugget_carbon.json │ │ │ ├── nugget_cerium.json │ │ │ ├── nugget_chrome.json │ │ │ ├── nugget_cobalt.json │ │ │ ├── nugget_cobalt_brass.json │ │ │ ├── nugget_copper.json │ │ │ ├── nugget_cupronickel.json │ │ │ ├── nugget_duranium.json │ │ │ ├── nugget_dysprosium.json │ │ │ ├── nugget_electrum.json │ │ │ ├── nugget_epoxid.json │ │ │ ├── nugget_europium.json │ │ │ ├── nugget_fiber_reinforced_epoxy_resin.json │ │ │ ├── nugget_gallium.json │ │ │ ├── nugget_gallium_arsenide.json │ │ │ ├── nugget_hsse.json │ │ │ ├── nugget_hssg.json │ │ │ ├── nugget_hsss.json │ │ │ ├── nugget_indium.json │ │ │ ├── nugget_invar.json │ │ │ ├── nugget_iridium.json │ │ │ ├── nugget_kanthal.json │ │ │ ├── nugget_lanthanum.json │ │ │ ├── nugget_lead.json │ │ │ ├── nugget_lithium.json │ │ │ ├── nugget_lutetium.json │ │ │ ├── nugget_magnalium.json │ │ │ ├── nugget_magnesium.json │ │ │ ├── nugget_magnetic_iron.json │ │ │ ├── nugget_magnetic_neodymium.json │ │ │ ├── nugget_magnetic_steel.json │ │ │ ├── nugget_manganese.json │ │ │ ├── nugget_molybdenum.json │ │ │ ├── nugget_naquadah.json │ │ │ ├── nugget_naquadah_alloy.json │ │ │ ├── nugget_naquadah_enriched.json │ │ │ ├── nugget_naquadria.json │ │ │ ├── nugget_neodymium.json │ │ │ ├── nugget_neutronium.json │ │ │ ├── nugget_nichrome.json │ │ │ ├── nugget_nickel.json │ │ │ ├── nugget_nickel_zinc_ferrite.json │ │ │ ├── nugget_niobium.json │ │ │ ├── nugget_niobium_titanium.json │ │ │ ├── nugget_osmiridium.json │ │ │ ├── nugget_osmium.json │ │ │ ├── nugget_palladium.json │ │ │ ├── nugget_plastic.json │ │ │ ├── nugget_platinum.json │ │ │ ├── nugget_plutonium_241.json │ │ │ ├── nugget_plutonium_244.json │ │ │ ├── nugget_polycaprolactam.json │ │ │ ├── nugget_polyphenylene_sulfide.json │ │ │ ├── nugget_polystyrene.json │ │ │ ├── nugget_polytetrafluoroethylene.json │ │ │ ├── nugget_polyvinyl_chloride.json │ │ │ ├── nugget_potassium.json │ │ │ ├── nugget_red_alloy.json │ │ │ ├── nugget_red_steel.json │ │ │ ├── nugget_rose_gold.json │ │ │ ├── nugget_rubber.json │ │ │ ├── nugget_silicon.json │ │ │ ├── nugget_silicone.json │ │ │ ├── nugget_silver.json │ │ │ ├── nugget_soldering_alloy.json │ │ │ ├── nugget_stainless_steel.json │ │ │ ├── nugget_steel.json │ │ │ ├── nugget_sterling_silver.json │ │ │ ├── nugget_styrene_butadiene_rubber.json │ │ │ ├── nugget_tantalum.json │ │ │ ├── nugget_thorium.json │ │ │ ├── nugget_tin.json │ │ │ ├── nugget_titanium.json │ │ │ ├── nugget_tritanium.json │ │ │ ├── nugget_tungsten.json │ │ │ ├── nugget_tungsten_carbide.json │ │ │ ├── nugget_tungstensteel.json │ │ │ ├── nugget_ultimet.json │ │ │ ├── nugget_uranium_235.json │ │ │ ├── nugget_uranium_238.json │ │ │ ├── nugget_vanadium.json │ │ │ ├── nugget_vanadium_gallium.json │ │ │ ├── nugget_vanadium_steel.json │ │ │ ├── nugget_vibranium.json │ │ │ ├── nugget_wrought_iron.json │ │ │ ├── nugget_yttrium.json │ │ │ ├── nugget_yttrium_barium_cuprate.json │ │ │ ├── nugget_zinc.json │ │ │ ├── oilsands_ore_andesite.json │ │ │ ├── oilsands_ore_basalt.json │ │ │ ├── oilsands_ore_diorite.json │ │ │ ├── oilsands_ore_endstone.json │ │ │ ├── oilsands_ore_granite.json │ │ │ ├── oilsands_ore_granite_black.json │ │ │ ├── oilsands_ore_granite_red.json │ │ │ ├── oilsands_ore_marble.json │ │ │ ├── oilsands_ore_netherrack.json │ │ │ ├── oilsands_ore_sand.json │ │ │ ├── oilsands_ore_sand_red.json │ │ │ ├── oilsands_ore_sandstone.json │ │ │ ├── oilsands_ore_stone.json │ │ │ ├── olivine_ore_andesite.json │ │ │ ├── olivine_ore_basalt.json │ │ │ ├── olivine_ore_diorite.json │ │ │ ├── olivine_ore_endstone.json │ │ │ ├── olivine_ore_granite.json │ │ │ ├── olivine_ore_granite_black.json │ │ │ ├── olivine_ore_granite_red.json │ │ │ ├── olivine_ore_marble.json │ │ │ ├── olivine_ore_netherrack.json │ │ │ ├── olivine_ore_sand.json │ │ │ ├── olivine_ore_sand_red.json │ │ │ ├── olivine_ore_sandstone.json │ │ │ ├── olivine_ore_small_andesite.json │ │ │ ├── olivine_ore_small_basalt.json │ │ │ ├── olivine_ore_small_diorite.json │ │ │ ├── olivine_ore_small_endstone.json │ │ │ ├── olivine_ore_small_granite.json │ │ │ ├── olivine_ore_small_granite_black.json │ │ │ ├── olivine_ore_small_granite_red.json │ │ │ ├── olivine_ore_small_marble.json │ │ │ ├── olivine_ore_small_netherrack.json │ │ │ ├── olivine_ore_small_sand.json │ │ │ ├── olivine_ore_small_sand_red.json │ │ │ ├── olivine_ore_small_sandstone.json │ │ │ ├── olivine_ore_small_stone.json │ │ │ ├── olivine_ore_stone.json │ │ │ ├── opal_ore_andesite.json │ │ │ ├── opal_ore_basalt.json │ │ │ ├── opal_ore_diorite.json │ │ │ ├── opal_ore_endstone.json │ │ │ ├── opal_ore_granite.json │ │ │ ├── opal_ore_granite_black.json │ │ │ ├── opal_ore_granite_red.json │ │ │ ├── opal_ore_marble.json │ │ │ ├── opal_ore_netherrack.json │ │ │ ├── opal_ore_sand.json │ │ │ ├── opal_ore_sand_red.json │ │ │ ├── opal_ore_sandstone.json │ │ │ ├── opal_ore_small_andesite.json │ │ │ ├── opal_ore_small_basalt.json │ │ │ ├── opal_ore_small_diorite.json │ │ │ ├── opal_ore_small_endstone.json │ │ │ ├── opal_ore_small_granite.json │ │ │ ├── opal_ore_small_granite_black.json │ │ │ ├── opal_ore_small_granite_red.json │ │ │ ├── opal_ore_small_marble.json │ │ │ ├── opal_ore_small_netherrack.json │ │ │ ├── opal_ore_small_sand.json │ │ │ ├── opal_ore_small_sand_red.json │ │ │ ├── opal_ore_small_sandstone.json │ │ │ ├── opal_ore_small_stone.json │ │ │ ├── opal_ore_stone.json │ │ │ ├── palladium_ore_andesite.json │ │ │ ├── palladium_ore_basalt.json │ │ │ ├── palladium_ore_diorite.json │ │ │ ├── palladium_ore_endstone.json │ │ │ ├── palladium_ore_granite.json │ │ │ ├── palladium_ore_granite_black.json │ │ │ ├── palladium_ore_granite_red.json │ │ │ ├── palladium_ore_marble.json │ │ │ ├── palladium_ore_netherrack.json │ │ │ ├── palladium_ore_sand.json │ │ │ ├── palladium_ore_sand_red.json │ │ │ ├── palladium_ore_sandstone.json │ │ │ ├── palladium_ore_stone.json │ │ │ ├── pentlandite_ore_andesite.json │ │ │ ├── pentlandite_ore_basalt.json │ │ │ ├── pentlandite_ore_diorite.json │ │ │ ├── pentlandite_ore_endstone.json │ │ │ ├── pentlandite_ore_granite.json │ │ │ ├── pentlandite_ore_granite_black.json │ │ │ ├── pentlandite_ore_granite_red.json │ │ │ ├── pentlandite_ore_marble.json │ │ │ ├── pentlandite_ore_netherrack.json │ │ │ ├── pentlandite_ore_sand.json │ │ │ ├── pentlandite_ore_sand_red.json │ │ │ ├── pentlandite_ore_sandstone.json │ │ │ ├── pentlandite_ore_small_andesite.json │ │ │ ├── pentlandite_ore_small_basalt.json │ │ │ ├── pentlandite_ore_small_diorite.json │ │ │ ├── pentlandite_ore_small_endstone.json │ │ │ ├── pentlandite_ore_small_granite.json │ │ │ ├── pentlandite_ore_small_granite_black.json │ │ │ ├── pentlandite_ore_small_granite_red.json │ │ │ ├── pentlandite_ore_small_marble.json │ │ │ ├── pentlandite_ore_small_netherrack.json │ │ │ ├── pentlandite_ore_small_sand.json │ │ │ ├── pentlandite_ore_small_sand_red.json │ │ │ ├── pentlandite_ore_small_sandstone.json │ │ │ ├── pentlandite_ore_small_stone.json │ │ │ ├── pentlandite_ore_stone.json │ │ │ ├── phosphate_ore_andesite.json │ │ │ ├── phosphate_ore_basalt.json │ │ │ ├── phosphate_ore_diorite.json │ │ │ ├── phosphate_ore_endstone.json │ │ │ ├── phosphate_ore_granite.json │ │ │ ├── phosphate_ore_granite_black.json │ │ │ ├── phosphate_ore_granite_red.json │ │ │ ├── phosphate_ore_marble.json │ │ │ ├── phosphate_ore_netherrack.json │ │ │ ├── phosphate_ore_sand.json │ │ │ ├── phosphate_ore_sand_red.json │ │ │ ├── phosphate_ore_sandstone.json │ │ │ ├── phosphate_ore_stone.json │ │ │ ├── phosphorus_ore_andesite.json │ │ │ ├── phosphorus_ore_basalt.json │ │ │ ├── phosphorus_ore_diorite.json │ │ │ ├── phosphorus_ore_endstone.json │ │ │ ├── phosphorus_ore_granite.json │ │ │ ├── phosphorus_ore_granite_black.json │ │ │ ├── phosphorus_ore_granite_red.json │ │ │ ├── phosphorus_ore_marble.json │ │ │ ├── phosphorus_ore_netherrack.json │ │ │ ├── phosphorus_ore_sand.json │ │ │ ├── phosphorus_ore_sand_red.json │ │ │ ├── phosphorus_ore_sandstone.json │ │ │ ├── phosphorus_ore_stone.json │ │ │ ├── pickaxe.json │ │ │ ├── piston_ev.json │ │ │ ├── piston_hv.json │ │ │ ├── piston_iv.json │ │ │ ├── piston_lv.json │ │ │ ├── piston_mv.json │ │ │ ├── pitchblende_ore_andesite.json │ │ │ ├── pitchblende_ore_basalt.json │ │ │ ├── pitchblende_ore_diorite.json │ │ │ ├── pitchblende_ore_endstone.json │ │ │ ├── pitchblende_ore_granite.json │ │ │ ├── pitchblende_ore_granite_black.json │ │ │ ├── pitchblende_ore_granite_red.json │ │ │ ├── pitchblende_ore_marble.json │ │ │ ├── pitchblende_ore_netherrack.json │ │ │ ├── pitchblende_ore_sand.json │ │ │ ├── pitchblende_ore_sand_red.json │ │ │ ├── pitchblende_ore_sandstone.json │ │ │ ├── pitchblende_ore_stone.json │ │ │ ├── plate_aluminium.json │ │ │ ├── plate_amethyst.json │ │ │ ├── plate_annealed_copper.json │ │ │ ├── plate_battery_alloy.json │ │ │ ├── plate_beryllium.json │ │ │ ├── plate_bismuth_bronze.json │ │ │ ├── plate_black_bronze.json │ │ │ ├── plate_black_steel.json │ │ │ ├── plate_blue_sapphire.json │ │ │ ├── plate_blue_steel.json │ │ │ ├── plate_blue_topaz.json │ │ │ ├── plate_bronze.json │ │ │ ├── plate_chrome.json │ │ │ ├── plate_cobalt.json │ │ │ ├── plate_cobalt_brass.json │ │ │ ├── plate_copper.json │ │ │ ├── plate_dense_lead.json │ │ │ ├── plate_diamond.json │ │ │ ├── plate_dilithium.json │ │ │ ├── plate_duranium.json │ │ │ ├── plate_electrum.json │ │ │ ├── plate_emerald.json │ │ │ ├── plate_endereye.json │ │ │ ├── plate_epoxid.json │ │ │ ├── plate_fiber_reinforced_epoxy_resin.json │ │ │ ├── plate_glass.json │ │ │ ├── plate_gold.json │ │ │ ├── plate_green_sapphire.json │ │ │ ├── plate_hsse.json │ │ │ ├── plate_hssg.json │ │ │ ├── plate_hsss.json │ │ │ ├── plate_invar.json │ │ │ ├── plate_iridium.json │ │ │ ├── plate_iron.json │ │ │ ├── plate_kanthal.json │ │ │ ├── plate_lead.json │ │ │ ├── plate_magnetic_iron.json │ │ │ ├── plate_magnetic_steel.json │ │ │ ├── plate_molybdenum.json │ │ │ ├── plate_naquadah.json │ │ │ ├── plate_naquadah_alloy.json │ │ │ ├── plate_naquadah_enriched.json │ │ │ ├── plate_naquadria.json │ │ │ ├── plate_neodymium.json │ │ │ ├── plate_neutronium.json │ │ │ ├── plate_nichrome.json │ │ │ ├── plate_nickel_zinc_ferrite.json │ │ │ ├── plate_niobium_titanium.json │ │ │ ├── plate_olivine.json │ │ │ ├── plate_opal.json │ │ │ ├── plate_osmiridium.json │ │ │ ├── plate_osmium.json │ │ │ ├── plate_palladium.json │ │ │ ├── plate_plastic.json │ │ │ ├── plate_platinum.json │ │ │ ├── plate_plutonium_241.json │ │ │ ├── plate_plutonium_244.json │ │ │ ├── plate_polycaprolactam.json │ │ │ ├── plate_polyphenylene_sulfide.json │ │ │ ├── plate_polytetrafluoroethylene.json │ │ │ ├── plate_polyvinyl_chloride.json │ │ │ ├── plate_red_alloy.json │ │ │ ├── plate_red_garnet.json │ │ │ ├── plate_red_steel.json │ │ │ ├── plate_rose_gold.json │ │ │ ├── plate_rubber.json │ │ │ ├── plate_ruby.json │ │ │ ├── plate_silicon.json │ │ │ ├── plate_silicone.json │ │ │ ├── plate_soldering_alloy.json │ │ │ ├── plate_stainless_steel.json │ │ │ ├── plate_steel.json │ │ │ ├── plate_sterling_silver.json │ │ │ ├── plate_styrene_butadiene_rubber.json │ │ │ ├── plate_tanzanite.json │ │ │ ├── plate_thorium.json │ │ │ ├── plate_tin.json │ │ │ ├── plate_titanium.json │ │ │ ├── plate_topaz.json │ │ │ ├── plate_tritanium.json │ │ │ ├── plate_tungsten.json │ │ │ ├── plate_tungsten_carbide.json │ │ │ ├── plate_tungstensteel.json │ │ │ ├── plate_uranium_235.json │ │ │ ├── plate_vanadium_steel.json │ │ │ ├── plate_vibranium.json │ │ │ ├── plate_wrought_iron.json │ │ │ ├── plate_yellow_garnet.json │ │ │ ├── plate_yttrium_barium_cuprate.json │ │ │ ├── plate_zinc.json │ │ │ ├── platinum_ore_andesite.json │ │ │ ├── platinum_ore_basalt.json │ │ │ ├── platinum_ore_diorite.json │ │ │ ├── platinum_ore_endstone.json │ │ │ ├── platinum_ore_granite.json │ │ │ ├── platinum_ore_granite_black.json │ │ │ ├── platinum_ore_granite_red.json │ │ │ ├── platinum_ore_marble.json │ │ │ ├── platinum_ore_netherrack.json │ │ │ ├── platinum_ore_sand.json │ │ │ ├── platinum_ore_sand_red.json │ │ │ ├── platinum_ore_sandstone.json │ │ │ ├── platinum_ore_small_andesite.json │ │ │ ├── platinum_ore_small_basalt.json │ │ │ ├── platinum_ore_small_diorite.json │ │ │ ├── platinum_ore_small_endstone.json │ │ │ ├── platinum_ore_small_granite.json │ │ │ ├── platinum_ore_small_granite_black.json │ │ │ ├── platinum_ore_small_granite_red.json │ │ │ ├── platinum_ore_small_marble.json │ │ │ ├── platinum_ore_small_netherrack.json │ │ │ ├── platinum_ore_small_sand.json │ │ │ ├── platinum_ore_small_sand_red.json │ │ │ ├── platinum_ore_small_sandstone.json │ │ │ ├── platinum_ore_small_stone.json │ │ │ ├── platinum_ore_stone.json │ │ │ ├── plunger.json │ │ │ ├── pump_ev.json │ │ │ ├── pump_hv.json │ │ │ ├── pump_iv.json │ │ │ ├── pump_lv.json │ │ │ ├── pump_mv.json │ │ │ ├── pyrite_ore_andesite.json │ │ │ ├── pyrite_ore_basalt.json │ │ │ ├── pyrite_ore_diorite.json │ │ │ ├── pyrite_ore_endstone.json │ │ │ ├── pyrite_ore_granite.json │ │ │ ├── pyrite_ore_granite_black.json │ │ │ ├── pyrite_ore_granite_red.json │ │ │ ├── pyrite_ore_marble.json │ │ │ ├── pyrite_ore_netherrack.json │ │ │ ├── pyrite_ore_sand.json │ │ │ ├── pyrite_ore_sand_red.json │ │ │ ├── pyrite_ore_sandstone.json │ │ │ ├── pyrite_ore_small_andesite.json │ │ │ ├── pyrite_ore_small_basalt.json │ │ │ ├── pyrite_ore_small_diorite.json │ │ │ ├── pyrite_ore_small_endstone.json │ │ │ ├── pyrite_ore_small_granite.json │ │ │ ├── pyrite_ore_small_granite_black.json │ │ │ ├── pyrite_ore_small_granite_red.json │ │ │ ├── pyrite_ore_small_marble.json │ │ │ ├── pyrite_ore_small_netherrack.json │ │ │ ├── pyrite_ore_small_sand.json │ │ │ ├── pyrite_ore_small_sand_red.json │ │ │ ├── pyrite_ore_small_sandstone.json │ │ │ ├── pyrite_ore_small_stone.json │ │ │ ├── pyrite_ore_stone.json │ │ │ ├── pyrolusite_ore_andesite.json │ │ │ ├── pyrolusite_ore_basalt.json │ │ │ ├── pyrolusite_ore_diorite.json │ │ │ ├── pyrolusite_ore_endstone.json │ │ │ ├── pyrolusite_ore_granite.json │ │ │ ├── pyrolusite_ore_granite_black.json │ │ │ ├── pyrolusite_ore_granite_red.json │ │ │ ├── pyrolusite_ore_marble.json │ │ │ ├── pyrolusite_ore_netherrack.json │ │ │ ├── pyrolusite_ore_sand.json │ │ │ ├── pyrolusite_ore_sand_red.json │ │ │ ├── pyrolusite_ore_sandstone.json │ │ │ ├── pyrolusite_ore_small_andesite.json │ │ │ ├── pyrolusite_ore_small_basalt.json │ │ │ ├── pyrolusite_ore_small_diorite.json │ │ │ ├── pyrolusite_ore_small_endstone.json │ │ │ ├── pyrolusite_ore_small_granite.json │ │ │ ├── pyrolusite_ore_small_granite_black.json │ │ │ ├── pyrolusite_ore_small_granite_red.json │ │ │ ├── pyrolusite_ore_small_marble.json │ │ │ ├── pyrolusite_ore_small_netherrack.json │ │ │ ├── pyrolusite_ore_small_sand.json │ │ │ ├── pyrolusite_ore_small_sand_red.json │ │ │ ├── pyrolusite_ore_small_sandstone.json │ │ │ ├── pyrolusite_ore_small_stone.json │ │ │ ├── pyrolusite_ore_stone.json │ │ │ ├── pyrope_ore_andesite.json │ │ │ ├── pyrope_ore_basalt.json │ │ │ ├── pyrope_ore_diorite.json │ │ │ ├── pyrope_ore_endstone.json │ │ │ ├── pyrope_ore_granite.json │ │ │ ├── pyrope_ore_granite_black.json │ │ │ ├── pyrope_ore_granite_red.json │ │ │ ├── pyrope_ore_marble.json │ │ │ ├── pyrope_ore_netherrack.json │ │ │ ├── pyrope_ore_sand.json │ │ │ ├── pyrope_ore_sand_red.json │ │ │ ├── pyrope_ore_sandstone.json │ │ │ ├── pyrope_ore_small_andesite.json │ │ │ ├── pyrope_ore_small_basalt.json │ │ │ ├── pyrope_ore_small_diorite.json │ │ │ ├── pyrope_ore_small_endstone.json │ │ │ ├── pyrope_ore_small_granite.json │ │ │ ├── pyrope_ore_small_granite_black.json │ │ │ ├── pyrope_ore_small_granite_red.json │ │ │ ├── pyrope_ore_small_marble.json │ │ │ ├── pyrope_ore_small_netherrack.json │ │ │ ├── pyrope_ore_small_sand.json │ │ │ ├── pyrope_ore_small_sand_red.json │ │ │ ├── pyrope_ore_small_sandstone.json │ │ │ ├── pyrope_ore_small_stone.json │ │ │ ├── pyrope_ore_stone.json │ │ │ ├── quantum_eye.json │ │ │ ├── quantum_star.json │ │ │ ├── quartzite_ore_andesite.json │ │ │ ├── quartzite_ore_basalt.json │ │ │ ├── quartzite_ore_diorite.json │ │ │ ├── quartzite_ore_endstone.json │ │ │ ├── quartzite_ore_granite.json │ │ │ ├── quartzite_ore_granite_black.json │ │ │ ├── quartzite_ore_granite_red.json │ │ │ ├── quartzite_ore_marble.json │ │ │ ├── quartzite_ore_netherrack.json │ │ │ ├── quartzite_ore_sand.json │ │ │ ├── quartzite_ore_sand_red.json │ │ │ ├── quartzite_ore_sandstone.json │ │ │ ├── quartzite_ore_stone.json │ │ │ ├── red_garnet_ore_andesite.json │ │ │ ├── red_garnet_ore_basalt.json │ │ │ ├── red_garnet_ore_diorite.json │ │ │ ├── red_garnet_ore_endstone.json │ │ │ ├── red_garnet_ore_granite.json │ │ │ ├── red_garnet_ore_granite_black.json │ │ │ ├── red_garnet_ore_granite_red.json │ │ │ ├── red_garnet_ore_marble.json │ │ │ ├── red_garnet_ore_netherrack.json │ │ │ ├── red_garnet_ore_sand.json │ │ │ ├── red_garnet_ore_sand_red.json │ │ │ ├── red_garnet_ore_sandstone.json │ │ │ ├── red_garnet_ore_small_andesite.json │ │ │ ├── red_garnet_ore_small_basalt.json │ │ │ ├── red_garnet_ore_small_diorite.json │ │ │ ├── red_garnet_ore_small_endstone.json │ │ │ ├── red_garnet_ore_small_granite.json │ │ │ ├── red_garnet_ore_small_granite_black.json │ │ │ ├── red_garnet_ore_small_granite_red.json │ │ │ ├── red_garnet_ore_small_marble.json │ │ │ ├── red_garnet_ore_small_netherrack.json │ │ │ ├── red_garnet_ore_small_sand.json │ │ │ ├── red_garnet_ore_small_sand_red.json │ │ │ ├── red_garnet_ore_small_sandstone.json │ │ │ ├── red_garnet_ore_small_stone.json │ │ │ ├── red_garnet_ore_stone.json │ │ │ ├── redstone_ore_andesite.json │ │ │ ├── redstone_ore_basalt.json │ │ │ ├── redstone_ore_diorite.json │ │ │ ├── redstone_ore_endstone.json │ │ │ ├── redstone_ore_granite.json │ │ │ ├── redstone_ore_granite_black.json │ │ │ ├── redstone_ore_granite_red.json │ │ │ ├── redstone_ore_marble.json │ │ │ ├── redstone_ore_netherrack.json │ │ │ ├── redstone_ore_sand.json │ │ │ ├── redstone_ore_sand_red.json │ │ │ ├── redstone_ore_sandstone.json │ │ │ ├── redstone_ore_small_andesite.json │ │ │ ├── redstone_ore_small_basalt.json │ │ │ ├── redstone_ore_small_diorite.json │ │ │ ├── redstone_ore_small_endstone.json │ │ │ ├── redstone_ore_small_granite.json │ │ │ ├── redstone_ore_small_granite_black.json │ │ │ ├── redstone_ore_small_granite_red.json │ │ │ ├── redstone_ore_small_marble.json │ │ │ ├── redstone_ore_small_netherrack.json │ │ │ ├── redstone_ore_small_sand.json │ │ │ ├── redstone_ore_small_sand_red.json │ │ │ ├── redstone_ore_small_sandstone.json │ │ │ ├── redstone_ore_small_stone.json │ │ │ ├── redstone_ore_stone.json │ │ │ ├── ring_aluminium.json │ │ │ ├── ring_chrome.json │ │ │ ├── ring_iron.json │ │ │ ├── ring_neutronium.json │ │ │ ├── ring_osmium.json │ │ │ ├── ring_rubber.json │ │ │ ├── ring_steel.json │ │ │ ├── ring_styrene_butadiene_rubber.json │ │ │ ├── ring_tin.json │ │ │ ├── ring_tungstensteel.json │ │ │ ├── ring_wrought_iron.json │ │ │ ├── robot_arm_ev.json │ │ │ ├── robot_arm_hv.json │ │ │ ├── robot_arm_iv.json │ │ │ ├── robot_arm_lv.json │ │ │ ├── robot_arm_mv.json │ │ │ ├── rock_almandine.json │ │ │ ├── rock_aluminium.json │ │ │ ├── rock_amethyst.json │ │ │ ├── rock_andradite.json │ │ │ ├── rock_banded_iron.json │ │ │ ├── rock_barite.json │ │ │ ├── rock_bastnasite.json │ │ │ ├── rock_bauxite.json │ │ │ ├── rock_bentonite.json │ │ │ ├── rock_beryllium.json │ │ │ ├── rock_bismuth.json │ │ │ ├── rock_blue_sapphire.json │ │ │ ├── rock_blue_topaz.json │ │ │ ├── rock_brown_limonite.json │ │ │ ├── rock_calcite.json │ │ │ ├── rock_cassiterite.json │ │ │ ├── rock_chalcopyrite.json │ │ │ ├── rock_cinnabar.json │ │ │ ├── rock_coal.json │ │ │ ├── rock_cobaltite.json │ │ │ ├── rock_cooperite.json │ │ │ ├── rock_copper.json │ │ │ ├── rock_diamond.json │ │ │ ├── rock_emerald.json │ │ │ ├── rock_flint.json │ │ │ ├── rock_galena.json │ │ │ ├── rock_garnierite.json │ │ │ ├── rock_glauconite.json │ │ │ ├── rock_gold.json │ │ │ ├── rock_graphite.json │ │ │ ├── rock_green_sapphire.json │ │ │ ├── rock_grossular.json │ │ │ ├── rock_ilmenite.json │ │ │ ├── rock_iridium.json │ │ │ ├── rock_iron.json │ │ │ ├── rock_lapis.json │ │ │ ├── rock_lead.json │ │ │ ├── rock_lepidolite.json │ │ │ ├── rock_lignite_coal.json │ │ │ ├── rock_lithium.json │ │ │ ├── rock_magnesite.json │ │ │ ├── rock_magnetite.json │ │ │ ├── rock_malachite.json │ │ │ ├── rock_manganese.json │ │ │ ├── rock_molybdenite.json │ │ │ ├── rock_molybdenum.json │ │ │ ├── rock_naquadah.json │ │ │ ├── rock_naquadah_enriched.json │ │ │ ├── rock_neodymium.json │ │ │ ├── rock_nether_quartz.json │ │ │ ├── rock_nickel.json │ │ │ ├── rock_oilsands.json │ │ │ ├── rock_olivine.json │ │ │ ├── rock_opal.json │ │ │ ├── rock_palladium.json │ │ │ ├── rock_pentlandite.json │ │ │ ├── rock_phosphate.json │ │ │ ├── rock_phosphorus.json │ │ │ ├── rock_pitchblende.json │ │ │ ├── rock_platinum.json │ │ │ ├── rock_pyrite.json │ │ │ ├── rock_pyrolusite.json │ │ │ ├── rock_pyrope.json │ │ │ ├── rock_quartzite.json │ │ │ ├── rock_red_garnet.json │ │ │ ├── rock_redstone.json │ │ │ ├── rock_rock_salt.json │ │ │ ├── rock_ruby.json │ │ │ ├── rock_salt.json │ │ │ ├── rock_salt_ore_andesite.json │ │ │ ├── rock_salt_ore_basalt.json │ │ │ ├── rock_salt_ore_diorite.json │ │ │ ├── rock_salt_ore_endstone.json │ │ │ ├── rock_salt_ore_granite.json │ │ │ ├── rock_salt_ore_granite_black.json │ │ │ ├── rock_salt_ore_granite_red.json │ │ │ ├── rock_salt_ore_marble.json │ │ │ ├── rock_salt_ore_netherrack.json │ │ │ ├── rock_salt_ore_sand.json │ │ │ ├── rock_salt_ore_sand_red.json │ │ │ ├── rock_salt_ore_sandstone.json │ │ │ ├── rock_salt_ore_small_andesite.json │ │ │ ├── rock_salt_ore_small_basalt.json │ │ │ ├── rock_salt_ore_small_diorite.json │ │ │ ├── rock_salt_ore_small_endstone.json │ │ │ ├── rock_salt_ore_small_granite.json │ │ │ ├── rock_salt_ore_small_granite_black.json │ │ │ ├── rock_salt_ore_small_granite_red.json │ │ │ ├── rock_salt_ore_small_marble.json │ │ │ ├── rock_salt_ore_small_netherrack.json │ │ │ ├── rock_salt_ore_small_sand.json │ │ │ ├── rock_salt_ore_small_sand_red.json │ │ │ ├── rock_salt_ore_small_sandstone.json │ │ │ ├── rock_salt_ore_small_stone.json │ │ │ ├── rock_salt_ore_stone.json │ │ │ ├── rock_saltpeter.json │ │ │ ├── rock_scheelite.json │ │ │ ├── rock_silver.json │ │ │ ├── rock_soapstone.json │ │ │ ├── rock_spessartine.json │ │ │ ├── rock_sphalerite.json │ │ │ ├── rock_spodumene.json │ │ │ ├── rock_stibnite.json │ │ │ ├── rock_sulfur.json │ │ │ ├── rock_talc.json │ │ │ ├── rock_tantalite.json │ │ │ ├── rock_tanzanite.json │ │ │ ├── rock_tetrahedrite.json │ │ │ ├── rock_thorium.json │ │ │ ├── rock_tin.json │ │ │ ├── rock_topaz.json │ │ │ ├── rock_tungstate.json │ │ │ ├── rock_uraninite.json │ │ │ ├── rock_uranium_238.json │ │ │ ├── rock_uvarovite.json │ │ │ ├── rock_vanadium_magnetite.json │ │ │ ├── rock_wulfenite.json │ │ │ ├── rock_yellow_garnet.json │ │ │ ├── rock_yellow_limonite.json │ │ │ ├── rock_zinc.json │ │ │ ├── rod_aluminium.json │ │ │ ├── rod_amethyst.json │ │ │ ├── rod_annealed_copper.json │ │ │ ├── rod_beryllium.json │ │ │ ├── rod_bismuth_bronze.json │ │ │ ├── rod_black_bronze.json │ │ │ ├── rod_black_steel.json │ │ │ ├── rod_blue_sapphire.json │ │ │ ├── rod_blue_steel.json │ │ │ ├── rod_blue_topaz.json │ │ │ ├── rod_bronze.json │ │ │ ├── rod_chrome.json │ │ │ ├── rod_cobalt.json │ │ │ ├── rod_cobalt_brass.json │ │ │ ├── rod_copper.json │ │ │ ├── rod_diamond.json │ │ │ ├── rod_duranium.json │ │ │ ├── rod_electrum.json │ │ │ ├── rod_emerald.json │ │ │ ├── rod_endereye.json │ │ │ ├── rod_epoxid.json │ │ │ ├── rod_fiber_reinforced_epoxy_resin.json │ │ │ ├── rod_gold.json │ │ │ ├── rod_green_sapphire.json │ │ │ ├── rod_hsse.json │ │ │ ├── rod_hssg.json │ │ │ ├── rod_hsss.json │ │ │ ├── rod_invar.json │ │ │ ├── rod_iridium.json │ │ │ ├── rod_iron.json │ │ │ ├── rod_kanthal.json │ │ │ ├── rod_lead.json │ │ │ ├── rod_magnetic_iron.json │ │ │ ├── rod_magnetic_steel.json │ │ │ ├── rod_molybdenum.json │ │ │ ├── rod_naquadah.json │ │ │ ├── rod_naquadah_alloy.json │ │ │ ├── rod_naquadah_enriched.json │ │ │ ├── rod_naquadria.json │ │ │ ├── rod_neodymium.json │ │ │ ├── rod_nether_star.json │ │ │ ├── rod_neutronium.json │ │ │ ├── rod_nichrome.json │ │ │ ├── rod_nickel_zinc_ferrite.json │ │ │ ├── rod_niobium_titanium.json │ │ │ ├── rod_olivine.json │ │ │ ├── rod_opal.json │ │ │ ├── rod_osmiridium.json │ │ │ ├── rod_osmium.json │ │ │ ├── rod_palladium.json │ │ │ ├── rod_platinum.json │ │ │ ├── rod_plutonium_241.json │ │ │ ├── rod_plutonium_244.json │ │ │ ├── rod_polycaprolactam.json │ │ │ ├── rod_polyphenylene_sulfide.json │ │ │ ├── rod_polytetrafluoroethylene.json │ │ │ ├── rod_polyvinyl_chloride.json │ │ │ ├── rod_red_alloy.json │ │ │ ├── rod_red_steel.json │ │ │ ├── rod_rose_gold.json │ │ │ ├── rod_rubber.json │ │ │ ├── rod_ruby.json │ │ │ ├── rod_silicone.json │ │ │ ├── rod_soldering_alloy.json │ │ │ ├── rod_stainless_steel.json │ │ │ ├── rod_steel.json │ │ │ ├── rod_sterling_silver.json │ │ │ ├── rod_styrene_butadiene_rubber.json │ │ │ ├── rod_tanzanite.json │ │ │ ├── rod_thorium.json │ │ │ ├── rod_tin.json │ │ │ ├── rod_titanium.json │ │ │ ├── rod_topaz.json │ │ │ ├── rod_tritanium.json │ │ │ ├── rod_tungsten.json │ │ │ ├── rod_tungsten_carbide.json │ │ │ ├── rod_tungstensteel.json │ │ │ ├── rod_uranium_235.json │ │ │ ├── rod_vanadium_gallium.json │ │ │ ├── rod_vanadium_steel.json │ │ │ ├── rod_vibranium.json │ │ │ ├── rod_wrought_iron.json │ │ │ ├── rod_yttrium_barium_cuprate.json │ │ │ ├── rotor_chrome.json │ │ │ ├── ruby_ore_andesite.json │ │ │ ├── ruby_ore_basalt.json │ │ │ ├── ruby_ore_diorite.json │ │ │ ├── ruby_ore_endstone.json │ │ │ ├── ruby_ore_granite.json │ │ │ ├── ruby_ore_granite_black.json │ │ │ ├── ruby_ore_granite_red.json │ │ │ ├── ruby_ore_marble.json │ │ │ ├── ruby_ore_netherrack.json │ │ │ ├── ruby_ore_sand.json │ │ │ ├── ruby_ore_sand_red.json │ │ │ ├── ruby_ore_sandstone.json │ │ │ ├── ruby_ore_small_andesite.json │ │ │ ├── ruby_ore_small_basalt.json │ │ │ ├── ruby_ore_small_diorite.json │ │ │ ├── ruby_ore_small_endstone.json │ │ │ ├── ruby_ore_small_granite.json │ │ │ ├── ruby_ore_small_granite_black.json │ │ │ ├── ruby_ore_small_granite_red.json │ │ │ ├── ruby_ore_small_marble.json │ │ │ ├── ruby_ore_small_netherrack.json │ │ │ ├── ruby_ore_small_sand.json │ │ │ ├── ruby_ore_small_sand_red.json │ │ │ ├── ruby_ore_small_sandstone.json │ │ │ ├── ruby_ore_small_stone.json │ │ │ ├── ruby_ore_stone.json │ │ │ ├── salt_ore_andesite.json │ │ │ ├── salt_ore_basalt.json │ │ │ ├── salt_ore_diorite.json │ │ │ ├── salt_ore_endstone.json │ │ │ ├── salt_ore_granite.json │ │ │ ├── salt_ore_granite_black.json │ │ │ ├── salt_ore_granite_red.json │ │ │ ├── salt_ore_marble.json │ │ │ ├── salt_ore_netherrack.json │ │ │ ├── salt_ore_sand.json │ │ │ ├── salt_ore_sand_red.json │ │ │ ├── salt_ore_sandstone.json │ │ │ ├── salt_ore_small_andesite.json │ │ │ ├── salt_ore_small_basalt.json │ │ │ ├── salt_ore_small_diorite.json │ │ │ ├── salt_ore_small_endstone.json │ │ │ ├── salt_ore_small_granite.json │ │ │ ├── salt_ore_small_granite_black.json │ │ │ ├── salt_ore_small_granite_red.json │ │ │ ├── salt_ore_small_marble.json │ │ │ ├── salt_ore_small_netherrack.json │ │ │ ├── salt_ore_small_sand.json │ │ │ ├── salt_ore_small_sand_red.json │ │ │ ├── salt_ore_small_sandstone.json │ │ │ ├── salt_ore_small_stone.json │ │ │ ├── salt_ore_stone.json │ │ │ ├── saltpeter_ore_andesite.json │ │ │ ├── saltpeter_ore_basalt.json │ │ │ ├── saltpeter_ore_diorite.json │ │ │ ├── saltpeter_ore_endstone.json │ │ │ ├── saltpeter_ore_granite.json │ │ │ ├── saltpeter_ore_granite_black.json │ │ │ ├── saltpeter_ore_granite_red.json │ │ │ ├── saltpeter_ore_marble.json │ │ │ ├── saltpeter_ore_netherrack.json │ │ │ ├── saltpeter_ore_sand.json │ │ │ ├── saltpeter_ore_sand_red.json │ │ │ ├── saltpeter_ore_sandstone.json │ │ │ ├── saltpeter_ore_small_andesite.json │ │ │ ├── saltpeter_ore_small_basalt.json │ │ │ ├── saltpeter_ore_small_diorite.json │ │ │ ├── saltpeter_ore_small_endstone.json │ │ │ ├── saltpeter_ore_small_granite.json │ │ │ ├── saltpeter_ore_small_granite_black.json │ │ │ ├── saltpeter_ore_small_granite_red.json │ │ │ ├── saltpeter_ore_small_marble.json │ │ │ ├── saltpeter_ore_small_netherrack.json │ │ │ ├── saltpeter_ore_small_sand.json │ │ │ ├── saltpeter_ore_small_sand_red.json │ │ │ ├── saltpeter_ore_small_sandstone.json │ │ │ ├── saltpeter_ore_small_stone.json │ │ │ ├── saltpeter_ore_stone.json │ │ │ ├── saw.json │ │ │ ├── scheelite_ore_andesite.json │ │ │ ├── scheelite_ore_basalt.json │ │ │ ├── scheelite_ore_diorite.json │ │ │ ├── scheelite_ore_endstone.json │ │ │ ├── scheelite_ore_granite.json │ │ │ ├── scheelite_ore_granite_black.json │ │ │ ├── scheelite_ore_granite_red.json │ │ │ ├── scheelite_ore_marble.json │ │ │ ├── scheelite_ore_netherrack.json │ │ │ ├── scheelite_ore_sand.json │ │ │ ├── scheelite_ore_sand_red.json │ │ │ ├── scheelite_ore_sandstone.json │ │ │ ├── scheelite_ore_stone.json │ │ │ ├── scoop.json │ │ │ ├── screw_aluminium.json │ │ │ ├── screw_beryllium.json │ │ │ ├── screw_bismuth_bronze.json │ │ │ ├── screw_black_bronze.json │ │ │ ├── screw_black_steel.json │ │ │ ├── screw_blue_steel.json │ │ │ ├── screw_bronze.json │ │ │ ├── screw_chrome.json │ │ │ ├── screw_cobalt.json │ │ │ ├── screw_cobalt_brass.json │ │ │ ├── screw_duranium.json │ │ │ ├── screw_electrum.json │ │ │ ├── screw_epoxid.json │ │ │ ├── screw_fiber_reinforced_epoxy_resin.json │ │ │ ├── screw_gold.json │ │ │ ├── screw_hsse.json │ │ │ ├── screw_hssg.json │ │ │ ├── screw_hsss.json │ │ │ ├── screw_invar.json │ │ │ ├── screw_iridium.json │ │ │ ├── screw_iron.json │ │ │ ├── screw_kanthal.json │ │ │ ├── screw_magnetic_iron.json │ │ │ ├── screw_magnetic_steel.json │ │ │ ├── screw_molybdenum.json │ │ │ ├── screw_naquadah.json │ │ │ ├── screw_naquadah_alloy.json │ │ │ ├── screw_naquadah_enriched.json │ │ │ ├── screw_naquadria.json │ │ │ ├── screw_neutronium.json │ │ │ ├── screw_nichrome.json │ │ │ ├── screw_nickel_zinc_ferrite.json │ │ │ ├── screw_osmiridium.json │ │ │ ├── screw_osmium.json │ │ │ ├── screw_palladium.json │ │ │ ├── screw_platinum.json │ │ │ ├── screw_plutonium_241.json │ │ │ ├── screw_plutonium_244.json │ │ │ ├── screw_polycaprolactam.json │ │ │ ├── screw_polyphenylene_sulfide.json │ │ │ ├── screw_polytetrafluoroethylene.json │ │ │ ├── screw_polyvinyl_chloride.json │ │ │ ├── screw_red_steel.json │ │ │ ├── screw_rose_gold.json │ │ │ ├── screw_rubber.json │ │ │ ├── screw_silicone.json │ │ │ ├── screw_stainless_steel.json │ │ │ ├── screw_steel.json │ │ │ ├── screw_sterling_silver.json │ │ │ ├── screw_styrene_butadiene_rubber.json │ │ │ ├── screw_thorium.json │ │ │ ├── screw_tin.json │ │ │ ├── screw_titanium.json │ │ │ ├── screw_tritanium.json │ │ │ ├── screw_tungsten.json │ │ │ ├── screw_tungsten_carbide.json │ │ │ ├── screw_tungstensteel.json │ │ │ ├── screw_uranium_235.json │ │ │ ├── screw_vanadium_steel.json │ │ │ ├── screw_vibranium.json │ │ │ ├── screw_wrought_iron.json │ │ │ ├── screwdriver.json │ │ │ ├── screwdriver_p.json │ │ │ ├── scythe.json │ │ │ ├── sensor_ev.json │ │ │ ├── sensor_hv.json │ │ │ ├── sensor_iv.json │ │ │ ├── sensor_lv.json │ │ │ ├── sensor_mv.json │ │ │ ├── shape_block.json │ │ │ ├── shape_bolt.json │ │ │ ├── shape_bottle.json │ │ │ ├── shape_cell.json │ │ │ ├── shape_gear.json │ │ │ ├── shape_gear_small.json │ │ │ ├── shape_head_axe.json │ │ │ ├── shape_head_file.json │ │ │ ├── shape_head_hammer.json │ │ │ ├── shape_head_hoe.json │ │ │ ├── shape_head_pickaxe.json │ │ │ ├── shape_head_saw.json │ │ │ ├── shape_head_shovel.json │ │ │ ├── shape_head_sword.json │ │ │ ├── shape_ingot.json │ │ │ ├── shape_pipe_huge.json │ │ │ ├── shape_pipe_large.json │ │ │ ├── shape_pipe_normal.json │ │ │ ├── shape_pipe_small.json │ │ │ ├── shape_pipe_tiny.json │ │ │ ├── shape_plate.json │ │ │ ├── shape_ring.json │ │ │ ├── shape_rod.json │ │ │ ├── shape_wire.json │ │ │ ├── shovel.json │ │ │ ├── silver_ore_andesite.json │ │ │ ├── silver_ore_basalt.json │ │ │ ├── silver_ore_diorite.json │ │ │ ├── silver_ore_endstone.json │ │ │ ├── silver_ore_granite.json │ │ │ ├── silver_ore_granite_black.json │ │ │ ├── silver_ore_granite_red.json │ │ │ ├── silver_ore_marble.json │ │ │ ├── silver_ore_netherrack.json │ │ │ ├── silver_ore_sand.json │ │ │ ├── silver_ore_sand_red.json │ │ │ ├── silver_ore_sandstone.json │ │ │ ├── silver_ore_small_andesite.json │ │ │ ├── silver_ore_small_basalt.json │ │ │ ├── silver_ore_small_diorite.json │ │ │ ├── silver_ore_small_endstone.json │ │ │ ├── silver_ore_small_granite.json │ │ │ ├── silver_ore_small_granite_black.json │ │ │ ├── silver_ore_small_granite_red.json │ │ │ ├── silver_ore_small_marble.json │ │ │ ├── silver_ore_small_netherrack.json │ │ │ ├── silver_ore_small_sand.json │ │ │ ├── silver_ore_small_sand_red.json │ │ │ ├── silver_ore_small_sandstone.json │ │ │ ├── silver_ore_small_stone.json │ │ │ ├── silver_ore_stone.json │ │ │ ├── soapstone_ore_andesite.json │ │ │ ├── soapstone_ore_basalt.json │ │ │ ├── soapstone_ore_diorite.json │ │ │ ├── soapstone_ore_endstone.json │ │ │ ├── soapstone_ore_granite.json │ │ │ ├── soapstone_ore_granite_black.json │ │ │ ├── soapstone_ore_granite_red.json │ │ │ ├── soapstone_ore_marble.json │ │ │ ├── soapstone_ore_netherrack.json │ │ │ ├── soapstone_ore_sand.json │ │ │ ├── soapstone_ore_sand_red.json │ │ │ ├── soapstone_ore_sandstone.json │ │ │ ├── soapstone_ore_stone.json │ │ │ ├── spessartine_ore_andesite.json │ │ │ ├── spessartine_ore_basalt.json │ │ │ ├── spessartine_ore_diorite.json │ │ │ ├── spessartine_ore_endstone.json │ │ │ ├── spessartine_ore_granite.json │ │ │ ├── spessartine_ore_granite_black.json │ │ │ ├── spessartine_ore_granite_red.json │ │ │ ├── spessartine_ore_marble.json │ │ │ ├── spessartine_ore_netherrack.json │ │ │ ├── spessartine_ore_sand.json │ │ │ ├── spessartine_ore_sand_red.json │ │ │ ├── spessartine_ore_sandstone.json │ │ │ ├── spessartine_ore_small_andesite.json │ │ │ ├── spessartine_ore_small_basalt.json │ │ │ ├── spessartine_ore_small_diorite.json │ │ │ ├── spessartine_ore_small_endstone.json │ │ │ ├── spessartine_ore_small_granite.json │ │ │ ├── spessartine_ore_small_granite_black.json │ │ │ ├── spessartine_ore_small_granite_red.json │ │ │ ├── spessartine_ore_small_marble.json │ │ │ ├── spessartine_ore_small_netherrack.json │ │ │ ├── spessartine_ore_small_sand.json │ │ │ ├── spessartine_ore_small_sand_red.json │ │ │ ├── spessartine_ore_small_sandstone.json │ │ │ ├── spessartine_ore_small_stone.json │ │ │ ├── spessartine_ore_stone.json │ │ │ ├── sphalerite_ore_andesite.json │ │ │ ├── sphalerite_ore_basalt.json │ │ │ ├── sphalerite_ore_diorite.json │ │ │ ├── sphalerite_ore_endstone.json │ │ │ ├── sphalerite_ore_granite.json │ │ │ ├── sphalerite_ore_granite_black.json │ │ │ ├── sphalerite_ore_granite_red.json │ │ │ ├── sphalerite_ore_marble.json │ │ │ ├── sphalerite_ore_netherrack.json │ │ │ ├── sphalerite_ore_sand.json │ │ │ ├── sphalerite_ore_sand_red.json │ │ │ ├── sphalerite_ore_sandstone.json │ │ │ ├── sphalerite_ore_small_andesite.json │ │ │ ├── sphalerite_ore_small_basalt.json │ │ │ ├── sphalerite_ore_small_diorite.json │ │ │ ├── sphalerite_ore_small_endstone.json │ │ │ ├── sphalerite_ore_small_granite.json │ │ │ ├── sphalerite_ore_small_granite_black.json │ │ │ ├── sphalerite_ore_small_granite_red.json │ │ │ ├── sphalerite_ore_small_marble.json │ │ │ ├── sphalerite_ore_small_netherrack.json │ │ │ ├── sphalerite_ore_small_sand.json │ │ │ ├── sphalerite_ore_small_sand_red.json │ │ │ ├── sphalerite_ore_small_sandstone.json │ │ │ ├── sphalerite_ore_small_stone.json │ │ │ ├── sphalerite_ore_stone.json │ │ │ ├── spodumene_ore_andesite.json │ │ │ ├── spodumene_ore_basalt.json │ │ │ ├── spodumene_ore_diorite.json │ │ │ ├── spodumene_ore_endstone.json │ │ │ ├── spodumene_ore_granite.json │ │ │ ├── spodumene_ore_granite_black.json │ │ │ ├── spodumene_ore_granite_red.json │ │ │ ├── spodumene_ore_marble.json │ │ │ ├── spodumene_ore_netherrack.json │ │ │ ├── spodumene_ore_sand.json │ │ │ ├── spodumene_ore_sand_red.json │ │ │ ├── spodumene_ore_sandstone.json │ │ │ ├── spodumene_ore_stone.json │ │ │ ├── stibnite_ore_andesite.json │ │ │ ├── stibnite_ore_basalt.json │ │ │ ├── stibnite_ore_diorite.json │ │ │ ├── stibnite_ore_endstone.json │ │ │ ├── stibnite_ore_granite.json │ │ │ ├── stibnite_ore_granite_black.json │ │ │ ├── stibnite_ore_granite_red.json │ │ │ ├── stibnite_ore_marble.json │ │ │ ├── stibnite_ore_netherrack.json │ │ │ ├── stibnite_ore_sand.json │ │ │ ├── stibnite_ore_sand_red.json │ │ │ ├── stibnite_ore_sandstone.json │ │ │ ├── stibnite_ore_small_andesite.json │ │ │ ├── stibnite_ore_small_basalt.json │ │ │ ├── stibnite_ore_small_diorite.json │ │ │ ├── stibnite_ore_small_endstone.json │ │ │ ├── stibnite_ore_small_granite.json │ │ │ ├── stibnite_ore_small_granite_black.json │ │ │ ├── stibnite_ore_small_granite_red.json │ │ │ ├── stibnite_ore_small_marble.json │ │ │ ├── stibnite_ore_small_netherrack.json │ │ │ ├── stibnite_ore_small_sand.json │ │ │ ├── stibnite_ore_small_sand_red.json │ │ │ ├── stibnite_ore_small_sandstone.json │ │ │ ├── stibnite_ore_small_stone.json │ │ │ ├── stibnite_ore_stone.json │ │ │ ├── sticky_resin.json │ │ │ ├── storage_aluminium_block.json │ │ │ ├── storage_aluminium_frame.json │ │ │ ├── storage_americium_block.json │ │ │ ├── storage_amethyst_block.json │ │ │ ├── storage_annealed_copper_block.json │ │ │ ├── storage_antimony_block.json │ │ │ ├── storage_arsenic_block.json │ │ │ ├── storage_battery_alloy_block.json │ │ │ ├── storage_beryllium_block.json │ │ │ ├── storage_bismuth_block.json │ │ │ ├── storage_bismuth_bronze_block.json │ │ │ ├── storage_black_bronze_block.json │ │ │ ├── storage_black_steel_block.json │ │ │ ├── storage_black_steel_frame.json │ │ │ ├── storage_blue_sapphire_block.json │ │ │ ├── storage_blue_steel_block.json │ │ │ ├── storage_blue_steel_frame.json │ │ │ ├── storage_blue_topaz_block.json │ │ │ ├── storage_brass_block.json │ │ │ ├── storage_brass_frame.json │ │ │ ├── storage_bronze_block.json │ │ │ ├── storage_bronze_frame.json │ │ │ ├── storage_caesium_block.json │ │ │ ├── storage_carbon_block.json │ │ │ ├── storage_cerium_block.json │ │ │ ├── storage_charcoal_block.json │ │ │ ├── storage_chrome_block.json │ │ │ ├── storage_coal_block.json │ │ │ ├── storage_coal_coke_block.json │ │ │ ├── storage_cobalt_block.json │ │ │ ├── storage_cobalt_brass_block.json │ │ │ ├── storage_copper_block.json │ │ │ ├── storage_cupronickel_block.json │ │ │ ├── storage_diamond_block.json │ │ │ ├── storage_dilithium_block.json │ │ │ ├── storage_duranium_block.json │ │ │ ├── storage_dysprosium_block.json │ │ │ ├── storage_electrum_block.json │ │ │ ├── storage_emerald_block.json │ │ │ ├── storage_endereye_block.json │ │ │ ├── storage_enderpearl_block.json │ │ │ ├── storage_epoxid_block.json │ │ │ ├── storage_europium_block.json │ │ │ ├── storage_fiber_reinforced_epoxy_resin_block.json │ │ │ ├── storage_gallium_arsenide_block.json │ │ │ ├── storage_gallium_block.json │ │ │ ├── storage_gold_block.json │ │ │ ├── storage_green_sapphire_block.json │ │ │ ├── storage_hsse_block.json │ │ │ ├── storage_hsse_frame.json │ │ │ ├── storage_hssg_block.json │ │ │ ├── storage_hssg_frame.json │ │ │ ├── storage_hsss_block.json │ │ │ ├── storage_indium_block.json │ │ │ ├── storage_invar_block.json │ │ │ ├── storage_invar_frame.json │ │ │ ├── storage_iridium_block.json │ │ │ ├── storage_iridium_frame.json │ │ │ ├── storage_iron_block.json │ │ │ ├── storage_iron_frame.json │ │ │ ├── storage_kanthal_block.json │ │ │ ├── storage_lanthanum_block.json │ │ │ ├── storage_lapis_block.json │ │ │ ├── storage_lead_block.json │ │ │ ├── storage_lignite_coal_block.json │ │ │ ├── storage_lignite_coke_block.json │ │ │ ├── storage_lithium_block.json │ │ │ ├── storage_lutetium_block.json │ │ │ ├── storage_magnalium_block.json │ │ │ ├── storage_magnesium_block.json │ │ │ ├── storage_magnetic_iron_block.json │ │ │ ├── storage_magnetic_neodymium_block.json │ │ │ ├── storage_magnetic_steel_block.json │ │ │ ├── storage_manganese_block.json │ │ │ ├── storage_molybdenum_block.json │ │ │ ├── storage_naquadah_alloy_block.json │ │ │ ├── storage_naquadah_block.json │ │ │ ├── storage_naquadah_enriched_block.json │ │ │ ├── storage_naquadria_block.json │ │ │ ├── storage_neodymium_block.json │ │ │ ├── storage_nether_quartz_block.json │ │ │ ├── storage_nether_star_block.json │ │ │ ├── storage_neutronium_block.json │ │ │ ├── storage_neutronium_frame.json │ │ │ ├── storage_nichrome_block.json │ │ │ ├── storage_nickel_block.json │ │ │ ├── storage_nickel_zinc_ferrite_block.json │ │ │ ├── storage_niobium_block.json │ │ │ ├── storage_niobium_titanium_block.json │ │ │ ├── storage_olivine_block.json │ │ │ ├── storage_opal_block.json │ │ │ ├── storage_osmiridium_block.json │ │ │ ├── storage_osmiridium_frame.json │ │ │ ├── storage_osmium_block.json │ │ │ ├── storage_palladium_block.json │ │ │ ├── storage_phosphorus_block.json │ │ │ ├── storage_plastic_block.json │ │ │ ├── storage_platinum_block.json │ │ │ ├── storage_plutonium_241_block.json │ │ │ ├── storage_plutonium_244_block.json │ │ │ ├── storage_polycaprolactam_block.json │ │ │ ├── storage_polyphenylene_sulfide_block.json │ │ │ ├── storage_polystyrene_block.json │ │ │ ├── storage_polytetrafluoroethylene_block.json │ │ │ ├── storage_polytetrafluoroethylene_frame.json │ │ │ ├── storage_polyvinyl_chloride_block.json │ │ │ ├── storage_potassium_block.json │ │ │ ├── storage_quartzite_block.json │ │ │ ├── storage_red_alloy_block.json │ │ │ ├── storage_red_garnet_block.json │ │ │ ├── storage_red_steel_block.json │ │ │ ├── storage_rose_gold_block.json │ │ │ ├── storage_rubber_block.json │ │ │ ├── storage_ruby_block.json │ │ │ ├── storage_silicon_block.json │ │ │ ├── storage_silicone_block.json │ │ │ ├── storage_silver_block.json │ │ │ ├── storage_soldering_alloy_block.json │ │ │ ├── storage_stainless_steel_block.json │ │ │ ├── storage_stainless_steel_frame.json │ │ │ ├── storage_steel_block.json │ │ │ ├── storage_steel_frame.json │ │ │ ├── storage_sterling_silver_block.json │ │ │ ├── storage_styrene_butadiene_rubber_block.json │ │ │ ├── storage_tantalum_block.json │ │ │ ├── storage_tanzanite_block.json │ │ │ ├── storage_thorium_block.json │ │ │ ├── storage_tin_block.json │ │ │ ├── storage_tin_frame.json │ │ │ ├── storage_titanium_block.json │ │ │ ├── storage_topaz_block.json │ │ │ ├── storage_tritanium_block.json │ │ │ ├── storage_tritanium_frame.json │ │ │ ├── storage_tungsten_block.json │ │ │ ├── storage_tungsten_carbide_block.json │ │ │ ├── storage_tungstensteel_block.json │ │ │ ├── storage_tungstensteel_frame.json │ │ │ ├── storage_ultimet_block.json │ │ │ ├── storage_uranium_235_block.json │ │ │ ├── storage_uranium_238_block.json │ │ │ ├── storage_vanadium_block.json │ │ │ ├── storage_vanadium_gallium_block.json │ │ │ ├── storage_vanadium_steel_block.json │ │ │ ├── storage_vibranium_block.json │ │ │ ├── storage_vibranium_frame.json │ │ │ ├── storage_wrought_iron_block.json │ │ │ ├── storage_wrought_iron_frame.json │ │ │ ├── storage_yellow_garnet_block.json │ │ │ ├── storage_yttrium_barium_cuprate_block.json │ │ │ ├── storage_yttrium_block.json │ │ │ ├── storage_zinc_block.json │ │ │ ├── sulfur_ore_andesite.json │ │ │ ├── sulfur_ore_basalt.json │ │ │ ├── sulfur_ore_diorite.json │ │ │ ├── sulfur_ore_endstone.json │ │ │ ├── sulfur_ore_granite.json │ │ │ ├── sulfur_ore_granite_black.json │ │ │ ├── sulfur_ore_granite_red.json │ │ │ ├── sulfur_ore_marble.json │ │ │ ├── sulfur_ore_netherrack.json │ │ │ ├── sulfur_ore_sand.json │ │ │ ├── sulfur_ore_sand_red.json │ │ │ ├── sulfur_ore_sandstone.json │ │ │ ├── sulfur_ore_small_andesite.json │ │ │ ├── sulfur_ore_small_basalt.json │ │ │ ├── sulfur_ore_small_diorite.json │ │ │ ├── sulfur_ore_small_endstone.json │ │ │ ├── sulfur_ore_small_granite.json │ │ │ ├── sulfur_ore_small_granite_black.json │ │ │ ├── sulfur_ore_small_granite_red.json │ │ │ ├── sulfur_ore_small_marble.json │ │ │ ├── sulfur_ore_small_netherrack.json │ │ │ ├── sulfur_ore_small_sand.json │ │ │ ├── sulfur_ore_small_sand_red.json │ │ │ ├── sulfur_ore_small_sandstone.json │ │ │ ├── sulfur_ore_small_stone.json │ │ │ ├── sulfur_ore_stone.json │ │ │ ├── sword.json │ │ │ ├── talc_ore_andesite.json │ │ │ ├── talc_ore_basalt.json │ │ │ ├── talc_ore_diorite.json │ │ │ ├── talc_ore_endstone.json │ │ │ ├── talc_ore_granite.json │ │ │ ├── talc_ore_granite_black.json │ │ │ ├── talc_ore_granite_red.json │ │ │ ├── talc_ore_marble.json │ │ │ ├── talc_ore_netherrack.json │ │ │ ├── talc_ore_sand.json │ │ │ ├── talc_ore_sand_red.json │ │ │ ├── talc_ore_sandstone.json │ │ │ ├── talc_ore_stone.json │ │ │ ├── tantalite_ore_andesite.json │ │ │ ├── tantalite_ore_basalt.json │ │ │ ├── tantalite_ore_diorite.json │ │ │ ├── tantalite_ore_endstone.json │ │ │ ├── tantalite_ore_granite.json │ │ │ ├── tantalite_ore_granite_black.json │ │ │ ├── tantalite_ore_granite_red.json │ │ │ ├── tantalite_ore_marble.json │ │ │ ├── tantalite_ore_netherrack.json │ │ │ ├── tantalite_ore_sand.json │ │ │ ├── tantalite_ore_sand_red.json │ │ │ ├── tantalite_ore_sandstone.json │ │ │ ├── tantalite_ore_stone.json │ │ │ ├── tanzanite_ore_andesite.json │ │ │ ├── tanzanite_ore_basalt.json │ │ │ ├── tanzanite_ore_diorite.json │ │ │ ├── tanzanite_ore_endstone.json │ │ │ ├── tanzanite_ore_granite.json │ │ │ ├── tanzanite_ore_granite_black.json │ │ │ ├── tanzanite_ore_granite_red.json │ │ │ ├── tanzanite_ore_marble.json │ │ │ ├── tanzanite_ore_netherrack.json │ │ │ ├── tanzanite_ore_sand.json │ │ │ ├── tanzanite_ore_sand_red.json │ │ │ ├── tanzanite_ore_sandstone.json │ │ │ ├── tanzanite_ore_small_andesite.json │ │ │ ├── tanzanite_ore_small_basalt.json │ │ │ ├── tanzanite_ore_small_diorite.json │ │ │ ├── tanzanite_ore_small_endstone.json │ │ │ ├── tanzanite_ore_small_granite.json │ │ │ ├── tanzanite_ore_small_granite_black.json │ │ │ ├── tanzanite_ore_small_granite_red.json │ │ │ ├── tanzanite_ore_small_marble.json │ │ │ ├── tanzanite_ore_small_netherrack.json │ │ │ ├── tanzanite_ore_small_sand.json │ │ │ ├── tanzanite_ore_small_sand_red.json │ │ │ ├── tanzanite_ore_small_sandstone.json │ │ │ ├── tanzanite_ore_small_stone.json │ │ │ ├── tanzanite_ore_stone.json │ │ │ ├── tetrahedrite_ore_andesite.json │ │ │ ├── tetrahedrite_ore_basalt.json │ │ │ ├── tetrahedrite_ore_diorite.json │ │ │ ├── tetrahedrite_ore_endstone.json │ │ │ ├── tetrahedrite_ore_granite.json │ │ │ ├── tetrahedrite_ore_granite_black.json │ │ │ ├── tetrahedrite_ore_granite_red.json │ │ │ ├── tetrahedrite_ore_marble.json │ │ │ ├── tetrahedrite_ore_netherrack.json │ │ │ ├── tetrahedrite_ore_sand.json │ │ │ ├── tetrahedrite_ore_sand_red.json │ │ │ ├── tetrahedrite_ore_sandstone.json │ │ │ ├── tetrahedrite_ore_stone.json │ │ │ ├── thorium_ore_andesite.json │ │ │ ├── thorium_ore_basalt.json │ │ │ ├── thorium_ore_diorite.json │ │ │ ├── thorium_ore_endstone.json │ │ │ ├── thorium_ore_granite.json │ │ │ ├── thorium_ore_granite_black.json │ │ │ ├── thorium_ore_granite_red.json │ │ │ ├── thorium_ore_marble.json │ │ │ ├── thorium_ore_netherrack.json │ │ │ ├── thorium_ore_sand.json │ │ │ ├── thorium_ore_sand_red.json │ │ │ ├── thorium_ore_sandstone.json │ │ │ ├── thorium_ore_stone.json │ │ │ ├── tin_ore_andesite.json │ │ │ ├── tin_ore_basalt.json │ │ │ ├── tin_ore_diorite.json │ │ │ ├── tin_ore_endstone.json │ │ │ ├── tin_ore_granite.json │ │ │ ├── tin_ore_granite_black.json │ │ │ ├── tin_ore_granite_red.json │ │ │ ├── tin_ore_marble.json │ │ │ ├── tin_ore_netherrack.json │ │ │ ├── tin_ore_sand.json │ │ │ ├── tin_ore_sand_red.json │ │ │ ├── tin_ore_sandstone.json │ │ │ ├── tin_ore_small_andesite.json │ │ │ ├── tin_ore_small_basalt.json │ │ │ ├── tin_ore_small_diorite.json │ │ │ ├── tin_ore_small_endstone.json │ │ │ ├── tin_ore_small_granite.json │ │ │ ├── tin_ore_small_granite_black.json │ │ │ ├── tin_ore_small_granite_red.json │ │ │ ├── tin_ore_small_marble.json │ │ │ ├── tin_ore_small_netherrack.json │ │ │ ├── tin_ore_small_sand.json │ │ │ ├── tin_ore_small_sand_red.json │ │ │ ├── tin_ore_small_sandstone.json │ │ │ ├── tin_ore_small_stone.json │ │ │ ├── tin_ore_stone.json │ │ │ ├── topaz_ore_andesite.json │ │ │ ├── topaz_ore_basalt.json │ │ │ ├── topaz_ore_diorite.json │ │ │ ├── topaz_ore_endstone.json │ │ │ ├── topaz_ore_granite.json │ │ │ ├── topaz_ore_granite_black.json │ │ │ ├── topaz_ore_granite_red.json │ │ │ ├── topaz_ore_marble.json │ │ │ ├── topaz_ore_netherrack.json │ │ │ ├── topaz_ore_sand.json │ │ │ ├── topaz_ore_sand_red.json │ │ │ ├── topaz_ore_sandstone.json │ │ │ ├── topaz_ore_small_andesite.json │ │ │ ├── topaz_ore_small_basalt.json │ │ │ ├── topaz_ore_small_diorite.json │ │ │ ├── topaz_ore_small_endstone.json │ │ │ ├── topaz_ore_small_granite.json │ │ │ ├── topaz_ore_small_granite_black.json │ │ │ ├── topaz_ore_small_granite_red.json │ │ │ ├── topaz_ore_small_marble.json │ │ │ ├── topaz_ore_small_netherrack.json │ │ │ ├── topaz_ore_small_sand.json │ │ │ ├── topaz_ore_small_sand_red.json │ │ │ ├── topaz_ore_small_sandstone.json │ │ │ ├── topaz_ore_small_stone.json │ │ │ ├── topaz_ore_stone.json │ │ │ ├── tungstate_ore_andesite.json │ │ │ ├── tungstate_ore_basalt.json │ │ │ ├── tungstate_ore_diorite.json │ │ │ ├── tungstate_ore_endstone.json │ │ │ ├── tungstate_ore_granite.json │ │ │ ├── tungstate_ore_granite_black.json │ │ │ ├── tungstate_ore_granite_red.json │ │ │ ├── tungstate_ore_marble.json │ │ │ ├── tungstate_ore_netherrack.json │ │ │ ├── tungstate_ore_sand.json │ │ │ ├── tungstate_ore_sand_red.json │ │ │ ├── tungstate_ore_sandstone.json │ │ │ ├── tungstate_ore_stone.json │ │ │ ├── tungsten_grind_head.json │ │ │ ├── turbine.json │ │ │ ├── universal_spade.json │ │ │ ├── uraninite_ore_andesite.json │ │ │ ├── uraninite_ore_basalt.json │ │ │ ├── uraninite_ore_diorite.json │ │ │ ├── uraninite_ore_endstone.json │ │ │ ├── uraninite_ore_granite.json │ │ │ ├── uraninite_ore_granite_black.json │ │ │ ├── uraninite_ore_granite_red.json │ │ │ ├── uraninite_ore_marble.json │ │ │ ├── uraninite_ore_netherrack.json │ │ │ ├── uraninite_ore_sand.json │ │ │ ├── uraninite_ore_sand_red.json │ │ │ ├── uraninite_ore_sandstone.json │ │ │ ├── uraninite_ore_stone.json │ │ │ ├── uranium_238_ore_andesite.json │ │ │ ├── uranium_238_ore_basalt.json │ │ │ ├── uranium_238_ore_diorite.json │ │ │ ├── uranium_238_ore_endstone.json │ │ │ ├── uranium_238_ore_granite.json │ │ │ ├── uranium_238_ore_granite_black.json │ │ │ ├── uranium_238_ore_granite_red.json │ │ │ ├── uranium_238_ore_marble.json │ │ │ ├── uranium_238_ore_netherrack.json │ │ │ ├── uranium_238_ore_sand.json │ │ │ ├── uranium_238_ore_sand_red.json │ │ │ ├── uranium_238_ore_sandstone.json │ │ │ ├── uranium_238_ore_stone.json │ │ │ ├── uvarovite_ore_andesite.json │ │ │ ├── uvarovite_ore_basalt.json │ │ │ ├── uvarovite_ore_diorite.json │ │ │ ├── uvarovite_ore_endstone.json │ │ │ ├── uvarovite_ore_granite.json │ │ │ ├── uvarovite_ore_granite_black.json │ │ │ ├── uvarovite_ore_granite_red.json │ │ │ ├── uvarovite_ore_marble.json │ │ │ ├── uvarovite_ore_netherrack.json │ │ │ ├── uvarovite_ore_sand.json │ │ │ ├── uvarovite_ore_sand_red.json │ │ │ ├── uvarovite_ore_sandstone.json │ │ │ ├── uvarovite_ore_small_andesite.json │ │ │ ├── uvarovite_ore_small_basalt.json │ │ │ ├── uvarovite_ore_small_diorite.json │ │ │ ├── uvarovite_ore_small_endstone.json │ │ │ ├── uvarovite_ore_small_granite.json │ │ │ ├── uvarovite_ore_small_granite_black.json │ │ │ ├── uvarovite_ore_small_granite_red.json │ │ │ ├── uvarovite_ore_small_marble.json │ │ │ ├── uvarovite_ore_small_netherrack.json │ │ │ ├── uvarovite_ore_small_sand.json │ │ │ ├── uvarovite_ore_small_sand_red.json │ │ │ ├── uvarovite_ore_small_sandstone.json │ │ │ ├── uvarovite_ore_small_stone.json │ │ │ ├── uvarovite_ore_stone.json │ │ │ ├── vanadium_magnetite_ore_andesite.json │ │ │ ├── vanadium_magnetite_ore_basalt.json │ │ │ ├── vanadium_magnetite_ore_diorite.json │ │ │ ├── vanadium_magnetite_ore_endstone.json │ │ │ ├── vanadium_magnetite_ore_granite.json │ │ │ ├── vanadium_magnetite_ore_granite_black.json │ │ │ ├── vanadium_magnetite_ore_granite_red.json │ │ │ ├── vanadium_magnetite_ore_marble.json │ │ │ ├── vanadium_magnetite_ore_netherrack.json │ │ │ ├── vanadium_magnetite_ore_sand.json │ │ │ ├── vanadium_magnetite_ore_sand_red.json │ │ │ ├── vanadium_magnetite_ore_sandstone.json │ │ │ ├── vanadium_magnetite_ore_stone.json │ │ │ ├── wire_cutter.json │ │ │ ├── wire_fine_annealed_copper.json │ │ │ ├── wire_fine_copper.json │ │ │ ├── wire_fine_electrum.json │ │ │ ├── wire_fine_gold.json │ │ │ ├── wire_fine_niobium_titanium.json │ │ │ ├── wire_fine_osmium.json │ │ │ ├── wire_fine_platinum.json │ │ │ ├── wire_fine_red_alloy.json │ │ │ ├── wire_fine_soldering_alloy.json │ │ │ ├── wire_fine_tin.json │ │ │ ├── wire_fine_yttrium_barium_cuprate.json │ │ │ ├── wrench.json │ │ │ ├── wrench_p.json │ │ │ ├── wulfenite_ore_andesite.json │ │ │ ├── wulfenite_ore_basalt.json │ │ │ ├── wulfenite_ore_diorite.json │ │ │ ├── wulfenite_ore_endstone.json │ │ │ ├── wulfenite_ore_granite.json │ │ │ ├── wulfenite_ore_granite_black.json │ │ │ ├── wulfenite_ore_granite_red.json │ │ │ ├── wulfenite_ore_marble.json │ │ │ ├── wulfenite_ore_netherrack.json │ │ │ ├── wulfenite_ore_sand.json │ │ │ ├── wulfenite_ore_sand_red.json │ │ │ ├── wulfenite_ore_sandstone.json │ │ │ ├── wulfenite_ore_stone.json │ │ │ ├── yellow_garnet_ore_andesite.json │ │ │ ├── yellow_garnet_ore_basalt.json │ │ │ ├── yellow_garnet_ore_diorite.json │ │ │ ├── yellow_garnet_ore_endstone.json │ │ │ ├── yellow_garnet_ore_granite.json │ │ │ ├── yellow_garnet_ore_granite_black.json │ │ │ ├── yellow_garnet_ore_granite_red.json │ │ │ ├── yellow_garnet_ore_marble.json │ │ │ ├── yellow_garnet_ore_netherrack.json │ │ │ ├── yellow_garnet_ore_sand.json │ │ │ ├── yellow_garnet_ore_sand_red.json │ │ │ ├── yellow_garnet_ore_sandstone.json │ │ │ ├── yellow_garnet_ore_small_andesite.json │ │ │ ├── yellow_garnet_ore_small_basalt.json │ │ │ ├── yellow_garnet_ore_small_diorite.json │ │ │ ├── yellow_garnet_ore_small_endstone.json │ │ │ ├── yellow_garnet_ore_small_granite.json │ │ │ ├── yellow_garnet_ore_small_granite_black.json │ │ │ ├── yellow_garnet_ore_small_granite_red.json │ │ │ ├── yellow_garnet_ore_small_marble.json │ │ │ ├── yellow_garnet_ore_small_netherrack.json │ │ │ ├── yellow_garnet_ore_small_sand.json │ │ │ ├── yellow_garnet_ore_small_sand_red.json │ │ │ ├── yellow_garnet_ore_small_sandstone.json │ │ │ ├── yellow_garnet_ore_small_stone.json │ │ │ ├── yellow_garnet_ore_stone.json │ │ │ ├── yellow_limonite_ore_andesite.json │ │ │ ├── yellow_limonite_ore_basalt.json │ │ │ ├── yellow_limonite_ore_diorite.json │ │ │ ├── yellow_limonite_ore_endstone.json │ │ │ ├── yellow_limonite_ore_granite.json │ │ │ ├── yellow_limonite_ore_granite_black.json │ │ │ ├── yellow_limonite_ore_granite_red.json │ │ │ ├── yellow_limonite_ore_marble.json │ │ │ ├── yellow_limonite_ore_netherrack.json │ │ │ ├── yellow_limonite_ore_sand.json │ │ │ ├── yellow_limonite_ore_sand_red.json │ │ │ ├── yellow_limonite_ore_sandstone.json │ │ │ ├── yellow_limonite_ore_stone.json │ │ │ ├── zinc_ore_andesite.json │ │ │ ├── zinc_ore_basalt.json │ │ │ ├── zinc_ore_diorite.json │ │ │ ├── zinc_ore_endstone.json │ │ │ ├── zinc_ore_granite.json │ │ │ ├── zinc_ore_granite_black.json │ │ │ ├── zinc_ore_granite_red.json │ │ │ ├── zinc_ore_marble.json │ │ │ ├── zinc_ore_netherrack.json │ │ │ ├── zinc_ore_sand.json │ │ │ ├── zinc_ore_sand_red.json │ │ │ ├── zinc_ore_sandstone.json │ │ │ ├── zinc_ore_small_andesite.json │ │ │ ├── zinc_ore_small_basalt.json │ │ │ ├── zinc_ore_small_diorite.json │ │ │ ├── zinc_ore_small_endstone.json │ │ │ ├── zinc_ore_small_granite.json │ │ │ ├── zinc_ore_small_granite_black.json │ │ │ ├── zinc_ore_small_granite_red.json │ │ │ ├── zinc_ore_small_marble.json │ │ │ ├── zinc_ore_small_netherrack.json │ │ │ ├── zinc_ore_small_sand.json │ │ │ ├── zinc_ore_small_sand_red.json │ │ │ ├── zinc_ore_small_sandstone.json │ │ │ ├── zinc_ore_small_stone.json │ │ │ └── zinc_ore_stone.json │ ├── sounds.json │ ├── sounds │ │ ├── drill.ogg │ │ └── wrench.ogg │ └── textures │ │ ├── block │ │ ├── casing │ │ │ ├── bricked_bronze.png │ │ │ ├── bricked_steel.png │ │ │ ├── bronze.png │ │ │ ├── bronze_plated_brick.png │ │ │ ├── engine_intake.png │ │ │ ├── ev.png │ │ │ ├── fire_brick.png │ │ │ ├── firebox_bronze.png │ │ │ ├── firebox_steel.png │ │ │ ├── firebox_titanium.png │ │ │ ├── firebox_tungstensteel.png │ │ │ ├── frost_proof.png │ │ │ ├── fusion_1.png │ │ │ ├── fusion_2.png │ │ │ ├── fusion_3.png │ │ │ ├── gearbox_bronze.png │ │ │ ├── gearbox_steel.png │ │ │ ├── gearbox_titanium.png │ │ │ ├── gearbox_tungstensteel.png │ │ │ ├── heat_proof.png │ │ │ ├── hv.png │ │ │ ├── iv.png │ │ │ ├── luv.png │ │ │ ├── lv.png │ │ │ ├── max.png │ │ │ ├── mv.png │ │ │ ├── pipe_bronze.png │ │ │ ├── pipe_steel.png │ │ │ ├── pipe_titanium.png │ │ │ ├── pipe_tungstensteel.png │ │ │ ├── radiation_proof.png │ │ │ ├── solid_steel.png │ │ │ ├── stainless_steel.png │ │ │ ├── steel.png │ │ │ ├── titanium.png │ │ │ ├── tungstensteel.png │ │ │ ├── turbine_1.png │ │ │ ├── turbine_2.png │ │ │ ├── turbine_3.png │ │ │ ├── turbine_4.png │ │ │ ├── ulv.png │ │ │ ├── uv.png │ │ │ └── zpm.png │ │ ├── coil │ │ │ ├── cupronickel.png │ │ │ ├── fusion.png │ │ │ ├── hssg.png │ │ │ ├── kanthal.png │ │ │ ├── naquadah.png │ │ │ ├── naquadah_alloy.png │ │ │ ├── nichrome.png │ │ │ ├── superconductor.png │ │ │ └── tungstensteel.png │ │ ├── ct │ │ │ ├── fusion │ │ │ │ ├── fusion_1_0.png │ │ │ │ ├── fusion_1_1.png │ │ │ │ ├── fusion_1_10.png │ │ │ │ ├── fusion_1_11.png │ │ │ │ ├── fusion_1_12.png │ │ │ │ ├── fusion_1_2.png │ │ │ │ ├── fusion_1_3.png │ │ │ │ ├── fusion_1_4.png │ │ │ │ ├── fusion_1_5.png │ │ │ │ ├── fusion_1_6.png │ │ │ │ ├── fusion_1_7.png │ │ │ │ ├── fusion_1_8.png │ │ │ │ ├── fusion_1_9.png │ │ │ │ ├── fusion_2_0.png │ │ │ │ ├── fusion_2_1.png │ │ │ │ ├── fusion_2_10.png │ │ │ │ ├── fusion_2_11.png │ │ │ │ ├── fusion_2_12.png │ │ │ │ ├── fusion_2_2.png │ │ │ │ ├── fusion_2_3.png │ │ │ │ ├── fusion_2_4.png │ │ │ │ ├── fusion_2_5.png │ │ │ │ ├── fusion_2_6.png │ │ │ │ ├── fusion_2_7.png │ │ │ │ ├── fusion_2_8.png │ │ │ │ ├── fusion_2_9.png │ │ │ │ ├── fusion_3_0.png │ │ │ │ ├── fusion_3_1.png │ │ │ │ ├── fusion_3_10.png │ │ │ │ ├── fusion_3_11.png │ │ │ │ ├── fusion_3_12.png │ │ │ │ ├── fusion_3_2.png │ │ │ │ ├── fusion_3_3.png │ │ │ │ ├── fusion_3_4.png │ │ │ │ ├── fusion_3_5.png │ │ │ │ ├── fusion_3_6.png │ │ │ │ ├── fusion_3_7.png │ │ │ │ ├── fusion_3_8.png │ │ │ │ └── fusion_3_9.png │ │ │ └── turbine │ │ │ │ ├── large_turbine_0.png │ │ │ │ ├── large_turbine_1.png │ │ │ │ ├── large_turbine_2.png │ │ │ │ ├── large_turbine_3.png │ │ │ │ ├── large_turbine_4.png │ │ │ │ ├── large_turbine_5.png │ │ │ │ ├── large_turbine_6.png │ │ │ │ ├── large_turbine_7.png │ │ │ │ ├── large_turbine_8.png │ │ │ │ ├── large_turbine_active_0.png │ │ │ │ ├── large_turbine_active_0.png.mcmeta │ │ │ │ ├── large_turbine_active_1.png │ │ │ │ ├── large_turbine_active_1.png.mcmeta │ │ │ │ ├── large_turbine_active_2.png │ │ │ │ ├── large_turbine_active_2.png.mcmeta │ │ │ │ ├── large_turbine_active_3.png │ │ │ │ ├── large_turbine_active_3.png.mcmeta │ │ │ │ ├── large_turbine_active_4.png │ │ │ │ ├── large_turbine_active_4.png.mcmeta │ │ │ │ ├── large_turbine_active_5.png │ │ │ │ ├── large_turbine_active_5.png.mcmeta │ │ │ │ ├── large_turbine_active_6.png │ │ │ │ ├── large_turbine_active_6.png.mcmeta │ │ │ │ ├── large_turbine_active_7.png │ │ │ │ ├── large_turbine_active_7.png.mcmeta │ │ │ │ ├── large_turbine_active_8.png │ │ │ │ └── large_turbine_active_8.png.mcmeta │ │ ├── end_stone.png │ │ ├── fluid │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── plasma.png │ │ │ └── plasma.png.mcmeta │ │ ├── fusion_active.png │ │ ├── hazard.png │ │ ├── idsu.png │ │ ├── input.png │ │ ├── machine │ │ │ ├── base │ │ │ │ ├── advanced_miner.png │ │ │ │ ├── bricked_bronze.png │ │ │ │ ├── bricked_steel.png │ │ │ │ ├── bronze.png │ │ │ │ ├── bronze_blast_furnace.png │ │ │ │ ├── charcoal_pit.png │ │ │ │ ├── coke_oven.png │ │ │ │ ├── combustion_engine.png │ │ │ │ ├── electric_blast_furnace.png │ │ │ │ ├── ev.png │ │ │ │ ├── fusion_reactor_luv.png │ │ │ │ ├── fusion_reactor_uv.png │ │ │ │ ├── fusion_reactor_zpm.png │ │ │ │ ├── heat_exchanger.png │ │ │ │ ├── hv.png │ │ │ │ ├── implosion_compressor.png │ │ │ │ ├── iv.png │ │ │ │ ├── large_boiler_ev.png │ │ │ │ ├── large_boiler_hv.png │ │ │ │ ├── large_boiler_lv.png │ │ │ │ ├── large_boiler_mv.png │ │ │ │ ├── large_turbine_ev.png │ │ │ │ ├── large_turbine_hv.png │ │ │ │ ├── large_turbine_iv.png │ │ │ │ ├── large_turbine_uv.png │ │ │ │ ├── luv.png │ │ │ │ ├── lv.png │ │ │ │ ├── max.png │ │ │ │ ├── multi_smelter.png │ │ │ │ ├── mv.png │ │ │ │ ├── oil_cracking_unit.png │ │ │ │ ├── oil_drilling_rig_ev.png │ │ │ │ ├── oil_drilling_rig_iv.png │ │ │ │ ├── oil_drilling_rig_luv.png │ │ │ │ ├── oil_drilling_rig_zpm.png │ │ │ │ ├── primitive_blast_furnace.png │ │ │ │ ├── pyrolysis_oven.png │ │ │ │ ├── steel.png │ │ │ │ ├── ulv.png │ │ │ │ ├── uv.png │ │ │ │ ├── vacuum_freezer.png │ │ │ │ └── zpm.png │ │ │ ├── cover │ │ │ │ ├── conveyor.png │ │ │ │ ├── conveyor.png.mcmeta │ │ │ │ ├── energy.png │ │ │ │ ├── monitor.png │ │ │ │ ├── output.png │ │ │ │ ├── pump.png │ │ │ │ └── pump.png.mcmeta │ │ │ ├── empty.png │ │ │ └── overlay │ │ │ │ ├── advanced_miner │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── alloy_smelter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── amp_fabricator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── arc_furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── assembler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── autoclave │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── bender │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── bronze_blast_furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── canner │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── centrifuge │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── charcoal_pit │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── chemical_bath │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── chemical_reactor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── coal_boiler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── coke_oven │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── combustion_engine │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── combustion_generator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── compressor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── cutter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── disassembler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── distillery │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── electric_blast_furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── electrolyzer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── extractor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── extruder │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fermenter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fluid_canner │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fluid_extractor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fluid_solidifier │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── forge_hammer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── forming_press │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── fusion_reactor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── front.png.mcmeta │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── gas_generator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── hatch_dynamo │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── hatch_energy │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── hatch_fluid_input │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── hatch_fluid_output │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── hatch_item_input │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── hatch_item_output │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── hatch_muffler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── heat_exchanger │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── implosion_compressor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── invalid │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── large_boiler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── large_turbine │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── front.png.mcmeta │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── invalid_structure │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── laser_engraver │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── lathe │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── lava_boiler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── mass_fabricator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── mixer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── multi_smelter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── naquadah_generator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── oil_cracking_unit │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── oil_drilling_rig │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── ore_washer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── plasma_arc_furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── plasma_generator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── primitive_blast_furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── pulverizer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── pyrolysis_oven │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── quantum_tank │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ ├── top.png │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── recycler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── replicator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── scanner │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── sifter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── solar_boiler │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_alloy_smelter │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_compressor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_extractor │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_forge_hammer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_furnace │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_generator │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── steam_pulverizer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── top.png │ │ │ │ │ └── top.png.mcmeta │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── thermal_centrifuge │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── vacuum_freezer │ │ │ │ ├── active │ │ │ │ │ ├── back.png │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── front.png │ │ │ │ │ ├── side.png │ │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ └── wire_mill │ │ │ │ ├── active │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ │ │ ├── back.png │ │ │ │ ├── bottom.png │ │ │ │ ├── front.png │ │ │ │ ├── side.png │ │ │ │ └── top.png │ │ ├── nether_rack.png │ │ ├── ore.png │ │ ├── output.png │ │ ├── stone.png │ │ ├── stone │ │ │ ├── basalt.png │ │ │ ├── granite_black.png │ │ │ ├── granite_red.png │ │ │ └── marble.png │ │ └── tree │ │ │ ├── rubber_leaves.png │ │ │ ├── rubber_log.png │ │ │ ├── rubber_log_empty.png │ │ │ ├── rubber_log_end.png │ │ │ ├── rubber_log_filled.png │ │ │ └── rubber_sapling.png │ │ ├── gui │ │ ├── energy_bar.png │ │ ├── energybarold.png │ │ ├── machine │ │ │ ├── Adjusment Notes.txt │ │ │ ├── alloy_smelter.png │ │ │ ├── amp_fabricator.png │ │ │ ├── arc_furnace.png │ │ │ ├── assembler.png │ │ │ ├── autoclave.png │ │ │ ├── bender.png │ │ │ ├── bronze_blast_furnace.png │ │ │ ├── canner.png │ │ │ ├── centrifuge.png │ │ │ ├── chemical_bath.png │ │ │ ├── chemical_reactor.png │ │ │ ├── coke_oven.png │ │ │ ├── combustion_generator.png │ │ │ ├── compressor.png │ │ │ ├── cutter.png │ │ │ ├── disassembler.png │ │ │ ├── distillery.png │ │ │ ├── electric_blast_furnace.png │ │ │ ├── electrolyzer.png │ │ │ ├── extractor.png │ │ │ ├── extruder.png │ │ │ ├── fermenter.png │ │ │ ├── fluid_canner.png │ │ │ ├── fluid_extractor.png │ │ │ ├── fluid_solidifier.png │ │ │ ├── forge_hammer.png │ │ │ ├── forming_press.png │ │ │ ├── fusion_reactor.png │ │ │ ├── gas_generator.png │ │ │ ├── hatch.png │ │ │ ├── laser_engraver.png │ │ │ ├── lathe.png │ │ │ ├── mass_fabricator.png │ │ │ ├── mixer.png │ │ │ ├── multi_display.png │ │ │ ├── naquadah_generator.png │ │ │ ├── ore_washer.png │ │ │ ├── plasma_arc_furnace.png │ │ │ ├── plasma_generator.png │ │ │ ├── primitive_blast_furnace.png │ │ │ ├── pulverizer.png │ │ │ ├── pulverizer_ev.png │ │ │ ├── pulverizer_hv.png │ │ │ ├── pulverizer_iv.png │ │ │ ├── quantum_tank.png │ │ │ ├── recycler.png │ │ │ ├── replicator.png │ │ │ ├── scanner.png │ │ │ ├── sifter.png │ │ │ ├── steam_alloy_smelter_bronze.png │ │ │ ├── steam_alloy_smelter_steel.png │ │ │ ├── steam_compressor_bronze.png │ │ │ ├── steam_compressor_steel.png │ │ │ ├── steam_extractor_bronze.png │ │ │ ├── steam_extractor_steel.png │ │ │ ├── steam_forge_hammer_bronze.png │ │ │ ├── steam_forge_hammer_steel.png │ │ │ ├── steam_furnace_bronze.png │ │ │ ├── steam_furnace_steel.png │ │ │ ├── steam_generator.png │ │ │ ├── steam_pulverizer_bronze.png │ │ │ ├── steam_pulverizer_steel.png │ │ │ ├── thermal_centrifuge.png │ │ │ ├── vacuum_freezer.png │ │ │ └── wire_mill.png │ │ ├── ore_byproducts.png │ │ ├── replicator.png │ │ └── template.png │ │ ├── item │ │ ├── fluid_cell.png │ │ ├── standard │ │ │ ├── adv_circuit_parts.png │ │ │ ├── battery_energy_orb.png │ │ │ ├── battery_energy_orb_cluster.png │ │ │ ├── battery_hull_large.png │ │ │ ├── battery_hull_medium.png │ │ │ ├── battery_hull_small.png │ │ │ ├── battery_large_acid.png │ │ │ ├── battery_large_cadmium.png │ │ │ ├── battery_large_lithium.png │ │ │ ├── battery_large_mercury.png │ │ │ ├── battery_large_sodium.png │ │ │ ├── battery_medium_acid.png │ │ │ ├── battery_medium_cadmium.png │ │ │ ├── battery_medium_lithium.png │ │ │ ├── battery_medium_mercury.png │ │ │ ├── battery_medium_sodium.png │ │ │ ├── battery_small_acid.png │ │ │ ├── battery_small_cadmium.png │ │ │ ├── battery_small_lithium.png │ │ │ ├── battery_small_mercury.png │ │ │ ├── battery_small_sodium.png │ │ │ ├── battery_tantalum.png │ │ │ ├── cell_steel.png │ │ │ ├── cell_tin.png │ │ │ ├── cell_tungstensteel.png │ │ │ ├── circuit_adv.png │ │ │ ├── circuit_basic.png │ │ │ ├── circuit_board_adv.png │ │ │ ├── circuit_board_basic.png │ │ │ ├── circuit_board_empty.png │ │ │ ├── circuit_board_processor.png │ │ │ ├── circuit_board_processor_empty.png │ │ │ ├── circuit_data_control.png │ │ │ ├── circuit_data_orb.png │ │ │ ├── circuit_data_storage.png │ │ │ ├── circuit_energy_flow.png │ │ │ ├── circuit_good.png │ │ │ ├── comb_aluminium.png │ │ │ ├── comb_certus.png │ │ │ ├── comb_chrome.png │ │ │ ├── comb_coal.png │ │ │ ├── comb_copper.png │ │ │ ├── comb_diamond.png │ │ │ ├── comb_emerald.png │ │ │ ├── comb_gold.png │ │ │ ├── comb_iridium.png │ │ │ ├── comb_iron.png │ │ │ ├── comb_lapis.png │ │ │ ├── comb_lead.png │ │ │ ├── comb_lignite.png │ │ │ ├── comb_manganese.png │ │ │ ├── comb_naquadah.png │ │ │ ├── comb_nickel.png │ │ │ ├── comb_oil.png │ │ │ ├── comb_olivine.png │ │ │ ├── comb_platinum.png │ │ │ ├── comb_plutonium.png │ │ │ ├── comb_redstone.png │ │ │ ├── comb_resin.png │ │ │ ├── comb_ruby.png │ │ │ ├── comb_sapphire.png │ │ │ ├── comb_silver.png │ │ │ ├── comb_slag.png │ │ │ ├── comb_steel.png │ │ │ ├── comb_stone.png │ │ │ ├── comb_tin.png │ │ │ ├── comb_titanium.png │ │ │ ├── comb_tungsten.png │ │ │ ├── comb_uranium.png │ │ │ ├── comb_zinc.png │ │ │ ├── computer_monitor.png │ │ │ ├── conveyor_ev.png │ │ │ ├── conveyor_hv.png │ │ │ ├── conveyor_iv.png │ │ │ ├── conveyor_lv.png │ │ │ ├── conveyor_mv.png │ │ │ ├── data_stick.png │ │ │ ├── debug_scanner.png │ │ │ ├── diamond_grind_head.png │ │ │ ├── diamond_saw_blade.png │ │ │ ├── drop_aluminium.png │ │ │ ├── drop_copper.png │ │ │ ├── drop_emerald.png │ │ │ ├── drop_gold.png │ │ │ ├── drop_iridium.png │ │ │ ├── drop_iron.png │ │ │ ├── drop_lead.png │ │ │ ├── drop_manganese.png │ │ │ ├── drop_naquadah.png │ │ │ ├── drop_nickel.png │ │ │ ├── drop_oil.png │ │ │ ├── drop_osmium.png │ │ │ ├── drop_platinum.png │ │ │ ├── drop_silver.png │ │ │ ├── drop_thorium.png │ │ │ ├── drop_tin.png │ │ │ ├── drop_titanium.png │ │ │ ├── drop_tungsten.png │ │ │ ├── drop_uranite.png │ │ │ ├── drop_uranium.png │ │ │ ├── drop_uua.png │ │ │ ├── drop_uum.png │ │ │ ├── drop_zinc.png │ │ │ ├── emitter_ev.png │ │ │ ├── emitter_hv.png │ │ │ ├── emitter_iv.png │ │ │ ├── emitter_lv.png │ │ │ ├── emitter_mv.png │ │ │ ├── empty_shape_plate.png │ │ │ ├── energy_port.png │ │ │ ├── engraved_crystal_chip.png │ │ │ ├── engraved_lapotron_chip.png │ │ │ ├── etched_wiring_ev.png │ │ │ ├── etched_wiring_hv.png │ │ │ ├── etched_wiring_mv.png │ │ │ ├── field_gen_ev.png │ │ │ ├── field_gen_hv.png │ │ │ ├── field_gen_iv.png │ │ │ ├── field_gen_lv.png │ │ │ ├── field_gen_mv.png │ │ │ ├── fluid_port.png │ │ │ ├── fluid_regulator_ev.png │ │ │ ├── fluid_regulator_hv.png │ │ │ ├── fluid_regulator_iv.png │ │ │ ├── fluid_regulator_lv.png │ │ │ ├── fluid_regulator_mv.png │ │ │ ├── gravi_star.png │ │ │ ├── iridium_alloy_ingot.png │ │ │ ├── iridium_neutron_reflector.png │ │ │ ├── iridium_reinforced_plate.png │ │ │ ├── item_filter.png │ │ │ ├── item_port.png │ │ │ ├── mold_anvil.png │ │ │ ├── mold_ball.png │ │ │ ├── mold_block.png │ │ │ ├── mold_bottle.png │ │ │ ├── mold_coinage.png │ │ │ ├── mold_gear.png │ │ │ ├── mold_ingot.png │ │ │ ├── mold_nugget.png │ │ │ ├── mold_plate.png │ │ │ ├── mold_small_gear.png │ │ │ ├── motor_ev.png │ │ │ ├── motor_hv.png │ │ │ ├── motor_iv.png │ │ │ ├── motor_lv.png │ │ │ ├── motor_mv.png │ │ │ ├── nand_chip.png │ │ │ ├── piston_ev.png │ │ │ ├── piston_hv.png │ │ │ ├── piston_iv.png │ │ │ ├── piston_lv.png │ │ │ ├── piston_mv.png │ │ │ ├── pump_ev.png │ │ │ ├── pump_hv.png │ │ │ ├── pump_iv.png │ │ │ ├── pump_lv.png │ │ │ ├── pump_mv.png │ │ │ ├── quantum_eye.png │ │ │ ├── quantum_star.png │ │ │ ├── robot_arm_ev.png │ │ │ ├── robot_arm_hv.png │ │ │ ├── robot_arm_iv.png │ │ │ ├── robot_arm_lv.png │ │ │ ├── robot_arm_mv.png │ │ │ ├── sensor_ev.png │ │ │ ├── sensor_hv.png │ │ │ ├── sensor_iv.png │ │ │ ├── sensor_lv.png │ │ │ ├── sensor_mv.png │ │ │ ├── shape_block.png │ │ │ ├── shape_bolt.png │ │ │ ├── shape_bottle.png │ │ │ ├── shape_cell.png │ │ │ ├── shape_gear.png │ │ │ ├── shape_gear_small.png │ │ │ ├── shape_head_axe.png │ │ │ ├── shape_head_file.png │ │ │ ├── shape_head_gear.png │ │ │ ├── shape_head_hammer.png │ │ │ ├── shape_head_hoe.png │ │ │ ├── shape_head_pickaxe.png │ │ │ ├── shape_head_saw.png │ │ │ ├── shape_head_shovel.png │ │ │ ├── shape_head_sword.png │ │ │ ├── shape_ingot.png │ │ │ ├── shape_pipe_huge.png │ │ │ ├── shape_pipe_large.png │ │ │ ├── shape_pipe_normal.png │ │ │ ├── shape_pipe_small.png │ │ │ ├── shape_pipe_tiny.png │ │ │ ├── shape_plate.png │ │ │ ├── shape_ring.png │ │ │ ├── shape_rod.png │ │ │ ├── shape_wire.png │ │ │ ├── sticky_resin.png │ │ │ └── tungsten_grind_head.png │ │ └── tool │ │ │ ├── axe.png │ │ │ ├── branch_cutter.png │ │ │ ├── buzzsaw.png │ │ │ ├── chainsaw.png │ │ │ ├── crowbar.png │ │ │ ├── drill.png │ │ │ ├── file.png │ │ │ ├── hammer.png │ │ │ ├── hoe.png │ │ │ ├── jackhammer.png │ │ │ ├── knife.png │ │ │ ├── mortar.png │ │ │ ├── overlay │ │ │ ├── axe.png │ │ │ ├── branch_cutter.png │ │ │ ├── buzzsaw_1.png │ │ │ ├── buzzsaw_2.png │ │ │ ├── chainsaw.png │ │ │ ├── crowbar.png │ │ │ ├── drill.png │ │ │ ├── file.png │ │ │ ├── hammer.png │ │ │ ├── hoe.png │ │ │ ├── jackhammer.png │ │ │ ├── knife.png │ │ │ ├── mortar.png │ │ │ ├── pickaxe.png │ │ │ ├── plunger.png │ │ │ ├── saw.png │ │ │ ├── scoop.png │ │ │ ├── screwdriver.png │ │ │ ├── screwdriver_p_1.png │ │ │ ├── screwdriver_p_2.png │ │ │ ├── scythe.png │ │ │ ├── shovel.png │ │ │ ├── sword.png │ │ │ ├── turbine.png │ │ │ ├── universal_spade.png │ │ │ ├── wire_cutter.png │ │ │ ├── wrench.png │ │ │ └── wrench_p.png │ │ │ ├── pickaxe.png │ │ │ ├── plunger.png │ │ │ ├── rod.png │ │ │ ├── saw.png │ │ │ ├── scoop.png │ │ │ ├── screwdriver.png │ │ │ ├── screwdriver_p.png │ │ │ ├── scythe.png │ │ │ ├── shovel.png │ │ │ ├── sword.png │ │ │ ├── turbine.png │ │ │ ├── universal_spade.png │ │ │ ├── wire_cutter.png │ │ │ ├── wrench.png │ │ │ ├── wrench_alt.png │ │ │ └── wrench_p.png │ │ ├── material │ │ ├── diamond │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── dull │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── emerald │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── fine │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── flint │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── gem_h │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── gem_v │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── lapis │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── lignite │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── magnetic │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── metallic │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── none │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── quartz │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── redstone │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── rough │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ ├── ruby │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ └── shiny │ │ │ ├── block.png │ │ │ ├── block_overlay.png │ │ │ ├── bolt.png │ │ │ ├── bolt_overlay.png │ │ │ ├── cell.png │ │ │ ├── cell_gas.png │ │ │ ├── cell_gas_overlay.png │ │ │ ├── cell_gas_overlay.png.mcmeta │ │ │ ├── cell_overlay.png │ │ │ ├── cell_overlay.png.mcmeta │ │ │ ├── cell_plasma.png │ │ │ ├── cell_plasma_overlay.png │ │ │ ├── cell_plasma_overlay.png.mcmeta │ │ │ ├── chunk.png │ │ │ ├── chunk_overlay.png │ │ │ ├── crushed.png │ │ │ ├── crushed_centrifuged.png │ │ │ ├── crushed_centrifuged_overlay.png │ │ │ ├── crushed_overlay.png │ │ │ ├── crushed_purified.png │ │ │ ├── crushed_purified_overlay.png │ │ │ ├── dust.png │ │ │ ├── dust_impure.png │ │ │ ├── dust_impure_overlay.png │ │ │ ├── dust_overlay.png │ │ │ ├── dust_pure.png │ │ │ ├── dust_pure_overlay.png │ │ │ ├── dust_small.png │ │ │ ├── dust_small_overlay.png │ │ │ ├── dust_tiny.png │ │ │ ├── dust_tiny_overlay.png │ │ │ ├── foil.png │ │ │ ├── foil_overlay.png │ │ │ ├── frame.png │ │ │ ├── gas.png │ │ │ ├── gas.png.mcmeta │ │ │ ├── gear.png │ │ │ ├── gear_overlay.png │ │ │ ├── gear_small.png │ │ │ ├── gear_small_overlay.png │ │ │ ├── gem.png │ │ │ ├── gem_brittle.png │ │ │ ├── gem_brittle_overlay.png │ │ │ ├── gem_chipped.png │ │ │ ├── gem_chipped_overlay.png │ │ │ ├── gem_exquisite.png │ │ │ ├── gem_exquisite_overlay.png │ │ │ ├── gem_flawed.png │ │ │ ├── gem_flawed_overlay.png │ │ │ ├── gem_flawless.png │ │ │ ├── gem_flawless_overlay.png │ │ │ ├── gem_overlay.png │ │ │ ├── gem_overlay_overlay.png │ │ │ ├── gem_polished.png │ │ │ ├── gem_polished_overlay.png │ │ │ ├── ingot.png │ │ │ ├── ingot_hot.png │ │ │ ├── ingot_hot_overlay.png │ │ │ ├── ingot_overlay.png │ │ │ ├── lens.png │ │ │ ├── lens_overlay.png │ │ │ ├── liquid.png │ │ │ ├── liquid.png.mcmeta │ │ │ ├── nugget.png │ │ │ ├── nugget_overlay.png │ │ │ ├── ore.png │ │ │ ├── ore_overlay.png │ │ │ ├── ore_small.png │ │ │ ├── plasma.png │ │ │ ├── plasma.png.mcmeta │ │ │ ├── plate.png │ │ │ ├── plate_curved.png │ │ │ ├── plate_curved_overlay.png │ │ │ ├── plate_dense.png │ │ │ ├── plate_dense_overlay.png │ │ │ ├── plate_overlay.png │ │ │ ├── plate_tiny.png │ │ │ ├── plate_tiny_overlay.png │ │ │ ├── ring.png │ │ │ ├── ring_overlay.png │ │ │ ├── rock.png │ │ │ ├── rock_overlay.png │ │ │ ├── rod.png │ │ │ ├── rod_long.png │ │ │ ├── rod_long_overlay.png │ │ │ ├── rod_overlay.png │ │ │ ├── rotor.png │ │ │ ├── rotor_overlay.png │ │ │ ├── screw.png │ │ │ ├── screw_overlay.png │ │ │ ├── spring.png │ │ │ ├── spring_overlay.png │ │ │ ├── wire_fine.png │ │ │ └── wire_fine_overlay.png │ │ └── other │ │ └── front.png │ ├── pack.mcmeta │ ├── supporterlist.txt │ └── supporterlistgold.txt ├── fabric ├── build.gradle ├── run │ └── config │ │ └── fabric_loader_dependencies.json └── src │ └── main │ ├── java │ └── muramasa │ │ └── gregtech │ │ ├── client │ │ └── fabric │ │ │ └── GregTechFabricClient.java │ │ └── fabric │ │ └── GregTechFabric.java │ └── resources │ └── fabric.mod.json ├── forge ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── java │ └── muramasa │ │ └── gregtech │ │ ├── events │ │ └── forge │ │ │ └── RemappingEvents.java │ │ ├── forge │ │ └── GregTechForge.java │ │ └── integration │ │ └── forge │ │ └── tfc │ │ ├── MachineRecipes.java │ │ ├── TFCRegistrar.java │ │ ├── datagen │ │ ├── TFCBlockTagProvider.java │ │ ├── TFCItemTagProvider.java │ │ └── TFCLangProvider.java │ │ └── ore │ │ ├── GTTFCOreBlock.java │ │ └── GTTFCOreItem.java │ └── resources │ └── META-INF │ ├── accesstransformer.cfg │ └── mods.toml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── version ├── build.gradle ├── gradle.properties └── version.properties /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG-old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/CHANGELOG-old.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /GregTech-upload.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/GregTech-upload.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/README.md -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/common/build.gradle -------------------------------------------------------------------------------- /common/src/main/resources/assets/gti/textures/block/machine/overlay/gas_turbine/active/back.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation":{} 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/gti/textures/block/machine/overlay/gas_turbine/active/side.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation":{} 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/gti/textures/block/machine/overlay/steam_turbine/active/side.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation":{} 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/gti/textures/gui/machine/Adjusment Notes.txt: -------------------------------------------------------------------------------- 1 | Contrast: 25 2 | Satuartion: 120 -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/almandine_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/almandine_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/almandine_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/almandine_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/almandine_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/almandine_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/almandine_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/almandine_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/almandine_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/almandine_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/almandine_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/almandine_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/almandine_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/almandine_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/almandine_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/almandine_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/almandine_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/almandine_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/aluminium_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/aluminium_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/aluminium_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/aluminium_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/aluminium_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/aluminium_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/aluminium_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/aluminium_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/aluminium_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/aluminium_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/aluminium_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/aluminium_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/aluminium_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/aluminium_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/aluminium_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/aluminium_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/aluminium_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/aluminium_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/amethyst_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/amethyst_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/amethyst_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/amethyst_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/amethyst_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/amethyst_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/amethyst_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/amethyst_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/amethyst_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/amethyst_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/amethyst_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/amethyst_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/amethyst_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/amethyst_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/amethyst_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/amethyst_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/amethyst_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/amethyst_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/amethyst_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/amethyst_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/andradite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/andradite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/andradite_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/andradite_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/andradite_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/andradite_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/andradite_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/andradite_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/andradite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/andradite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/andradite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/andradite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/andradite_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/andradite_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/andradite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/andradite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/banded_iron_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/banded_iron_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/banded_iron_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/banded_iron_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/banded_iron_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/banded_iron_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/banded_iron_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/banded_iron_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/barite_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/barite_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/barite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/barite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/barite_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/barite_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/barite_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/barite_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/barite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/barite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/barite_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/barite_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/barite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/barite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/barite_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/barite_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/barite_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/barite_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/barite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/barite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/basic_fire_brick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/basic_fire_brick" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bastnasite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bastnasite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bastnasite_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bastnasite_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bastnasite_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bastnasite_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bastnasite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bastnasite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bastnasite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bastnasite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bastnasite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bastnasite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bauxite_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bauxite_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bauxite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bauxite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bauxite_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bauxite_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bauxite_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bauxite_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bauxite_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bauxite_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bauxite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bauxite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bauxite_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bauxite_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bauxite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bauxite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bauxite_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bauxite_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bauxite_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bauxite_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bauxite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bauxite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bentonite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bentonite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bentonite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bentonite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bentonite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bentonite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bentonite_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bentonite_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/beryllium_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/beryllium_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/beryllium_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/beryllium_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/beryllium_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/beryllium_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/beryllium_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/beryllium_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/beryllium_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/beryllium_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/beryllium_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/beryllium_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/beryllium_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/beryllium_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/beryllium_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/beryllium_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/beryllium_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/beryllium_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bismuth_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bismuth_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bismuth_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bismuth_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bismuth_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bismuth_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bismuth_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bismuth_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bismuth_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bismuth_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bismuth_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bismuth_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bismuth_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bismuth_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bismuth_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bismuth_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bismuth_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bismuth_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bismuth_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bismuth_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bismuth_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bismuth_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/bismuth_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/bismuth_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/blue_topaz_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/blue_topaz_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/blue_topaz_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/blue_topaz_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/blue_topaz_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/blue_topaz_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/blue_topaz_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/blue_topaz_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/blue_topaz_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/blue_topaz_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/blue_topaz_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/blue_topaz_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_aluminium_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_aluminium_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_aluminium_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_aluminium_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_aluminium_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_aluminium_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_aluminium_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_aluminium_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_aluminium_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_aluminium_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_aluminium_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_aluminium_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_cobalt_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_cobalt_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_cobalt_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_cobalt_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_cobalt_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_cobalt_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_cobalt_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_cobalt_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_cobalt_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_cobalt_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_cobalt_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_cobalt_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_copper_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_copper_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_copper_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_copper_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_copper_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_copper_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_copper_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_copper_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_copper_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_copper_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_copper_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_copper_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_cupronickel_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_cupronickel_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_cupronickel_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_cupronickel_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_duranium_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_duranium_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_duranium_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_duranium_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_duranium_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_duranium_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_duranium_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_duranium_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_duranium_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_duranium_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_duranium_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_duranium_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_electrum_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_electrum_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_electrum_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_electrum_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_electrum_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_electrum_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_electrum_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_electrum_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_electrum_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_electrum_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_electrum_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_electrum_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_gold_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_gold_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_gold_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_gold_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_gold_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_gold_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_gold_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_gold_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_gold_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_gold_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_gold_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_gold_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_graphene_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_graphene_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_graphene_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_graphene_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_graphene_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_graphene_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_graphene_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_graphene_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_graphene_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_graphene_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_graphene_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_graphene_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_hssg_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_hssg_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_hssg_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_hssg_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_hssg_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_hssg_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_hssg_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_hssg_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_hssg_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_hssg_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_hssg_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_hssg_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_iron_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_iron_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_iron_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_iron_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_iron_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_iron_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_iron_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_iron_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_iron_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_iron_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_iron_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_iron_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_kanthal_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_kanthal_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_kanthal_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_kanthal_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_kanthal_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_kanthal_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_kanthal_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_kanthal_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_kanthal_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_kanthal_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_kanthal_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_kanthal_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_lead_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_lead_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_lead_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_lead_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_lead_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_lead_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_lead_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_lead_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_lead_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_lead_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_lead_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_lead_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_naquadah_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_naquadah_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_naquadah_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_naquadah_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_naquadah_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_naquadah_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_naquadah_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_naquadah_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_naquadah_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_naquadah_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_naquadah_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_naquadah_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_nichrome_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_nichrome_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_nichrome_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_nichrome_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_nichrome_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_nichrome_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_nichrome_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_nichrome_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_nichrome_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_nichrome_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_nichrome_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_nichrome_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_nickel_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_nickel_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_nickel_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_nickel_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_nickel_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_nickel_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_nickel_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_nickel_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_nickel_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_nickel_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_nickel_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_nickel_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_osmium_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_osmium_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_osmium_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_osmium_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_osmium_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_osmium_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_osmium_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_osmium_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_osmium_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_osmium_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_osmium_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_osmium_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_platinum_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_platinum_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_platinum_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_platinum_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_platinum_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_platinum_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_platinum_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_platinum_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_platinum_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_platinum_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_platinum_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_platinum_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_red_alloy_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_red_alloy_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_red_alloy_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_red_alloy_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_red_alloy_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_red_alloy_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_red_alloy_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_red_alloy_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_red_alloy_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_red_alloy_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_red_alloy_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_red_alloy_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_silver_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_silver_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_silver_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_silver_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_silver_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_silver_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_silver_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_silver_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_silver_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_silver_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_silver_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_silver_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_steel_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_steel_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_steel_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_steel_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_steel_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_steel_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_steel_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_steel_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_steel_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_steel_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_steel_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_steel_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_tin_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_tin_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_tin_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_tin_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_tin_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_tin_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_tin_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_tin_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_tin_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_tin_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_titanium_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_titanium_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_titanium_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_titanium_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_titanium_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_titanium_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_titanium_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_titanium_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_titanium_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_titanium_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_titanium_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_titanium_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_tungsten_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_tungsten_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_tungsten_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_tungsten_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_tungsten_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_tungsten_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_tungsten_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_tungsten_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_tungsten_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_tungsten_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_tungsten_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_tungsten_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_zinc_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_zinc_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_zinc_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_zinc_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_zinc_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_zinc_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_zinc_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_zinc_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_zinc_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_zinc_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cable_zinc_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cable_zinc_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/calcite_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/calcite_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/calcite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/calcite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/calcite_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/calcite_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/calcite_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/calcite_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/calcite_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/calcite_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/calcite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/calcite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/calcite_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/calcite_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/calcite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/calcite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/calcite_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/calcite_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/calcite_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/calcite_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/calcite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/calcite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_bricked_bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_bricked_bronze" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_bricked_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_bricked_steel" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_bronze" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_engine_intake.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_engine_intake" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_ev.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_ev" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_fire_brick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_fire_brick" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_firebox_bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_firebox_bronze" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_firebox_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_firebox_steel" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_frost_proof.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_frost_proof" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_fusion_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_fusion_1" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_fusion_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_fusion_2" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_fusion_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_fusion_3" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_gearbox_bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_gearbox_bronze" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_gearbox_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_gearbox_steel" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_heat_proof.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_heat_proof" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_hv.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_hv" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_iv.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_iv" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_luv.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_luv" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_lv.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_lv" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_max.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_max" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_mv.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_mv" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_pipe_bronze.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_pipe_bronze" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_pipe_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_pipe_steel" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_pipe_titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_pipe_titanium" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_radiation_proof.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_radiation_proof" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_solid_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_solid_steel" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_stainless_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_stainless_steel" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_steel" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_titanium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_titanium" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_tungstensteel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_tungstensteel" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_turbine_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_turbine_1" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_turbine_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_turbine_2" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_turbine_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_turbine_3" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_turbine_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_turbine_4" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_ulv.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_ulv" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_uv.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_uv" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/casing_zpm.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/casing_zpm" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cassiterite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cassiterite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cassiterite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cassiterite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cassiterite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cassiterite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cassiterite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cassiterite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/chalcopyrite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/chalcopyrite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/chalcopyrite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/chalcopyrite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cinnabar_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cinnabar_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cinnabar_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cinnabar_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cinnabar_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cinnabar_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cinnabar_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cinnabar_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cinnabar_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cinnabar_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cinnabar_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cinnabar_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cinnabar_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cinnabar_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cinnabar_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cinnabar_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cinnabar_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cinnabar_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cinnabar_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cinnabar_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_granite_black.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_granite_black" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_small_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_small_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_small_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_small_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_small_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_small_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_small_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_small_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_small_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_small_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coal_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coal_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cobaltite_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cobaltite_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cobaltite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cobaltite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cobaltite_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cobaltite_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cobaltite_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cobaltite_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cobaltite_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cobaltite_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cobaltite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cobaltite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cobaltite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cobaltite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cobaltite_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cobaltite_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cobaltite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cobaltite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coil_cupronickel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coil_cupronickel" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coil_fusion.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coil_fusion" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coil_hssg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coil_hssg" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coil_kanthal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coil_kanthal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coil_naquadah.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coil_naquadah" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coil_naquadah_alloy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coil_naquadah_alloy" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coil_nichrome.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coil_nichrome" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coil_superconductor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coil_superconductor" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/coil_tungstensteel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/coil_tungstensteel" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cooperite_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cooperite_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cooperite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cooperite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cooperite_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cooperite_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cooperite_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cooperite_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cooperite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cooperite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cooperite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cooperite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cooperite_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cooperite_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/cooperite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/cooperite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_small_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_small_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/copper_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/copper_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/diamond_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/diamond_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/diamond_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/diamond_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/diamond_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/diamond_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/diamond_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/diamond_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/diamond_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/diamond_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/diamond_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/diamond_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/diamond_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/diamond_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/diamond_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/diamond_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/diamond_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/diamond_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/diamond_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/diamond_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/diamond_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/diamond_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/diamond_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/diamond_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/emerald_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/emerald_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/emerald_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/emerald_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/emerald_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/emerald_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/emerald_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/emerald_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/emerald_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/emerald_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/emerald_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/emerald_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/emerald_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/emerald_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/emerald_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/emerald_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/emerald_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/emerald_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/emerald_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/emerald_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/emerald_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/emerald_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/emerald_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/emerald_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/fluid_pipe_bronze_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/fluid_pipe_bronze_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/fluid_pipe_bronze_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/fluid_pipe_bronze_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/fluid_pipe_copper_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/fluid_pipe_copper_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/fluid_pipe_copper_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/fluid_pipe_copper_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/fluid_pipe_steel_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/fluid_pipe_steel_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/fluid_pipe_steel_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/fluid_pipe_steel_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/fluid_pipe_steel_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/fluid_pipe_steel_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/fluid_pipe_steel_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/fluid_pipe_steel_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/fluid_pipe_steel_vtiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/fluid_pipe_steel_vtiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/fluid_pipe_wood_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/fluid_pipe_wood_large" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/fluid_pipe_wood_normal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/fluid_pipe_wood_normal" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/fluid_pipe_wood_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/fluid_pipe_wood_small" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_small_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_small_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/galena_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/galena_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/garnierite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/garnierite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/garnierite_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/garnierite_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/garnierite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/garnierite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/garnierite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/garnierite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/garnierite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/garnierite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/glauconite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/glauconite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/glauconite_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/glauconite_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/glauconite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/glauconite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/glauconite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/glauconite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_small_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_small_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/gold_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/gold_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/granite_black.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/granite_black" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/graphite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/graphite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/graphite_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/graphite_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/graphite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/graphite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/graphite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/graphite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/graphite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/graphite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/grossular_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/grossular_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/grossular_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/grossular_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/grossular_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/grossular_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/grossular_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/grossular_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ilmenite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ilmenite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ilmenite_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ilmenite_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ilmenite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ilmenite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ilmenite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ilmenite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ilmenite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ilmenite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iridium_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iridium_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iridium_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iridium_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iridium_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iridium_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iridium_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iridium_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iridium_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iridium_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iridium_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iridium_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iridium_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iridium_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iridium_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iridium_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iridium_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iridium_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_small_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_small_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/iron_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/iron_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/item_pipe_brass_huge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/item_pipe_brass_huge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/item_pipe_brass_tiny.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/item_pipe_brass_tiny" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lapis_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lapis_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lapis_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lapis_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lapis_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lapis_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lapis_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lapis_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lapis_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lapis_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lapis_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lapis_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lapis_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lapis_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lapis_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lapis_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lapis_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lapis_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lapis_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lapis_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lapis_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lapis_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lapis_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lapis_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_small_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_small_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lead_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lead_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lepidolite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lepidolite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lepidolite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lepidolite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lithium_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lithium_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lithium_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lithium_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lithium_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lithium_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lithium_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lithium_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lithium_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lithium_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lithium_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lithium_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lithium_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lithium_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lithium_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lithium_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/lithium_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/lithium_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/magnesite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/magnesite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/magnesite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/magnesite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/magnesite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/magnesite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/magnesite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/magnesite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/magnetite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/magnetite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/magnetite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/magnetite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/magnetite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/magnetite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/magnetite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/magnetite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/malachite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/malachite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/malachite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/malachite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/malachite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/malachite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/malachite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/malachite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/manganese_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/manganese_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/manganese_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/manganese_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/manganese_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/manganese_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/manganese_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/manganese_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/molybdenite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/molybdenite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/molybdenum_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/molybdenum_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/molybdenum_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/molybdenum_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/naquadah_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/naquadah_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/naquadah_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/naquadah_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/naquadah_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/naquadah_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/naquadah_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/naquadah_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/naquadah_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/naquadah_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/naquadah_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/naquadah_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/neodymium_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/neodymium_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/neodymium_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/neodymium_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/neodymium_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/neodymium_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/neodymium_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/neodymium_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/nickel_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/nickel_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/nickel_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/nickel_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/nickel_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/nickel_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/nickel_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/nickel_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/nickel_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/nickel_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/nickel_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/nickel_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/nickel_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/nickel_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/nickel_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/nickel_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/nickel_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/nickel_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/nickel_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/nickel_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/oilsands_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/oilsands_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/oilsands_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/oilsands_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/oilsands_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/oilsands_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/oilsands_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/oilsands_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/oilsands_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/oilsands_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/olivine_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/olivine_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/olivine_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/olivine_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/olivine_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/olivine_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/olivine_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/olivine_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/olivine_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/olivine_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/olivine_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/olivine_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/olivine_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/olivine_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/olivine_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/olivine_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/olivine_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/olivine_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_small_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_small_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/opal_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/opal_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/palladium_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/palladium_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/palladium_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/palladium_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/palladium_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/palladium_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/palladium_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/palladium_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/phosphate_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/phosphate_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/phosphate_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/phosphate_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/phosphate_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/phosphate_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/phosphate_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/phosphate_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/phosphorus_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/phosphorus_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/phosphorus_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/phosphorus_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pitchblende_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pitchblende_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/platinum_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/platinum_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/platinum_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/platinum_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/platinum_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/platinum_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/platinum_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/platinum_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/platinum_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/platinum_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/platinum_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/platinum_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrite_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrite_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrite_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrite_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrite_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrite_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrite_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrite_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrite_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrite_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrolusite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrolusite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrolusite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrolusite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrope_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrope_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrope_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrope_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrope_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrope_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrope_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrope_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrope_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrope_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrope_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrope_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrope_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrope_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrope_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrope_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrope_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrope_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/pyrope_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/pyrope_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/quartzite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/quartzite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/quartzite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/quartzite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/quartzite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/quartzite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/quartzite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/quartzite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/red_garnet_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/red_garnet_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/red_garnet_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/red_garnet_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/redstone_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/redstone_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/redstone_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/redstone_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/redstone_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/redstone_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/redstone_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/redstone_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/redstone_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/redstone_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/rock_salt_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/rock_salt_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/rock_salt_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/rock_salt_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_small_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_small_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/ruby_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/ruby_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_small_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_small_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/salt_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/salt_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/saltpeter_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/saltpeter_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/saltpeter_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/saltpeter_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/saltpeter_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/saltpeter_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/scheelite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/scheelite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/scheelite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/scheelite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/scheelite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/scheelite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/scheelite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/scheelite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/silver_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/silver_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/silver_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/silver_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/silver_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/silver_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/silver_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/silver_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/silver_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/silver_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/silver_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/silver_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/silver_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/silver_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/silver_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/silver_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/silver_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/silver_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/silver_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/silver_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/soapstone_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/soapstone_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/soapstone_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/soapstone_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/soapstone_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/soapstone_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/spessartine_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/spessartine_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/sphalerite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/sphalerite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/sphalerite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/sphalerite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/spodumene_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/spodumene_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/spodumene_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/spodumene_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/spodumene_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/spodumene_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/spodumene_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/spodumene_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/stibnite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/stibnite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/stibnite_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/stibnite_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/stibnite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/stibnite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/stibnite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/stibnite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/stibnite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/stibnite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/storage_brass_frame.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/storage_brass_frame" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/storage_bronze_frame.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/storage_bronze_frame" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/storage_hsse_frame.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/storage_hsse_frame" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/storage_hssg_frame.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/storage_hssg_frame" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/storage_invar_frame.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/storage_invar_frame" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/storage_iron_frame.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/storage_iron_frame" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/storage_steel_frame.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/storage_steel_frame" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/storage_tin_frame.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/storage_tin_frame" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/sulfur_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/sulfur_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/sulfur_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/sulfur_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/sulfur_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/sulfur_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/sulfur_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/sulfur_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/sulfur_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/sulfur_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/sulfur_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/sulfur_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/sulfur_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/sulfur_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/sulfur_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/sulfur_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/sulfur_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/sulfur_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/sulfur_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/sulfur_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/talc_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/talc_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/talc_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/talc_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/talc_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/talc_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/talc_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/talc_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/talc_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/talc_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/talc_ore_granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/talc_ore_granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/talc_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/talc_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/talc_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/talc_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/talc_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/talc_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/talc_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/talc_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/talc_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/talc_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/talc_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/talc_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tantalite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tantalite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tantalite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tantalite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tantalite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tantalite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tantalite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tantalite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tanzanite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tanzanite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tanzanite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tanzanite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tanzanite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tanzanite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tanzanite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tanzanite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/thorium_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/thorium_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/thorium_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/thorium_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/thorium_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/thorium_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/thorium_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/thorium_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/thorium_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/thorium_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/thorium_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/thorium_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/thorium_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/thorium_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/thorium_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/thorium_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/thorium_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/thorium_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_small_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_small_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_small_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_small_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_small_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_small_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tin_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tin_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/topaz_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/topaz_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/topaz_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/topaz_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/topaz_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/topaz_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/topaz_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/topaz_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/topaz_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/topaz_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/topaz_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/topaz_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/topaz_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/topaz_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/topaz_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/topaz_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/topaz_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/topaz_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/topaz_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/topaz_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/topaz_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/topaz_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/topaz_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/topaz_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tungstate_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tungstate_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tungstate_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tungstate_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tungstate_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tungstate_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/tungstate_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/tungstate_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/uraninite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/uraninite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/uraninite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/uraninite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/uraninite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/uraninite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/uraninite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/uraninite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/uranium_238_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/uranium_238_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/uvarovite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/uvarovite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/uvarovite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/uvarovite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/uvarovite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/uvarovite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/uvarovite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/uvarovite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/wulfenite_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/wulfenite_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/wulfenite_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/wulfenite_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/wulfenite_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/wulfenite_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/wulfenite_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/wulfenite_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_andesite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_basalt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_basalt" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_diorite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_endstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_endstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_granite" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_granite_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_granite_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_marble" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_netherrack" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_sand_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_sand_red" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_sandstone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_small_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_small_sand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_small_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_small_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/models/item/zinc_ore_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "gtu:block/zinc_ore_stone" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/gtuassets1.14/textures/gui/machine/Adjusment Notes.txt: -------------------------------------------------------------------------------- 1 | Contrast: 25 2 | Satuartion: 120 -------------------------------------------------------------------------------- /fabric/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/fabric/build.gradle -------------------------------------------------------------------------------- /forge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/forge/build.gradle -------------------------------------------------------------------------------- /forge/gradle.properties: -------------------------------------------------------------------------------- 1 | loom.platform=forge 2 | modid=gregtech -------------------------------------------------------------------------------- /forge/src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/settings.gradle -------------------------------------------------------------------------------- /version/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/version/build.gradle -------------------------------------------------------------------------------- /version/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/version/gradle.properties -------------------------------------------------------------------------------- /version/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregTech-Intergalactical/GregTech/HEAD/version/version.properties --------------------------------------------------------------------------------