Add vanilla support

This commit is contained in:
Simon Brodtmann 2024-12-03 00:02:16 +01:00
parent d09ee809c2
commit b2e3eb6cff
4 changed files with 16 additions and 15 deletions

View file

@ -1,4 +1,5 @@
local modList = {
"space-age",
"aai-industry"
}

View 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")

View file

@ -1,22 +1,11 @@
HotMetals = {
items = {
"copper-cable",
"copper-plate",
"holmium-plate",
"iron-gear-wheel",
"iron-plate",
"iron-stick",
"pipe",
"pipe-to-ground",
"steel-plate",
"tungsten-plate"
-- Disabled because of https://forums.factorio.com/viewtopic.php?f=7&t=123081
--"low-density-structure"
},
craftingCategories = {
"smelting",
"metallurgy",
"crafting-with-fluid-or-metallurgy"
"smelting"
}
}

View file

@ -7,8 +7,7 @@
"homepage": "",
"factorio_version": "2.0",
"dependencies": [
"base",
"space-age >= 2.0.0"
"base"
],
"space_travel_required": true
"spoiling_required": true
}