mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-17 07:50:29 +01:00
Update greenslimes.lua
This commit is contained in:
parent
0dfc01240c
commit
df6826eaab
|
@ -68,7 +68,7 @@ mobs:register_mob("mobs:greenmedium", {
|
||||||
on_die = function(self, pos)
|
on_die = function(self, pos)
|
||||||
local num = math.random(2, 4)
|
local num = math.random(2, 4)
|
||||||
for i=1,num do
|
for i=1,num do
|
||||||
minetest.add_entity({x=pos.x + math.random(-2, 2), y=pos.y + 1, z=pos.z + (math.random(-2, 2))}, "slimes:greensmall")
|
minetest.add_entity({x=pos.x + math.random(-2, 2), y=pos.y + 1, z=pos.z + (math.random(-2, 2))}, "mobs:greensmall")
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
drawtype = "front",
|
drawtype = "front",
|
||||||
|
@ -103,7 +103,7 @@ mobs:register_mob("mobs:greenbig", {
|
||||||
on_die = function(self, pos)
|
on_die = function(self, pos)
|
||||||
local num = math.random(1, 2)
|
local num = math.random(1, 2)
|
||||||
for i=1,num do
|
for i=1,num do
|
||||||
minetest.add_entity({x=pos.x + math.random(-2, 2), y=pos.y + 1, z=pos.z + (math.random(-2, 2))}, "slimes:greenmedium")
|
minetest.add_entity({x=pos.x + math.random(-2, 2), y=pos.y + 1, z=pos.z + (math.random(-2, 2))}, "mobs:greenmedium")
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
drawtype = "front",
|
drawtype = "front",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user