summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Wolf.h
blob: 405df80a6a4b1532b9fab30dd87975d5e895880e (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

#pragma once

#include "PassiveAggressiveMonster.h"





class cWolf :
	public cPassiveAggressiveMonster
{
	typedef cPassiveAggressiveMonster super;
	
public:
	cWolf(void) :
		// TODO: The size is only a guesstimate, measure in vanilla and fix the size values here (wiki.vg values are suspicious)
		super("Wolf", 95, "mob.wolf.hurt", "mob.wolf.death", 0.9, 0.9)
	{
	}

	CLASS_PROTODEF(cWolf);
} ;