From d60fa282c56e6c8f983ffca20fcf6ff6eeb6667b Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 26 Feb 2025 10:27:14 +0100 Subject: [PATCH] Balance moist stromatolite remnant desiccation Reduce peat from moist-stromatolite-remnant-desiccation --- lignumis/prototypes/content/desiccation-furnace.lua | 2 +- lignumis/prototypes/content/gold/stromatolite.lua | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lignumis/prototypes/content/desiccation-furnace.lua b/lignumis/prototypes/content/desiccation-furnace.lua index 7f2f583..f0047e4 100644 --- a/lignumis/prototypes/content/desiccation-furnace.lua +++ b/lignumis/prototypes/content/desiccation-furnace.lua @@ -10,7 +10,7 @@ furnace.icons = { } furnace.fluid_boxes = { { - volume = 100, + volume = 200, pipe_picture = machinepipes(), pipe_covers = pipecovers(), pipe_connections = { diff --git a/lignumis/prototypes/content/gold/stromatolite.lua b/lignumis/prototypes/content/gold/stromatolite.lua index 4709545..6d2da93 100644 --- a/lignumis/prototypes/content/gold/stromatolite.lua +++ b/lignumis/prototypes/content/gold/stromatolite.lua @@ -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 }