2012-12-21 07:21:20 -05:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "PassiveAggressiveMonster.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-12-21 07:21:20 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cWolf :
|
|
|
|
public cPassiveAggressiveMonster
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-21 07:21:20 -05:00
|
|
|
typedef cPassiveAggressiveMonster super;
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
public:
|
2012-12-22 04:39:13 -05:00
|
|
|
cWolf(void) :
|
2013-07-01 06:39:56 -04:00
|
|
|
// 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)
|
2012-12-22 04:39:13 -05:00
|
|
|
{
|
|
|
|
}
|
2012-12-21 07:21:20 -05:00
|
|
|
|
|
|
|
CLASS_PROTODEF(cWolf);
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
|