Download Multiblocked Extended Compatibility — Minecraft Mods — ModStock

Multiblocked Extended Compatibility

Active

Downloads

0

Last update

2 months ago
Client
Magic
Technological
Addons

This is a addon mod for Multiblocked by KilaBash. The goal of this mod is to add more mod compatibility between other mods and Multiblocked.
So far the supported mods that have been integrated for recipe inputs and outputs are:

  • Ars Nouveau (Source)
  • Elemental Craft (All 4 Elements)

 

Also has KubeJS Support for adding recipes, as well as works with the blueprint table's integrated recipe builder.

///////////////////KubeJS Compatibility///////////////////////

This mod works with Multiblocked's native KubeJS integration.
Examples:

Ars Nouveau:
Input Source
.inputANSource(int: sourceAmount, *optional* String: slotName)
Output Source
.outputANSource(int: sourceAmount, *optional* String: slotName)

Elemental Craft:
Valid Strings for elementName: 'earth', 'air', 'fire', 'water'
Input Element
.inputECElement(String: elementName, int: elementAmount, *optional* String: slotName)
Output Element
.outputECElement(String: elementName, int: elementAmount, *optional* String: slotName)

EX: 
//Ars Input Example
event.recipes.multiblocked.multiblock('exampleMultiblockRecipemapName')
.inputANSource(3000)
.outputItem('minecraft:dirt')
.duration(100)

//Ars Output Example
event.recipes.multiblocked.multiblock('exampleMultiblockRecipemapName')
.inputItem('minecraft:cobblestone')
.outputANSource(400)
.duration(100)

//Elemental Craft Input Example
event.recipes.multiblocked.multiblock('exampleMultiblockRecipemapName')
.inputECElement('earth', 25000, 'earth_container')
.inputECElement('air', 25000)
.inputECElement('fire', 25000)
.inputECElement('water', 25000)
.outputItem('minecraft:diamond')
.duration(300)

//Elemental Craft Output Example
event.recipes.multiblocked.multiblock('exampleMultiblockRecipemapName')
.inputItem('minecraft:stone')
.outputECElement('fire', 1234)
.duration(100)

Project members
TheSmartNoob880

TheSmartNoob880