forked from mtcontrib/mobs_monster
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
ad2237d791
@ -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}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -42,6 +43,7 @@ mobs:register_mob("mobs_monster:dirt_monster", {
|
||||
drops = {
|
||||
{name = "default:dirt", chance = 1, min = 0, max = 2},
|
||||
{name = "maptools:silver_coin", chance = 2, min = 1, max = 1,},
|
||||
{name = "default:clay_lump", chance = 2, min = 0, max = 1}
|
||||
},
|
||||
water_damage = 1,
|
||||
lava_damage = 5,
|
||||
|
@ -59,8 +59,11 @@ mobs:register_mob("mobs_monster:sand_monster", {
|
||||
jump = true,
|
||||
floats = 0,
|
||||
drops = {
|
||||
{name = "default:desert_sand", chance = 1, min = 3, max = 5},
|
||||
{name = "maptools:silver_coin", chance = 10, min = 1, max = 1,},
|
||||
{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