forked from TechDudie/mc
Add abm.lua with Sweet Berry Bushes
This commit is contained in:
parent
33494e4282
commit
299df834a7
|
@ -0,0 +1,18 @@
|
|||
minetest.register_abm({
|
||||
nodenames = {"mc:sweet_berry_bush_0"},
|
||||
interval = 10.0,
|
||||
chance = 16,
|
||||
action = function(pos, node, active_object_count, active_object_count_wider) minetest.set_node(pos, {name = "mc:sweet_berry_bush_1"}) end
|
||||
})
|
||||
minetest.register_abm({
|
||||
nodenames = {"mc:sweet_berry_bush_1"},
|
||||
interval = 10.0,
|
||||
chance = 16,
|
||||
action = function(pos, node, active_object_count, active_object_count_wider) minetest.set_node(pos, {name = "mc:sweet_berry_bush_2"}) end
|
||||
})
|
||||
minetest.register_abm({
|
||||
nodenames = {"mc:sweet_berry_bush_2"},
|
||||
interval = 10.0,
|
||||
chance = 16,
|
||||
action = function(pos, node, active_object_count, active_object_count_wider) minetest.set_node(pos, {name = "mc:sweet_berry_bush_3"}) end
|
||||
})
|
Loading…
Reference in New Issue