Wood logistics: Correct lumber mill technology
This commit is contained in:
parent
377a703ed8
commit
31be99bdec
4 changed files with 17 additions and 13 deletions
|
|
@ -126,6 +126,7 @@ planet-discovery-lignumis=Moon discovery Lignumis
|
|||
iron-processing=Iron processing
|
||||
copper-processing=Copper processing
|
||||
lumber-mill=Lumber mill
|
||||
advanced-carpentry=Lumber mill
|
||||
deep-miner=Deep miner
|
||||
gold-fluid-handling=Gold fluid handling
|
||||
steam-automation=Steam automation
|
||||
|
|
@ -153,6 +154,7 @@ burner-automation=Technology for basic automation using burner machines.
|
|||
planet-discovery-nauvis=A temperate planet offering all the common resources.
|
||||
planet-discovery-lignumis=A moon orbiting Nauvis that has not much to offer besides some vegetation and a metal that might be useful.
|
||||
lumber-mill=Advanced machine to process wood.
|
||||
advanced-carpentry=Advanced machine to process wood.
|
||||
deep-miner=Gives access to huge gold deposits that were previously unreachable.
|
||||
steam-automation=Allows research of more sophisticated technologies based on wood products and gold.
|
||||
wood-liquefaction=Converting wood into a liquid offers new possibilities.
|
||||
|
|
|
|||
|
|
@ -119,18 +119,6 @@ else
|
|||
})
|
||||
})
|
||||
|
||||
table.assign(data.raw.technology["advanced-carpentry"], {
|
||||
prerequisites = { "steam-science-pack" },
|
||||
unit = {
|
||||
count = 250,
|
||||
time = 15,
|
||||
ingredients = {
|
||||
{ "wood-science-pack", 1 },
|
||||
{ "steam-science-pack", 1 }
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Recipe:new("lumber-mill")
|
||||
:clone("lumber-mill-copper")
|
||||
:assign({
|
||||
|
|
|
|||
13
lignumis/prototypes/content/technology-updates.lua
Normal file
13
lignumis/prototypes/content/technology-updates.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
if mods["wood-logistics"] then
|
||||
table.assign(data.raw.technology["advanced-carpentry"], {
|
||||
prerequisites = { "steam-science-pack" },
|
||||
unit = {
|
||||
count = 250,
|
||||
time = 15,
|
||||
ingredients = {
|
||||
{ "wood-science-pack", 1 },
|
||||
{ "steam-science-pack", 1 }
|
||||
}
|
||||
}
|
||||
})
|
||||
end
|
||||
|
|
@ -1,2 +1,3 @@
|
|||
require("fuel-category-updates")
|
||||
require("lignumis/planet-updates")
|
||||
require("lignumis/planet-updates")
|
||||
require("technology-updates")
|
||||
Loading…
Add table
Add a link
Reference in a new issue