1
0
Fork 0
cuberite-2a/src/Mobs/Ocelot.h

32 lines
356 B
C
Raw Normal View History

#pragma once
#include "PassiveMonster.h"
class cOcelot :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
cOcelot(void) :
2013-10-20 08:23:30 +00:00
super("Ocelot", mtOcelot, "mob.cat.hitt", "mob.cat.hitt", 0.6, 0.8)
{
}
2015-11-29 18:13:31 +00:00
virtual void GetBreedingItems(cItems & a_Items) override
{
a_Items.Add(E_ITEM_RAW_FISH);
}
CLASS_PROTODEF(cOcelot)
} ;