phenol from oil

This commit is contained in:
Brevven 2022-07-24 18:35:16 -07:00
parent 0286a1742e
commit b28f7d3c4b
4 changed files with 32 additions and 3 deletions

View file

@ -1,4 +1,13 @@
---------------------------------------------------------------------------------------------------
Version: 0.0.7
Date: 2022-07-25
Changes:
- Add a new recipe for phenol (when enabled) from light oil, to help with late-game production.
- K2, without AAI: fix green circuit recipe, actually simplify this one.
Fixes:
- Gas Boiler: input arrow for gas input
- Minor typo fixes
---------------------------------------------------------------------------------------------------
Version: 0.0.6
Date: 2022-07-23
Features:

View file

@ -1,6 +1,6 @@
{
"name": "bzgas",
"version": "0.0.6",
"version": "0.0.7",
"factorio_version": "1.1",
"title": "Natural Gas",
"author": "Brevven",

View file

@ -50,4 +50,4 @@ bzgas-boiler=Natural gas mod currnelty can incorporate ElAdamo's public domain f
[string-mod-setting]
bzgas-more-intermediates-no=No
bzgas-more-intermediates-phenol=Yes: Phenol from coal
bzgas-more-intermediates-phenol=Yes: Phenol from coal or oil

View file

@ -69,6 +69,26 @@ if data.raw.item["coke"] then
else
util.add_effect("automation", {type="unlock-recipe", recipe="phenol"})
end
data:extend({
{
type = "recipe",
name = "phenol-from-oil",
category = "chemistry",
enabled = "false",
icons = {
{icon = "__bzgas__/graphics/icons/phenol.png", icon_size = 128},
{icon = "__base__/graphics/icons/fluid/light-oil.png", icon_size = 64, icon_mipmaps = 4, scale=0.25, shift={-8,-8}},
},
ingredients = {
{type="fluid", name="light-oil", amount=20}
},
energy_required = 15,
results = {
{type="item", name="phenol", amount=3},
},
}
})
util.add_unlock("advanced-oil-processing", "phenol-from-oil")
else
data:extend({
{
@ -80,7 +100,7 @@ else
energy_required = 1,
ingredients = {{"coal", 1}},
results = {
{type="item", name="phenol", amount = 1},
{type="item", name="phenol", amount=1},
},
}
})