Merge pull request 'Fix slime and some nether mob speeds' (#3575) from nether_mob_speeds into master

Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/3575
This commit is contained in:
ancientmarinerdev 2023-03-26 15:46:37 +00:00
commit 08990207cf
4 changed files with 13 additions and 14 deletions

View File

@ -36,7 +36,7 @@ local hoglin = {
jump = true,
makes_footstep_sound = true,
walk_velocity = 1,
run_velocity = 4,
run_velocity = 2.8,
drops = {
{name = "mobs_mcitems:leather",
chance = 1,
@ -120,7 +120,6 @@ mcl_mobs:spawn_specific(
"nether",
"ground",
{
"Nether",
"CrimsonForest"
},
0,

View File

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

View File

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

View File

@ -205,8 +205,8 @@ local slime_big = {
attack_type = "dogfight",
passive = false,
jump = true,
walk_velocity = 2.5,
run_velocity = 2.5,
walk_velocity = 1.9,
run_velocity = 1.9,
walk_chance = 0,
jump_height = 5.2,
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.damage = 3
slime_small.reach = 2.75
slime_small.walk_velocity = 1.3
slime_small.run_velocity = 1.3
slime_small.walk_velocity = 1.8
slime_small.run_velocity = 1.8
slime_small.jump_height = 4.3
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)
@ -250,8 +250,8 @@ slime_tiny.drops = {
min = 0,
max = 2,},
}
slime_tiny.walk_velocity = 0.7
slime_tiny.run_velocity = 0.7
slime_tiny.walk_velocity = 1.7
slime_tiny.run_velocity = 1.7
slime_tiny.jump_height = 3
slime_tiny.spawn_small_alternative = nil
slime_tiny.on_die = nil
@ -404,8 +404,8 @@ local magma_cube_big = {
attack = "mobs_mc_magma_cube_attack",
distance = 16,
},
walk_velocity = 4,
run_velocity = 4,
walk_velocity = 2.5,
run_velocity = 2.5,
damage = 6,
reach = 3,
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.reach = 2.75
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.damage = 4
magma_cube_small.reach = 2.75