This repository has been archived on 2024-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
Factorio-Better-Air-Filtering/better-air-filtering/prototypes/fluid.lua

27 lines
807 B
Lua
Raw Normal View History

2019-10-03 10:06:47 +00:00
data:extend({
{
type = "fluid",
name = "pollution",
2019-10-03 18:31:43 +00:00
default_temperature = 15,
max_temperature = 100,
gas_temperature = 0,
base_color = {r=0.7, g=0.7, b=0.7},
2019-10-03 10:06:47 +00:00
flow_color = {r=0.7, g=0.7, b=0.7},
2019-10-03 18:31:43 +00:00
icon = "__base__/graphics/icons/fluid/pollution.png",
2019-10-03 10:06:47 +00:00
icon_size = 32,
order = "a[fluid]-z[water]",
auto_barrel="false"
},
{
type = "fluid",
2019-10-03 18:31:43 +00:00
name = "polluted-water",
2019-10-03 10:06:47 +00:00
default_temperature = 15,
max_temperature = 100,
2019-10-03 18:31:43 +00:00
base_color = {r=0.7, g=0.7, b=0.7},
2019-10-03 10:06:47 +00:00
flow_color = {r=0.7, g=0.7, b=0.7},
2019-10-03 18:31:43 +00:00
icon = "__better-air-filtering__/graphics/icons/fluid/pollution.png",
2019-10-03 10:06:47 +00:00
icon_size = 32,
2019-10-03 18:31:43 +00:00
order = "a[fluid]-z[pollution]",
2019-10-03 10:06:47 +00:00
auto_barrel="false"
}
})