1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-12-25 18:20:36 +01:00

Reduced again the seed drop chance pumpboom

This commit is contained in:
Ombridride 2015-10-08 22:43:23 +02:00
parent d0c949c07a
commit 18431f2c74

View File

@ -88,7 +88,7 @@ mobs:register_mob("mobs:pumpboom", {
walk_velocity = 2, walk_velocity = 2,
run_velocity = 4, run_velocity = 4,
drops = { drops = {
{name = "farming:pumpkin_seed", chance = 4, min = 2, max = 4} {name = "farming:pumpkin_seed", chance = 8, min = 4, max = 8}
} }
}) })
@ -128,7 +128,7 @@ minetest.register_node("mobs:pumpboom_spawner", {
minetest.register_abm({ minetest.register_abm({
nodenames = {"mobs:pumpking_spawner"}, nodenames = {"mobs:pumpking_spawner"},
interval = 600.0, interval = 300.0,
chance = 1, chance = 1,
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(pos, "mobs:pumpking") minetest.add_entity(pos, "mobs:pumpking")