Balance moist stromatolite remnant desiccation

This commit is contained in:
Simon Brodtmann 2025-02-26 10:27:14 +01:00
parent 9f7ab57c36
commit 313a035456
2 changed files with 6 additions and 6 deletions

View file

@ -10,7 +10,7 @@ furnace.icons = {
}
furnace.fluid_boxes = {
{
volume = 100,
volume = 200,
pipe_picture = machinepipes(),
pipe_covers = pipecovers(),
pipe_connections = {

View file

@ -244,11 +244,11 @@ local desiccation_recipe = {
category = "desiccation",
subgroup = "lignumis-bioprocessing",
order = "b0[desiccation]",
energy_required = 9.6,
ingredients = { { type = "item", name = "moist-stromatolite-remnant", amount = 6 } },
energy_required = 16,
ingredients = { { type = "item", name = "moist-stromatolite-remnant", amount = 10 } },
results = {
{ type = "item", name = "peat", amount = 1 },
{ type = "fluid", name = "steam", amount = 60, temperature = 165 }
{ type = "fluid", name = "steam", amount = 150, temperature = 165 }
},
enabled = false
}
@ -263,8 +263,8 @@ local desiccation_recipe_no_steam = {
category = "smelting",
subgroup = "lignumis-bioprocessing",
order = "b1[desiccation]",
energy_required = 9.6,
ingredients = { { type = "item", name = "moist-stromatolite-remnant", amount = 2 } },
energy_required = 16,
ingredients = { { type = "item", name = "moist-stromatolite-remnant", amount = 10 } },
results = { { type = "item", name = "peat", amount = 1 } },
enabled = false
}