forked from cacklingfiend/bztungsten2
Compare commits
2 commits
f0061c6a7f
...
a607118e44
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a607118e44 | ||
|
|
0f0c52e789 |
3 changed files with 16 additions and 2 deletions
|
|
@ -1,4 +1,10 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 2.0.3
|
||||||
|
Date: 05.11.2025
|
||||||
|
Bug Fixes:
|
||||||
|
- Fix K2 matter integration (thanks pla)
|
||||||
|
- Fixes after breaking change for mineral water in K2 (pla)
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 2.0.2
|
Version: 2.0.2
|
||||||
Date: 02.11.2025
|
Date: 02.11.2025
|
||||||
Bug Fixes:
|
Bug Fixes:
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bztungsten2",
|
"name": "bztungsten2",
|
||||||
"version": "2.0.2",
|
"version": "2.0.3",
|
||||||
"factorio_version": "2.0",
|
"factorio_version": "2.0",
|
||||||
"title": "Tungsten",
|
"title": "Tungsten",
|
||||||
"description": "Adds tungsten ore (wolframite), tungsten plates, tungsten carbide and rocket engine nozzles to the base game.",
|
"description": "Adds tungsten ore (wolframite), tungsten plates, tungsten carbide and rocket engine nozzles to the base game.",
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
local util = require("data-util");
|
local util = require("data-util")
|
||||||
|
|
||||||
local cuw = "tungsten-plate"
|
local cuw = "tungsten-plate"
|
||||||
if util.me.cuw() then cuw = "cuw" end
|
if util.me.cuw() then cuw = "cuw" end
|
||||||
|
|
@ -102,6 +102,14 @@ util.add_ingredient("deadlock-floor-lamp", "tungsten-plate", 2)
|
||||||
|
|
||||||
---- K2
|
---- K2
|
||||||
if mods["Krastorio2"] then
|
if mods["Krastorio2"] then
|
||||||
|
util.remove_prerequisite("kr-mineral-water-gathering", "chemical-science-pack")
|
||||||
|
util.add_prerequisite("kr-mineral-water-gathering", "kr-fluids-chemistry")
|
||||||
|
util.add_prerequisite("kr-mineral-water-gathering", "logistic-science-pack")
|
||||||
|
|
||||||
|
util.set_tech_recipe(
|
||||||
|
"kr-mineral-water-gathering",
|
||||||
|
{ { "kr-basic-tech-card", 1 }, { "automation-science-pack", 1 }, { "logistic-science-pack", 1 } }
|
||||||
|
)
|
||||||
util.set_tech_recipe("engine", {{"kr-basic-tech-card", 1}, {"automation-science-pack", 1}, {"logistic-science-pack", 1}})
|
util.set_tech_recipe("engine", {{"kr-basic-tech-card", 1}, {"automation-science-pack", 1}, {"logistic-science-pack", 1}})
|
||||||
util.set_tech_recipe("fluid-handling", {{"kr-basic-tech-card", 1}, {"automation-science-pack", 1}, {"logistic-science-pack", 1}})
|
util.set_tech_recipe("fluid-handling", {{"kr-basic-tech-card", 1}, {"automation-science-pack", 1}, {"logistic-science-pack", 1}})
|
||||||
util.set_tech_recipe("lamp", {{"kr-basic-tech-card", 1}, {"automation-science-pack", 1}, {"logistic-science-pack", 1}})
|
util.set_tech_recipe("lamp", {{"kr-basic-tech-card", 1}, {"automation-science-pack", 1}, {"logistic-science-pack", 1}})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue