Standalone Forge 1.20.1 add-on that bridges Mekanism and Applied Energistics 2 infusion systems.
This mod provides an Infusion Converter block that converts items into Mekanism InfuseTypes with AE2 network integration. It uses AE2's Pattern Provider and Applied Mekanistics to automate infusion pipelines.
- Infusion Converter: Converts items to Mekanism InfuseTypes
- AE2 Integration: Pattern Provider support for automated crafting
- Mekanism GUI: Full Mekanism-style interface with energy bar and progress indicator
- JEI Support: Registered as
INFUSION_CONVERSIONrecipe catalyst - Upgradeable: Speed and energy upgrades
| Mod | Version | Required | Notes |
|---|---|---|---|
| Minecraft | 1.20.1 | ✅ | Base game |
| Forge | 47.4.10 | ✅ | Mod loader |
| Mekanism | 10.4.15.75 | ✅ | Core dependency |
| Applied Energistics 2 | 15.4.9 | ✅ | Network integration |
| Applied Mekanistics | 1.4.2 | Optional | AE2-Mekanism bridge |
| JEI | 15.2.0.27 | Optional | Recipe viewer |
Mekanism 10.4.x series (1.20.1):
- ✅ Supports 10.4.0 to 10.4.16.80 (all versions)
- Version range:
[10.4,10.5)
AE2 15.x series (1.20.1):
- ✅ Supports 15.0.0 to 15.4.10 (all versions)
- Version range:
[15,16)
⚠️ Note: Mekanism 10.5.x is for Minecraft 1.20.4 (NeoForge), 10.6.x is for Minecraft 1.21 (NeoForge). This mod only supports Minecraft 1.20.1.
- Minecraft Java Edition 1.20.1
- Forge 47.4.10 or higher
- Mekanism 10.4.x
- Applied Energistics 2 15.x
- Download the latest release: Releases
- Install Forge 1.20.1 (if not already installed)
- Place the mod JAR file in the
mods/folder - Install required dependencies (Mekanism, AE2)
- Launch Minecraft and select the Forge profile
This mod is designed for modpacks. Recommended companions:
- Mekanism (required)
- Applied Energistics 2 (required)
- Applied Mekanistics (recommended for full AE2-Mekanism integration)
The core block of this mod, converting items into Mekanism InfuseTypes.
Crafting Recipe:
AQA
ROR
IFI
Where:
- A = Infused Alloy
- Q = Certus Quartz Crystal
- R = Redstone
- O = Osmium Ingot
- I = Iron Ingot
- F = Metallurgic Infuser
Technical Specs:
- Energy Cost: 64 FE/tick base (reduced by speed upgrades)
- Processing Time: 5 seconds base (reduced by speed upgrades)
- Tank Capacity: 10,000 mB (InfuseType)
- Energy Capacity: 20,000 FE (increased by energy upgrades)
Supported Upgrades:
- Speed Upgrade: Reduces processing time
- Energy Upgrade: Increases energy capacity
Full Mekanism-style graphical user interface featuring:
- Real-time energy bar display
- Processing progress bar
- InfuseType indicator
- Input/output slots
- Energy slot
- Error warning indicators
- Registered as
INFUSION_CONVERSIONrecipe catalyst - Displays all available infusion conversion recipes
- Shows energy requirements and processing time
The Infusion Converter works with AE2's Pattern Provider for automated crafting:
- Create Patterns: Encode item-to-infusion conversion patterns
- Connect Network: Place Pattern Provider next to the Infusion Converter
- Automate: AE2 will automatically request conversions as needed
Enables full AE2-Mekanism integration:
- Export InfuseTypes to AE2 network
- Import items from AE2 network for conversion
- Automate infusion pipelines
The Infusion Converter supports Mekanism's side configuration system:
- Input Side: Items (configurable)
- Output Side: InfuseType (configurable)
- Energy Side: Energy (configurable)
Integrated ejector component can automatically output InfuseTypes to adjacent blocks.
# Clone the repository
git clone https://github.com/moyanj/mekae2infusion.git
cd mekae2infusion
# Build with Gradle
./gradlew build
# Run client for testing
./gradlew runClientsrc/
├── main/
│ ├── java/
│ │ └── com/moyan/mekae2infusion/
│ │ ├── client/ # Client-side code
│ │ │ ├── gui/ # GUI screens
│ │ │ └── jei/ # JEI integration
│ │ ├── common/ # Common code
│ │ ├── content/ # Game content
│ │ │ └── converter/ # Infusion Converter
│ │ └── registry/ # Registration system
│ └── resources/
│ ├── assets/ # Textures, models, lang files
│ ├── data/ # Recipes, loot tables
│ └── META-INF/ # Mod metadata
InfusionConverterBlockEntity: Core block entity logicInfusionConverterScreen: GUI implementationBridgeJeiPlugin: JEI integrationModBlocks: Block registrationModBlockEntityTypes: Block entity registration
If you're developing add-ons or integrations:
// Check if Mekanism is loaded
if (ModList.get().isLoaded("mekanism")) {
// Access Mekanism API
IMekanismAccess access = IMekanismAccess.INSTANCE;
}
// Safely access JEI helper
try {
var jeiHelper = IMekanismAccess.INSTANCE.jeiHelper();
} catch (IllegalStateException e) {
// JEI not loaded
}MekanismRecipeType.INFUSION_CONVERSION: Primary recipe typeItemStackToInfuseTypeRecipe: Conversion recipe class
Contributions welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests (if applicable)
- Submit a pull request
- Clone the repository
- Import into IDE (IntelliJ IDEA recommended)
- Run
./gradlew genIntellijRunsto configure IDE - Use
./gradlew runClientfor testing
This project is licensed under the MIT License - see the LICENSE file for details.
- Mekanism Team: For the excellent tech mod
- Applied Energistics Team: For the network system
- Forge Team: For the modding platform
- Community: For feedback and testing
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Wiki: GitHub Wiki
- Mekanism GitHub
- Applied Energistics 2 GitHub
- Applied Mekanistics GitHub
- Forge Website
- Minecraft Forums
Note: This mod is not affiliated with Mekanism or Applied Energistics 2 teams. It is an independent add-on created for community use.