1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-07-04 09:00:22 +02:00

Added beginning of sarangay mob's file

- Added sarangay.lua (need mesh file, and configuration)
 - Fixed identation in api.lua
This commit is contained in:
LeMagnesium
2015-04-25 15:45:47 +02:00
parent 622ec4d9ff
commit c8a8ac6813
2 changed files with 45 additions and 5 deletions

View File

@ -16,11 +16,11 @@ function mobs:register_mob(name, def)
owner = def.owner,
order = def.order or "",
on_die = def.on_die,
jump_height = def.jump_height or 6,
jump_chance = def.jump_chance or 0,
rotate = def.rotate or 0, -- 0=front, 1.5=side, 3.0=back, 4.5=side2
lifetimer = def.lifetimer or 600,
on_die = def.on_die,
jump_height = def.jump_height or 6,
jump_chance = def.jump_chance or 0,
rotate = def.rotate or 0, -- 0=front, 1.5=side, 3.0=back, 4.5=side2
lifetimer = def.lifetimer or 600,
hp_min = def.hp_min or 5,
hp_max = def.hp_max or 10,
physical = true,