Fix slime and some nether mob speeds

This commit is contained in:
ancientmarinerdev 2023-03-21 21:47:20 +00:00 committed by Gitea
parent 9887958e4e
commit b7079e8b19
4 changed files with 13 additions and 13 deletions

View File

@ -36,7 +36,7 @@ local hoglin = {
jump = true, jump = true,
makes_footstep_sound = true, makes_footstep_sound = true,
walk_velocity = 1, walk_velocity = 1,
run_velocity = 4, run_velocity = 3.2,
drops = { drops = {
{name = "mobs_mcitems:leather", {name = "mobs_mcitems:leather",
chance = 1, chance = 1,

View File

@ -62,8 +62,8 @@ local piglin = {
}, },
jump = true, jump = true,
makes_footstep_sound = true, makes_footstep_sound = true,
walk_velocity = 4.317, walk_velocity = 2,
run_velocity = 5.6121, run_velocity = 4,
drops = { drops = {
{name = "mcl_bows:crossbow", {name = "mcl_bows:crossbow",
chance = 10, chance = 10,

View File

@ -43,7 +43,7 @@ mcl_mobs.register_mob("mobs_mc:witherskeleton", {
distance = 16, distance = 16,
}, },
walk_velocity = 1.2, walk_velocity = 1.2,
run_velocity = 2.4, run_velocity = 2.0,
damage = 7, damage = 7,
reach = 2, reach = 2,
drops = { drops = {

View File

@ -205,8 +205,8 @@ local slime_big = {
attack_type = "dogfight", attack_type = "dogfight",
passive = false, passive = false,
jump = true, jump = true,
walk_velocity = 2.5, walk_velocity = 1.9,
run_velocity = 2.5, run_velocity = 1.9,
walk_chance = 0, walk_chance = 0,
jump_height = 5.2, jump_height = 5.2,
fear_height = 0, fear_height = 0,
@ -226,8 +226,8 @@ slime_small.collisionbox = {-0.51, -0.01, -0.51, 0.51, 1.00, 0.51}
slime_small.visual_size = {x=6.25, y=6.25} slime_small.visual_size = {x=6.25, y=6.25}
slime_small.damage = 3 slime_small.damage = 3
slime_small.reach = 2.75 slime_small.reach = 2.75
slime_small.walk_velocity = 1.3 slime_small.walk_velocity = 1.8
slime_small.run_velocity = 1.3 slime_small.run_velocity = 1.8
slime_small.jump_height = 4.3 slime_small.jump_height = 4.3
slime_small.spawn_small_alternative = "mobs_mc:slime_tiny" slime_small.spawn_small_alternative = "mobs_mc:slime_tiny"
slime_small.on_die = spawn_children_on_die("mobs_mc:slime_tiny", 0.6, 1.0) slime_small.on_die = spawn_children_on_die("mobs_mc:slime_tiny", 0.6, 1.0)
@ -250,8 +250,8 @@ slime_tiny.drops = {
min = 0, min = 0,
max = 2,}, max = 2,},
} }
slime_tiny.walk_velocity = 0.7 slime_tiny.walk_velocity = 1.7
slime_tiny.run_velocity = 0.7 slime_tiny.run_velocity = 1.7
slime_tiny.jump_height = 3 slime_tiny.jump_height = 3
slime_tiny.spawn_small_alternative = nil slime_tiny.spawn_small_alternative = nil
slime_tiny.on_die = nil slime_tiny.on_die = nil
@ -404,8 +404,8 @@ local magma_cube_big = {
attack = "mobs_mc_magma_cube_attack", attack = "mobs_mc_magma_cube_attack",
distance = 16, distance = 16,
}, },
walk_velocity = 4, walk_velocity = 2.5,
run_velocity = 4, run_velocity = 2.5,
damage = 6, damage = 6,
reach = 3, reach = 3,
armor = 53, armor = 53,
@ -457,7 +457,7 @@ magma_cube_small.visual_size = {x=6.25, y=6.25}
magma_cube_small.damage = 3 magma_cube_small.damage = 3
magma_cube_small.reach = 2.75 magma_cube_small.reach = 2.75
magma_cube_small.walk_velocity = .8 magma_cube_small.walk_velocity = .8
magma_cube_small.run_velocity = 2.6 magma_cube_small.run_velocity = 2.0
magma_cube_small.jump_height = 6 magma_cube_small.jump_height = 6
magma_cube_small.damage = 4 magma_cube_small.damage = 4
magma_cube_small.reach = 2.75 magma_cube_small.reach = 2.75