-
Notifications
You must be signed in to change notification settings - Fork 14
Smelting Recipes and Fuel
cubex2 edited this page Apr 23, 2017
·
3 revisions
Type name: smeltingRecipe
{
"input": "minecraft:stone",
"result": {
"item": "minecraft:obsidian",
"amount": 3
},
"xp": 2.7
}
-
input: This is an ItemStack and defines the input of the recipe. You may use "all" for metadata. Specifying nbt here has no effect.
-
result: This is an ItemStack and defines the result of the recipe.
-
xp: This defines the experience gained from this recipe. This is optional and defaults to 0.
Type name: fuel
{
"item" : "minecraft:stone",
"burnTime" : 800
}
-
item: This is an ItemStack and defines the item that is being added as fuel for the furnace. You may use "all" for metadata and specify nbt.
-
burnTime: The time in ticks that the item is burning. A second has 20 ticks.