diff --git a/README.md b/README.md index d6246ac..29f707e 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,8 @@ The following mods can be a great addition for this mod: Sorted by priority +- Adjust rocket parts recipe - Add end-game stuff -- Balance resources -- Remove stromatolite (non-plant)? - Guarantee spawn of gold in starting area - Fix pipe graphics on desiccation furnace - Change color of gold soil diff --git a/lignumis/prototypes/content/lignumis/mapgen.lua b/lignumis/prototypes/content/lignumis/mapgen.lua index 084e203..398b647 100644 --- a/lignumis/prototypes/content/lignumis/mapgen.lua +++ b/lignumis/prototypes/content/lignumis/mapgen.lua @@ -13,7 +13,7 @@ return { }, autoplace_controls = { ["lignumis_gold"] = { richness = 1, frequency = 1, size = 1 }, - ["lignumis_peat"] = { richness = 1/2, frequency = 6, size = 1 }, + ["lignumis_peat"] = { richness = 1/2, frequency = 6, size = 2 }, ["stone"] = { richness = 1/6, frequency = 4, size = 4 }, ["water"] = {}, ["trees"] = {}, diff --git a/lignumis/prototypes/content/wood-liquefaction.lua b/lignumis/prototypes/content/wood-liquefaction.lua index cd71541..64f8e1c 100644 --- a/lignumis/prototypes/content/wood-liquefaction.lua +++ b/lignumis/prototypes/content/wood-liquefaction.lua @@ -3,7 +3,7 @@ data:extend({ type = "fluid", name = "wood-pulp", default_temperature = 150, - fuel_value = "150kJ", + fuel_value = "250kJ", base_color = { r = 0.57, g = 0.392, b = 0.114 }, flow_color = { r = 0.57, g = 0.392, b = 0.114 }, icon = "__lignumis__/graphics/icons/wood-pulp.png",