
https://mods.factorio.com/mod/hot-metals/discussion/677fdef8d37eef8332fa6c2f https://mods.factorio.com/mod/hot-metals/discussion/675af47f1fba71716b2b7f7f
27 lines
No EOL
1.2 KiB
Lua
27 lines
No EOL
1.2 KiB
Lua
table.insert(HotMetals.items, "holmium-plate")
|
|
table.insert(HotMetals.items, "iron-gear-wheel")
|
|
table.insert(HotMetals.items, "copper-cable")
|
|
table.insert(HotMetals.items, "iron-stick")
|
|
table.insert(HotMetals.items, "pipe")
|
|
table.insert(HotMetals.items, "pipe-to-ground")
|
|
table.insert(HotMetals.items, "tungsten-plate")
|
|
-- Disabled because of https://forums.factorio.com/viewtopic.php?f=7&t=123081
|
|
--table.insert(HotMetals.items, "low-density-structure")
|
|
|
|
table.insert(HotMetals.craftingCategories, "metallurgy")
|
|
table.insert(HotMetals.craftingCategories, "crafting-with-fluid-or-metallurgy")
|
|
|
|
-- The regular early game recipes for these items are crafted in assemblers
|
|
table.insert(HotMetals.skipTechUnlocksFor, "iron-gear-wheel")
|
|
table.insert(HotMetals.skipTechUnlocksFor, "copper-cable")
|
|
table.insert(HotMetals.skipTechUnlocksFor, "iron-stick")
|
|
table.insert(HotMetals.skipTechUnlocksFor, "pipe")
|
|
table.insert(HotMetals.skipTechUnlocksFor, "pipe-to-ground")
|
|
|
|
if settings.startup["hot-metals-plastic"].value then
|
|
table.insert(HotMetals.craftingCategories, "chemistry-or-cryogenics")
|
|
end
|
|
|
|
if settings.startup["hot-metals-bricks"].value then
|
|
table.insert(HotMetals.items, "concrete")
|
|
end |