Home Getting Started With Scripts Using this wiki Commands CTGUI Global functions Bracket Handlers

Heating

Package

script.zs
import mods.terrafirmacraft.Heating;

Addition

script.zs
Heating.addRecipe(String registryName, IItemStack input, IItemStack output, float transformTemp, float maxTemp);
  • transformTemp is at which temperature the recipe completely transform the input into the output stack.
  • maxTemp is at which temperature the input is destroyed. For a complete reference, check Heating Temperatures

Removal

script.zs
Heating.removeRecipe(IItemStack output);
Heating.removeRecipe(String registryName);