Compare commits

..

2 Commits

Author SHA1 Message Date
ad2237d791 Merge remote-tracking branch 'upstream/master' 2025-03-21 13:15:06 +01:00
tenplus1
a195057c8a add sand variation in sand monster drops, same with dirt monster 2025-03-20 14:08:28 +00:00
2 changed files with 7 additions and 2 deletions

View File

@@ -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,

View File

@@ -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,