Multiblocked Extended Compatibility
An extension for the popular Multiblocked mod by KilaBash that significantly expands its compatibility with other modifications. This addon is specifically designed to create deeper and more functional interactions between various mods and Multiblocked.
Supported Mods
Currently implemented integration with the following modifications for recipe inputs and outputs:
- Ars Nouveau - magical source manipulation (Source)
- Elemental Craft - support for all four elements: earth, air, fire and water
Advanced Features
KubeJS Integration
The mod is fully compatible with Multiblocked's native KubeJS integration, allowing flexible recipe configuration through scripts. Also supports working with the built-in recipe builder in the blueprint table.
KubeJS Usage Examples
Ars Nouveau:
// Input example with Source
.inputANSource(3000)
// Output example with Source
.outputANSource(400)
Elemental Craft:
// Valid element names: 'earth', 'air', 'fire', 'water'
.inputECElement('earth', 25000, 'earth_container')
.outputECElement('fire', 1234)
Complete Recipe Examples:
// Ars Nouveau input example:
event.recipes.multiblocked.multiblock('exampleMultiblockRecipemapName')
.inputANSource(3000)
.outputItem('minecraft:dirt')
.duration(100)
// Elemental Craft output example:
event.recipes.multiblocked.multiblock('exampleMultiblockRecipemapName')
.inputItem('minecraft:stone')
.outputECElement('fire', 1234)
.duration(100)