Add vanilla support
This commit is contained in:
parent
d09ee809c2
commit
b2e3eb6cff
4 changed files with 16 additions and 15 deletions
|
@ -1,4 +1,5 @@
|
||||||
local modList = {
|
local modList = {
|
||||||
|
"space-age",
|
||||||
"aai-industry"
|
"aai-industry"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
12
hot-metals/compatibility/space-age.lua
Normal file
12
hot-metals/compatibility/space-age.lua
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
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")
|
|
@ -1,22 +1,11 @@
|
||||||
HotMetals = {
|
HotMetals = {
|
||||||
items = {
|
items = {
|
||||||
"copper-cable",
|
|
||||||
"copper-plate",
|
"copper-plate",
|
||||||
"holmium-plate",
|
|
||||||
"iron-gear-wheel",
|
|
||||||
"iron-plate",
|
"iron-plate",
|
||||||
"iron-stick",
|
|
||||||
"pipe",
|
|
||||||
"pipe-to-ground",
|
|
||||||
"steel-plate",
|
"steel-plate",
|
||||||
"tungsten-plate"
|
|
||||||
-- Disabled because of https://forums.factorio.com/viewtopic.php?f=7&t=123081
|
|
||||||
--"low-density-structure"
|
|
||||||
},
|
},
|
||||||
craftingCategories = {
|
craftingCategories = {
|
||||||
"smelting",
|
"smelting"
|
||||||
"metallurgy",
|
|
||||||
"crafting-with-fluid-or-metallurgy"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,7 @@
|
||||||
"homepage": "",
|
"homepage": "",
|
||||||
"factorio_version": "2.0",
|
"factorio_version": "2.0",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"base",
|
"base"
|
||||||
"space-age >= 2.0.0"
|
|
||||||
],
|
],
|
||||||
"space_travel_required": true
|
"spoiling_required": true
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue