animals/species/rat.lua

25 lines
447 B
Lua
Raw Normal View History

2014-11-02 08:48:27 +00:00
local dbg
if moddebug then dbg=moddebug.dbg("animals") else dbg={v1=function() end,v2=function() end,v3=function() end} end
animals.species["rat"] = {
shortdesc = "Rat",
mesh = "animals_rat.b3d",
textures = {"animals_rat.png"},
collisionbox = {-0.35,0,-0.35, 0.35,0.35,0.35},
yoffset = 0.1,
on_activate = function(ent)
end,
on_act = function(ent)
end,
on_hit = function(ent, playername)
end,
}