Adjust health and drops of mobs

This commit is contained in:
Wuzzy 2017-01-16 20:52:09 +01:00
parent 4af543d920
commit c5aa2e612c
14 changed files with 92 additions and 192 deletions

View file

@ -11,8 +11,8 @@
mobs:register_mob("mobs_mc:dog", {
type = "npc",
passive = true,
hp_min = 55,
hp_max = 75,
hp_min = 6,
hp_max = 6,
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4},
visual = "mesh",
mesh = "mobs_wolf.x",
@ -31,17 +31,12 @@ mobs:register_mob("mobs_mc:dog", {
walk_velocity = 4,
run_velocity = 4,
stepheight = 1.1,
damage = 3,
damage = 4,
group_attack = true,
armor = 100,
attacks_monsters = true,
attack_type = "dogfight",
drops = {
{name = "mcl_mobitems:meat_raw",
chance = 1,
min = 2,
max = 3,},
},
drops = {},
drawtype = "front",
water_damage = 0,
lava_damage = 5,
@ -120,8 +115,8 @@ mobs:register_mob("mobs_mc:dog", {
-- Wolf by KrupnoPavel
mobs:register_mob("mobs_mc:wolf", {
type = "animal",
hp_min = 55,
hp_max = 75,
hp_min = 8,
hp_max = 8,
passive = false,
group_attack = true,
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4},
@ -138,15 +133,10 @@ mobs:register_mob("mobs_mc:wolf", {
walk_velocity = 2,
run_velocity = 3,
stepheight = 1.1,
damage = 3,
armor = 200,
damage = 4,
armor = 100,
attack_type = "dogfight",
drops = {
{name = "mcl_mobitems:meat_raw",
chance = 1,
min = 2,
max = 3,},
},
drops = {},
drawtype = "front",
water_damage = 0,
lava_damage = 5,