forked from VoxeLibre/VoxeLibre
Make mobs run away slightly faster
This commit is contained in:
parent
3560bda4a5
commit
8dafac50a8
|
@ -29,6 +29,7 @@ mobs:register_mob("mobs_mc:chicken", {
|
||||||
rotate = 270,
|
rotate = 270,
|
||||||
makes_footstep_sound = true,
|
makes_footstep_sound = true,
|
||||||
walk_velocity = 1,
|
walk_velocity = 1,
|
||||||
|
run_velocity = 3,
|
||||||
drops = {
|
drops = {
|
||||||
{name = mobs_mc.items.chicken_raw,
|
{name = mobs_mc.items.chicken_raw,
|
||||||
chance = 1,
|
chance = 1,
|
||||||
|
|
|
@ -20,6 +20,7 @@ local cow_def = {
|
||||||
visual_size = {x=2.8, y=2.8},
|
visual_size = {x=2.8, y=2.8},
|
||||||
makes_footstep_sound = true,
|
makes_footstep_sound = true,
|
||||||
walk_velocity = 1,
|
walk_velocity = 1,
|
||||||
|
run_velocity = 3,
|
||||||
drops = {
|
drops = {
|
||||||
{name = mobs_mc.items.beef_raw,
|
{name = mobs_mc.items.beef_raw,
|
||||||
chance = 1,
|
chance = 1,
|
||||||
|
|
|
@ -44,7 +44,7 @@ local ocelot = {
|
||||||
makes_footstep_sound = true,
|
makes_footstep_sound = true,
|
||||||
walk_chance = default_walk_chance,
|
walk_chance = default_walk_chance,
|
||||||
walk_velocity = 1,
|
walk_velocity = 1,
|
||||||
run_velocity = 3,
|
run_velocity = 10,
|
||||||
follow_velocity = 1,
|
follow_velocity = 1,
|
||||||
floats = 1,
|
floats = 1,
|
||||||
runaway = true,
|
runaway = true,
|
||||||
|
@ -58,7 +58,7 @@ local ocelot = {
|
||||||
},
|
},
|
||||||
animation = {
|
animation = {
|
||||||
speed_normal = 25,
|
speed_normal = 25,
|
||||||
run_speed = 50,
|
run_speed = 150,
|
||||||
stand_start = 0,
|
stand_start = 0,
|
||||||
stand_end = 0,
|
stand_end = 0,
|
||||||
walk_start = 0,
|
walk_start = 0,
|
||||||
|
|
|
@ -73,6 +73,7 @@ mobs:register_mob("mobs_mc:sheep", {
|
||||||
color = "unicolor_white",
|
color = "unicolor_white",
|
||||||
makes_footstep_sound = true,
|
makes_footstep_sound = true,
|
||||||
walk_velocity = 1,
|
walk_velocity = 1,
|
||||||
|
run_velocity = 3,
|
||||||
drops = {
|
drops = {
|
||||||
{name = mobs_mc.items.mutton_raw,
|
{name = mobs_mc.items.mutton_raw,
|
||||||
chance = 1,
|
chance = 1,
|
||||||
|
|
Loading…
Reference in New Issue