1
0
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:
Ombridride
2015-03-21 19:28:06 +01:00
parent 416a8a9110
commit d327fcb74a
20 changed files with 43 additions and 46 deletions

View File

@ -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",