Merge pull request #753 from CaptainGold1/processed-ores-heat

Adds heat values for items with valid heating recipes but no heat values
This commit is contained in:
Dmitry 2025-01-25 23:52:11 +07:00 committed by GitHub
commit ab9a22d29d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 6 deletions

View file

@ -25,12 +25,6 @@
"type": "patchouli:text",
"text": "If the metal is hot when added into the blast furnace, it will take less time to reach brilliant white. Consider heating your metal in a $(l:tfc:mechanics/charcoal_forge)Charcoal Forge$() before putting it into an already-hot furnace to save time, especially with smaller blast furnaces that process less at a time."
},
{
"type": "patchouli:spotlight",
"title": "Valid Inputs",
"item": "gtceu:iron_dust",
"text": "Only certain processing stages of ores are accepted in the blast furnace. $(thing)Ore Dusts$(), $(thing)Raw Ores$(), and $(thing)Cast/Wrought Iron Ingots$() work, while $(thing)Crushed$(), $(thing)Impure$(), or other stages of processing will not. But you really should $(l:tfc:tfg_ores/ore_basics#processing)Process$() your ores to dust."
},
{
"type": "patchouli:spotlight",
"title": "Automation",

View file

@ -71,6 +71,8 @@ const registerTFCHeats = (event) => {
makeItemHeatByTagPrefix(TagPrefix.bolt, material, tfcProperty, 0.245)
makeItemHeatByTagPrefix(TagPrefix.screw, material, tfcProperty, 0.567)
makeItemHeatByTagPrefix(TagPrefix.nugget, material, tfcProperty, 0.124)
makeItemHeatByTagPrefix(TagPrefix.block, material, tfcProperty, 20)
makeItemHeatByTagPrefix(TagPrefix.rodLong, material, tfcProperty, 1.429)
makeItemHeatByTagPrefix(TagPrefix.ingot, material, tfcProperty, 1.429)
@ -78,6 +80,13 @@ const registerTFCHeats = (event) => {
makeItemHeatByTagPrefix(TFGTagPrefix.richRawOre, material, tfcProperty, 1.429)
makeItemHeatByTagPrefix(TFGTagPrefix.poorRawOre, material, tfcProperty, 1.429)
// Ore processing stages
makeItemHeatByTagPrefix(TagPrefix.dustImpure, material, tfcProperty, 1.429)
makeItemHeatByTagPrefix(TagPrefix.dustPure, material, tfcProperty, 1.429)
makeItemHeatByTagPrefix(TagPrefix.crushed, material, tfcProperty, 1.429)
makeItemHeatByTagPrefix(TagPrefix.crushedPurified, material, tfcProperty, 1.429)
makeItemHeatByTagPrefix(TagPrefix.crushedRefined, material, tfcProperty, 1.429)
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadSword, material, tfcProperty, 2.875)
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadShovel, material, tfcProperty, 1.429)
makeItemHeatByTagPrefix(TFGTagPrefix.toolHeadScythe, material, tfcProperty, 1.429)