-
Notifications
You must be signed in to change notification settings - Fork 0
Ender IO
benbenlaw edited this page May 18, 2026
·
6 revisions
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 falseevent.recipes.enderio.alloy_smelting(
'minecraft:diamond', //result
["minecraft:stick", "#minecraft:planks"]) //inputs
.energy(1000) // optional, defaults to 1000event.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
)event.recipes.enderio.tank(
'minecraft:diamond', //result
'minecraft:stick', //input
'200x minecraft:lava' //fluid
)
.mode("fill") // optional, defaults to fill can be "empty"