emissions in se6

This commit is contained in:
Brevven 2024-03-15 10:10:33 -07:00
parent 279cf0043d
commit fb33e0eaea
4 changed files with 11 additions and 3 deletions

View file

@ -1,4 +1,12 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 0.1.13
Date: 2024-01-13
Changes:
- SE: Natural gas has pollution value of 1.1 (up from 0.75) to balance between pure methane
and petroleum gas.
Localization:
- Add pl, thanks to S3BA
---------------------------------------------------------------------------------------------------
Version: 0.1.12 Version: 0.1.12
Date: 2023-12-24 Date: 2023-12-24
Features: Features:

View file

@ -173,7 +173,7 @@ function util.k2matter(params)
}, },
time = 45, time = 45,
}, },
localised_name = {"technology-name.k2-conversion", {"item-name."..params.k2matter.item_name}}, -- (ignore for now) localised_name = {"technology-name.k2-conversion", {"item-name."..params.k2matter.item_name}},
}, },
}) })
end end

View file

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

View file

@ -132,7 +132,7 @@ data:extend({
default_temperature = 25, default_temperature = 25,
heat_capacity = "0.1KJ", heat_capacity = "0.1KJ",
fuel_value = "1000KJ", fuel_value = "1000KJ",
emissions_multiplier = 0.75, emissions_multiplier = util.se6() and 1.1 or 0.75,
base_color = {r=0.67, g=0.87, b=0.77}, base_color = {r=0.67, g=0.87, b=0.77},
flow_color = {r=0.67, g=0.87, b=0.87}, flow_color = {r=0.67, g=0.87, b=0.87},
icon = "__bzgas__/graphics/icons/gas.png", icon = "__bzgas__/graphics/icons/gas.png",