1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-22 20:50:17 +02:00

Reduce a little the speed and armor of sandmonster

+1 damage to sandmosnter with all weapons (hand also)
This commit is contained in:
Ombridride 2015-06-08 17:57:59 +02:00
parent e4bbe52feb
commit fc11c92a9f

View File

@ -11,7 +11,7 @@ mobs:register_mob("mobs:sand_monster", {
-- health & armor -- health & armor
hp_min = 15, hp_min = 15,
hp_max = 20, hp_max = 20,
armor = 90, armor = 100,
-- textures and model -- textures and model
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4},
visual = "mesh", visual = "mesh",
@ -27,8 +27,8 @@ mobs:register_mob("mobs:sand_monster", {
random = "mobs_sandmonster", random = "mobs_sandmonster",
}, },
-- speed and jump, sinks in water -- speed and jump, sinks in water
walk_velocity = 3, walk_velocity = 2.5,
run_velocity = 5, run_velocity = 4.5,
view_range = 16, view_range = 16,
jump = true, jump = true,
floats = 0, floats = 0,