Heat Frame Cooling

Link to heat-frame-cooling

Heat Frame Cooling can be used to transform one item into another by placing items in a chest or other inventory with a Heat Frame attached, and cooling it to below 0°C (commonly using a Vortex Tube).

You can call the Heat Frame Cooling package using mods.pneumaticcraft.heatframecooling

This function removes the first recipe it finds with the given IIngredient output:

ZenScript
Copy
mods.pneumaticcraft.heatframecooling.removeRecipe(IIngredient output);
// Example
mods.pneumaticcraft.heatframecooling.removeRecipe(<minecraft:obsidian>);

This function removes all Heat Frame Cooling recipes:

ZenScript
Copy
mods.pneumaticcraft.heatframecooling.removeAllRecipes();

These functions are used to add new recipes for the Heat Frame Cooling system:

ZenScript
Copy
mods.pneumaticcraft.heatframecooling.addRecipe(IItemStack input, IItemStack output);
mods.pneumaticcraft.heatframecooling.addRecipe(IOreDictEntry input, IItemStack output);

// Example
mods.pneumaticcraft.heatframecooling.addRecipe(<minecraft:slime_ball>, <minecraft:snow_ball>);