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:
commit
ab9a22d29d
2 changed files with 9 additions and 6 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue