Add recipe for voiding gold seeds

This commit is contained in:
Simon Brodtmann 2025-01-06 16:11:19 +01:00
parent c992ded011
commit 1332014de4
4 changed files with 27 additions and 2 deletions

View file

@ -25,7 +25,6 @@ Sorted by priority
- Balance pollution (noise) - Balance pollution (noise)
- Tweak enemies + warfare (add damage research) - Tweak enemies + warfare (add damage research)
- Add vent for steam - Add vent for steam
- Add recipe to void gold seeds
- Adjust vanilla technologies - Adjust vanilla technologies
- Add end-game stuff - Add end-game stuff
- Add burner radar - Add burner radar

View file

@ -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 - 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 "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 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 Version: 0.0.3
Date: 06.01.2025 Date: 06.01.2025

View file

@ -58,9 +58,14 @@ wood-pulp=Wood pulp
[recipe-name] [recipe-name]
moist-stromatolite-remnant-desiccation=Desiccate moist stromatolite remnant moist-stromatolite-remnant-desiccation=Desiccate moist stromatolite remnant
moist-stromatolite-remnant-desiccation-without-steam=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 wood-liquefaction=Wood liquefaction
provisional-rocket-part=Provisional rocket part 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] [technology-name]
wood-science-pack=Wood science pack wood-science-pack=Wood science pack
burner-automation=Burner automation burner-automation=Burner automation

View file

@ -267,6 +267,25 @@ local desiccation_recipe_no_steam = {
enabled = false 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({ data:extend({
stromatolite, stromatolite,
plant, plant,
@ -274,5 +293,6 @@ data:extend({
bacteria, bacteria,
remnant, remnant,
desiccation_recipe, desiccation_recipe,
desiccation_recipe_no_steam desiccation_recipe_no_steam,
seed__to_peat_recipe
}) })