1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-28 15:30:33 +02:00

Decrease the HP/damage/speed of the Minotaur

This commit is contained in:
Ombridride 2015-10-08 12:04:19 +02:00
parent e7dba9c4b0
commit 662d50c697

View File

@ -7,10 +7,10 @@ mobs:register_mob("mobs:minotaur", {
-- aggressive, deals 11 damage to player when hit -- aggressive, deals 11 damage to player when hit
passive = false, passive = false,
attack_type = "dogfight", attack_type = "dogfight",
damage = 8, damage = 7,
-- health & armor -- health & armor
hp_min = 80, hp_min = 60,
hp_max = 100, hp_max = 70,
armor = 90, armor = 90,
-- textures and model -- textures and model
collisionbox = {-0.9,-0.01,-0.9, 0.9,2.5,0.9}, collisionbox = {-0.9,-0.01,-0.9, 0.9,2.5,0.9},
@ -30,8 +30,8 @@ mobs:register_mob("mobs:minotaur", {
-- death = "mobs_zombie_death", -- death = "mobs_zombie_death",
-- }, -- },
-- speed and jump -- speed and jump
walk_velocity = 3, walk_velocity = 2.5,
run_velocity = 4, run_velocity = 3.5,
jump = true, jump = true,
floats = 1, floats = 1,
view_range = 16, view_range = 16,