forked from mtcontrib/mobs_monster
add sand variation in sand monster drops, same with dirt monster
This commit is contained in:
parent
185b4d22d4
commit
a195057c8a
@ -8,7 +8,8 @@ local dirt_types = {
|
||||
{ nodes = {"ethereal:dry_dirt"},
|
||||
skins = {"mobs_dirt_monster3.png"},
|
||||
drops = {
|
||||
{name = "ethereal:dry_dirt", chance = 1, min = 0, max = 2}
|
||||
{name = "ethereal:dry_dirt", chance = 1, min = 0, max = 2},
|
||||
{name = "ethereal:charcoal_lump", chance = 2, min = 0, max = 1}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -40,7 +41,8 @@ mobs:register_mob("mobs_monster:dirt_monster", {
|
||||
run_velocity = 3,
|
||||
jump = true,
|
||||
drops = {
|
||||
{name = "default:dirt", chance = 1, min = 0, max = 2}
|
||||
{name = "default:dirt", chance = 1, min = 0, max = 2},
|
||||
{name = "default:clay_lump", chance = 2, min = 0, max = 1}
|
||||
},
|
||||
water_damage = 1,
|
||||
lava_damage = 5,
|
||||
|
@ -59,7 +59,10 @@ mobs:register_mob("mobs_monster:sand_monster", {
|
||||
jump = true,
|
||||
floats = 0,
|
||||
drops = {
|
||||
{name = "default:desert_sand", chance = 1, min = 3, max = 5}
|
||||
{name = "default:silver_sand", chance = 2, min = 1, max = 2},
|
||||
{name = "default:desert_sand", chance = 2, min = 1, max = 2},
|
||||
{name = "default:sand", chance = 2, min = 1, max = 2},
|
||||
{name = "default:clay_lump", chance = 2, min = 0, max = 1}
|
||||
},
|
||||
water_damage = 3,
|
||||
lava_damage = 4,
|
||||
|
Loading…
x
Reference in New Issue
Block a user