furnace
Tweaks involving changing of Vanilla furnace recipes and fuels.
add
furnace.add : item output, item input
furnace.add : item output, item input, float experience
Adds a recipe to the furnace with the option to specify the experience dropped.
Example
#add recipe to turn diamonds into emeralds
furnace.add : item(minecraft:emerald), item(minecraft:diamond), 4.0;
remove
furnace.remove : all *
furnace.remove : item output
Remove all or a recipe specified by its output.
Example
#disable all furnace recipes
furnace.remove : *;
#disable the vanilla stone recipe
furnace.remove : item(minecraft:stone);
fuel.add
furnace.fuel.add : item fuel, integer burnTime)
Adds a new fuel type, burning for the specified time.
Example
#add diamonds as a fuel, burning 10 times longer than coal
furnace.fuel.add : item(minecraft:diamond), 8000;
fuel.remove
furnace.fuel.remove : all *
furnace.fuel.remove : item fuel
Removes all or a specified fuel.
Example
#remove all fuels.
furnace.fuel.remove : *;
#remove coal as a fuel.
furnace.fuel.remove : item(minecraft:coal);
