Skip to content

Ender IO

benbenlaw edited this page May 18, 2026 · 6 revisions

Alloy Smelter

event.recipes.enderio.alloy_smelting(
'minecraft:diamond', //result
["minecraft:stick"]) //inputs
.energy(1000) // optional, defaults to 1000
.experience(0.3) //optional, defaults to 0.3
.isSmelting(false) //optional, default to false

Enchanter (WIP)

Fire Crafting (WIP)

Sag Milling (WIP)

Slicing

event.recipes.enderio.alloy_smelting(
'minecraft:diamond', //result
["minecraft:stick", "#minecraft:planks"]) //inputs
.energy(1000) // optional, defaults to 1000

Soul Binding

event.recipes.enderio.soul_binding(
    'minecraft:diamond', //result
    "minecraft:stick", //input
    1000 // energy
)
.experience(1) //optional, defaults to 1
.entityType("minecraft:zombie") //optional, defaults to "minecraft:pig"
.mobCategory("creature") //optional, defaults to "creature"
.soulData("engine") //optional, defaults to "engine" 
.copyInputComponents(false) //optional, defaults to false, if true copies all components from input to output
)

Tank

event.recipes.enderio.tank(
'minecraft:diamond', //result
'minecraft:stick', //input
'200x minecraft:lava' //fluid 
) 
.mode("fill") // optional, defaults to fill can be "empty"

VAT (Fermenting) (WIP)

Clone this wiki locally