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

Merge branch 'master' into nalc-1.2

This commit is contained in:
2019-05-10 00:58:32 +02:00
6 changed files with 114 additions and 6 deletions

View File

@ -53,6 +53,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},
},
})