Reduce peat from gold

This commit is contained in:
Simon Brodtmann 2025-02-13 21:17:57 +01:00
parent a4411af558
commit ca04815aa4
2 changed files with 4 additions and 4 deletions

View file

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

View file

@ -145,7 +145,7 @@ plant.minable = {
mining_particle = "copper-ore-particle",
mining_time = 2,
results = {
{ type = "item", name = "moist-stromatolite-remnant", amount = 30 },
{ type = "item", name = "moist-stromatolite-remnant", amount = 25 },
{ type = "item", name = "gold-bacteria", amount = 15 },
{ type = "item", name = "gold-stromatolite-seed", amount_min = 1, amount_max = 3 }
}
@ -244,10 +244,10 @@ local desiccation_recipe = {
subgroup = "raw-material",
order = "b0[desiccation]",
energy_required = 9.6,
ingredients = { { type = "item", name = "moist-stromatolite-remnant", amount = 5 } },
ingredients = { { type = "item", name = "moist-stromatolite-remnant", amount = 6 } },
results = {
{ type = "item", name = "peat", amount = 1 },
{ type = "fluid", name = "steam", amount = 50, temperature = 165 }
{ type = "fluid", name = "steam", amount = 60, temperature = 165 }
},
enabled = false
}