1 /* NetHack 3.6 monsym.h $NHDT-Date: 1432512780 2015/05/25 00:13:00 $ $NHDT-Branch: master $:$NHDT-Revision: 1.9 $ */
2 /* Monster symbols and creation information rev 1.0 */
3 /* NetHack may be freely redistributed. See license for details. */
9 * Monster classes. Below, are the corresponding default characters for
10 * them. Monster class 0 is not used or defined so we can use it as a
13 /* clang-format off */
16 #define S_COCKATRICE 3
25 #define S_LEPRECHAUN 12
30 #define S_QUADRUPED 17
44 #define S_ELEMENTAL 31
48 #define S_invisible 35 /* non-class present in def_monsyms[] */
49 #define S_JABBERWOCK 36
56 #define S_QUANTMECH 43
57 #define S_RUSTMONST 44
73 #define S_WORM_TAIL 59
74 #define S_MIMIC_DEF 60
77 #define MAXMCLASSES 61 /* number of monster classes */
80 * Default characters for monsters. These correspond to the monster classes
83 /* clang-format off */
86 #define DEF_COCKATRICE 'c'
89 #define DEF_FELINE 'f'
90 #define DEF_GREMLIN 'g'
91 #define DEF_HUMANOID 'h'
94 #define DEF_KOBOLD 'k'
95 #define DEF_LEPRECHAUN 'l'
99 #define DEF_PIERCER 'p'
100 #define DEF_QUADRUPED 'q'
101 #define DEF_RODENT 'r'
102 #define DEF_SPIDER 's'
103 #define DEF_TRAPPER 't'
104 #define DEF_UNICORN 'u'
105 #define DEF_VORTEX 'v'
108 #define DEF_LIGHT 'y'
109 #define DEF_ZRUTY 'z'
110 #define DEF_ANGEL 'A'
112 #define DEF_CENTAUR 'C'
113 #define DEF_DRAGON 'D'
114 #define DEF_ELEMENTAL 'E'
115 #define DEF_FUNGUS 'F'
116 #define DEF_GNOME 'G'
117 #define DEF_GIANT 'H'
118 #define DEF_JABBERWOCK 'J'
121 #define DEF_MUMMY 'M'
124 #define DEF_PUDDING 'P'
125 #define DEF_QUANTMECH 'Q'
126 #define DEF_RUSTMONST 'R'
127 #define DEF_SNAKE 'S'
128 #define DEF_TROLL 'T'
129 #define DEF_UMBER 'U'
130 #define DEF_VAMPIRE 'V'
131 #define DEF_WRAITH 'W'
134 #define DEF_ZOMBIE 'Z'
135 #define DEF_HUMAN '@'
136 #define DEF_GHOST ' '
137 #define DEF_GOLEM '\''
138 #define DEF_DEMON '&'
140 #define DEF_LIZARD ':'
142 #define DEF_INVISIBLE 'I'
143 #define DEF_WORM_TAIL '~'
144 #define DEF_MIMIC_DEF ']'
145 /* clang-format on */
147 #endif /* MONSYM_H */