Heating Items - StrayWolfe/TFC-Tweaker GitHub Wiki
Heat increases at a base rate of 1C per tick. Specific heat is just a multiplier on this rate. This means that a meltTemp of 100C will be reached in 5 seconds with a Specific Heat of 1.0 and 10 seconds at 2.0
Reference Melting Temps and Specific Heats
- Bismuth: 270C at 0.14
- Bismuth Bronze: 985C at 0.35
- Black Bronze: 1070C at 0.35
- Black Steel: 1485C at 0.35
- Blue Steel: 1540C at 0.35
- Brass: 930C at 0.35
- Bronze: 950C at 0.35
- Cook Food: 600C at 1
- Copper: 1080C at 0.35
- Gold: 1060C at 0.6
- Ignite stick: 40C at 1
- Incinerate Food: 1200C at 1
- Iron: 1535C at 0.35
- Lead: 328C at 0.22
- Nickel: 1453C at 0.48
- Pig Iron: 1500C at 0.35
- Platinum: 1730 at 0.35
- Red Steel: 1540 at 0.35
- Rose Gold: 960C at 0.35
- Sand: 600C at 1
- Silver: 961C at 0.48
- Steel: 1540C at 0.35
- Sterling Silver: 900C at 0.35
- Tin: 230C at 0.14
- Zinc: 420C at 0.21
These numbers are not really useful for gameplay but are required in recipes. These values should give you an idea of what values to use in the recipes.
##Add Recipe
Output Stack, Input Stack or Input Ore, Melting Temp(Default: 600, Normal Range 0-2000)[Optional], Specific Heat(Default: 1, Normal Range 0-1)[Optional]
mods.Terrafirmacraft.ItemHeat.addRecipe(<minecraft:coal:1>,<terrafirmacraft:item.Log>, 40, 0.5);
mods.Terrafirmacraft.ItemHeat.addRecipe(<minecraft:coal:1>,<terrafirmacraft:item.Log>, 40);
mods.Terrafirmacraft.ItemHeat.addRecipe(<minecraft:coal:1>,<terrafirmacraft:item.Log>);
mods.Terrafirmacraft.ItemHeat.addRecipe(<minecraft:coal:1>,<ore:logWood>, 40, 0.5);
mods.Terrafirmacraft.ItemHeat.addRecipe(<minecraft:coal:1>,<ore:logWood>, 40);
mods.Terrafirmacraft.ItemHeat.addRecipe(<minecraft:coal:1>,<ore:logWood>);
##Remove Recipe
Input Stack
mods.Terrafirmacraft.ItemHeat.removeRecipe(<terrafirmacraft:Sand>);