From 1b4b905f75c984c3bd9bc9dc553dbc86a8c5276e Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Fri, 19 Oct 2012 18:30:46 +0000 Subject: Added spawn eggs with mobs (patch committed by Luksor) git-svn-id: http://mc-server.googlecode.com/svn/trunk@979 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Mobs/Ocelot.cpp | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 source/Mobs/Ocelot.cpp (limited to 'source/Mobs/Ocelot.cpp') diff --git a/source/Mobs/Ocelot.cpp b/source/Mobs/Ocelot.cpp new file mode 100644 index 000000000..ec50a9656 --- /dev/null +++ b/source/Mobs/Ocelot.cpp @@ -0,0 +1,45 @@ + +#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules + +#include "Ocelot.h" + + + + + +cOcelot::cOcelot() +{ + m_MobType = 98; + GetMonsterConfig("Ocelot"); +} + + + + + +cOcelot::~cOcelot() +{ +} + + + + + +bool cOcelot::IsA( const char* a_EntityType ) +{ + if( strcmp( a_EntityType, "cOcelot" ) == 0 ) return true; + return cMonster::IsA( a_EntityType ); +} + + + + + +void cOcelot::KilledBy( cEntity* a_Killer ) +{ + cMonster::KilledBy( a_Killer ); +} + + + + -- cgit v1.2.3