d7b2c534fd
* Split WriteMetadata into three functions for common, entity, and mob * Edited a few mob sizes to Vanilla values
27 lines
254 B
C++
27 lines
254 B
C++
|
|
#pragma once
|
|
|
|
#include "PassiveMonster.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cOcelot :
|
|
public cPassiveMonster
|
|
{
|
|
typedef cPassiveMonster super;
|
|
|
|
public:
|
|
cOcelot(void) :
|
|
super("Ocelot", 98, "mob.cat.hitt", "mob.cat.hitt", 0.6, 0.8)
|
|
{
|
|
}
|
|
|
|
CLASS_PROTODEF(cOcelot);
|
|
} ;
|
|
|
|
|
|
|
|
|