adjust spawncommand, don't drop tools since they're already in the

presents
master
tchncs 2016-10-28 07:52:47 +02:00
parent 0346f8dc92
commit c094ff7538
1 changed files with 5 additions and 6 deletions

View File

@ -60,8 +60,6 @@ mobs:register_mob("halloween_mobs:pumpkin", {
{name = "mtcandy:heart_candy", chance = 8, min = 1, max = 2},
{name = "mtcandy:emenems", chance = 8, min = 1, max = 2},
{name = "illuna:donorcoin", chance = 22, min = 1, max = 1},
{name = "default:sword_diamond", chance = 18, min = 1, max = 1},
{name = "moreores:sword_mithril", chance = 18, min = 1, max = 1},
{name = "christmas_craft:Christmas_present_orange", chance = 14, min = 1, max = 1},
{name = "christmas_craft:Christmas_present_red", chance = 14, min = 1, max = 1},
{name = "christmas_craft:Christmas_present_blue", chance = 14, min = 1, max = 1},
@ -74,12 +72,13 @@ mobs:spawn({
name = "halloween_mobs:pumpkin",
nodes = "air",
neighbors = "air",
interval = 1,
chance = 1,
interval = 300,
chance = 30000,
active_object_count = 1,
day_toggle = nil,
min_height = 0,
max_height = 60
min_height = 5,
max_height = 60,
day_toggle = false
})
mobs:register_egg("halloween_mobs:pumpkin", "Flying Pumpkin", "default_cloud.png", 1)