I try to output Steam on a modified ChemPlant. This works but it only generates Steam with 15°C.
So then i've simply overriden the Vanilla values by creating a new Steam-item within my testmod:
Code: Select all
{
type = "fluid",
name = "steam",
default_temperature = 165, -- changed from 15
max_temperature = 1000,
heat_capacity = "0.2KJ",
icon = "__base__/graphics/icons/fluid/steam.png",
icon_size = 32,
base_color = {r=0.5, g=0.5, b=0.5},
flow_color = {r=1.0, g=1.0, b=1.0},
order = "a[fluid]-b[steam]",
pressure_to_speed_ratio = 0.4,
flow_to_energy_ratio = 0.59,
gas_temperature = 165, -- changed from 15
auto_barrel = false
}
Is there a Way to do this so that only this Machine outputs hot vanilla-Steam?