summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Ocelot.h
blob: a352e5854bbae67a5affbb8de373c68fa7571b4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

#pragma once

#include "PassiveMonster.h"





class cOcelot :
	public cPassiveMonster
{
	typedef cPassiveMonster super;

public:
	cOcelot(void) :
		super("Ocelot", mtOcelot, "entity.cat.hurt", "entity.cat.death", 0.6, 0.8)
	{
	}

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

	CLASS_PROTODEF(cOcelot)
} ;