2021-05-08 20:42:35 +02:00
|
|
|
|
|
|
|
core.register_abm({
|
|
|
|
nodenames = {"default:dirt_with_grass", "default:stone"},
|
2017-05-13 12:35:54 +02:00
|
|
|
neighbors = {"air"},
|
|
|
|
interval = 30,
|
|
|
|
chance = 9000,
|
|
|
|
action = function(pos, node, _, active_object_count_wider)
|
|
|
|
if active_object_count_wider > 5 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
pos.y = pos.y+1
|
2021-05-08 20:42:35 +02:00
|
|
|
if not core.get_node_light(pos) then
|
2017-05-13 12:35:54 +02:00
|
|
|
return
|
|
|
|
end
|
2021-05-08 20:42:35 +02:00
|
|
|
if core.get_node_light(pos) > 5 then
|
2017-05-13 12:35:54 +02:00
|
|
|
return
|
|
|
|
end
|
2021-05-08 20:42:35 +02:00
|
|
|
if core.get_node_light(pos) < -1 then
|
2017-05-13 12:35:54 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
if pos.y > 31000 then
|
|
|
|
return
|
|
|
|
end
|
2021-05-08 20:42:35 +02:00
|
|
|
if core.get_node(pos).name ~= "air" then
|
2017-05-13 12:35:54 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
pos.y = pos.y+1
|
2021-05-08 20:42:35 +02:00
|
|
|
if core.get_node(pos).name ~= "air" then
|
2017-05-13 12:35:54 +02:00
|
|
|
return
|
|
|
|
end
|
2021-05-08 20:42:35 +02:00
|
|
|
core.add_entity(pos, "sneeker:sneeker")
|
2017-05-13 12:35:54 +02:00
|
|
|
end
|
|
|
|
})
|