mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-07-07 02:20:21 +02:00
tweak the mobs mod
- Remove the jump step (useless now) - Some health adjustments - Some damage adjustments - Add blood textures for some mobs (spider/red, creeper/green) - Begin the cleaning and organisation code for the wolfs and creepers mobs
This commit is contained in:
@ -1,4 +1,3 @@
|
||||
|
||||
-- Chicken by JK Murray
|
||||
|
||||
mobs:register_mob("mobs:chicken", {
|
||||
@ -7,7 +6,7 @@ mobs:register_mob("mobs:chicken", {
|
||||
-- is it aggressive
|
||||
passive = true,
|
||||
-- health & armor
|
||||
hp_min = 5, hp_max = 10, armor = 200,
|
||||
hp_min = 4, hp_max = 8, armor = 200,
|
||||
-- textures and model
|
||||
collisionbox = {-0.3, -0.75, -0.3, 0.3, 0.1, 0.3},
|
||||
visual = "mesh",
|
||||
@ -35,7 +34,6 @@ mobs:register_mob("mobs:chicken", {
|
||||
-- speed and jump
|
||||
walk_velocity = 1,
|
||||
jump = true,
|
||||
step = 1,
|
||||
-- drops raw chicken when dead
|
||||
drops = {
|
||||
{name = "mobs:chicken_raw",
|
||||
|
Reference in New Issue
Block a user