mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-12-25 10:45:27 +01:00
Decrease the mobs power
Passive mobs : Decrease health/armor/damage/run&walk speed Agresive mobs : Decrease health/armor/damage/run&walk speed
This commit is contained in:
@@ -25,7 +25,7 @@ mobs:register_mob("mobs:greensmall", {
|
||||
attacks_monsters = true,
|
||||
-- health and armor
|
||||
hp_min = 4, hp_max = 8,
|
||||
armor = 100,
|
||||
armor = 200,
|
||||
-- textures and model
|
||||
collisionbox = {-0.25, -0.25, -0.25, 0.25, 0.25, 0.25},
|
||||
visual = "cube",
|
||||
@@ -65,12 +65,12 @@ mobs:register_mob("mobs:greenmedium", {
|
||||
-- aggressive, deals 4 damage to player when hit
|
||||
passive = false,
|
||||
reach = 2,
|
||||
damage = 4,
|
||||
damage = 3,
|
||||
attack_type = "dogfight",
|
||||
attacks_monsters = true,
|
||||
-- health and armor
|
||||
hp_min = 16, hp_max = 32,
|
||||
armor = 90,
|
||||
hp_min = 15, hp_max = 25,
|
||||
armor = 100,
|
||||
-- textures and model
|
||||
collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
||||
visual = "cube",
|
||||
@@ -115,12 +115,12 @@ mobs:register_mob("mobs:greenbig", {
|
||||
-- aggressive, deals 6 damage to player when hit
|
||||
passive = false,
|
||||
reach = 2,
|
||||
damage = 6,
|
||||
damage = 5,
|
||||
attack_type = "dogfight",
|
||||
attacks_monsters = true,
|
||||
-- health and armor
|
||||
hp_min = 32, hp_max = 64,
|
||||
armor = 90,
|
||||
hp_min = 30, hp_max = 50,
|
||||
armor = 100,
|
||||
-- textures and model
|
||||
collisionbox = {-1, -1, -1, 1, 1, 1},
|
||||
visual = "cube",
|
||||
|
||||
Reference in New Issue
Block a user