add sand variation in sand monster drops, same with dirt monster

This commit is contained in:
tenplus1 2025-03-20 14:08:28 +00:00
parent 185b4d22d4
commit a195057c8a
2 changed files with 8 additions and 3 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}
}
}
}
@ -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,

View File

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