diff --git a/README.md b/README.md index 229ea87..64471e2 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,6 @@ Sorted by priority - Balance pollution (noise) - Tweak enemies + warfare (add damage research) - Add vent for steam -- Add recipe to void gold seeds - Adjust vanilla technologies - Add end-game stuff - Add burner radar diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 2e5c1af..61009a1 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -5,6 +5,7 @@ Date: 06.01.2025 - The mod "Burner Leech Fork" is removed as a dependency and listed as optional addition in the description - Add "wood fuel" category so burner entities don't use trees, lumber and seeds as fuel - Add recipe to process moist stromatolite remnant in a normal furnace to balance steam production + - Add recipe to process gold stromatolite seeds to void excess seeds --------------------------------------------------------------------------------------------------- Version: 0.0.3 Date: 06.01.2025 diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index 8ea2abb..003d848 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -58,9 +58,14 @@ wood-pulp=Wood pulp [recipe-name] moist-stromatolite-remnant-desiccation=Desiccate moist stromatolite remnant moist-stromatolite-remnant-desiccation-without-steam=Desiccate moist stromatolite remnant +gold-stromatolite-seed-to-peat=Process gold stromatolite seed wood-liquefaction=Wood liquefaction provisional-rocket-part=Provisional rocket part +[recipe-description] +moist-stromatolite-remnant-desiccation-without-steam=Used for balancing the production of steam. +gold-stromatolite-seed-to-peat=Used for voiding excess gold stromatolite seeds. + [technology-name] wood-science-pack=Wood science pack burner-automation=Burner automation diff --git a/lignumis/prototypes/content/gold/stromatolite.lua b/lignumis/prototypes/content/gold/stromatolite.lua index 71a4908..ee08f86 100644 --- a/lignumis/prototypes/content/gold/stromatolite.lua +++ b/lignumis/prototypes/content/gold/stromatolite.lua @@ -267,6 +267,25 @@ local desiccation_recipe_no_steam = { enabled = false } +local seed__to_peat_recipe = { + type = "recipe", + name = "gold-stromatolite-seed-to-peat", + icons = { + { icon = "__lignumis__/graphics/icons/peat.png" }, + { icon = "__lignumis__/graphics/icons/gold-stromatolite-seed.png", scale = 0.25, shift = { -8, 8 } } + }, + category = "basic-crafting", + subgroup = "raw-material", + order = "b2[gold-stromatolite-seed-to-peat]", + energy_required = 3.2, + ingredients = { { type = "item", name = "gold-stromatolite-seed", amount = 10 } }, + results = { + { type = "item", name = "peat", amount = 1 }, + { type = "item", name = "gold-ore", amount = 1 } + }, + enabled = true +} + data:extend({ stromatolite, plant, @@ -274,5 +293,6 @@ data:extend({ bacteria, remnant, desiccation_recipe, - desiccation_recipe_no_steam + desiccation_recipe_no_steam, + seed__to_peat_recipe })