This page relates to Thermal Expansion, which has built-in support!
Blast Chiller / Chiller
Link to blast-chiller--chiller
Methods
Link to methods
Add Recipe
Link to add-recipe
The following script will add recipes that will:
- Output Glass by Freezing 250 mB of Resin, consuming 500 RF.
- Output Glass by Freezing 250 mB of Resin with a Ball Cast, consuming 500 RF.
ZenScript Copy// <recipetype:thermal:chiller>.addRecipe(String name, IItemStack output, IIngredient ingredient, IFluidStack inputFluid, int energy);
<recipetype:thermal:chiller>.addRecipe("chiller_test", <item:minecraft:glass>, <item:minecraft:air>, <fluid:thermal:resin> *250, 500);
<recipetype:thermal:chiller>.addRecipe("chiller_test_with_cast", <item:minecraft:glass>, <item:thermal:chiller_ball_cast>, <fluid:thermal:resin> *250, 500);
Chiller Casts
Link to chiller-casts
Thermal Expansion has a Chiller cast that is used in recipes (like the second example) which doesn't get consumed, it is the following:
Copychiller_ball_cast
Remove Recipes
Link to remove-recipes
The following script will remove all Chiller recipes that output Ice.
ZenScript Copy// <recipetype:thermal:chiller>.removeRecipe(IItemStack... output);
<recipetype:thermal:chiller>.removeRecipe(<item:minecraft:ice>);