Add compatibility for "Gleba reborn"

This commit is contained in:
Simon Brodtmann 2025-03-28 09:45:36 +01:00
parent 6f4e8dcda8
commit 151337c116
3 changed files with 19 additions and 1 deletions

View file

@ -30,6 +30,7 @@
"?atan-nuclear-science",
"?crushing-industry",
"?Diversitree",
"?gleba-reborn",
"?hot-metals >= 1.1.0",
"?lane-splitters",
"?metal-and-stars",

View file

@ -0,0 +1,16 @@
local Technology = require("__cf-lib__/data/Technology")
if not mods["gleba-reborn"] then return end
Technology:new("tree-seeding")
:setPrerequisites({ "wood-science-pack" })
:assign({
unit = {
count = 10,
ingredients = {
{ "wood-science-pack", 1 }
},
time = 10
}
})
.prototype.research_trigger = nil

View file

@ -1 +1,2 @@
require("aai-industry")
require("aai-industry")
require("gleba-reborn")