From fc11c92a9f343ca77f7ad23bd891dc678e0aecae Mon Sep 17 00:00:00 2001 From: Ombridride Date: Mon, 8 Jun 2015 17:57:59 +0200 Subject: [PATCH] Reduce a little the speed and armor of sandmonster +1 damage to sandmosnter with all weapons (hand also) --- mods/mobs/sandmonster.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/mobs/sandmonster.lua b/mods/mobs/sandmonster.lua index 0ffa8647..b34eb861 100755 --- a/mods/mobs/sandmonster.lua +++ b/mods/mobs/sandmonster.lua @@ -11,7 +11,7 @@ mobs:register_mob("mobs:sand_monster", { -- health & armor hp_min = 15, hp_max = 20, - armor = 90, + armor = 100, -- textures and model collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, visual = "mesh", @@ -27,8 +27,8 @@ mobs:register_mob("mobs:sand_monster", { random = "mobs_sandmonster", }, -- speed and jump, sinks in water - walk_velocity = 3, - run_velocity = 5, + walk_velocity = 2.5, + run_velocity = 4.5, view_range = 16, jump = true, floats = 0,