Changes to cops
This commit is contained in:
parent
71f7143eab
commit
f607a3c454
@ -1,9 +1,14 @@
|
|||||||
|
local numberOfCops = 0
|
||||||
|
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
nodenames = {"poop:grey_bricks"},
|
nodenames = {"poop:grey_bricks"},
|
||||||
interval = 10,
|
interval = 20,
|
||||||
chance = 200,
|
chance = 300,
|
||||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||||
minetest.add_entity({x = pos.x, y = pos.y + 1, z = pos.z}, "robocops:robocop")
|
if numberOfCops < 50 then
|
||||||
|
minetest.add_entity({x = pos.x, y = pos.y + 1, z = pos.z}, "robocops:robocop")
|
||||||
|
numberOfCops = numberOfCops + 1
|
||||||
|
end
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -32,8 +37,8 @@ mobs:register_mob("robocops:robocop", {
|
|||||||
makes_footstep_sound = true,
|
makes_footstep_sound = true,
|
||||||
|
|
||||||
|
|
||||||
walk_velocity = 4,
|
walk_velocity = 2,
|
||||||
run_velocity = 5,
|
run_velocity = 3,
|
||||||
jump_height = 1,
|
jump_height = 1,
|
||||||
stepheight = 0,
|
stepheight = 0,
|
||||||
floats = 0,
|
floats = 0,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user