1
0
mirror of https://codeberg.org/tenplus1/mobs_monster.git synced 2025-07-08 03:10:22 +02:00

tweaked tool damage for sand, stone and tree monsters

This commit is contained in:
TenPlus1
2019-02-11 09:27:22 +00:00
parent eeb6a8e138
commit 86e5f4ed09
3 changed files with 27 additions and 5 deletions

View File

@ -51,6 +51,14 @@ mobs:register_mob("mobs_monster:stone_monster", {
punch_start = 40,
punch_end = 63,
},
immune_to = {
{"default:pick_wood", 0}, -- wooden pick doesnt hurt stone monster
{"default:pick_stone", 4}, -- picks deal more damage to stone monster
{"default:pick_bronze", 5},
{"default:pick_steel", 5},
{"default:pick_mese", 6},
{"default:pick_diamond", 7},
},
})