diff options
| -rw-r--r-- | panda.lua | 13 | 
1 files changed, 11 insertions, 2 deletions
| @@ -28,8 +28,9 @@ stepheight = 0.6,  		random = "mobs_panda",  		attack = "mobs_panda",  	}, -	walk_velocity = 1, -	run_velocity = 2, +	walk_chance = 5, +	walk_velocity = 0.5, +	run_velocity = 1.5,  	jump = false,  	jump_height = 6,  	follow = {"ethereal:bamboo"}, @@ -45,8 +46,16 @@ stepheight = 0.6,  		speed_normal = 15,  		stand_start = 130,  		stand_end = 270, +		stand1_start = 0, +		stand1_end = 0, +		stand2_start = 1, +		stand2_end = 1, +		stand3_start = 2, +		stand3_end = 2,  		walk_start = 10,  		walk_end = 70, +		run_start = 10, +		run_end = 70,  		punch_start = 80,  		punch_end = 120,  		-- 0 = rest, 1 = hiding (covers eyes), 2 = surprised | 
