summaryrefslogtreecommitdiffstats
path: root/src/Mobs/MonsterTypes.h
blob: 6aaa61dc68fd0009ef6e118690a8205967792a18 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47

#pragma once





// tolua_begin
/** Identifies individual monster type. */
enum eMonsterType
{
	mtInvalidType = -1,

	mtBat,
	mtBlaze,
	mtCaveSpider,
	mtChicken,
	mtCow,
	mtCreeper,
	mtEnderDragon,
	mtEnderman,
	mtGhast,
	mtGiant,
	mtGuardian,
	mtHorse,
	mtIronGolem,
	mtMagmaCube,
	mtMooshroom,
	mtOcelot,
	mtPig,
	mtRabbit,
	mtSheep,
	mtSilverfish,
	mtSkeleton,
	mtSlime,
	mtSnowGolem,
	mtSpider,
	mtSquid,
	mtVillager,
	mtWitch,
	mtWither,
	mtWolf,
	mtZombie,
	mtZombiePigman,
} ;

// tolua_end