2010-08-08 09:40:42 +02:00
|
|
|
local function create_ents(r, number)
|
2014-07-26 22:52:25 +02:00
|
|
|
local f = get_faction(666)
|
|
|
|
if f~=nil and number>0 then
|
2015-02-19 17:30:13 +01:00
|
|
|
u = unit.create(f, r, number, "ent")
|
2016-12-10 16:22:57 +01:00
|
|
|
u.name = "Rasende Ents"
|
2014-07-26 22:52:25 +02:00
|
|
|
u:set_skill("perception", 2)
|
|
|
|
|
|
|
|
msg = message.create("entrise")
|
|
|
|
msg:set_region("region", r)
|
|
|
|
msg:send_region(r)
|
|
|
|
return u
|
|
|
|
end
|
|
|
|
return nil
|
2010-08-08 09:40:42 +02:00
|
|
|
end
|
|
|
|
|
2014-07-26 22:52:25 +02:00
|
|
|
local ents = {}
|
|
|
|
|
|
|
|
function ents.update()
|
|
|
|
local r
|
|
|
|
for r in regions() do
|
|
|
|
if r:get_flag(0) then -- RF_CHAOTIC
|
|
|
|
if r.terrain == "plain" and r:get_resource("tree")==0 then
|
|
|
|
if math.random(3)==1 then
|
|
|
|
u = create_ents(r, math.random(30))
|
|
|
|
if u ~= nil then
|
|
|
|
r:set_resource("tree", u.number)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-08-08 09:40:42 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-07-26 22:52:25 +02:00
|
|
|
|
|
|
|
return ents
|