Add support for fluid mining
This commit is contained in:
parent
651183d9c5
commit
df99f7aebe
3 changed files with 10 additions and 0 deletions
BIN
bztungsten2/graphics/technology/fluid-mining.png
Normal file
BIN
bztungsten2/graphics/technology/fluid-mining.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 90 KiB |
|
|
@ -40,9 +40,11 @@ enriched-tungsten=Enriched tungsten
|
|||
tungsten-matter-processing=Tungsten conversion
|
||||
advanced-carbon-furnace=__ITEM__advanced-carbon-furnace__
|
||||
pumpjack=__ENTITY__pumpjack__
|
||||
fluid-mining=Fluid mining
|
||||
|
||||
[technology-description]
|
||||
enriched-tungsten=Enrich tungsten ore, purifying with ammonia [fluid=ammonia] and water [fluid=water], improving the final yield. Produce dirty water [fluid=dirty-water] as a byproduct.
|
||||
fluid-mining=Allows supply of fluids to mining drills to enable mining of certain resources.
|
||||
|
||||
[recipe-name]
|
||||
enriched-tungsten=__ITEM__enriched-tungsten__
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
local util = require("data-util")
|
||||
|
||||
util.add_fluid_mining()
|
||||
util.set_prerequisite("fluid-mining", { "logistic-science-pack" })
|
||||
util.set_tech_recipe("fluid-mining", {
|
||||
{ "automation-science-pack", 1 },
|
||||
{ "logistic-science-pack", 1 }
|
||||
})
|
||||
util.add_prerequisite("tungsten-processing", "fluid-mining")
|
||||
|
||||
local cuw = "tungsten-plate"
|
||||
if util.me.cuw() then cuw = "cuw" end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue