gitextract_2rmcmr4g/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bugs.md │ └── requests.md ├── .gitignore ├── LICENSE.txt ├── README.md ├── build.gradle ├── gradle/ │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src/ └── main/ ├── java/ │ └── me/ │ └── steven/ │ └── indrev/ │ ├── AprilFools.java │ ├── FabricRecipeRemainder.java │ ├── IREnergyStorage.java │ ├── WCustomTabPanel.java │ └── mixin/ │ ├── aprilfools/ │ │ ├── AprilFoolsMixinConfigPlugin.java │ │ └── MixinTranslatableText.java │ ├── client/ │ │ ├── MixinBuiltChunk.java │ │ ├── MixinClientPlayerInteractionManager.java │ │ ├── MixinGameRenderer.java │ │ ├── MixinItemRenderer.java │ │ ├── MixinLivingEntityClient.java │ │ ├── MixinMinecraftClient.java │ │ └── MixinWItemSlot.java │ └── common/ │ ├── MixinAbstractCookingRecipe.java │ ├── MixinEnchantmentHelper.java │ ├── MixinEntity.java │ ├── MixinItemPredicate.java │ ├── MixinItemStack.java │ ├── MixinLivingEntity.java │ ├── MixinPiglinBrain.java │ ├── MixinPlayerEntity.java │ ├── MixinPlayerInventory.java │ ├── MixinServerPlayerEntity.java │ └── MixinServerWorld.java ├── kotlin/ │ └── me/ │ └── steven/ │ └── indrev/ │ ├── IndustrialRevolution.kt │ ├── IndustrialRevolutionClient.kt │ ├── api/ │ │ ├── AttributeModifierProvider.kt │ │ ├── CustomEnchantmentProvider.kt │ │ ├── IREntityExtension.kt │ │ ├── IRPlayerEntityExtension.kt │ │ ├── IRServerPlayerEntityExtension.kt │ │ ├── OreDataCards.kt │ │ ├── ServerWorldExtension.kt │ │ ├── machines/ │ │ │ ├── Tier.kt │ │ │ └── TransferMode.kt │ │ └── sideconfigs/ │ │ ├── Configurable.kt │ │ ├── ConfigurationType.kt │ │ └── SideConfiguration.kt │ ├── armor/ │ │ ├── IRArmorMaterial.kt │ │ ├── ModuleFeatureRenderer.kt │ │ └── ReinforcedElytraFeatureRenderer.kt │ ├── blockentities/ │ │ ├── BaseBlockEntity.kt │ │ ├── BaseMachineBlockEntity.kt │ │ ├── GlobalStateController.kt │ │ ├── MachineBlockEntity.kt │ │ ├── Syncable.kt │ │ ├── cables/ │ │ │ └── BasePipeBlockEntity.kt │ │ ├── crafters/ │ │ │ ├── CompressorBlockEntity.kt │ │ │ ├── CompressorFactoryBlockEntity.kt │ │ │ ├── CondenserBlockEntity.kt │ │ │ ├── CondenserBlockEntityRenderer.kt │ │ │ ├── CraftingMachineBlockEntity.kt │ │ │ ├── ElectricFurnaceBlockEntity.kt │ │ │ ├── ElectricFurnaceFactoryBlockEntity.kt │ │ │ ├── ElectrolyticSeparatorBlockEntity.kt │ │ │ ├── FluidInfuserBlockEntity.kt │ │ │ ├── FluidInfuserBlockEntityRenderer.kt │ │ │ ├── PulverizerBlockEntity.kt │ │ │ ├── PulverizerFactoryBlockEntity.kt │ │ │ ├── RecyclerBlockEntity.kt │ │ │ ├── SawmillBlockEntity.kt │ │ │ ├── SmelterBlockEntity.kt │ │ │ ├── SolidInfuserBlockEntity.kt │ │ │ └── SolidInfuserFactoryBlockEntity.kt │ │ ├── farms/ │ │ │ ├── AOEMachineBlockEntity.kt │ │ │ ├── AOEMachineBlockEntityRenderer.kt │ │ │ ├── BiomassComposterBlockEntity.kt │ │ │ ├── BiomassComposterBlockEntityRenderer.kt │ │ │ ├── ChopperBlockEntity.kt │ │ │ ├── ChopperBlockEntityRenderer.kt │ │ │ ├── DirtOxygenatorBlockEntity.kt │ │ │ ├── DrainBlockEntity.kt │ │ │ ├── FarmerBlockEntity.kt │ │ │ ├── FisherBlockEntity.kt │ │ │ ├── PumpBlockEntity.kt │ │ │ ├── PumpBlockEntityRenderer.kt │ │ │ ├── RancherBlockEntity.kt │ │ │ └── SlaughterBlockEntity.kt │ │ ├── generators/ │ │ │ ├── BiomassGeneratorBlockEntity.kt │ │ │ ├── CoalGeneratorBlockEntity.kt │ │ │ ├── GasBurningGeneratorBlockEntity.kt │ │ │ ├── GeneratorBlockEntity.kt │ │ │ ├── HeatGeneratorBlockEntity.kt │ │ │ ├── HeatGeneratorBlockEntityRenderer.kt │ │ │ ├── SolarGeneratorBlockEntity.kt │ │ │ ├── SolidFuelGeneratorBlockEntity.kt │ │ │ ├── SteamTurbineBlockEntity.kt │ │ │ └── SteamTurbineSteamInputValveBlockEntity.kt │ │ ├── laser/ │ │ │ ├── CapsuleBlockEntity.kt │ │ │ ├── CapsuleBlockEntityRenderer.kt │ │ │ ├── LaserBlockEntity.kt │ │ │ └── LaserBlockEntityRenderer.kt │ │ ├── miningrig/ │ │ │ ├── DataCardWriterBlockEntity.kt │ │ │ ├── DrillBlockEntity.kt │ │ │ ├── DrillBlockEntityRenderer.kt │ │ │ ├── MiningRigBlockEntity.kt │ │ │ └── MiningRigBlockEntityRenderer.kt │ │ ├── modularworkbench/ │ │ │ ├── ModularWorkbenchBlockEntity.kt │ │ │ └── ModularWorkbenchBlockEntityRenderer.kt │ │ ├── solarpowerplant/ │ │ │ ├── HeliostatBlockEntity.kt │ │ │ ├── HeliostatBlockEntityRenderer.kt │ │ │ ├── SolarPowerPlantTowerBlockEntity.kt │ │ │ └── SolarReceiverBlockEntity.kt │ │ └── storage/ │ │ ├── CabinetBlockEntity.kt │ │ ├── ChargePadBlockEntity.kt │ │ ├── ChargePadBlockEntityRenderer.kt │ │ ├── LazuliFluxContainerBlockEntity.kt │ │ ├── LazuliFluxContainerBlockEntityRenderer.kt │ │ ├── TankBlockEntity.kt │ │ └── TankBlockEntityRenderer.kt │ ├── blocks/ │ │ ├── HeliostatBlock.kt │ │ ├── machine/ │ │ │ ├── CapsuleBlock.kt │ │ │ ├── ChargePadBlock.kt │ │ │ ├── DirtOxygenatorBlock.kt │ │ │ ├── DrillBlock.kt │ │ │ ├── DrillHeadModel.kt │ │ │ ├── ElectrolyticSeparatorBlock.kt │ │ │ ├── FacingMachineBlock.kt │ │ │ ├── HorizontalFacingMachineBlock.kt │ │ │ ├── LaserBlock.kt │ │ │ ├── LazuliFluxContainerBlock.kt │ │ │ ├── MachineBlock.kt │ │ │ ├── MiningRigBlock.kt │ │ │ ├── PumpBlock.kt │ │ │ ├── pipes/ │ │ │ │ ├── BasePipeBlock.kt │ │ │ │ ├── CableBlock.kt │ │ │ │ ├── FluidPipeBlock.kt │ │ │ │ └── ItemPipeBlock.kt │ │ │ └── solarpowerplant/ │ │ │ ├── FluidValveBlock.kt │ │ │ ├── SolarPowerPlantFluidOutputBlock.kt │ │ │ ├── SolarPowerPlantTowerBlock.kt │ │ │ ├── SolarReceiverBlock.kt │ │ │ ├── SteamTurbineBlock.kt │ │ │ └── SteamTurbineSteamInputValveBlock.kt │ │ ├── misc/ │ │ │ ├── AcidFluidBlock.kt │ │ │ ├── BiomassComposterBlock.kt │ │ │ ├── CabinetBlock.kt │ │ │ ├── DuctBlock.kt │ │ │ ├── HorizontalFacingBlock.kt │ │ │ ├── NikoliteOreBlock.kt │ │ │ ├── PlankBlock.kt │ │ │ ├── SulfurCrystalBlock.kt │ │ │ ├── TankBlock.kt │ │ │ ├── VerticalFacingBlock.kt │ │ │ └── WarningStrobeBlock.kt │ │ └── models/ │ │ ├── LazuliFluxContainerBakedModel.kt │ │ ├── MachineBakedModel.kt │ │ ├── MinerBakedModel.kt │ │ ├── PumpPipeBakedModel.kt │ │ └── pipes/ │ │ ├── BasePipeModel.kt │ │ ├── CableModel.kt │ │ ├── FluidPipeModel.kt │ │ └── ItemPipeModel.kt │ ├── compat/ │ │ ├── dashloader/ │ │ │ └── models/ │ │ │ ├── DashCableModel.kt │ │ │ ├── DashFluidPipeModel.kt │ │ │ ├── DashItemPipeModel.kt │ │ │ ├── DashLazuliFluxContainerModel.kt │ │ │ ├── DashMachineModel.kt │ │ │ ├── DashMinerModel.kt │ │ │ └── DashTankModel.kt │ │ └── rei/ │ │ ├── REIPlugin.kt │ │ ├── categories/ │ │ │ ├── IRMachineRecipeCategory.kt │ │ │ ├── IRModuleCraftingRecipeCategory.kt │ │ │ └── IRSawmillRecipeCategory.kt │ │ └── plugins/ │ │ └── IRMachinePlugin.kt │ ├── components/ │ │ ├── CraftingComponent.kt │ │ ├── EnhancerComponent.kt │ │ ├── FluidComponent.kt │ │ ├── GuiSyncableComponent.kt │ │ ├── InventoryComponent.kt │ │ ├── TemperatureComponent.kt │ │ └── multiblock/ │ │ ├── BlockStateFilter.kt │ │ ├── MultiBlockComponent.kt │ │ ├── MultiblockBlockEntityRenderer.kt │ │ ├── MultiblockMatcher.kt │ │ ├── StructureDefinition.kt │ │ ├── StructureHolder.kt │ │ ├── StructureIdentifier.kt │ │ └── definitions/ │ │ ├── FactoryStructureDefinition.kt │ │ ├── SolarPowerPlantTowerStructureDefinition.kt │ │ └── SteamTurbineStructureDefinition.kt │ ├── config/ │ │ └── IRConfig.kt │ ├── datagen/ │ │ ├── DataFactory.kt │ │ ├── DataGenerator.kt │ │ ├── DataGeneratorManager.kt │ │ ├── ImageFactory.kt │ │ ├── IndustrialRevolutionDatagen.kt │ │ ├── JsonFactory.kt │ │ ├── generators/ │ │ │ ├── BlockModelGenerator.kt │ │ │ ├── ItemModelGenerator.kt │ │ │ ├── LootTableGenerator.kt │ │ │ ├── MaterialRecipeGenerator.kt │ │ │ ├── MaterialTagGenerator.kt │ │ │ └── MetalSpriteGenerator.kt │ │ └── utils/ │ │ ├── MaterialColors.kt │ │ ├── MetalModel.kt │ │ ├── MetalSpriteRegistry.kt │ │ └── SpriteColorHolder.kt │ ├── events/ │ │ ├── client/ │ │ │ ├── IRClientTickEvents.kt │ │ │ ├── IRHudRenderCallback.kt │ │ │ ├── IRLivingEntityFeatureRendererCallback.kt │ │ │ ├── IRTooltipComponentsCallback.kt │ │ │ ├── IRWorldRenderer.kt │ │ │ ├── MatterProjectorPreviewRenderer.kt │ │ │ └── MiningRigInfoTooltipCallback.kt │ │ └── common/ │ │ └── IRLootTableCallback.kt │ ├── fluids/ │ │ ├── BaseFluid.kt │ │ └── FluidType.kt │ ├── gui/ │ │ ├── IRInventoryScreen.kt │ │ ├── IRModularControllerScreen.kt │ │ ├── IRScreenHandlerFactory.kt │ │ ├── ScrewdriverScreenHandlerFactory.kt │ │ ├── guiutils.kt │ │ ├── properties/ │ │ │ └── SyncableProperty.kt │ │ ├── screenhandlers/ │ │ │ ├── IRGuiScreenHandler.kt │ │ │ ├── blockblacklister/ │ │ │ │ └── BlockBlacklisterScreenHandler.kt │ │ │ ├── machines/ │ │ │ │ ├── BiomassGeneratorScreenHandler.kt │ │ │ │ ├── ChopperScreenHandler.kt │ │ │ │ ├── CoalGeneratorScreenHandler.kt │ │ │ │ ├── CompressorFactoryScreenHandler.kt │ │ │ │ ├── CompressorScreenHandler.kt │ │ │ │ ├── CondenserScreenHandler.kt │ │ │ │ ├── DataCardWriterScreenHandler.kt │ │ │ │ ├── ElectricFurnaceFactoryScreenHandler.kt │ │ │ │ ├── ElectricFurnaceScreenHandler.kt │ │ │ │ ├── ElectrolyticSeparatorScreenHandler.kt │ │ │ │ ├── FarmerScreenHandler.kt │ │ │ │ ├── FisherScreenHandler.kt │ │ │ │ ├── FluidInfuserScreenHandler.kt │ │ │ │ ├── GasBurningGeneratorScreenHandler.kt │ │ │ │ ├── HeatGeneratorScreenHandler.kt │ │ │ │ ├── LaserEmitterScreenHandler.kt │ │ │ │ ├── LazuliFluxContainerScreenHandler.kt │ │ │ │ ├── MiningRigComputerScreenHandler.kt │ │ │ │ ├── MiningRigDrillScreenHandler.kt │ │ │ │ ├── ModularWorkbenchScreenHandler.kt │ │ │ │ ├── PulverizerFactoryScreenHandler.kt │ │ │ │ ├── PulverizerScreenHandler.kt │ │ │ │ ├── PumpScreenHandler.kt │ │ │ │ ├── RancherScreenHandler.kt │ │ │ │ ├── RecyclerScreenHandler.kt │ │ │ │ ├── SawmillScreenHandler.kt │ │ │ │ ├── SlaughterScreenHandler.kt │ │ │ │ ├── SmelterScreenHandler.kt │ │ │ │ ├── SolarGeneratorScreenHandler.kt │ │ │ │ ├── SolarPowerPlantTowerScreenHandler.kt │ │ │ │ ├── SolidInfuserFactoryScreenHandler.kt │ │ │ │ ├── SolidInfuserScreenHandler.kt │ │ │ │ └── SteamTurbineScreenHandler.kt │ │ │ ├── modular/ │ │ │ │ └── ModularItemConfigurationScreenHandler.kt │ │ │ ├── pipes/ │ │ │ │ ├── PipeFilterScreen.kt │ │ │ │ ├── PipeFilterScreenFactory.kt │ │ │ │ └── PipeFilterScreenHandler.kt │ │ │ ├── screenhandlers.kt │ │ │ ├── storage/ │ │ │ │ └── CabinetScreenHandler.kt │ │ │ └── wrench/ │ │ │ └── ScrewdriverScreenHandler.kt │ │ ├── tooltip/ │ │ │ ├── energy/ │ │ │ │ ├── EnergyTooltipComponent.kt │ │ │ │ └── EnergyTooltipData.kt │ │ │ ├── modular/ │ │ │ │ ├── ModularTooltipComponent.kt │ │ │ │ └── ModularTooltipData.kt │ │ │ └── oredatacards/ │ │ │ ├── OreDataCardTooltipComponent.kt │ │ │ └── OreDataCardTooltipData.kt │ │ └── widgets/ │ │ ├── machines/ │ │ │ ├── WCustomBar.kt │ │ │ └── WMachineSideDisplay.kt │ │ └── misc/ │ │ ├── WBookEntryShortcut.kt │ │ ├── WCircleProgressBar.kt │ │ ├── WDynamicSprite.kt │ │ ├── WKnob.kt │ │ ├── WPlayerRender.kt │ │ ├── WStaticTooltip.kt │ │ ├── WText.kt │ │ └── WTooltipedItemSlot.kt │ ├── inventories/ │ │ ├── IRInventory.kt │ │ └── IRInventoryDSL.kt │ ├── items/ │ │ ├── armor/ │ │ │ ├── IRColorModuleItem.kt │ │ │ ├── IRModularArmorItem.kt │ │ │ ├── IRModuleItem.kt │ │ │ ├── JetpackHandler.kt │ │ │ ├── JetpackItem.kt │ │ │ └── ReinforcedElytraItem.kt │ │ ├── energy/ │ │ │ ├── IRBatteryItem.kt │ │ │ ├── IREnergyItem.kt │ │ │ ├── IRGamerAxeItem.kt │ │ │ ├── IRMiningDrillItem.kt │ │ │ ├── IRModularDrillItem.kt │ │ │ ├── IRPortableChargerItem.kt │ │ │ └── MachineBlockItem.kt │ │ ├── misc/ │ │ │ ├── IRCraftingToolItem.kt │ │ │ ├── IREnergyReaderItem.kt │ │ │ ├── IRGuideBookItem.kt │ │ │ ├── IRMachineUpgradeItem.kt │ │ │ ├── IRServoItem.kt │ │ │ ├── OreDataCardItem.kt │ │ │ └── Tools.kt │ │ ├── models/ │ │ │ └── TankItemBakedModel.kt │ │ └── upgrade/ │ │ ├── Enhancer.kt │ │ └── IREnhancerItem.kt │ ├── networks/ │ │ ├── EndpointData.kt │ │ ├── Network.kt │ │ ├── NetworkEvents.kt │ │ ├── NetworkState.kt │ │ ├── Node.kt │ │ ├── ServoNetworkState.kt │ │ ├── client/ │ │ │ ├── ClientNetworkInfo.kt │ │ │ ├── ClientNetworkState.kt │ │ │ ├── ClientServoNetworkInfo.kt │ │ │ └── node/ │ │ │ ├── ClientNodeInfo.kt │ │ │ └── ClientServoNodeInfo.kt │ │ ├── energy/ │ │ │ ├── CableEnergyIo.kt │ │ │ ├── EnergyNetwork.kt │ │ │ └── EnergyNetworkState.kt │ │ ├── factory/ │ │ │ ├── NetworkFactory.kt │ │ │ └── factories.kt │ │ ├── fluid/ │ │ │ ├── FluidNetwork.kt │ │ │ └── FluidNetworkState.kt │ │ └── item/ │ │ ├── ItemFilterData.kt │ │ ├── ItemNetwork.kt │ │ └── ItemNetworkState.kt │ ├── packets/ │ │ ├── PacketRegistry.kt │ │ ├── client/ │ │ │ ├── ClientItemPipePackets.kt │ │ │ ├── GuiPropertySyncPacket.kt │ │ │ ├── MachineStateUpdatePacket.kt │ │ │ ├── MiningRigSpawnBlockParticlesPacket.kt │ │ │ ├── SyncAppliedModulesPacket.kt │ │ │ ├── SyncConfigPacket.kt │ │ │ └── SyncNetworkServosPacket.kt │ │ └── common/ │ │ ├── ConfigureIOPackets.kt │ │ ├── DataCardWriteStartPacket.kt │ │ ├── FluidGuiHandInteractionPacket.kt │ │ ├── ItemPipePackets.kt │ │ ├── SelectModuleOnWorkbenchPacket.kt │ │ ├── ToggleFactoryStackSplittingPacket.kt │ │ ├── ToggleGamerAxePacket.kt │ │ ├── UpdateAOEMachineRangePacket.kt │ │ ├── UpdateKnobValue.kt │ │ ├── UpdateMiningDrillBlockBlacklistPacket.kt │ │ ├── UpdateModularToolLevelPacket.kt │ │ └── UpdateRancherConfigPacket.kt │ ├── recipes/ │ │ ├── IRecipeGetter.kt │ │ ├── SelfRemainderRecipe.kt │ │ └── machines/ │ │ ├── CompressorRecipe.kt │ │ ├── CondenserRecipe.kt │ │ ├── DistillerRecipe.kt │ │ ├── ElectrolysisRecipe.kt │ │ ├── FluidInfuserRecipe.kt │ │ ├── IRFluidRecipe.kt │ │ ├── IRRecipe.kt │ │ ├── IRRecipeType.kt │ │ ├── InfuserRecipe.kt │ │ ├── LaserRecipe.kt │ │ ├── ModuleRecipe.kt │ │ ├── PulverizerRecipe.kt │ │ ├── RecyclerRecipe.kt │ │ ├── SawmillRecipe.kt │ │ ├── SmelterRecipe.kt │ │ ├── VanillaCookingRecipeCachedGetter.kt │ │ └── entries/ │ │ ├── InputEntry.kt │ │ └── OutputEntry.kt │ ├── registry/ │ │ ├── IRBlockRegistry.kt │ │ ├── IRFluidFuelRegistry.kt │ │ ├── IRFluidRegistry.kt │ │ ├── IRItemRegistry.kt │ │ ├── IRModelManagers.kt │ │ ├── MachineRegistry.kt │ │ ├── MaterialHelper.kt │ │ └── WorldGeneration.kt │ ├── tools/ │ │ ├── IRToolMaterial.kt │ │ └── modular/ │ │ ├── ArmorModule.kt │ │ ├── DrillModule.kt │ │ ├── GamerAxeModule.kt │ │ ├── IRModularItem.kt │ │ ├── MiningToolModule.kt │ │ └── Module.kt │ ├── utils/ │ │ ├── EmptyModel.kt │ │ ├── EnergyDamageHandler.kt │ │ ├── IRFluidTank.kt │ │ ├── ReusableArrayDeque.kt │ │ ├── accessorextensions.kt │ │ ├── clientutils.kt │ │ ├── energyutils.kt │ │ ├── fluidutils.kt │ │ ├── helperextensions.kt │ │ ├── hiddenitems.kt │ │ ├── interactions.kt │ │ ├── itemutils.kt │ │ ├── machineinteractions.kt │ │ └── utils.kt │ └── world/ │ └── features/ │ ├── IRConfiguredFeature.kt │ └── SulfurCrystalFeature.kt └── resources/ ├── assets/ │ └── indrev/ │ ├── blockstates/ │ │ ├── biomass_composter.json │ │ ├── block_base.json │ │ ├── block_highlight.json │ │ ├── block_shadow.json │ │ ├── bronze_block.json │ │ ├── cabinet.json │ │ ├── capsule.json │ │ ├── charge_pad_mk4.json │ │ ├── composting.json │ │ ├── controller.json │ │ ├── coolant.json │ │ ├── deepslate_lead_ore.json │ │ ├── deepslate_nikolite_ore.json │ │ ├── deepslate_silver_ore.json │ │ ├── deepslate_tin_ore.json │ │ ├── deepslate_tungsten_ore.json │ │ ├── drain_mk1.json │ │ ├── drill_bottom.json │ │ ├── drill_middle.json │ │ ├── drill_top.json │ │ ├── duct.json │ │ ├── electrum_block.json │ │ ├── fisher_mk2.json │ │ ├── fisher_mk3.json │ │ ├── fisher_mk4.json │ │ ├── frame.json │ │ ├── heat_generator_mk4.json │ │ ├── hydrogen.json │ │ ├── intake.json │ │ ├── laser_emitter_mk4.json │ │ ├── lead_block.json │ │ ├── lead_ore.json │ │ ├── machine_block.json │ │ ├── methane.json │ │ ├── modular_workbench_mk4.json │ │ ├── molten_copper.json │ │ ├── molten_gold.json │ │ ├── molten_iron.json │ │ ├── molten_lead.json │ │ ├── molten_netherite.json │ │ ├── molten_silver.json │ │ ├── molten_tin.json │ │ ├── nikolite_ore.json │ │ ├── ore_base.json │ │ ├── ore_highlight.json │ │ ├── oxygen.json │ │ ├── plank_block.json │ │ ├── planks.json │ │ ├── pump_mk1.json │ │ ├── raw_lead_block.json │ │ ├── raw_silver_block.json │ │ ├── raw_tin_block.json │ │ ├── raw_tungsten_block.json │ │ ├── silo.json │ │ ├── silver_block.json │ │ ├── silver_ore.json │ │ ├── steel_block.json │ │ ├── sulfur_crystal.json │ │ ├── sulfuric_acid.json │ │ ├── tank.json │ │ ├── tin_block.json │ │ ├── tin_ore.json │ │ ├── toxic_mud.json │ │ ├── tungsten_block.json │ │ ├── tungsten_ore.json │ │ ├── warning_strobe.json │ │ └── wither_proof_obsidian.json │ ├── lang/ │ │ ├── en_us.json │ │ ├── pt_br.json │ │ ├── ru_ru.json │ │ ├── tr_tr.json │ │ └── zh_cn.json │ ├── models/ │ │ ├── block/ │ │ │ ├── block_base.json │ │ │ ├── block_highlight.json │ │ │ ├── block_shadow.json │ │ │ ├── bronze_block.json │ │ │ ├── cabinet.json │ │ │ ├── cable_center_mk1.json │ │ │ ├── cable_center_mk2.json │ │ │ ├── cable_center_mk3.json │ │ │ ├── cable_center_mk4.json │ │ │ ├── cable_side_mk1.json │ │ │ ├── cable_side_mk2.json │ │ │ ├── cable_side_mk3.json │ │ │ ├── cable_side_mk4.json │ │ │ ├── capsule.json │ │ │ ├── charge_pad_mk4.json │ │ │ ├── controller.json │ │ │ ├── deepslate_lead_ore.json │ │ │ ├── deepslate_nikolite_ore.json │ │ │ ├── deepslate_silver_ore.json │ │ │ ├── deepslate_tin_ore.json │ │ │ ├── deepslate_tungsten_ore.json │ │ │ ├── diamond_drill_head.json │ │ │ ├── drain_mk1.json │ │ │ ├── drill.json │ │ │ ├── drill_bottom.json │ │ │ ├── drill_middle.json │ │ │ ├── drill_top.json │ │ │ ├── drill_top_on.json │ │ │ ├── duct.json │ │ │ ├── electrum_block.json │ │ │ ├── fishing_farm_mk2.json │ │ │ ├── fishing_farm_mk3.json │ │ │ ├── fishing_farm_mk4.json │ │ │ ├── fluid_pipe_center_mk1.json │ │ │ ├── fluid_pipe_center_mk2.json │ │ │ ├── fluid_pipe_center_mk3.json │ │ │ ├── fluid_pipe_center_mk4.json │ │ │ ├── fluid_pipe_side_mk1.json │ │ │ ├── fluid_pipe_side_mk2.json │ │ │ ├── fluid_pipe_side_mk3.json │ │ │ ├── fluid_pipe_side_mk4.json │ │ │ ├── frame.json │ │ │ ├── gray_lava.json │ │ │ ├── heat_generator_mk4.json │ │ │ ├── intake.json │ │ │ ├── iron_drill_head.json │ │ │ ├── item_pipe_center_mk1.json │ │ │ ├── item_pipe_center_mk2.json │ │ │ ├── item_pipe_center_mk3.json │ │ │ ├── item_pipe_center_mk4.json │ │ │ ├── item_pipe_side_mk1.json │ │ │ ├── item_pipe_side_mk2.json │ │ │ ├── item_pipe_side_mk3.json │ │ │ ├── item_pipe_side_mk4.json │ │ │ ├── laser.json │ │ │ ├── laser_on.json │ │ │ ├── lazuli_flux_container.json │ │ │ ├── lazuli_flux_container_input.json │ │ │ ├── lazuli_flux_container_item_lf_level.json │ │ │ ├── lazuli_flux_container_mk1_overlay.json │ │ │ ├── lazuli_flux_container_mk2_overlay.json │ │ │ ├── lazuli_flux_container_mk3_overlay.json │ │ │ ├── lazuli_flux_container_mk4_overlay.json │ │ │ ├── lazuli_flux_container_output.json │ │ │ ├── lead_block.json │ │ │ ├── lead_ore.json │ │ │ ├── machine.json │ │ │ ├── machine_block.json │ │ │ ├── modular_workbench_mk4.json │ │ │ ├── netherite_drill_head.json │ │ │ ├── nikolite_ore.json │ │ │ ├── ore_base.json │ │ │ ├── ore_highlight.json │ │ │ ├── plank_block.json │ │ │ ├── planks_height10.json │ │ │ ├── planks_height12.json │ │ │ ├── planks_height14.json │ │ │ ├── planks_height2.json │ │ │ ├── planks_height4.json │ │ │ ├── planks_height6.json │ │ │ ├── planks_height8.json │ │ │ ├── pump_mk1.json │ │ │ ├── pump_pipe.json │ │ │ ├── raw_lead_block.json │ │ │ ├── raw_silver_block.json │ │ │ ├── raw_tin_block.json │ │ │ ├── raw_tungsten_block.json │ │ │ ├── servo_output.json │ │ │ ├── servo_output_item.json │ │ │ ├── servo_retriever.json │ │ │ ├── servo_retriever_item.json │ │ │ ├── silo.json │ │ │ ├── silver_block.json │ │ │ ├── silver_ore.json │ │ │ ├── smelter_mk4.json │ │ │ ├── solar_generator_mk1.json │ │ │ ├── solar_generator_mk1_on.json │ │ │ ├── solar_generator_mk3.json │ │ │ ├── solar_generator_mk3_on.json │ │ │ ├── steel_block.json │ │ │ ├── stone_drill_head.json │ │ │ ├── sulfur_crystal.json │ │ │ ├── tank.json │ │ │ ├── tank_both.json │ │ │ ├── tank_down.json │ │ │ ├── tank_up.json │ │ │ ├── tin_block.json │ │ │ ├── tin_ore.json │ │ │ ├── tungsten_block.json │ │ │ ├── tungsten_ore.json │ │ │ ├── warning_strobe.json │ │ │ └── wither_proof_obsidian.json │ │ └── item/ │ │ ├── axe_base.json │ │ ├── axe_highlight.json │ │ ├── axe_outline.json │ │ ├── battery.json │ │ ├── biomass.json │ │ ├── blast_furnace_enhancer.json │ │ ├── block_base.json │ │ ├── block_highlight.json │ │ ├── boots_base.json │ │ ├── boots_highlight.json │ │ ├── boots_outline.json │ │ ├── broken_reinforced_elytra.json │ │ ├── bronze_axe.json │ │ ├── bronze_block.json │ │ ├── bronze_boots.json │ │ ├── bronze_chestplate.json │ │ ├── bronze_dust.json │ │ ├── bronze_helmet.json │ │ ├── bronze_hoe.json │ │ ├── bronze_ingot.json │ │ ├── bronze_leggings.json │ │ ├── bronze_nugget.json │ │ ├── bronze_pickaxe.json │ │ ├── bronze_plate.json │ │ ├── bronze_shovel.json │ │ ├── bronze_sword.json │ │ ├── buffer_enhancer.json │ │ ├── cabinet.json │ │ ├── cable_mk1.json │ │ ├── cable_mk2.json │ │ ├── cable_mk3.json │ │ ├── cable_mk4.json │ │ ├── capsule.json │ │ ├── charge_pad_mk4.json │ │ ├── chestplate_base.json │ │ ├── chestplate_highlight.json │ │ ├── chestplate_outline.json │ │ ├── chunk_base.json │ │ ├── chunk_highlight.json │ │ ├── chunk_outline.json │ │ ├── chunk_scanner.json │ │ ├── circuit_mk1.json │ │ ├── circuit_mk2.json │ │ ├── circuit_mk3.json │ │ ├── circuit_mk4.json │ │ ├── coal_dust.json │ │ ├── controller.json │ │ ├── coolant_bucket.json │ │ ├── cooler_cell.json │ │ ├── copper_axe.json │ │ ├── copper_block.json │ │ ├── copper_boots.json │ │ ├── copper_chestplate.json │ │ ├── copper_chunk.json │ │ ├── copper_dust.json │ │ ├── copper_gear.json │ │ ├── copper_helmet.json │ │ ├── copper_hoe.json │ │ ├── copper_leggings.json │ │ ├── copper_nether_ore.json │ │ ├── copper_nugget.json │ │ ├── copper_ore.json │ │ ├── copper_pickaxe.json │ │ ├── copper_plate.json │ │ ├── copper_purified_ore.json │ │ ├── copper_shovel.json │ │ ├── copper_sword.json │ │ ├── damage_enhancer.json │ │ ├── deepslate_lead_ore.json │ │ ├── deepslate_nikolite_ore.json │ │ ├── deepslate_silver_ore.json │ │ ├── deepslate_tin_ore.json │ │ ├── deepslate_tungsten_ore.json │ │ ├── diamond_drill_head.json │ │ ├── diamond_dust.json │ │ ├── drain_mk1.json │ │ ├── drill_bottom.json │ │ ├── duct.json │ │ ├── dust_base.json │ │ ├── dust_highlight.json │ │ ├── dust_outline.json │ │ ├── electrum_block.json │ │ ├── electrum_dust.json │ │ ├── electrum_ingot.json │ │ ├── electrum_nugget.json │ │ ├── electrum_plate.json │ │ ├── empty_enhancer.json │ │ ├── energy_enhancer.json │ │ ├── energy_reader.json │ │ ├── enriched_nikolite_dust.json │ │ ├── enriched_nikolite_ingot.json │ │ ├── fan.json │ │ ├── fisher_mk2.json │ │ ├── fisher_mk3.json │ │ ├── fisher_mk4.json │ │ ├── fluid_pipe_mk1.json │ │ ├── fluid_pipe_mk2.json │ │ ├── fluid_pipe_mk3.json │ │ ├── fluid_pipe_mk4.json │ │ ├── frame.json │ │ ├── gamer_axe.json │ │ ├── gamer_axe1.json │ │ ├── gamer_axe10.json │ │ ├── gamer_axe2.json │ │ ├── gamer_axe3.json │ │ ├── gamer_axe4.json │ │ ├── gamer_axe5.json │ │ ├── gamer_axe6.json │ │ ├── gamer_axe7.json │ │ ├── gamer_axe8.json │ │ ├── gamer_axe9.json │ │ ├── gold_chunk.json │ │ ├── gold_dust.json │ │ ├── gold_plate.json │ │ ├── gold_purified_ore.json │ │ ├── guide_book.json │ │ ├── hammer.json │ │ ├── heat_coil.json │ │ ├── heat_generator_mk4.json │ │ ├── heatsink.json │ │ ├── helmet_base.json │ │ ├── helmet_highlight.json │ │ ├── helmet_outline.json │ │ ├── hoe_base.json │ │ ├── hoe_highlight.json │ │ ├── hoe_outline.json │ │ ├── ingot_base.json │ │ ├── ingot_highlight.json │ │ ├── ingot_outline.json │ │ ├── intake.json │ │ ├── iron_chunk.json │ │ ├── iron_drill_head.json │ │ ├── iron_dust.json │ │ ├── iron_gear.json │ │ ├── iron_plate.json │ │ ├── iron_purified_ore.json │ │ ├── jetpack_mk1.json │ │ ├── jetpack_mk2.json │ │ ├── jetpack_mk3.json │ │ ├── jetpack_mk4.json │ │ ├── laser_emitter_mk4.json │ │ ├── lazuli_flux_container_creative.json │ │ ├── lazuli_flux_container_mk1.json │ │ ├── lazuli_flux_container_mk2.json │ │ ├── lazuli_flux_container_mk3.json │ │ ├── lazuli_flux_container_mk4.json │ │ ├── lead_axe.json │ │ ├── lead_block.json │ │ ├── lead_boots.json │ │ ├── lead_chestplate.json │ │ ├── lead_chunk.json │ │ ├── lead_dust.json │ │ ├── lead_helmet.json │ │ ├── lead_hoe.json │ │ ├── lead_ingot.json │ │ ├── lead_leggings.json │ │ ├── lead_nugget.json │ │ ├── lead_ore.json │ │ ├── lead_pickaxe.json │ │ ├── lead_plate.json │ │ ├── lead_purified_ore.json │ │ ├── lead_shovel.json │ │ ├── lead_sword.json │ │ ├── leggings_base.json │ │ ├── leggings_highlight.json │ │ ├── leggings_outline.json │ │ ├── machine_block.json │ │ ├── miner_mk4.json │ │ ├── mining_drill_mk1.json │ │ ├── mining_drill_mk2.json │ │ ├── mining_drill_mk3.json │ │ ├── mining_drill_mk4.json │ │ ├── modular_armor_boots.json │ │ ├── modular_armor_chest.json │ │ ├── modular_armor_helmet.json │ │ ├── modular_armor_legs.json │ │ ├── modular_core.json │ │ ├── modular_core_activated.json │ │ ├── modular_workbench_mk4.json │ │ ├── module_auto_feeder.json │ │ ├── module_breathing.json │ │ ├── module_charger.json │ │ ├── module_color_black.json │ │ ├── module_color_blue.json │ │ ├── module_color_brown.json │ │ ├── module_color_cyan.json │ │ ├── module_color_green.json │ │ ├── module_color_orange.json │ │ ├── module_color_pink.json │ │ ├── module_color_purple.json │ │ ├── module_color_red.json │ │ ├── module_color_yellow.json │ │ ├── module_efficiency.json │ │ ├── module_elytra.json │ │ ├── module_feather_falling.json │ │ ├── module_fire_aspect.json │ │ ├── module_fire_resistance.json │ │ ├── module_fortune.json │ │ ├── module_jetpack.json │ │ ├── module_jump_boost.json │ │ ├── module_looting.json │ │ ├── module_magnet.json │ │ ├── module_night_vision.json │ │ ├── module_piglin_tricker.json │ │ ├── module_protection.json │ │ ├── module_range.json │ │ ├── module_reach.json │ │ ├── module_sharpness.json │ │ ├── module_silk_touch.json │ │ ├── module_solar_panel.json │ │ ├── module_speed.json │ │ ├── module_water_affinity.json │ │ ├── molten_bucket_base.json │ │ ├── molten_bucket_highlight.json │ │ ├── molten_bucket_outline.json │ │ ├── molten_copper_bucket.json │ │ ├── molten_gold_bucket.json │ │ ├── molten_iron_bucket.json │ │ ├── molten_lead_bucket.json │ │ ├── molten_netherite_bucket.json │ │ ├── molten_silver_bucket.json │ │ ├── molten_tin_bucket.json │ │ ├── netherite_drill_head.json │ │ ├── netherite_scrap_chunk.json │ │ ├── netherite_scrap_dust.json │ │ ├── netherite_scrap_purified_ore.json │ │ ├── nikolite_dust.json │ │ ├── nikolite_ingot.json │ │ ├── nikolite_nether_ore.json │ │ ├── nikolite_ore.json │ │ ├── nugget_base.json │ │ ├── nugget_highlight.json │ │ ├── nugget_outline.json │ │ ├── ore_base.json │ │ ├── ore_data_card.json │ │ ├── ore_data_card_not_empty.json │ │ ├── ore_highlight.json │ │ ├── pickaxe_base.json │ │ ├── pickaxe_highlight.json │ │ ├── pickaxe_outline.json │ │ ├── plank_block.json │ │ ├── planks.json │ │ ├── plate_base.json │ │ ├── plate_highlight.json │ │ ├── plate_outline.json │ │ ├── portable_charger.json │ │ ├── pump_mk1.json │ │ ├── purified_ore_base.json │ │ ├── purified_ore_highlight.json │ │ ├── purified_ore_outline.json │ │ ├── raw_lead.json │ │ ├── raw_lead_block.json │ │ ├── raw_silver.json │ │ ├── raw_silver_block.json │ │ ├── raw_tin.json │ │ ├── raw_tin_block.json │ │ ├── raw_tungsten.json │ │ ├── raw_tungsten_block.json │ │ ├── reinforced_elytra.json │ │ ├── sawdust.json │ │ ├── scan_output.json │ │ ├── screwdriver.json │ │ ├── servo_output.json │ │ ├── servo_retriever.json │ │ ├── shovel_base.json │ │ ├── shovel_highlight.json │ │ ├── shovel_outline.json │ │ ├── silo.json │ │ ├── silver_axe.json │ │ ├── silver_block.json │ │ ├── silver_boots.json │ │ ├── silver_chestplate.json │ │ ├── silver_chunk.json │ │ ├── silver_dust.json │ │ ├── silver_helmet.json │ │ ├── silver_hoe.json │ │ ├── silver_ingot.json │ │ ├── silver_leggings.json │ │ ├── silver_nugget.json │ │ ├── silver_ore.json │ │ ├── silver_pickaxe.json │ │ ├── silver_plate.json │ │ ├── silver_purified_ore.json │ │ ├── silver_shovel.json │ │ ├── silver_sword.json │ │ ├── smelter_mk4.json │ │ ├── smoker_enhancer.json │ │ ├── soot.json │ │ ├── speed_enhancer.json │ │ ├── steel_axe.json │ │ ├── steel_block.json │ │ ├── steel_boots.json │ │ ├── steel_chestplate.json │ │ ├── steel_dust.json │ │ ├── steel_gear.json │ │ ├── steel_helmet.json │ │ ├── steel_hoe.json │ │ ├── steel_ingot.json │ │ ├── steel_leggings.json │ │ ├── steel_nugget.json │ │ ├── steel_pickaxe.json │ │ ├── steel_plate.json │ │ ├── steel_shovel.json │ │ ├── steel_sword.json │ │ ├── stone_drill_head.json │ │ ├── sulfur_crystal.json │ │ ├── sulfur_dust.json │ │ ├── sulfuric_acid_bucket.json │ │ ├── sword_base.json │ │ ├── sword_highlight.json │ │ ├── sword_outline.json │ │ ├── tank.json │ │ ├── tech_soup.json │ │ ├── tier_upgrade_mk2.json │ │ ├── tier_upgrade_mk3.json │ │ ├── tier_upgrade_mk4.json │ │ ├── tin_axe.json │ │ ├── tin_block.json │ │ ├── tin_boots.json │ │ ├── tin_chestplate.json │ │ ├── tin_chunk.json │ │ ├── tin_dust.json │ │ ├── tin_gear.json │ │ ├── tin_helmet.json │ │ ├── tin_hoe.json │ │ ├── tin_ingot.json │ │ ├── tin_leggings.json │ │ ├── tin_nugget.json │ │ ├── tin_ore.json │ │ ├── tin_pickaxe.json │ │ ├── tin_plate.json │ │ ├── tin_purified_ore.json │ │ ├── tin_shovel.json │ │ ├── tin_sword.json │ │ ├── tool_stick.json │ │ ├── toxic_mud_bucket.json │ │ ├── tungsten_block.json │ │ ├── tungsten_chunk.json │ │ ├── tungsten_dust.json │ │ ├── tungsten_ingot.json │ │ ├── tungsten_nugget.json │ │ ├── tungsten_ore.json │ │ ├── tungsten_plate.json │ │ ├── tungsten_purified_ore.json │ │ ├── untanned_leather.json │ │ ├── warning_strobe.json │ │ ├── wither_proof_obsidian.json │ │ └── wrench.json │ ├── particles/ │ │ └── laser_particle.json │ ├── sounds/ │ │ └── laser.ogg │ ├── sounds.json │ └── textures/ │ ├── block/ │ │ ├── biomass_generator_on.png.mcmeta │ │ ├── cable_center_emissive_mk1.png.mcmeta │ │ ├── cable_center_emissive_mk2.png.mcmeta │ │ ├── cable_center_emissive_mk3.png.mcmeta │ │ ├── cable_center_emissive_mk4.png.mcmeta │ │ ├── cable_wire_emissive_mk1.png.mcmeta │ │ ├── cable_wire_emissive_mk2.png.mcmeta │ │ ├── cable_wire_emissive_mk3.png.mcmeta │ │ ├── cable_wire_emissive_mk4.png.mcmeta │ │ ├── chopper_on.png.mcmeta │ │ ├── coal_generator_on.png.mcmeta │ │ ├── compressor_on.png.mcmeta │ │ ├── condenser_on.png.mcmeta │ │ ├── data_card_writer_on.png.mcmeta │ │ ├── drill_top_emissive_on.png.mcmeta │ │ ├── drill_top_tracer_emissive_on.png.mcmeta │ │ ├── electric_furnace_emissive_on.png.mcmeta │ │ ├── fluid_infuser_on.png.mcmeta │ │ ├── gray_lava_flow.png.mcmeta │ │ ├── gray_lava_still.png.mcmeta │ │ ├── mining_rig_screen_emissive.png.mcmeta │ │ ├── pulverizer_on.png.mcmeta │ │ ├── rancher_on.png.mcmeta │ │ ├── recycler_on.png.mcmeta │ │ ├── sawmill_on.png.mcmeta │ │ └── solid_infuser_emissive_on.png.mcmeta │ ├── entity/ │ │ └── laser.png.mcmeta │ ├── gui/ │ │ ├── hud_damaged.png.mcmeta │ │ ├── hud_regenerating.png.mcmeta │ │ └── hud_warning.png.mcmeta │ └── item/ │ ├── enriched_nikolite_dust.png.mcmeta │ ├── enriched_nikolite_ingot.png.mcmeta │ └── gamer_axe.png.mcmeta ├── data/ │ ├── c/ │ │ └── tags/ │ │ ├── blocks/ │ │ │ ├── bronze_blocks.json │ │ │ ├── copper_blocks.json │ │ │ ├── electrum_blocks.json │ │ │ ├── lead_blocks.json │ │ │ ├── lead_ores.json │ │ │ ├── silver_blocks.json │ │ │ ├── silver_ores.json │ │ │ ├── tin_blocks.json │ │ │ ├── tin_ores.json │ │ │ ├── tungsten_blocks.json │ │ │ └── tungsten_ores.json │ │ └── items/ │ │ ├── ancient_debris_ores.json │ │ ├── bronze_blocks.json │ │ ├── bronze_dusts.json │ │ ├── bronze_ingots.json │ │ ├── bronze_nuggets.json │ │ ├── bronze_plates.json │ │ ├── coal_dusts.json │ │ ├── coal_ores.json │ │ ├── copper_blocks.json │ │ ├── copper_dusts.json │ │ ├── copper_ingots.json │ │ ├── copper_nuggets.json │ │ ├── copper_ores.json │ │ ├── copper_plates.json │ │ ├── diamond_dusts.json │ │ ├── diamond_ores.json │ │ ├── electrum_blocks.json │ │ ├── electrum_dusts.json │ │ ├── electrum_ingots.json │ │ ├── electrum_nuggets.json │ │ ├── electrum_plates.json │ │ ├── emerald_ores.json │ │ ├── gold_dusts.json │ │ ├── gold_ingots.json │ │ ├── gold_ores.json │ │ ├── gold_plates.json │ │ ├── iron_dusts.json │ │ ├── iron_ingots.json │ │ ├── iron_ores.json │ │ ├── iron_plates.json │ │ ├── lead_blocks.json │ │ ├── lead_dusts.json │ │ ├── lead_ingots.json │ │ ├── lead_nuggets.json │ │ ├── lead_ores.json │ │ ├── lead_plates.json │ │ ├── netherite_scrap_dusts.json │ │ ├── nikolite_ores.json │ │ ├── raw_copper_ores.json │ │ ├── raw_gold_ores.json │ │ ├── raw_iron_ores.json │ │ ├── raw_lead_ores.json │ │ ├── raw_silver_ores.json │ │ ├── raw_tin_ores.json │ │ ├── raw_tungsten_ores.json │ │ ├── redstone_ores.json │ │ ├── screwdrivers.json │ │ ├── silver_blocks.json │ │ ├── silver_dusts.json │ │ ├── silver_ingots.json │ │ ├── silver_nuggets.json │ │ ├── silver_ores.json │ │ ├── silver_plates.json │ │ ├── steel_blocks.json │ │ ├── steel_boots.json │ │ ├── steel_chestplates.json │ │ ├── steel_dusts.json │ │ ├── steel_helmets.json │ │ ├── steel_ingots.json │ │ ├── steel_leggings.json │ │ ├── steel_nuggets.json │ │ ├── steel_plates.json │ │ ├── sulfur_dusts.json │ │ ├── sulfurs.json │ │ ├── tin_blocks.json │ │ ├── tin_dusts.json │ │ ├── tin_ingots.json │ │ ├── tin_nuggets.json │ │ ├── tin_ores.json │ │ ├── tin_plates.json │ │ ├── tungsten_blocks.json │ │ ├── tungsten_dusts.json │ │ ├── tungsten_ingots.json │ │ ├── tungsten_nuggets.json │ │ ├── tungsten_ores.json │ │ ├── tungsten_plates.json │ │ └── wrenches.json │ ├── fabric/ │ │ └── tags/ │ │ └── items/ │ │ ├── axes.json │ │ ├── hoes.json │ │ ├── pickaxes.json │ │ ├── shovels.json │ │ └── swords.json │ ├── indrev/ │ │ ├── advancements/ │ │ │ ├── advanced_solar_generator.json │ │ │ ├── basic_solar_generator.json │ │ │ ├── biomass.json │ │ │ ├── biomass_generator.json │ │ │ ├── blast_furnace_enhancer.json │ │ │ ├── buffer_enhancer.json │ │ │ ├── cable_mk1.json │ │ │ ├── cable_mk2.json │ │ │ ├── cable_mk3.json │ │ │ ├── cable_mk4.json │ │ │ ├── chopper_mk4.json │ │ │ ├── circuit_mk1.json │ │ │ ├── circuit_mk2.json │ │ │ ├── circuit_mk3.json │ │ │ ├── circuit_mk4.json │ │ │ ├── coal_generator.json │ │ │ ├── compressor.json │ │ │ ├── condenser.json │ │ │ ├── electric_furnace.json │ │ │ ├── empty_enhancer.json │ │ │ ├── enriched_nikolite_dust.json │ │ │ ├── enriched_nikolite_ingot.json │ │ │ ├── farmer_mk1.json │ │ │ ├── gamer_axe.json │ │ │ ├── heat_generator.json │ │ │ ├── industrial_smelter.json │ │ │ ├── lazuli_flux_container_mk1.json │ │ │ ├── lazuli_flux_container_mk2.json │ │ │ ├── lazuli_flux_container_mk3.json │ │ │ ├── lazuli_flux_container_mk4.json │ │ │ ├── machine_block.json │ │ │ ├── mk2_upgrade.json │ │ │ ├── mk3_upgrade.json │ │ │ ├── mk4_upgrade.json │ │ │ ├── modular_armor.json │ │ │ ├── modular_workbench.json │ │ │ ├── nikolite.json │ │ │ ├── nikolite_ingot.json │ │ │ ├── pulverizer.json │ │ │ ├── rancher_mk4.json │ │ │ ├── recycler.json │ │ │ ├── slaughter_mk1.json │ │ │ ├── smoker_enhancer.json │ │ │ ├── solid_infuser.json │ │ │ └── speed_enhancer.json │ │ ├── loot_tables/ │ │ │ └── blocks/ │ │ │ ├── biomass_generator_mk3.json │ │ │ ├── bronze_block.json │ │ │ ├── cabinet.json │ │ │ ├── cable_mk1.json │ │ │ ├── cable_mk2.json │ │ │ ├── cable_mk3.json │ │ │ ├── cable_mk4.json │ │ │ ├── capsule.json │ │ │ ├── charge_pad_mk4.json │ │ │ ├── chopper_creative.json │ │ │ ├── chopper_mk1.json │ │ │ ├── chopper_mk2.json │ │ │ ├── chopper_mk3.json │ │ │ ├── chopper_mk4.json │ │ │ ├── coal_generator_mk1.json │ │ │ ├── compressor_creative.json │ │ │ ├── compressor_factory_mk4.json │ │ │ ├── compressor_mk1.json │ │ │ ├── compressor_mk2.json │ │ │ ├── compressor_mk3.json │ │ │ ├── compressor_mk4.json │ │ │ ├── condenser_mk4.json │ │ │ ├── controller.json │ │ │ ├── deepslate_lead_ore.json │ │ │ ├── deepslate_nikolite_ore.json │ │ │ ├── deepslate_silver_ore.json │ │ │ ├── deepslate_tin_ore.json │ │ │ ├── deepslate_tungsten_ore.json │ │ │ ├── drain_mk1.json │ │ │ ├── drill_bottom.json │ │ │ ├── duct.json │ │ │ ├── electric_furnace_creative.json │ │ │ ├── electric_furnace_factory_mk4.json │ │ │ ├── electric_furnace_mk1.json │ │ │ ├── electric_furnace_mk2.json │ │ │ ├── electric_furnace_mk3.json │ │ │ ├── electric_furnace_mk4.json │ │ │ ├── electrum_block.json │ │ │ ├── farmer_creative.json │ │ │ ├── farmer_mk1.json │ │ │ ├── farmer_mk2.json │ │ │ ├── farmer_mk3.json │ │ │ ├── farmer_mk4.json │ │ │ ├── fisher_mk2.json │ │ │ ├── fisher_mk3.json │ │ │ ├── fisher_mk4.json │ │ │ ├── fluid_infuser_creative.json │ │ │ ├── fluid_infuser_mk1.json │ │ │ ├── fluid_infuser_mk2.json │ │ │ ├── fluid_infuser_mk3.json │ │ │ ├── fluid_infuser_mk4.json │ │ │ ├── fluid_pipe_mk1.json │ │ │ ├── fluid_pipe_mk2.json │ │ │ ├── fluid_pipe_mk3.json │ │ │ ├── fluid_pipe_mk4.json │ │ │ ├── frame.json │ │ │ ├── heat_generator_mk4.json │ │ │ ├── intake.json │ │ │ ├── item_pipe_mk1.json │ │ │ ├── item_pipe_mk2.json │ │ │ ├── item_pipe_mk3.json │ │ │ ├── item_pipe_mk4.json │ │ │ ├── laser_emitter_mk4.json │ │ │ ├── lazuli_flux_container_creative.json │ │ │ ├── lazuli_flux_container_mk1.json │ │ │ ├── lazuli_flux_container_mk2.json │ │ │ ├── lazuli_flux_container_mk3.json │ │ │ ├── lazuli_flux_container_mk4.json │ │ │ ├── lead_block.json │ │ │ ├── lead_ore.json │ │ │ ├── machine_block.json │ │ │ ├── mining_rig_mk4.json │ │ │ ├── modular_workbench_mk4.json │ │ │ ├── nikolite_ore.json │ │ │ ├── plank_block.json │ │ │ ├── planks.json │ │ │ ├── pulverizer_creative.json │ │ │ ├── pulverizer_factory_mk4.json │ │ │ ├── pulverizer_mk1.json │ │ │ ├── pulverizer_mk2.json │ │ │ ├── pulverizer_mk3.json │ │ │ ├── pulverizer_mk4.json │ │ │ ├── pump_mk1.json │ │ │ ├── rancher_creative.json │ │ │ ├── rancher_mk1.json │ │ │ ├── rancher_mk2.json │ │ │ ├── rancher_mk3.json │ │ │ ├── rancher_mk4.json │ │ │ ├── raw_lead_block.json │ │ │ ├── raw_silver_block.json │ │ │ ├── raw_tin_block.json │ │ │ ├── raw_tungsten_block.json │ │ │ ├── recycler_mk2.json │ │ │ ├── sawmill_creative.json │ │ │ ├── sawmill_mk1.json │ │ │ ├── sawmill_mk2.json │ │ │ ├── sawmill_mk3.json │ │ │ ├── sawmill_mk4.json │ │ │ ├── silo.json │ │ │ ├── silver_block.json │ │ │ ├── silver_ore.json │ │ │ ├── slaughter_creative.json │ │ │ ├── slaughter_mk1.json │ │ │ ├── slaughter_mk2.json │ │ │ ├── slaughter_mk3.json │ │ │ ├── slaughter_mk4.json │ │ │ ├── smelter_mk4.json │ │ │ ├── solar_generator_mk1.json │ │ │ ├── solar_generator_mk3.json │ │ │ ├── solid_infuser_creative.json │ │ │ ├── solid_infuser_factory_mk4.json │ │ │ ├── solid_infuser_mk1.json │ │ │ ├── solid_infuser_mk2.json │ │ │ ├── solid_infuser_mk3.json │ │ │ ├── solid_infuser_mk4.json │ │ │ ├── steel_block.json │ │ │ ├── sulfur_crystal.json │ │ │ ├── tank.json │ │ │ ├── tin_block.json │ │ │ ├── tin_ore.json │ │ │ ├── tungsten_block.json │ │ │ ├── tungsten_ore.json │ │ │ ├── warning_strobe.json │ │ │ └── wither_proof_obsidian.json │ │ ├── patchouli_books/ │ │ │ └── indrev/ │ │ │ ├── book.json │ │ │ ├── en_us/ │ │ │ │ ├── categories/ │ │ │ │ │ ├── enhanced_ore_processing.json │ │ │ │ │ ├── machines.json │ │ │ │ │ ├── natural_resources.json │ │ │ │ │ ├── temperature.json │ │ │ │ │ ├── tools.json │ │ │ │ │ ├── transportation.json │ │ │ │ │ └── upgrades.json │ │ │ │ └── entries/ │ │ │ │ ├── enhanced_ore_processing/ │ │ │ │ │ ├── doubling.json │ │ │ │ │ ├── quadrupling.json │ │ │ │ │ └── tripling.json │ │ │ │ ├── machines/ │ │ │ │ │ ├── basic_machines.json │ │ │ │ │ ├── batteries.json │ │ │ │ │ ├── cables.json │ │ │ │ │ ├── chopper.json │ │ │ │ │ ├── factories.json │ │ │ │ │ ├── farmer.json │ │ │ │ │ ├── fisher.json │ │ │ │ │ ├── generators.json │ │ │ │ │ ├── miner.json │ │ │ │ │ ├── pump.json │ │ │ │ │ └── rancher.json │ │ │ │ ├── natural_resources/ │ │ │ │ │ ├── lead_ore.json │ │ │ │ │ ├── nikolite_ore.json │ │ │ │ │ ├── silver_ore.json │ │ │ │ │ ├── sulfur_crystals.json │ │ │ │ │ ├── tin_ore.json │ │ │ │ │ └── tungsten_ore.json │ │ │ │ ├── temperature/ │ │ │ │ │ ├── coolers_and_fans.json │ │ │ │ │ └── info.json │ │ │ │ ├── tools/ │ │ │ │ │ ├── energy_reader.json │ │ │ │ │ ├── gamer_axe.json │ │ │ │ │ ├── hammer.json │ │ │ │ │ ├── mining_drills.json │ │ │ │ │ ├── modular_armor.json │ │ │ │ │ ├── modular_core.json │ │ │ │ │ ├── screwdriver.json │ │ │ │ │ └── wrench.json │ │ │ │ ├── transportation/ │ │ │ │ │ ├── energy.json │ │ │ │ │ ├── fluid_pipes.json │ │ │ │ │ ├── item_pipes.json │ │ │ │ │ └── servos.json │ │ │ │ └── upgrades/ │ │ │ │ ├── enhancement_upgrades.json │ │ │ │ └── tier_upgrades.json │ │ │ ├── ru_ru/ │ │ │ │ ├── book.json │ │ │ │ ├── categories/ │ │ │ │ │ ├── enhanced_ore_processing.json │ │ │ │ │ ├── machines.json │ │ │ │ │ ├── natural_resources.json │ │ │ │ │ ├── temperature.json │ │ │ │ │ ├── tools.json │ │ │ │ │ ├── transportation.json │ │ │ │ │ └── upgrades.json │ │ │ │ └── entries/ │ │ │ │ ├── enhanced_ore_processing/ │ │ │ │ │ ├── doubling.json │ │ │ │ │ ├── quadrupling.json │ │ │ │ │ └── tripling.json │ │ │ │ ├── machines/ │ │ │ │ │ ├── basic_machines.json │ │ │ │ │ ├── batteries.json │ │ │ │ │ ├── cables.json │ │ │ │ │ ├── chopper.json │ │ │ │ │ ├── factories.json │ │ │ │ │ ├── farmer.json │ │ │ │ │ ├── fisher.json │ │ │ │ │ ├── generators.json │ │ │ │ │ ├── miner.json │ │ │ │ │ ├── pump.json │ │ │ │ │ └── rancher.json │ │ │ │ ├── natural_resources/ │ │ │ │ │ ├── lead_ore.json │ │ │ │ │ ├── nikolite_ore.json │ │ │ │ │ ├── silver_ore.json │ │ │ │ │ ├── sulfur_crystals.json │ │ │ │ │ ├── tin_ore.json │ │ │ │ │ └── tungsten_ore.json │ │ │ │ ├── temperature/ │ │ │ │ │ ├── coolers_and_fans.json │ │ │ │ │ └── info.json │ │ │ │ ├── tools/ │ │ │ │ │ ├── energy_reader.json │ │ │ │ │ ├── gamer_axe.json │ │ │ │ │ ├── hammer.json │ │ │ │ │ ├── mining_drills.json │ │ │ │ │ ├── modular_armor.json │ │ │ │ │ ├── modular_core.json │ │ │ │ │ ├── screwdriver.json │ │ │ │ │ └── wrench.json │ │ │ │ ├── transportation/ │ │ │ │ │ ├── energy.json │ │ │ │ │ ├── fluid_pipes.json │ │ │ │ │ ├── item_pipes.json │ │ │ │ │ └── servos.json │ │ │ │ └── upgrades/ │ │ │ │ ├── enhancement_upgrades.json │ │ │ │ └── tier_upgrades.json │ │ │ └── zh_cn/ │ │ │ ├── categories/ │ │ │ │ ├── enhanced_ore_processing.json │ │ │ │ ├── machines.json │ │ │ │ ├── natural_resources.json │ │ │ │ ├── temperature.json │ │ │ │ ├── tools.json │ │ │ │ ├── transportation.json │ │ │ │ └── upgrades.json │ │ │ └── entries/ │ │ │ ├── enhanced_ore_processing/ │ │ │ │ ├── doubling.json │ │ │ │ ├── quadrupling.json │ │ │ │ └── tripling.json │ │ │ ├── machines/ │ │ │ │ ├── basic_machines.json │ │ │ │ ├── batteries.json │ │ │ │ ├── cables.json │ │ │ │ ├── chopper.json │ │ │ │ ├── factories.json │ │ │ │ ├── farmer.json │ │ │ │ ├── fisher.json │ │ │ │ ├── generators.json │ │ │ │ ├── miner.json │ │ │ │ ├── pump.json │ │ │ │ └── rancher.json │ │ │ ├── natural_resources/ │ │ │ │ ├── lead_ore.json │ │ │ │ ├── nikolite_ore.json │ │ │ │ ├── silver_ore.json │ │ │ │ ├── sulfur_crystals.json │ │ │ │ ├── tin_ore.json │ │ │ │ └── tungsten_ore.json │ │ │ ├── temperature/ │ │ │ │ ├── coolers_and_fans.json │ │ │ │ └── info.json │ │ │ ├── tools/ │ │ │ │ ├── energy_reader.json │ │ │ │ ├── gamer_axe.json │ │ │ │ ├── hammer.json │ │ │ │ ├── mining_drills.json │ │ │ │ ├── modular_armor.json │ │ │ │ ├── modular_core.json │ │ │ │ ├── screwdriver.json │ │ │ │ └── wrench.json │ │ │ ├── transportation/ │ │ │ │ ├── energy.json │ │ │ │ ├── fluid_pipes.json │ │ │ │ ├── item_pipes.json │ │ │ │ └── servos.json │ │ │ └── upgrades/ │ │ │ ├── enhancement_upgrades.json │ │ │ └── tier_upgrades.json │ │ ├── recipes/ │ │ │ ├── blasting/ │ │ │ │ ├── bronze_ingot_from_smelting.json │ │ │ │ ├── copper_ingot_from_ore.json │ │ │ │ ├── copper_ingot_from_smelting.json │ │ │ │ ├── electrum_ingot_from_smelting.json │ │ │ │ ├── gold_ingot.json │ │ │ │ ├── iron_ingot_from_dust.json │ │ │ │ ├── lead_ingot_from_ore.json │ │ │ │ ├── lead_ingot_from_raw_ore.json │ │ │ │ ├── lead_ingot_from_smelting.json │ │ │ │ ├── netherite_scrap.json │ │ │ │ ├── silver_ingot_from_ore.json │ │ │ │ ├── silver_ingot_from_raw_ores.json │ │ │ │ ├── silver_ingot_from_smelting.json │ │ │ │ ├── steel_ingot.json │ │ │ │ ├── tin_ingot_from_ore.json │ │ │ │ ├── tin_ingot_from_raw_ores.json │ │ │ │ ├── tin_ingot_from_smelting.json │ │ │ │ ├── tungsten_ingot_from_ore.json │ │ │ │ ├── tungsten_ingot_from_raw_ores.json │ │ │ │ └── tungsten_ingot_from_smelting.json │ │ │ ├── compressing/ │ │ │ │ ├── bronze_plate_from_compressor.json │ │ │ │ ├── carbon_fiber_plate.json │ │ │ │ ├── copper_plate_from_compressor.json │ │ │ │ ├── electrum_plate_from_compressor.json │ │ │ │ ├── empty_upgrade.json │ │ │ │ ├── gold_plate_from_compressor.json │ │ │ │ ├── iron_plate_from_compressor.json │ │ │ │ ├── lead_plate_from_compressor.json │ │ │ │ ├── plank_block.json │ │ │ │ ├── planks.json │ │ │ │ ├── silver_plate_from_compressor.json │ │ │ │ ├── steel_plate.json │ │ │ │ ├── tin_plate_from_compressor.json │ │ │ │ └── tungsten_plate_from_compressor.json │ │ │ ├── condensing/ │ │ │ │ ├── copper_chunk_from_molten_copper.json │ │ │ │ ├── gold_chunk_from_molten_gold.json │ │ │ │ ├── iron_chunk_from_molten_iron.json │ │ │ │ ├── lead_chunk_from_molten_lead.json │ │ │ │ ├── netherite_chunk_from_molten_netherite.json │ │ │ │ ├── silver_chunk_from_molten_silver.json │ │ │ │ └── tin_chunk_from_molten_tin.json │ │ │ ├── distiller/ │ │ │ │ └── salt_from_water.json │ │ │ ├── electrolysis/ │ │ │ │ └── electrolyze_water.json │ │ │ ├── fluid_infusing/ │ │ │ │ ├── clay.json │ │ │ │ ├── coolant_fluid.json │ │ │ │ ├── copper_purified_ore.json │ │ │ │ ├── gold_purified_ore.json │ │ │ │ ├── harden_black_concrete_powder.json │ │ │ │ ├── harden_blue_concrete_powder.json │ │ │ │ ├── harden_brown_concrete_powder.json │ │ │ │ ├── harden_cyan_concrete_powder.json │ │ │ │ ├── harden_gray_concrete_powder.json │ │ │ │ ├── harden_green_concrete_powder.json │ │ │ │ ├── harden_light_blue_concrete_powder.json │ │ │ │ ├── harden_light_gray_concrete_powder.json │ │ │ │ ├── harden_lime_concrete_powder.json │ │ │ │ ├── harden_magenta_concrete_powder.json │ │ │ │ ├── harden_orange_concrete_powder.json │ │ │ │ ├── harden_pink_concrete_powder.json │ │ │ │ ├── harden_purple_concrete_powder.json │ │ │ │ ├── harden_red_concrete_powder.json │ │ │ │ ├── harden_white_concrete_powder.json │ │ │ │ ├── harden_yellow_concrete_powder.json │ │ │ │ ├── iron_purified_ore.json │ │ │ │ ├── lead_purified_ore.json │ │ │ │ ├── netherite_purified_ore.json │ │ │ │ ├── paper.json │ │ │ │ ├── silver_purified_ore.json │ │ │ │ ├── sulfuric_acid.json │ │ │ │ ├── tin_purified_ore.json │ │ │ │ ├── tungsten_purified_ore.json │ │ │ │ └── wither_proof_obsidian.json │ │ │ ├── infusing/ │ │ │ │ ├── allium.json │ │ │ │ ├── azure_bluet.json │ │ │ │ ├── big_dripleaf.json │ │ │ │ ├── blue_orchid.json │ │ │ │ ├── bronze_dust.json │ │ │ │ ├── brown_mushroom.json │ │ │ │ ├── cornflower.json │ │ │ │ ├── crimson_fungus.json │ │ │ │ ├── crimson_roots.json │ │ │ │ ├── dandelion.json │ │ │ │ ├── dead_bush.json │ │ │ │ ├── electrum_dust.json │ │ │ │ ├── enriched_nikolite.json │ │ │ │ ├── enriched_nikolite_ingot.json │ │ │ │ ├── fern.json │ │ │ │ ├── glow_lichen.json │ │ │ │ ├── grass.json │ │ │ │ ├── kelp.json │ │ │ │ ├── large_fern.json │ │ │ │ ├── lilac.json │ │ │ │ ├── lily_of_the_valley.json │ │ │ │ ├── lily_pad.json │ │ │ │ ├── nether_sprouts.json │ │ │ │ ├── nikolite_ingot.json │ │ │ │ ├── orange_tulip.json │ │ │ │ ├── oxeye_daisy.json │ │ │ │ ├── pink_tulip.json │ │ │ │ ├── poppy.json │ │ │ │ ├── red_mushroom.json │ │ │ │ ├── red_tulip.json │ │ │ │ ├── sea_pickle.json │ │ │ │ ├── seagrass.json │ │ │ │ ├── small_dripleaf.json │ │ │ │ ├── spore_blossom.json │ │ │ │ ├── steel_dust.json │ │ │ │ ├── tall_grass.json │ │ │ │ ├── twisting_vines.json │ │ │ │ ├── untanned_leather.json │ │ │ │ ├── vine.json │ │ │ │ ├── warped_fungus.json │ │ │ │ ├── warped_roots.json │ │ │ │ ├── weeping_vines.json │ │ │ │ └── white_tulip.json │ │ │ ├── laser.json │ │ │ ├── modules/ │ │ │ │ ├── module_auto_feeder.json │ │ │ │ ├── module_breathing.json │ │ │ │ ├── module_charger.json │ │ │ │ ├── module_efficiency.json │ │ │ │ ├── module_elytra.json │ │ │ │ ├── module_feather_falling.json │ │ │ │ ├── module_fire_aspect.json │ │ │ │ ├── module_fire_resistance.json │ │ │ │ ├── module_fortune.json │ │ │ │ ├── module_jump_boost.json │ │ │ │ ├── module_looting.json │ │ │ │ ├── module_night_vision.json │ │ │ │ ├── module_piglin_tricker.json │ │ │ │ ├── module_protection.json │ │ │ │ ├── module_range.json │ │ │ │ ├── module_sharpness.json │ │ │ │ ├── module_silk_touch.json │ │ │ │ ├── module_solar_panel.json │ │ │ │ └── module_speed.json │ │ │ ├── pulverizer/ │ │ │ │ ├── blaze_power.json │ │ │ │ ├── bone_meal.json │ │ │ │ ├── bronze_dust_from_ingot.json │ │ │ │ ├── coal_dust.json │ │ │ │ ├── coal_dust_from_ore.json │ │ │ │ ├── cobblestone_pulverizer.json │ │ │ │ ├── copper_dust_from_chunk.json │ │ │ │ ├── copper_dust_from_ingot.json │ │ │ │ ├── copper_dust_from_ore.json │ │ │ │ ├── copper_dust_from_purified_ore.json │ │ │ │ ├── copper_dust_from_raw.json │ │ │ │ ├── diamond_dust.json │ │ │ │ ├── diamond_dust_from_ore.json │ │ │ │ ├── electrum_dust_from_ingot.json │ │ │ │ ├── gold_dust_from_chunk.json │ │ │ │ ├── gold_dust_from_ingot.json │ │ │ │ ├── gold_dust_from_ore.json │ │ │ │ ├── gold_dust_from_raw.json │ │ │ │ ├── gravel_pulverizer.json │ │ │ │ ├── iron_dust_from_chunk.json │ │ │ │ ├── iron_dust_from_ingot.json │ │ │ │ ├── iron_dust_from_ore.json │ │ │ │ ├── iron_dust_from_purified_ore.json │ │ │ │ ├── iron_dust_from_raw.json │ │ │ │ ├── lead_dust_from_chunk.json │ │ │ │ ├── lead_dust_from_ingot.json │ │ │ │ ├── lead_dust_from_ore.json │ │ │ │ ├── lead_dust_from_purified_ore.json │ │ │ │ ├── lead_dust_from_raw.json │ │ │ │ ├── netherite_dust.json │ │ │ │ ├── netherite_dust_from_chunk.json │ │ │ │ ├── nikolite.json │ │ │ │ ├── sand_pulverizer.json │ │ │ │ ├── silver_dust_from_chunk.json │ │ │ │ ├── silver_dust_from_ingot.json │ │ │ │ ├── silver_dust_from_ore.json │ │ │ │ ├── silver_dust_from_purified_ore.json │ │ │ │ ├── silver_dust_from_raw.json │ │ │ │ ├── sulfur_dust.json │ │ │ │ ├── sulfur_dust_from_gunpowder.json │ │ │ │ ├── tin_dust_from_chunk.json │ │ │ │ ├── tin_dust_from_ingot.json │ │ │ │ ├── tin_dust_from_ore.json │ │ │ │ ├── tin_dust_from_purified_ore.json │ │ │ │ ├── tin_dust_from_raw.json │ │ │ │ ├── tungsten_dust_from_ingot.json │ │ │ │ ├── tungsten_dust_from_ore.json │ │ │ │ └── tungsten_dust_from_purified_ore.json │ │ │ ├── recycling/ │ │ │ │ ├── recycle_baked_potato.json │ │ │ │ ├── recycle_bamboo.json │ │ │ │ ├── recycle_beetroot.json │ │ │ │ ├── recycle_beetrot_seeds.json │ │ │ │ ├── recycle_bread.json │ │ │ │ ├── recycle_brown_mushroom.json │ │ │ │ ├── recycle_cactus.json │ │ │ │ ├── recycle_carrot.json │ │ │ │ ├── recycle_cookie.json │ │ │ │ ├── recycle_dirt.json │ │ │ │ ├── recycle_flowers.json │ │ │ │ ├── recycle_grass.json │ │ │ │ ├── recycle_grass_block.json │ │ │ │ ├── recycle_hay_block.json │ │ │ │ ├── recycle_logs.json │ │ │ │ ├── recycle_melon.json │ │ │ │ ├── recycle_melon_seeds.json │ │ │ │ ├── recycle_melon_slice.json │ │ │ │ ├── recycle_nether_wart.json │ │ │ │ ├── recycle_planks.json │ │ │ │ ├── recycle_potato.json │ │ │ │ ├── recycle_red_mushroom.json │ │ │ │ ├── recycle_saplings.json │ │ │ │ ├── recycle_wheat.json │ │ │ │ └── recycle_wheat_seeds.json │ │ │ ├── sawmill/ │ │ │ │ ├── acacia_planks.json │ │ │ │ ├── birch_planks.json │ │ │ │ ├── crimson_planks.json │ │ │ │ ├── dark_oak_planks.json │ │ │ │ ├── jungle_planks.json │ │ │ │ ├── oak_planks.json │ │ │ │ ├── spruce_planks.json │ │ │ │ └── warped_planks.json │ │ │ ├── shaped/ │ │ │ │ ├── battery.json │ │ │ │ ├── biomass_generator_mk3.json │ │ │ │ ├── blast_furnace_enhancer.json │ │ │ │ ├── bronze_axe.json │ │ │ │ ├── bronze_block.json │ │ │ │ ├── bronze_boots.json │ │ │ │ ├── bronze_chestplate.json │ │ │ │ ├── bronze_helmet.json │ │ │ │ ├── bronze_hoe.json │ │ │ │ ├── bronze_ingot_from_nugget.json │ │ │ │ ├── bronze_leggings.json │ │ │ │ ├── bronze_pickaxe.json │ │ │ │ ├── bronze_shovel.json │ │ │ │ ├── bronze_sword.json │ │ │ │ ├── buffer_enhancer.json │ │ │ │ ├── cabinet.json │ │ │ │ ├── cable_mk1.json │ │ │ │ ├── cable_mk2.json │ │ │ │ ├── cable_mk3.json │ │ │ │ ├── cable_mk4.json │ │ │ │ ├── capsule.json │ │ │ │ ├── carbon_fiber_boots_frame.json │ │ │ │ ├── carbon_fiber_chest_frame.json │ │ │ │ ├── carbon_fiber_helmet_frame.json │ │ │ │ ├── carbon_fiber_legs_frame.json │ │ │ │ ├── carbon_fiber_rod.json │ │ │ │ ├── charge_pad_mk4.json │ │ │ │ ├── chopper_mk1.json │ │ │ │ ├── circuit_mk1.json │ │ │ │ ├── circuit_mk2.json │ │ │ │ ├── circuit_mk3.json │ │ │ │ ├── circuit_mk4.json │ │ │ │ ├── coal_generator_mk1.json │ │ │ │ ├── compressor_factory_mk4.json │ │ │ │ ├── compressor_mk1.json │ │ │ │ ├── condenser_mk4.json │ │ │ │ ├── controller.json │ │ │ │ ├── cooler_cell.json │ │ │ │ ├── copper_axe.json │ │ │ │ ├── copper_boots.json │ │ │ │ ├── copper_chestplate.json │ │ │ │ ├── copper_helmet.json │ │ │ │ ├── copper_hoe.json │ │ │ │ ├── copper_ingot_from_nuggets.json │ │ │ │ ├── copper_leggings.json │ │ │ │ ├── copper_pickaxe.json │ │ │ │ ├── copper_shovel.json │ │ │ │ ├── copper_sword.json │ │ │ │ ├── damage_upgrade.json │ │ │ │ ├── data_card_writer_mk4.json │ │ │ │ ├── diamond_drill_head.json │ │ │ │ ├── drain_mk1.json │ │ │ │ ├── drill_bottom.json │ │ │ │ ├── duct.json │ │ │ │ ├── electric_furnace_factory_mk4.json │ │ │ │ ├── electric_furnace_mk1.json │ │ │ │ ├── electrum_block.json │ │ │ │ ├── electrum_block_from_nugget.json │ │ │ │ ├── energy_reader.json │ │ │ │ ├── fan.json │ │ │ │ ├── farmer_mk1.json │ │ │ │ ├── fisher_mk2.json │ │ │ │ ├── fisher_mk3.json │ │ │ │ ├── fisher_mk4.json │ │ │ │ ├── fluid_infuser_mk1.json │ │ │ │ ├── fluid_pipe_mk1.json │ │ │ │ ├── fluid_pipe_mk2.json │ │ │ │ ├── fluid_pipe_mk3.json │ │ │ │ ├── fluid_pipe_mk4.json │ │ │ │ ├── frame.json │ │ │ │ ├── gamer_axe.json │ │ │ │ ├── hammer.json │ │ │ │ ├── heat_coil.json │ │ │ │ ├── heat_generator.json │ │ │ │ ├── heatsink.json │ │ │ │ ├── intake.json │ │ │ │ ├── iron_drill_head.json │ │ │ │ ├── item_pipe_mk1.json │ │ │ │ ├── item_pipe_mk2.json │ │ │ │ ├── item_pipe_mk3.json │ │ │ │ ├── item_pipe_mk4.json │ │ │ │ ├── laser_emitter_mk4.json │ │ │ │ ├── lazuli_flux_container_mk1.json │ │ │ │ ├── lazuli_flux_container_mk2.json │ │ │ │ ├── lazuli_flux_container_mk3.json │ │ │ │ ├── lazuli_flux_container_mk4.json │ │ │ │ ├── lead_axe.json │ │ │ │ ├── lead_block.json │ │ │ │ ├── lead_boots.json │ │ │ │ ├── lead_chestplate.json │ │ │ │ ├── lead_helmet.json │ │ │ │ ├── lead_hoe.json │ │ │ │ ├── lead_ingot_from_nuggets.json │ │ │ │ ├── lead_leggings.json │ │ │ │ ├── lead_pickaxe.json │ │ │ │ ├── lead_shovel.json │ │ │ │ ├── lead_sword.json │ │ │ │ ├── machine_block.json │ │ │ │ ├── mining_drill_mk1.json │ │ │ │ ├── mining_drill_mk2.json │ │ │ │ ├── mining_drill_mk3.json │ │ │ │ ├── mining_drill_mk4.json │ │ │ │ ├── mining_rig_mk4.json │ │ │ │ ├── modular_armor_boots.json │ │ │ │ ├── modular_armor_chest.json │ │ │ │ ├── modular_armor_helmet.json │ │ │ │ ├── modular_armor_legs.json │ │ │ │ ├── modular_core.json │ │ │ │ ├── modular_workbench.json │ │ │ │ ├── netherite_drill_head.json │ │ │ │ ├── ore_data_card.json │ │ │ │ ├── paper.json │ │ │ │ ├── portable_charger.json │ │ │ │ ├── pulverizer_factory_mk4.json │ │ │ │ ├── pulverizer_mk1.json │ │ │ │ ├── pump_mk1.json │ │ │ │ ├── rancher_mk1.json │ │ │ │ ├── raw_lead_block.json │ │ │ │ ├── raw_silver_block.json │ │ │ │ ├── raw_tin_block.json │ │ │ │ ├── raw_tungsten_block.json │ │ │ │ ├── recycler_mk2.json │ │ │ │ ├── reinforced_elytra.json │ │ │ │ ├── sawmill_mk1.json │ │ │ │ ├── screwdriver.json │ │ │ │ ├── servo_output.json │ │ │ │ ├── servo_retriever.json │ │ │ │ ├── silo.json │ │ │ │ ├── silver_axe.json │ │ │ │ ├── silver_block.json │ │ │ │ ├── silver_boots.json │ │ │ │ ├── silver_chestplate.json │ │ │ │ ├── silver_helmet.json │ │ │ │ ├── silver_hoe.json │ │ │ │ ├── silver_ingot_from_nuggets.json │ │ │ │ ├── silver_leggings.json │ │ │ │ ├── silver_pickaxe.json │ │ │ │ ├── silver_shovel.json │ │ │ │ ├── silver_sword.json │ │ │ │ ├── slaughter_mk1.json │ │ │ │ ├── smelter_mk4.json │ │ │ │ ├── smoker_enhancer.json │ │ │ │ ├── solar_generator_mk1.json │ │ │ │ ├── solar_generator_mk3.json │ │ │ │ ├── solid_infuser_factory_mk4.json │ │ │ │ ├── solid_infuser_mk1.json │ │ │ │ ├── speed_enhancer.json │ │ │ │ ├── steel_axe.json │ │ │ │ ├── steel_block.json │ │ │ │ ├── steel_boots.json │ │ │ │ ├── steel_chestplate.json │ │ │ │ ├── steel_helmet.json │ │ │ │ ├── steel_hoe.json │ │ │ │ ├── steel_ingot_from_nuggets.json │ │ │ │ ├── steel_leggings.json │ │ │ │ ├── steel_pickaxe.json │ │ │ │ ├── steel_shovel.json │ │ │ │ ├── steel_sword.json │ │ │ │ ├── stone_drill_head.json │ │ │ │ ├── tank.json │ │ │ │ ├── tier_upgrade_mk2.json │ │ │ │ ├── tier_upgrade_mk3.json │ │ │ │ ├── tier_upgrade_mk4.json │ │ │ │ ├── tin_axe.json │ │ │ │ ├── tin_block.json │ │ │ │ ├── tin_boots.json │ │ │ │ ├── tin_chestplate.json │ │ │ │ ├── tin_helmet.json │ │ │ │ ├── tin_hoe.json │ │ │ │ ├── tin_ingot_from_nuggets.json │ │ │ │ ├── tin_leggings.json │ │ │ │ ├── tin_pickaxe.json │ │ │ │ ├── tin_shovel.json │ │ │ │ ├── tin_sword.json │ │ │ │ ├── tungsten_block.json │ │ │ │ ├── tungsten_ingot_from_nuggets.json │ │ │ │ ├── warning_strobe.json │ │ │ │ └── wrench.json │ │ │ ├── shapeless/ │ │ │ │ ├── bronze_ingot_from_block.json │ │ │ │ ├── bronze_nugget.json │ │ │ │ ├── copper_ingot_from_block.json │ │ │ │ ├── copper_nugget.json │ │ │ │ ├── copper_plate_from_hammer.json │ │ │ │ ├── electrum_ingot_from_block.json │ │ │ │ ├── electrum_nugget.json │ │ │ │ ├── gold_plate_from_hammer.json │ │ │ │ ├── guide_book.json │ │ │ │ ├── iron_plate_from_hammer.json │ │ │ │ ├── lead_ingot_from_block.json │ │ │ │ ├── lead_nugget.json │ │ │ │ ├── planks.json │ │ │ │ ├── raw_lead.json │ │ │ │ ├── raw_silver.json │ │ │ │ ├── raw_tin.json │ │ │ │ ├── raw_tungsten.json │ │ │ │ ├── silver_ingot_from_block.json │ │ │ │ ├── silver_nugget.json │ │ │ │ ├── steel_ingot_from_block.json │ │ │ │ ├── steel_nugget.json │ │ │ │ ├── tin_ingot_from_block.json │ │ │ │ ├── tin_nugget.json │ │ │ │ ├── tin_plate_from_hammer.json │ │ │ │ ├── tungsten_ingot_from_block.json │ │ │ │ └── tungsten_nugget.json │ │ │ ├── smelter/ │ │ │ │ ├── molten_copper_from_block.json │ │ │ │ ├── molten_copper_from_dust.json │ │ │ │ ├── molten_copper_from_ingot.json │ │ │ │ ├── molten_copper_from_nugget.json │ │ │ │ ├── molten_copper_from_ore.json │ │ │ │ ├── molten_copper_from_purified_ore.json │ │ │ │ ├── molten_gold_from_block.json │ │ │ │ ├── molten_gold_from_dust.json │ │ │ │ ├── molten_gold_from_ingot.json │ │ │ │ ├── molten_gold_from_nugget.json │ │ │ │ ├── molten_gold_from_ore.json │ │ │ │ ├── molten_gold_from_purified_ore.json │ │ │ │ ├── molten_iron_from_block.json │ │ │ │ ├── molten_iron_from_dust.json │ │ │ │ ├── molten_iron_from_ingot.json │ │ │ │ ├── molten_iron_from_nugget.json │ │ │ │ ├── molten_iron_from_ore.json │ │ │ │ ├── molten_iron_from_purified_ore.json │ │ │ │ ├── molten_lead_from_block.json │ │ │ │ ├── molten_lead_from_dust.json │ │ │ │ ├── molten_lead_from_ingot.json │ │ │ │ ├── molten_lead_from_nugget.json │ │ │ │ ├── molten_lead_from_ore.json │ │ │ │ ├── molten_lead_from_purified_ore.json │ │ │ │ ├── molten_netherite_from_dust.json │ │ │ │ ├── molten_netherite_from_ore.json │ │ │ │ ├── molten_netherite_from_purified_ore.json │ │ │ │ ├── molten_silver_from_block.json │ │ │ │ ├── molten_silver_from_dust.json │ │ │ │ ├── molten_silver_from_ingot.json │ │ │ │ ├── molten_silver_from_nugget.json │ │ │ │ ├── molten_silver_from_ore.json │ │ │ │ ├── molten_silver_from_purified_ore.json │ │ │ │ ├── molten_tin_from_block.json │ │ │ │ ├── molten_tin_from_dust.json │ │ │ │ ├── molten_tin_from_ingot.json │ │ │ │ ├── molten_tin_from_nugget.json │ │ │ │ ├── molten_tin_from_ore.json │ │ │ │ └── molten_tin_from_purified_ore.json │ │ │ ├── smelting/ │ │ │ │ ├── bronze_ingot_from_smelting.json │ │ │ │ ├── copper_ingot_from_smelting.json │ │ │ │ ├── electrum_ingot_from_smelting.json │ │ │ │ ├── gold_ingot.json │ │ │ │ ├── iron_ingot_from_dust.json │ │ │ │ ├── lead_ingot_from_ore.json │ │ │ │ ├── lead_ingot_from_raw_ore.json │ │ │ │ ├── lead_ingot_from_smelting.json │ │ │ │ ├── leather.json │ │ │ │ ├── netherite_scrap.json │ │ │ │ ├── silver_ingot_from_ore.json │ │ │ │ ├── silver_ingot_from_raw_ores.json │ │ │ │ ├── silver_ingot_from_smelting.json │ │ │ │ ├── steel_ingot.json │ │ │ │ ├── tin_ingot_from_ore.json │ │ │ │ ├── tin_ingot_from_raw_ores.json │ │ │ │ ├── tin_ingot_from_smelting.json │ │ │ │ ├── tungsten_ingot_from_ore.json │ │ │ │ ├── tungsten_ingot_from_raw_ores.json │ │ │ │ └── tungsten_ingot_from_smelting.json │ │ │ └── upgrade/ │ │ │ ├── chopper_mk1_to_mk2.json │ │ │ ├── chopper_mk2_to_mk3.json │ │ │ ├── chopper_mk3_to_mk4.json │ │ │ ├── compressor_mk1_to_mk2.json │ │ │ ├── compressor_mk2_to_mk3.json │ │ │ ├── compressor_mk3_to_mk4.json │ │ │ ├── electric_furnace_mk1_to_mk2.json │ │ │ ├── electric_furnace_mk2_to_mk3.json │ │ │ ├── electric_furnace_mk3_to_mk4.json │ │ │ ├── electrolytic_separator_mk1_to_mk2.json │ │ │ ├── electrolytic_separator_mk2_to_mk3.json │ │ │ ├── electrolytic_separator_mk3_to_mk4.json │ │ │ ├── farmer_mk1_to_mk2.json │ │ │ ├── farmer_mk2_to_mk3.json │ │ │ ├── farmer_mk3_to_mk4.json │ │ │ ├── fluid_infuser_mk1_to_mk2.json │ │ │ ├── fluid_infuser_mk2_to_mk3.json │ │ │ ├── fluid_infuser_mk3_to_mk4.json │ │ │ ├── pulverizer_mk1_to_mk2.json │ │ │ ├── pulverizer_mk2_to_mk3.json │ │ │ ├── pulverizer_mk3_to_mk4.json │ │ │ ├── rancher_mk1_to_mk2.json │ │ │ ├── rancher_mk2_to_mk3.json │ │ │ ├── rancher_mk3_to_mk4.json │ │ │ ├── sawmill_mk1_to_mk2.json │ │ │ ├── sawmill_mk2_to_mk3.json │ │ │ ├── sawmill_mk3_to_mk4.json │ │ │ ├── slaughter_mk1_to_mk2.json │ │ │ ├── slaughter_mk2_to_mk3.json │ │ │ ├── slaughter_mk3_to_mk4.json │ │ │ ├── solid_infuser_mk1_to_mk2.json │ │ │ ├── solid_infuser_mk2_to_mk3.json │ │ │ └── solid_infuser_mk3_to_mk4.json │ │ └── tags/ │ │ └── items/ │ │ └── coolers.json │ └── minecraft/ │ └── tags/ │ ├── blocks/ │ │ ├── mineable/ │ │ │ ├── axe.json │ │ │ └── pickaxe.json │ │ └── wither_immune.json │ └── fluids/ │ ├── lava.json │ └── water.json ├── fabric.mod.json ├── indrev.accesswidener └── indrev.mixins.json