summaryrefslogblamecommitdiffstats
path: root/src/Mobs/Ocelot.h
blob: 796af2050fd74007d64d3f93f4d335a3d56ce127 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                      
                                                                                   


         




                                                                
                               




   

#pragma once

#include "PassiveMonster.h"





class cOcelot :
	public cPassiveMonster
{
	typedef cPassiveMonster super;
	
public:
	cOcelot(void) :
		super("Ocelot", mtOcelot, "mob.cat.hitt", "mob.cat.hitt", 0.6, 0.8)
	{
	}

	virtual void GetBreedingItems(cItems & a_Items) override
	{
		a_Items.Add(E_ITEM_RAW_FISH);
	}

	CLASS_PROTODEF(cOcelot)
} ;