hot-metals/hot-metals/data.lua
2025-02-03 15:47:14 +01:00

26 lines
No EOL
608 B
Lua

HotMetals = {
items = {
"copper-plate",
"iron-plate",
"steel-plate",
},
craftingCategories = {
"smelting"
},
skipTechUnlocksFor = {}
}
require("__cf-lib__/util")
if settings.startup["hot-metals-plastic"].value then
table.insert(HotMetals.items, "plastic-bar")
if not mods["space-age"] then -- Space age uses other crafting categories
table.insert(HotMetals.craftingCategories, "chemistry")
end
end
if settings.startup["hot-metals-bricks"].value then
table.insert(HotMetals.items, "stone-brick")
end
require("compatibility.data")