Tweak height fear of all mobs

This commit is contained in:
Wuzzy 2019-03-09 00:54:49 +01:00
parent a5b20b1bf0
commit 7899f6d432
5 changed files with 4 additions and 6 deletions

View File

@ -65,7 +65,7 @@ mobs:register_mob("mobs_mc:blaze", {
jump_height = 4,
fly = true,
jump_chance = 98,
fear_height = 120,
fear_height = 0,
blood_amount = 0,
glow = 14,
})

View File

@ -63,7 +63,6 @@ mobs:register_mob("mobs_mc:enderdragon", {
jump_height = 14,
stepheight = 1.2,
jump_chance = 100,
fear_height = 120,
fly = true,
fly_in = {"air"},
dogshoot_switch = 1,

View File

@ -73,7 +73,6 @@ mobs:register_mob("mobs_mc:ghast", {
fly = true,
fly_in = {"air"},
jump_chance = 98,
fear_height = 120,
blood_amount = 0,
})

View File

@ -107,7 +107,7 @@ local slime_big = {
walk_chance = 0,
jump_height = 5.2,
jump_chance = 100,
fear_height = 60,
fear_height = 0,
spawn_small_alternative = "mobs_mc:slime_small",
on_die = spawn_children_on_die("mobs_mc:slime_small", 4, 1.0, 1.5)
}
@ -213,7 +213,7 @@ local magma_cube_big = {
jump_height = 8,
walk_chance = 0,
jump_chance = 100,
fear_height = 100000,
fear_height = 0,
spawn_small_alternative = "mobs_mc:magma_cube_small",
on_die = spawn_children_on_die("mobs_mc:magma_cube_small", 3, 0.8, 1.5)
}

View File

@ -75,7 +75,7 @@ mobs:register_mob("mobs_mc:villager_zombie", {
lava_damage = 5,
sunlight_damage = 1,
view_range = 16,
fear_height = 5,
fear_height = 4,
})