te.furnace
Tweaks involving the Redstone Furnace from Thermal Expansion.
Note
The furnace command can be used to view recipes.
add
te.furnace.add : item output, item input, integer energy, boolean isFood
Adds a recipe to the Redstone Furnace.
The isFood setting determines whether the item is added to the list of foods for the Trivection Chamber augment.
Example
#convert diamond to emerald
te.furnace.add : item(emerald), item(minecraft:diamond), 4000, false;
remove
te.furnace.remove : all *
te.furnace.remove : item input
Remove all or selected items.
Example
#disable all recipes
te.furnace.remove : *;
#disable the recipe for diamond
te.furnace.remove : item(minecraft:diamond);
food.remove
te.furnace.food.remove : all *
te.furnace.food.remove : item input
Remove all or selected items from the list of foods for the Trivection Chamber augment.
Example
#disable all food recipes
te.furnace.food.remove : *;
pyro.add
te.furnace.pyro.add : item output, item input, integer energy, integer creosote
Adds a recipe to the Redstone Furnace when using the Pyrolytic Conversion augment.
The creosote argument determines the amount of Creosote created.
Example
#convert diamond to emerald and 1 bucket of creosote
te.furnace.pyro.add : item(emerald), item(minecraft:diamond), 4000, 1000;
pyro.remove
te.furnace.pyro.remove : all *
te.furnace.pyro.remove : item input
Remove all or selected items when using the Pyrolytic Conversion augment.
Example
#disable all pyrolosis recipes
te.furnace.pyro.remove : *;
