Compare commits
2 commits
c3c414f36a
...
6c0876d0c8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6c0876d0c8 | ||
|
|
1b5895b421 |
4 changed files with 13 additions and 5 deletions
|
|
@ -27,6 +27,7 @@ if util.me.handcraft() then
|
||||||
end
|
end
|
||||||
local hcec = futil.table.deepcopy(data.raw.recipe["electronic-circuit"])
|
local hcec = futil.table.deepcopy(data.raw.recipe["electronic-circuit"])
|
||||||
hcec.name = "electronic-circuit-handcraft-only"
|
hcec.name = "electronic-circuit-handcraft-only"
|
||||||
|
hcec.localized_name = { "item-name.electronic-circuit" }
|
||||||
data:extend({hcec})
|
data:extend({hcec})
|
||||||
util.set_icons("electronic-circuit-handcraft-only",
|
util.set_icons("electronic-circuit-handcraft-only",
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,9 @@
|
||||||
local util = require("data-util");
|
local util = require("data-util");
|
||||||
|
|
||||||
local prereq = {"basic-chemistry"}
|
local prereq = {"basic-chemistry"}
|
||||||
if mods["bzfoundry2"] then
|
if mods["Krastorio2"] then
|
||||||
|
table.insert(prereq, "steel-processing")
|
||||||
|
elseif mods["bzfoundry2"] then
|
||||||
table.insert(prereq, "foundry")
|
table.insert(prereq, "foundry")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,11 @@ local util = require("data-util");
|
||||||
-- }
|
-- }
|
||||||
-- })
|
-- })
|
||||||
|
|
||||||
|
local prereq = {"gas-extraction"}
|
||||||
|
if mods["Krastorio2"] then
|
||||||
|
table.insert(prereq, "automation-science-pack")
|
||||||
|
end
|
||||||
|
|
||||||
data:extend({
|
data:extend({
|
||||||
{
|
{
|
||||||
type = "fluid",
|
type = "fluid",
|
||||||
|
|
@ -40,7 +45,7 @@ data:extend({
|
||||||
name = "basic-chemistry",
|
name = "basic-chemistry",
|
||||||
icon = "__bzgas2__/graphics/technology/formaldehyde.png",
|
icon = "__bzgas2__/graphics/technology/formaldehyde.png",
|
||||||
icon_size = 256,
|
icon_size = 256,
|
||||||
prerequisites = {"gas-extraction"},
|
prerequisites = prereq,
|
||||||
effects = {
|
effects = {
|
||||||
{type = "unlock-recipe", recipe = "basic-chemical-plant"},
|
{type = "unlock-recipe", recipe = "basic-chemical-plant"},
|
||||||
{type = "unlock-recipe", recipe = "formaldehyde"},
|
{type = "unlock-recipe", recipe = "formaldehyde"},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue