Cauldron Recipes¶
About¶
Nbt Crafting also introduces cauldron recipes. Cauldron brewing means right-clicking a cauldron with an item stack which then optionally consumes a bit of water and grants the player a resulting stack. You can also define a remainder.
The JSON¶
Cauldron recipes use the nbtcrafting:cauldron
recipe type.
They use an ingredient as input
and a result
for the item processing. The water consuming is handled through the levels
property which is a number specifying how many levels to consume.
Example¶
{
"type": "nbtcrafting:cauldron",
"input": {
"item": "minecraft:sand"
},
"result": {
"item": "minecraft:clay"
},
"levels": 1
}