Add compatibility for "Any planet start" (Gleba)

This commit is contained in:
Simon Brodtmann 2025-03-28 09:37:59 +01:00
parent 5ca6eb9b3d
commit 6f4e8dcda8

View file

@ -46,4 +46,21 @@ if target_planet == "fulgora" then
:addPrerequisite("recycling")
:removeRecipe("agricultural-tower")
end
end
end
-- Gleba
if target_planet == "gleba" then
Technology:new("landfill")
:setPrerequisites({ "burner-automation" })
:assign({
unit = {
count = 50,
ingredients = { { "wood-science-pack", 1 } },
time = 15
}
})
.prototype.research_trigger = nil
Technology:new("iron-processing").prototype.research_trigger.entity = "iron-stromatolite"
Technology:new("copper-processing").prototype.research_trigger.entity = "copper-stromatolite"
end