right assembly should have same inputs as left - only should switch lubricant to water in recipe
fluid recipes
Code: Select all
-- gearbox transmission with lubricant
{
type = "recipe",
name = "y-mf2a-recipe",
category = "yrcat-mf2",
energy_required = 0.5,
ingredients = {
{type="fluid", name="y-mechanical-force", amount=2.5, },
{type="fluid", name="lubricant", amount=0.1, },
},
results={
{type="fluid", name="y-mechanical-force", amount=2.5, },
},
enabled = "true",
icon = "__yi_engines__/graphics/mf-1.png",
subgroup = "yie-fluids",
},
-- gearbox transmission without lubricant
{
type = "recipe",
name = "y-mf2b-recipe",
category = "yrcat-mf2",
energy_required = 1.0,
ingredients = {
{type="fluid", name="y-mechanical-force", amount=1.5, },
{type="fluid", name="water", amount=5, },
},
results={
{type="fluid", name="y-mechanical-force", amount=1.0, },
},
enabled = "true",
icon = "__yi_engines__/graphics/mf-1.png",
subgroup = "yie-fluids",
},
assembly input and outputs
and no - random behavoir counts not as feature ... in my opinionCode: Select all
fluid_boxes =
{
{
production_type = "output",
base_area = 1,
base_level = 1,
pipe_connections = {
{type="output", position = {0, 2}},
}
},
{
production_type = "input",
base_area = 1,
base_level = -1,
pipe_connections = {
{type="input", position = {0, -2}},
}
},
{
production_type = "input",
base_area = 1,
base_level = -1,
pipe_connections = {
{type="input", position = { 2, 0}},
{type="input", position = {-2, 0}},
}
},
},