Angband 3.0.9b.
[angband.git] / lib / edit / monster.txt
blob39aa3caa8fe75a7f1a077951a87705ab00d9ee8d
1 # File: monster.txt
4 # This file is used to initialize the "lib/data/monster.raw" file, which is
5 # used to initialize the "monster race" information for the Angband game.
7 # Do not modify this file unless you know exactly what you are doing,
8 # unless you wish to risk possible system crashes and broken savefiles.
9 # After modifying this file, delete the "lib/data/monster.raw" file.
11 # === Understanding monster.txt ===
13 # N: serial number : monster name
14 # G: symbol : color
15 # I: speed : hit points : vision : armor class : alertness
16 # W: depth : rarity : unused (always 0) : experience for kill
17 # B: attack method : attack effect : damage
18 # S: spell frequency |
19 # S: spell type | spell type | etc
20 # F: flag | flag | etc
21 # D: Description
23 # 'N' indicates the beginning of an entry. The serial number must
24 # increase for each new item. Entry 0 is used for the player.
26 # 'G' is for graphics - symbol and color. There are 16 colors, as
27 # follows:
29 # D - Dark Gray    w - White          s - Gray          o - Orange
30 # r - Red          g - Green          b - Blue          u - Brown
31 # d - Black        W - Light Gray     v - Violet        y - Yellow
32 # R - Light Red    G - Light Green    B - Light Blue    U - Light Brown
34 # (note that "black" is the same color as the screen background, and
35 # thus the monster will appear to be an empty black space if its
36 # color is "d".)
38 # 'I' is for information - speed, health, vision in tens of feet,
39 # armor class, and alertness. 110 is normal speed. Alertness ranges
40 # from 0 (ever vigilant for intruders) to 255 (prefers to ignore
41 # intruders).
43 # 'W' is for more information - level, rarity, and experience for
44 # killing. The third slot is currently unused.
46 # 'B' is for blows - method of attack, effect of attack, and damage
47 # from attack. There may be up to four of these lines; effect and
48 # damage are optional.
50 # 'S' is for spells. The first S: line must be S:1_IN_X with X the
51 # number of monster turns, on average, before the monster will cast
52 # one of its spells. X must not be zero. If X is 1, the monster will
53 # never move while the player is in sight, and will thus never attack
54 # in melee, as it will cast spells every turn: if the monster is to use
55 # a melee attack, then X must be 2 or greater.
57 # 'F' is for flags. These are fairly self-explanatory. As many F:
58 # lines may be used as are needed to specify all the flags and flags
59 # are separated by the '|' symbol.
61 # 'D' is for description. As many D: lines may be used as are needed
62 # to describe the monster.
64 # === Understanding monster.txt flags ===
66 # UNIQUE monsters are just "special" monster races, with the requirement
67 # that only one monster of that race can exist at a time, and when it is
68 # killed, it can never again be generated.
70 # ATTR_CLEAR monsters appear the same color as the floor, terrain feature or
71 # object underneath them.
73 # ATTR_MULTI monsters are "multi-hued" - they change color, every player turn.
75 # CHAR_CLEAR monsters are totally invisible: the symbol shown on the screen
76 # is the same as the floor (or other terrain feature) below it, or the item
77 # that is lying on that floor. These monsters can currently be targetted as
78 # normal monsters: perhaps this can be changed so that the player must KNOW
79 # the monster is there (by bumping into it, or having the monster wake up
80 # and attack the player?)
82 # CHAR_MULTI monsters are those which look like objects, and use the symbols
83 # of objects. They are in plain sight, but the character should not know that
84 # a monster is there. At the moment, such monsters can be targetted normally
85 # (which means that this flag currently has no effect), but this may change
86 # in the future, as with CHAR_CLEAR monsters.
88 # (Note that currently both CHAR_CLEAR and CHAR_MULTI monsters are treated
89 # as normal monsters that are just a little hard to see... if you "l"ook
90 # for them, you will find them unless they are invisible and you cannot
91 # see invisible, and if you use the * command for targetting mode you
92 # can pick them as a target.)
94 # ToDo: Explain the other monster and spell flags.  But maybe in another file.
97 # Version stamp (required)
99 V:3.0.10
102 ##### Non-race (contains the "player" picture) #####
104 N:0:<player>
105 G:@:w
108 ##### Town monsters #####
110 N:1:Filthy street urchin
111 G:t:D
112 I:110:1d4:4:1:40
113 W:0:2:0:0
114 B:BEG
115 B:TOUCH:EAT_GOLD
116 F:MALE
117 F:RAND_25 | FRIENDS
118 F:TAKE_ITEM | OPEN_DOOR
119 D:He looks squalid and thoroughly revolting.
121 N:2:Scrawny cat
122 G:f:U
123 I:110:1d2:30:1:10
124 W:0:3:0:0
125 B:CLAW:HURT:1d1
126 F:RAND_25
127 F:ANIMAL
128 D:A skinny little furball with sharp claws and a menacing look.
130 N:3:Scruffy little dog
131 G:C:U
132 I:110:1d3:20:1:5
133 W:0:3:0:0
134 B:BITE:HURT:1d1
135 F:RAND_25
136 F:ANIMAL
137 D:A thin flea-ridden mutt, growling as you get close.
139 N:4:Farmer Maggot
140 G:h:w
141 I:110:35d10:40:10:3
142 W:0:4:0:0
143 B:MOAN
144 B:MOAN
145 F:UNIQUE | MALE
146 F:FORCE_MAXHP
147 F:ONLY_ITEM | DROP_90 | DROP_GOOD
148 F:OPEN_DOOR | BASH_DOOR
149 F:NO_CONF | NO_SLEEP
150 D:He's lost his dogs.  He's had his mushrooms stolen.  He's not a happy
151 D: hobbit!
153 N:5:Blubbering idiot
154 G:t:W
155 I:110:1d2:6:1:0
156 W:0:1:0:0
157 B:DROOL
158 F:MALE
159 F:RAND_25
160 F:TAKE_ITEM
161 D:He tends to blubber a lot.
163 N:6:Boil-covered wretch
164 G:t:g
165 I:110:1d2:6:1:0
166 W:0:1:0:0
167 B:DROOL
168 F:MALE
169 F:RAND_25
170 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
171 D:Ugly doesn't begin to describe him.
173 N:7:Village idiot
174 G:t:G
175 I:120:4d4:6:1:0
176 W:0:1:0:0
177 B:DROOL
178 F:MALE
179 F:RAND_25
180 F:TAKE_ITEM
181 D:Drooling and comical, but then, what do you expect?
183 N:8:Pitiful-looking beggar
184 G:t:U
185 I:110:1d4:10:1:40
186 W:0:1:0:0
187 B:BEG
188 F:MALE
189 F:RAND_25
190 F:TAKE_ITEM | OPEN_DOOR
191 D:You just can't help feeling sorry for him.
193 N:9:Mangy-looking leper
194 G:t:u
195 I:110:1d1:10:1:50
196 W:0:1:0:0
197 B:BEG
198 F:MALE
199 F:RAND_25
200 F:TAKE_ITEM | OPEN_DOOR
201 D:You feel it isn't safe to touch him.
203 N:10:Squint-eyed rogue
204 G:t:b
205 I:110:2d8:10:8:99
206 W:0:1:0:0
207 B:HIT:HURT:1d6
208 B:TOUCH:EAT_ITEM
209 B:INSULT
210 F:MALE
211 F:DROP_60
212 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
213 F:EVIL
214 D:A hardy, street-wise crook that knows an easy catch when it sees one.
216 N:11:Singing, happy drunk
217 G:t:y
218 I:110:2d3:10:1:0
219 W:0:1:0:0
220 B:BEG
221 F:MALE
222 F:RAND_50
223 F:ONLY_GOLD | DROP_60
224 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
225 D:He makes you glad to be sober.
227 N:12:Aimless-looking merchant
228 G:t:o
229 I:110:3d3:10:1:255
230 W:0:1:0:0
231 B:HIT:HURT:1d3
232 F:MALE
233 F:RAND_50
234 F:ONLY_GOLD | DROP_60
235 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
236 D:The typical ponce around town, with purse jingling, and looking for more
237 D: amulets of adornment to buy.
239 N:13:Mean-looking mercenary
240 G:t:r
241 I:110:5d8:10:20:250
242 W:0:1:0:0
243 B:HIT:HURT:1d10
244 F:MALE
245 F:RAND_50 | DROP_90
246 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
247 F:EVIL
248 D:No job is too low for him.
250 N:14:Battle-scarred veteran
251 G:t:B
252 I:110:7d8:10:30:250
253 W:0:1:0:0
254 B:HIT:HURT:2d6
255 F:MALE
256 F:RAND_50 | DROP_90
257 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
258 D:He doesn't take to strangers kindly.
261 ##### Normal monsters #####
263 N:15:Grey mold
264 G:m:s
265 I:110:1d2:2:1:0
266 W:1:1:0:3
267 B:SPORE:HURT:1d4
268 B:SPORE:HURT:1d4
269 F:NEVER_MOVE
270 F:STUPID | EMPTY_MIND
271 F:IM_POIS
272 F:NO_CONF | NO_SLEEP | NO_FEAR
273 D:A small strange grey growth.
275 N:16:Grey mushroom patch
276 G:,:s
277 I:110:1d2:2:1:0
278 W:1:1:0:1
279 B:SPORE:CONFUSE:1d4
280 F:NEVER_MOVE
281 F:STUPID | EMPTY_MIND
282 F:IM_POIS
283 F:NO_CONF | NO_SLEEP | NO_FEAR
284 D:Yum!  It looks quite tasty.
286 N:17:Giant yellow centipede
287 G:c:y
288 I:110:2d6:8:12:30
289 W:1:1:0:2
290 B:BITE:HURT:1d3
291 B:STING:HURT:1d3
292 F:WEIRD_MIND
293 F:ANIMAL
294 D:It is about four feet long and carnivorous.
296 N:18:Giant white centipede
297 G:c:w
298 I:110:3d5:7:10:40
299 W:1:1:0:2
300 B:BITE:HURT:1d2
301 B:STING:HURT:1d2
302 F:RAND_50
303 F:WEIRD_MIND | BASH_DOOR
304 F:ANIMAL
305 D:It is about four feet long and carnivorous.
307 N:19:White icky thing
308 G:i:w
309 I:110:2d5:12:7:10
310 W:1:1:0:1
311 B:TOUCH:HURT:1d2
312 F:RAND_50 | RAND_25
313 F:EMPTY_MIND
314 D:It is a smallish, slimy, icky creature.
316 N:20:Clear icky thing
317 G:i:w
318 I:110:2d5:12:6:10
319 W:1:1:0:2
320 B:TOUCH:HURT:1d2
321 F:ATTR_CLEAR
322 F:RAND_50 | RAND_25
323 F:INVISIBLE | EMPTY_MIND
324 D:It is a smallish, slimy, icky, blobby creature.
326 N:21:Giant white mouse
327 G:r:w
328 I:110:1d3:8:4:20
329 W:1:1:0:1
330 B:BITE:HURT:1d2
331 F:RAND_50
332 F:MULTIPLY
333 F:ANIMAL
334 D:It is about three feet long with large teeth.
336 N:22:Large brown snake
337 G:J:u
338 I:100:4d6:4:35:99
339 W:1:1:0:3
340 B:BITE:HURT:1d3
341 B:CRUSH:HURT:1d4
342 F:RAND_25
343 F:BASH_DOOR
344 F:ANIMAL
345 D:It is about eight feet long.
347 N:23:Large white snake
348 G:J:w
349 I:100:3d6:4:30:99
350 W:1:1:0:2
351 B:BITE:HURT:1d1
352 B:CRUSH:HURT:1d1
353 F:RAND_50
354 F:BASH_DOOR
355 F:ANIMAL
356 D:It is about eight feet long.
358 N:24:Small kobold
359 G:k:y
360 I:110:2d7:20:16:10
361 W:1:1:0:5
362 B:HIT:HURT:1d5
363 F:DROP_60
364 F:OPEN_DOOR | BASH_DOOR
365 F:EVIL | IM_POIS
366 D:It is a squat and ugly humanoid figure with a canine face.
368 N:25:Kobold
369 G:k:G
370 I:110:3d7:20:16:10
371 W:2:1:0:5
372 B:HIT:HURT:1d8
373 F:DROP_60
374 F:OPEN_DOOR | BASH_DOOR
375 F:EVIL | IM_POIS
376 D:It is a small, dog-headed humanoid.
378 N:26:White worm mass
379 G:w:w
380 I:100:4d4:7:1:10
381 W:1:1:0:2
382 B:CRAWL:POISON:1d2
383 F:RAND_50 | RAND_25
384 F:STUPID | WEIRD_MIND | MULTIPLY
385 F:ANIMAL | IM_POIS | HURT_LITE | NO_FEAR
386 D:It is a large slimy mass of worms.
388 N:27:Floating eye
389 G:e:o
390 I:110:3d6:2:6:10
391 W:1:1:0:1
392 B:GAZE:PARALYZE
393 F:NEVER_MOVE
394 F:HURT_LITE | NO_FEAR
395 D:A disembodied eye, floating a few feet above the ground.
397 N:28:Rock lizard
398 G:R:U
399 I:110:3d4:20:4:15
400 W:1:1:0:2
401 B:BITE:HURT:1d1
402 F:ANIMAL
403 D:It is a small lizard with a hardened hide.
405 N:29:Jackal
406 G:C:U
407 I:110:1d4:10:3:10
408 W:1:1:0:1
409 B:BITE:HURT:1d1
410 F:FRIENDS
411 F:ANIMAL
412 D:It is a yapping snarling dog, dangerous when in a pack.
414 N:30:Soldier ant
415 G:a:W
416 I:110:2d5:10:3:10
417 W:1:1:0:3
418 B:BITE:HURT:1d2
419 F:WEIRD_MIND | BASH_DOOR
420 F:ANIMAL
421 D:A large ant with powerful mandibles.
423 N:31:Fruit bat
424 G:b:o
425 I:120:1d6:20:3:10
426 W:1:1:0:1
427 B:BITE:HURT:1d1
428 F:ANIMAL
429 D:A fast-moving pest.
431 N:32:Shrieker mushroom patch
432 G:,:R
433 I:110:1d1:4:1:0
434 W:2:1:0:1
435 F:FORCE_SLEEP | NEVER_MOVE | NEVER_BLOW
436 F:STUPID | EMPTY_MIND
437 F:IM_POIS
438 F:NO_CONF | NO_SLEEP | NO_FEAR
439 S:1_IN_4
440 S:SHRIEK
441 D:Yum!  It looks quite tasty.  It doesn't sound so nice, though...
443 N:33:Blubbering icky thing
444 G:i:W
445 I:110:5d6:14:4:10
446 W:2:1:0:8
447 B:CRAWL:POISON:1d4
448 B:CRAWL:EAT_FOOD
449 F:RAND_50 | DROP_90
450 F:EMPTY_MIND | TAKE_ITEM | KILL_BODY
451 F:IM_POIS
452 D:It is a smallish, slimy, icky, hungry creature.
454 N:34:Metallic green centipede
455 G:c:g
456 I:120:4d4:5:4:10
457 W:2:1:0:3
458 B:CRAWL:HURT:1d1
459 F:RAND_50
460 F:WEIRD_MIND | BASH_DOOR
461 F:ANIMAL
462 D:It is about four feet long and carnivorous.
464 N:35:Novice warrior
465 G:p:u
466 I:110:9d4:20:16:5
467 W:2:1:0:6
468 B:HIT:HURT:1d7
469 B:HIT:HURT:1d7
470 F:MALE
471 F:DROP_60
472 F:OPEN_DOOR | BASH_DOOR
473 D:He looks inexperienced but tough.
475 N:36:Novice rogue
476 G:p:b
477 I:110:8d4:20:12:5
478 W:2:1:0:6
479 B:HIT:HURT:1d6
480 B:TOUCH:EAT_GOLD
481 F:MALE
482 F:DROP_60
483 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
484 F:EVIL
485 D:A rather shifty individual.
487 N:37:Novice priest
488 G:p:g
489 I:110:7d4:20:10:10
490 W:2:1:0:6
491 B:HIT:HURT:1d5
492 F:MALE
493 F:FORCE_SLEEP
494 F:DROP_60
495 F:OPEN_DOOR | BASH_DOOR
496 S:1_IN_12
497 S:HEAL | SCARE | CAUSE_1
498 D:He is tripping over his priestly robes.
500 N:38:Novice mage
501 G:p:r
502 I:110:6d4:20:6:5
503 W:2:1:0:6
504 B:HIT:HURT:1d4
505 F:MALE
506 F:FORCE_SLEEP
507 F:DROP_60
508 F:OPEN_DOOR | BASH_DOOR
509 S:1_IN_12
510 S:BLINK | BLIND | CONF | MISSILE
511 D:He is leaving behind a trail of dropped spell components.
513 N:39:Yellow mushroom patch
514 G:,:y
515 I:110:1d1:2:1:0
516 W:2:1:0:2
517 B:SPORE:TERRIFY:1d6
518 F:NEVER_MOVE
519 F:STUPID | EMPTY_MIND
520 F:IM_POIS
521 F:NO_CONF | NO_SLEEP | NO_FEAR
522 D:Yum!  It looks quite tasty.
524 N:40:White jelly
525 G:j:w
526 I:120:8d8:2:1:99
527 W:2:1:0:10
528 B:TOUCH:POISON:1d2
529 F:NEVER_MOVE
530 F:STUPID | EMPTY_MIND
531 F:IM_POIS | HURT_LITE
532 F:NO_CONF | NO_SLEEP | NO_FEAR
533 D:Its a large pile of white flesh.
535 N:41:Giant green frog
536 G:R:g
537 I:110:2d8:12:8:30
538 W:2:1:0:6
539 B:BITE:HURT:1d3
540 F:RAND_25
541 F:BASH_DOOR
542 F:ANIMAL
543 D:It is as big as a wolf.
545 N:42:Giant black ant
546 G:a:D
547 I:110:3d6:8:20:80
548 W:2:1:0:8
549 B:BITE:HURT:1d4
550 F:RAND_25
551 F:WEIRD_MIND
552 F:BASH_DOOR
553 F:ANIMAL
554 D:It is about three feet long.
556 N:43:Salamander
557 G:R:o
558 I:110:4d6:8:20:80
559 W:2:1:0:10
560 B:BITE:FIRE:1d3
561 F:RAND_25
562 F:ANIMAL | IM_FIRE
563 D:A small black and orange lizard.
565 N:44:White harpy
566 G:H:w
567 I:110:2d5:16:17:10
568 W:2:1:0:5
569 B:CLAW:HURT:1d1
570 B:CLAW:HURT:1d1
571 B:BITE:HURT:1d2
572 F:FEMALE
573 F:RAND_50
574 F:ANIMAL | EVIL
575 D:A flying, screeching bird with a woman's face.
577 N:45:Blue yeek
578 G:y:b
579 I:110:2d6:18:14:10
580 W:2:1:0:4
581 B:HIT:HURT:1d5
582 F:DROP_60
583 F:OPEN_DOOR | BASH_DOOR
584 F:ANIMAL | IM_ACID
585 D:A small humanoid figure.
587 N:46:Grip, Farmer Maggot's dog
588 G:C:U
589 I:120:5d5:30:30:0
590 W:2:1:0:30
591 B:BITE:HURT:1d4
592 F:UNIQUE
593 F:FORCE_MAXHP | RAND_25
594 F:BASH_DOOR
595 F:ANIMAL | NO_CONF | NO_SLEEP
596 D:A rather vicious dog belonging to Farmer Maggot.  It thinks you are
597 D: stealing mushrooms.
599 N:47:Fang, Farmer Maggot's dog
600 G:C:U
601 I:120:5d5:30:30:0
602 W:2:1:0:30
603 B:BITE:HURT:1d4
604 F:UNIQUE
605 F:FORCE_MAXHP | RAND_25
606 F:BASH_DOOR
607 F:ANIMAL | NO_CONF | NO_SLEEP
608 D:A rather vicious dog belonging to Farmer Maggot.  It thinks you are
609 D: stealing mushrooms.
611 N:48:Green worm mass
612 G:w:g
613 I:100:6d4:7:3:10
614 W:2:1:0:3
615 B:CRAWL:ACID:1d3
616 F:RAND_50 | RAND_25
617 F:STUPID | WEIRD_MIND | MULTIPLY
618 F:ANIMAL | IM_ACID
619 F:HURT_LITE | NO_FEAR
620 D:It is a large slimy mass of worms.
622 N:49:Large yellow snake
623 G:J:y
624 I:100:4d8:5:38:75
625 W:2:1:0:9
626 B:BITE:HURT:1d4
627 B:CRUSH:HURT:1d6
628 F:RAND_25
629 F:BASH_DOOR
630 F:ANIMAL
631 D:It is about ten feet long.
633 N:50:Cave spider
634 G:S:D
635 I:120:2d6:8:16:80
636 W:2:1:0:7
637 B:BITE:HURT:1d4
638 F:FRIENDS
639 F:WEIRD_MIND | BASH_DOOR
640 F:ANIMAL
641 D:It is a black spider that moves in fits and starts.
643 N:51:Wild cat
644 G:f:U
645 I:120:3d5:40:12:0
646 W:2:2:0:8
647 B:CLAW:HURT:1d3
648 B:CLAW:HURT:1d3
649 F:BASH_DOOR
650 F:ANIMAL
651 D:A larger than normal feline, hissing loudly.  Its velvet paws conceal a
652 D: fistful of needles.
654 N:52:Smeagol
655 G:h:B
656 I:130:20d20:20:12:5
657 W:3:2:0:50
658 B:TOUCH:EAT_GOLD:1d4
659 F:UNIQUE | MALE
660 F:FORCE_MAXHP
661 F:RAND_50 | RAND_25
662 F:DROP_90 | DROP_GOOD | DROP_GREAT
663 F:INVISIBLE | TAKE_ITEM | OPEN_DOOR | BASH_DOOR
664 F:EVIL
665 D:Usually known as Gollum.  He's been sneaking, and he wants his 'precious.'
667 N:53:Green ooze
668 G:j:g
669 I:120:3d4:8:16:80
670 W:3:2:0:4
671 B:CRAWL:ACID:1d3
672 F:RAND_50 | RAND_25 | DROP_90
673 F:STUPID | EMPTY_MIND
674 F:IM_ACID | IM_POIS
675 F:NO_CONF | NO_SLEEP | NO_FEAR
676 D:It's green and it's oozing.
678 N:54:Poltergeist
679 G:G:W
680 I:130:2d5:8:15:10
681 W:3:1:0:8
682 B:TOUCH:TERRIFY
683 F:RAND_50 | RAND_25
684 F:DROP_60 | DROP_90
685 F:INVISIBLE | COLD_BLOOD | PASS_WALL | TAKE_ITEM
686 F:EVIL | UNDEAD
687 F:IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
688 S:1_IN_15
689 S:BLINK
690 D:It is a ghastly, ghostly form.
692 N:55:Metallic blue centipede
693 G:c:b
694 I:120:4d5:6:6:15
695 W:3:1:0:7
696 B:CRAWL:HURT:1d2
697 F:RAND_50
698 F:WEIRD_MIND | BASH_DOOR
699 F:ANIMAL
700 D:It is about four feet long and carnivorous.
702 N:56:Giant white louse
703 G:l:w
704 I:120:1d1:6:5:10
705 W:3:1:0:1
706 B:BITE:HURT:1d1
707 F:RAND_50 | RAND_25
708 F:MULTIPLY | WEIRD_MIND
709 F:ANIMAL
710 D:It is six inches long.
712 N:57:Black naga
713 G:n:D
714 I:110:6d8:16:40:120
715 W:3:1:0:20
716 B:CRUSH:HURT:1d8
717 F:FEMALE
718 F:RAND_25 | DROP_60
719 F:BASH_DOOR
720 F:EVIL
721 D:A large black serpent's body with a female torso.
723 N:58:Spotted mushroom patch
724 G:,:o
725 I:110:1d1:2:1:0
726 W:3:1:0:3
727 B:SPORE:POISON:2d4
728 F:NEVER_MOVE
729 F:STUPID | EMPTY_MIND
730 F:IM_POIS
731 F:NO_CONF | NO_SLEEP | NO_FEAR
732 D:Yum!  It looks quite tasty.
734 N:59:Silver jelly
735 G:j:W
736 I:120:10d8:2:1:99
737 W:3:2:0:12
738 B:TOUCH:EAT_LITE:1d3
739 B:TOUCH:EAT_LITE:1d3
740 F:NEVER_MOVE
741 F:STUPID | EMPTY_MIND
742 F:IM_POIS | HURT_LITE
743 F:NO_CONF | NO_SLEEP | NO_FEAR
744 S:1_IN_15
745 S:DRAIN_MANA
746 D:It is a large pile of silver flesh that sucks all light from its
747 D: surroundings.
749 N:60:Yellow jelly
750 G:j:y
751 I:120:10d8:2:1:99
752 W:3:1:0:12
753 B:TOUCH:POISON:1d3
754 F:NEVER_MOVE
755 F:STUPID | EMPTY_MIND
756 F:IM_POIS | HURT_LITE
757 F:NO_CONF | NO_SLEEP | NO_FEAR
758 S:1_IN_15
759 S:DRAIN_MANA
760 D:It's a large pile of yellow flesh.
762 N:61:Scruffy looking hobbit
763 G:h:b
764 I:110:3d5:16:8:10
765 W:3:1:0:4
766 B:HIT:HURT:1d4
767 B:TOUCH:EAT_GOLD
768 F:MALE
769 F:DROP_60
770 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
771 F:EVIL
772 D:A short little guy, in bedraggled clothes.  He appears to be looking
773 D: for a good tavern.
775 N:62:Giant white ant
776 G:a:w
777 I:110:3d6:8:16:80
778 W:3:1:0:7
779 B:BITE:HURT:1d4
780 F:WEIRD_MIND | BASH_DOOR
781 F:ANIMAL
782 D:It is about two feet long and has sharp pincers.
784 N:63:Yellow mold
785 G:m:y
786 I:110:8d8:2:10:99
787 W:3:1:0:9
788 B:SPORE:HURT:1d4
789 F:NEVER_MOVE
790 F:STUPID | EMPTY_MIND
791 F:IM_POIS
792 F:NO_CONF | NO_SLEEP | NO_FEAR
793 D:It is a strange yellow growth on the dungeon floor.
795 N:64:Metallic red centipede
796 G:c:r
797 I:120:4d8:8:9:20
798 W:3:1:0:12
799 B:CRAWL:HURT:1d2
800 F:RAND_25
801 F:WEIRD_MIND | BASH_DOOR
802 F:ANIMAL
803 D:It is about four feet long and carnivorous.
805 N:65:Yellow worm mass
806 G:w:y
807 I:100:4d8:7:4:10
808 W:3:2:0:4
809 B:CRAWL:LOSE_DEX:1d3
810 F:RAND_50 | RAND_25
811 F:STUPID | WEIRD_MIND | MULTIPLY
812 F:ANIMAL | HURT_LITE | NO_FEAR
813 D:It is a large slimy mass of worms.
815 N:66:Clear worm mass
816 G:w:w
817 I:100:4d4:7:1:10
818 W:3:2:0:4
819 B:CRAWL:POISON:1d2
820 F:ATTR_CLEAR
821 F:RAND_50 | RAND_25
822 F:STUPID | WEIRD_MIND | INVISIBLE | MULTIPLY
823 F:ANIMAL
824 F:IM_POIS | HURT_LITE | NO_FEAR
825 D:It is a disgusting mass of poisonous worms.
827 N:67:Radiation eye
828 G:e:R
829 I:110:3d6:2:6:10
830 W:3:1:0:6
831 B:GAZE:LOSE_STR:1d6
832 F:NEVER_MOVE
833 F:HURT_LITE | NO_FEAR
834 S:1_IN_11
835 S:DRAIN_MANA
836 D:A disembodied eye, crackling with energy.
838 N:68:Cave lizard
839 G:R:u
840 I:110:3d6:8:16:80
841 W:4:1:0:8
842 B:BITE:HURT:1d5
843 F:ANIMAL
844 D:It is an armoured lizard with a powerful bite.
846 N:69:Novice ranger
847 G:p:W
848 I:110:6d8:20:8:5
849 W:4:1:0:18
850 B:HIT:HURT:1d5
851 B:HIT:HURT:1d5
852 F:MALE
853 F:FORCE_SLEEP
854 F:DROP_60
855 F:OPEN_DOOR | BASH_DOOR
856 S:1_IN_9
857 S:ARROW_1 | MISSILE
858 D:An agile hunter, ready and relaxed.
860 N:70:Novice paladin
861 G:p:w
862 I:110:6d8:20:16:5
863 W:4:1:0:18
864 B:HIT:HURT:1d7
865 B:HIT:HURT:1d7
866 F:MALE | FORCE_SLEEP | DROP_60
867 F:OPEN_DOOR | BASH_DOOR
868 S:1_IN_9
869 S:SCARE | CAUSE_1
870 D:An adventurer both devoutly religious and skillful in combat.
872 N:71:Blue jelly
873 G:j:b
874 I:110:12d8:2:1:99
875 W:4:1:0:14
876 B:TOUCH:COLD:1d6
877 F:NEVER_MOVE | COLD_BLOOD
878 F:STUPID | EMPTY_MIND
879 F:IM_COLD | HURT_LITE
880 F:NO_CONF | NO_SLEEP | NO_FEAR
881 D:It's a large pile of pulsing blue flesh.
883 N:72:Creeping copper coins
884 G:$:u
885 I:100:7d8:3:24:10
886 W:4:3:0:9
887 B:HIT:HURT:1d4
888 B:TOUCH:POISON:2d4
889 F:ONLY_GOLD | DROP_1D2
890 F:COLD_BLOOD | BASH_DOOR
891 F:IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
892 D:It appears to be a pile of copper coins.
894 N:73:Giant white rat
895 G:r:W
896 I:110:2d2:8:7:30
897 W:4:1:0:1
898 B:BITE:POISON:1d3
899 F:RAND_25
900 F:MULTIPLY
901 F:ANIMAL
902 D:It is a very vicious rodent.
904 N:74:Blue worm mass
905 G:w:b
906 I:100:5d8:7:12:10
907 W:4:1:0:5
908 B:CRAWL:COLD:1d4
909 F:RAND_50 | RAND_25
910 F:STUPID | WEIRD_MIND | COLD_BLOOD | MULTIPLY
911 F:ANIMAL | IM_COLD
912 F:HURT_LITE | NO_FEAR
913 D:It is a large slimy mass of worms.
915 N:75:Large grey snake
916 G:J:s
917 I:100:6d8:6:41:50
918 W:4:1:0:14
919 B:BITE:HURT:1d5
920 B:CRUSH:HURT:1d8
921 F:RAND_25
922 F:BASH_DOOR
923 F:ANIMAL
924 D:It is about ten feet long.
926 N:76:Bullroarer the Hobbit
927 G:h:U
928 I:120:6d10:16:8:10
929 W:5:3:0:90
930 B:HIT:HURT:1d8
931 B:HIT:HURT:1d8
932 F:UNIQUE | MALE | FORCE_MAXHP
933 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
934 F:OPEN_DOOR | BASH_DOOR
935 D:He is a sturdy hobbit who is renowned for his unusual strength and
936 D: vigour.  He can prove a troublesome opponent.
938 N:77:Novice mage
939 G:p:r
940 I:110:6d4:20:6:10
941 W:6:2:0:6
942 B:HIT:HURT:1d4
943 F:MALE
944 F:FORCE_SLEEP
945 F:FRIENDS | DROP_60
946 F:OPEN_DOOR | BASH_DOOR
947 S:1_IN_12
948 S:BLINK | BLIND | CONF | MISSILE
949 D:He is leaving behind a trail of dropped spell components.
951 N:78:Green naga
952 G:n:g
953 I:110:9d8:18:40:120
954 W:5:1:0:30
955 B:CRUSH:HURT:1d8
956 B:SPIT:ACID:2d6
957 F:FEMALE
958 F:RAND_25 | TAKE_ITEM | DROP_60
959 F:BASH_DOOR
960 F:EVIL | IM_ACID
961 D:A large green serpent with a female's torso.  Her green skin glistens with
962 D: acid.
964 N:79:Blue ooze
965 G:j:b
966 I:110:3d4:8:16:80
967 W:5:1:0:7
968 B:CRAWL:COLD:1d4
969 F:RAND_50 | RAND_25 | DROP_60
970 F:STUPID | EMPTY_MIND
971 F:IM_COLD
972 F:NO_CONF | NO_SLEEP | NO_FEAR
973 D:It's blue and it's oozing.
975 N:80:Green glutton ghost
976 G:G:g
977 I:130:3d4:10:20:10
978 W:5:1:0:15
979 B:TOUCH:EAT_FOOD:1d1
980 F:RAND_50 | RAND_25
981 F:DROP_60 | DROP_90
982 F:INVISIBLE | COLD_BLOOD | PASS_WALL
983 F:EVIL | UNDEAD | NO_CONF | NO_SLEEP
984 D:It is a very ugly green ghost with a voracious appetite.
986 N:81:Green jelly
987 G:j:g
988 I:120:22d8:2:1:99
989 W:5:1:0:18
990 B:TOUCH:ACID:1d2
991 F:NEVER_MOVE
992 F:STUPID | EMPTY_MIND
993 F:IM_ACID | HURT_LITE
994 F:NO_CONF | NO_SLEEP | NO_FEAR
995 D:It is a large pile of pulsing green flesh.
997 N:82:Large kobold
998 G:k:b
999 I:110:13d9:20:32:30
1000 W:5:1:0:25
1001 B:HIT:HURT:1d10
1002 F:DROP_90
1003 F:OPEN_DOOR | BASH_DOOR
1004 F:EVIL | IM_POIS
1005 D:It a man-sized figure with the all too recognizable face of a kobold.
1007 N:83:Skeleton kobold
1008 G:s:w
1009 I:110:5d8:20:26:40
1010 W:5:1:0:12
1011 B:HIT:HURT:1d6
1012 F:COLD_BLOOD | EMPTY_MIND | OPEN_DOOR | BASH_DOOR
1013 F:EVIL | UNDEAD | IM_COLD | IM_POIS
1014 F:NO_CONF | NO_SLEEP | NO_FEAR
1015 D:It is a small animated kobold skeleton.
1017 N:84:Grey icky thing
1018 G:i:s
1019 I:110:4d8:14:12:15
1020 W:5:1:0:10
1021 B:TOUCH:HURT:1d5
1022 F:RAND_50
1023 F:EMPTY_MIND
1024 D:It is a smallish, slimy, icky, nasty creature.
1026 N:85:Disenchanter eye
1027 G:e:v
1028 I:100:7d8:2:6:10
1029 W:5:2:0:20
1030 B:GAZE:UN_BONUS
1031 F:ATTR_MULTI
1032 F:NEVER_MOVE
1033 F:HURT_LITE | NO_FEAR | RES_DISE
1034 S:1_IN_9
1035 S:DRAIN_MANA
1036 D:A disembodied eye, crackling with magic.
1038 N:86:Red worm mass
1039 G:w:r
1040 I:100:5d8:7:12:10
1041 W:5:1:0:6
1042 B:CRAWL:FIRE:1d6
1043 F:RAND_50 | RAND_25
1044 F:STUPID | EMPTY_MIND | MULTIPLY | BASH_DOOR
1045 F:ANIMAL | IM_FIRE
1046 F:HURT_LITE | NO_FEAR
1047 D:It is a large slimy mass of worms.
1049 N:87:Copperhead snake
1050 G:J:o
1051 I:110:4d6:6:20:1
1052 W:5:1:0:15
1053 B:BITE:POISON:2d4
1054 F:RAND_50
1055 F:BASH_DOOR
1056 F:ANIMAL | IM_POIS
1057 D:It has a copper head and sharp venomous fangs.
1059 N:88:Purple mushroom patch
1060 G:,:v
1061 I:110:1d1:2:1:0
1062 W:6:2:0:15
1063 B:SPORE:LOSE_CON:1d2
1064 B:SPORE:LOSE_CON:1d2
1065 B:SPORE:LOSE_CON:1d2
1066 F:NEVER_MOVE
1067 F:STUPID | EMPTY_MIND
1068 F:NO_CONF | NO_SLEEP | NO_FEAR
1069 D:Yum!  It looks quite tasty.
1071 N:89:Novice priest
1072 G:p:g
1073 I:110:7d4:20:10:5
1074 W:6:2:0:6
1075 B:HIT:HURT:1d5
1076 F:MALE
1077 F:FORCE_SLEEP
1078 F:FRIENDS | DROP_60
1079 F:OPEN_DOOR | BASH_DOOR
1080 S:1_IN_12
1081 S:HEAL | SCARE | CAUSE_1
1082 D:He is tripping over his priestly robes.
1084 N:90:Novice warrior
1085 G:p:u
1086 I:110:9d4:20:16:5
1087 W:6:2:0:6
1088 B:HIT:HURT:1d7
1089 B:HIT:HURT:1d7
1090 F:MALE
1091 F:FRIENDS | DROP_60
1092 F:OPEN_DOOR | BASH_DOOR
1093 D:He looks inexperienced but tough.
1095 N:91:Novice rogue
1096 G:p:b
1097 I:110:8d4:20:12:5
1098 W:6:2:0:6
1099 B:HIT:HURT:1d6
1100 B:TOUCH:EAT_GOLD
1101 F:MALE
1102 F:FRIENDS | DROP_60
1103 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
1104 F:EVIL
1105 D:A rather shifty individual.
1107 N:92:Brown mold
1108 G:m:u
1109 I:110:15d8:2:12:99
1110 W:6:1:0:20
1111 B:SPORE:CONFUSE:1d4
1112 F:NEVER_MOVE
1113 F:STUPID | EMPTY_MIND
1114 F:IM_POIS
1115 F:NO_CONF | NO_SLEEP | NO_FEAR
1116 D:A strange brown growth on the dungeon floor.
1118 N:93:Giant brown bat
1119 G:b:u
1120 I:130:3d8:10:15:30
1121 W:6:1:0:10
1122 B:BITE:HURT:1d3
1123 F:RAND_50
1124 F:ANIMAL
1125 D:It screeches as it attacks.
1127 N:94:Kobold archer
1128 G:k:W
1129 I:110:6d7:20:16:10
1130 W:4:1:0:20
1131 B:HIT:HURT:1d9
1132 F:DROP_60
1133 F:OPEN_DOOR | BASH_DOOR
1134 F:EVIL | IM_POIS
1135 S:1_IN_5 | ARROW_2
1136 D:It is an ugly dog-headed humanoid wielding a bow.
1138 N:95:Creeping silver coins
1139 G:$:s
1140 I:100:12d8:4:30:10
1141 W:6:3:0:18
1142 B:HIT:HURT:1d6
1143 B:TOUCH:POISON:2d6
1144 F:ONLY_GOLD | DROP_60 | DROP_1D2
1145 F:COLD_BLOOD | BASH_DOOR
1146 F:IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
1147 D:It appears to be a pile of silver coins.
1149 N:96:Snaga
1150 G:o:U
1151 I:110:8d8:20:32:30
1152 W:6:1:0:15
1153 B:HIT:HURT:1d8
1154 F:MALE
1155 F:FRIENDS | DROP_60
1156 F:OPEN_DOOR | BASH_DOOR
1157 F:EVIL | ORC | HURT_LITE
1158 D:He is one of the many weaker 'slave' orcs, often mistakenly known as a
1159 D: goblin.
1161 N:97:Rattlesnake
1162 G:J:r
1163 I:110:6d7:6:24:1
1164 W:6:1:0:20
1165 B:BITE:POISON:2d5
1166 F:RAND_50
1167 F:BASH_DOOR
1168 F:ANIMAL | IM_POIS
1169 D:It is recognized by the hard-scaled end of its body that is often rattled
1170 D: to frighten its prey.
1172 N:98:Cave orc
1173 G:o:G
1174 I:110:11d9:20:32:30
1175 W:7:1:0:20
1176 B:HIT:HURT:1d8
1177 F:MALE
1178 F:FRIENDS | DROP_60
1179 F:OPEN_DOOR | BASH_DOOR
1180 F:EVIL | ORC | HURT_LITE
1181 D:He is often found in huge numbers in deep caves.
1183 N:99:Wood spider
1184 G:S:U
1185 I:120:3d6:8:16:80
1186 W:7:3:0:15
1187 B:BITE:HURT:1d3
1188 B:STING:POISON:1d4
1189 F:FRIENDS
1190 F:WEIRD_MIND | BASH_DOOR
1191 F:ANIMAL | IM_POIS
1192 D:It scuttles towards you.
1194 N:100:Manes
1195 G:u:u
1196 I:110:8d8:20:32:30
1197 W:7:2:0:16
1198 B:HIT:HURT:1d8
1199 F:FRIENDS
1200 F:OPEN_DOOR | BASH_DOOR
1201 F:EVIL | DEMON | IM_FIRE | NO_FEAR
1202 D:It is a minor but aggressive demon.
1204 N:101:Bloodshot eye
1205 G:e:r
1206 I:110:10d8:2:6:10
1207 W:7:3:0:15
1208 B:GAZE:BLIND:2d6
1209 F:NEVER_MOVE
1210 F:HURT_LITE | NO_FEAR
1211 S:1_IN_7
1212 S:DRAIN_MANA
1213 D:A disembodied eye, bloodshot and nasty.
1215 N:102:Red naga
1216 G:n:r
1217 I:110:11d8:20:40:120
1218 W:7:2:0:40
1219 B:CRUSH:HURT:1d10
1220 B:BITE:LOSE_STR:1d4
1221 F:FEMALE
1222 F:RAND_25 | DROP_60
1223 F:TAKE_ITEM | BASH_DOOR
1224 F:EVIL
1225 D:A large red snake with a woman's torso.
1227 N:103:Red jelly
1228 G:j:r
1229 I:110:26d8:2:1:99
1230 W:7:1:0:26
1231 B:TOUCH:LOSE_STR:1d5
1232 F:NEVER_MOVE
1233 F:STUPID | EMPTY_MIND
1234 F:HURT_LITE
1235 F:NO_CONF | NO_SLEEP | NO_FEAR
1236 D:It is a large pulsating mound of red flesh.
1238 N:104:Giant red frog
1239 G:R:r
1240 I:110:5d8:12:16:50
1241 W:7:1:0:16
1242 B:BITE:LOSE_STR:2d4
1243 F:RAND_50
1244 F:BASH_DOOR
1245 F:ANIMAL
1246 D:It looks poisonous.
1248 N:105:Green icky thing
1249 G:i:g
1250 I:110:5d8:14:12:20
1251 W:7:2:0:18
1252 B:TOUCH:ACID:2d5
1253 F:RAND_50
1254 F:EMPTY_MIND
1255 F:IM_ACID
1256 D:It is a smallish, slimy, icky, acidic creature.
1258 N:106:Zombified kobold
1259 G:z:s
1260 I:110:6d8:20:14:30
1261 W:7:1:0:14
1262 B:HIT:HURT:1d2
1263 B:HIT:HURT:1d2
1264 F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
1265 F:EVIL | UNDEAD | IM_COLD | IM_POIS
1266 F:NO_CONF | NO_SLEEP | NO_FEAR
1267 D:It is an animated kobold corpse.  Flesh falls off in large chunks as it
1268 D: shambles forward.
1270 N:107:Lost soul
1271 G:G:B
1272 I:110:2d8:12:10:10
1273 W:7:2:0:18
1274 B:HIT:HURT:2d2
1275 B:TOUCH:LOSE_WIS
1276 F:RAND_50 | DROP_60 | DROP_90
1277 F:INVISIBLE | COLD_BLOOD | TAKE_ITEM | PASS_WALL
1278 F:EVIL | UNDEAD
1279 F:IM_COLD | NO_CONF | NO_SLEEP
1280 S:1_IN_15
1281 S:TPORT | DRAIN_MANA
1282 D:It is almost insubstantial.
1284 N:108:Dark elf
1285 G:h:D
1286 I:110:7d10:20:16:20
1287 W:7:2:0:25
1288 B:HIT:HURT:1d6
1289 B:HIT:HURT:1d6
1290 F:MALE
1291 F:FORCE_SLEEP
1292 F:DROP_90
1293 F:OPEN_DOOR | BASH_DOOR
1294 F:EVIL | HURT_LITE
1295 S:1_IN_10
1296 S:CONF | DARKNESS
1297 D:An elven figure with jet black skin and white hair, his eyes are large and
1298 D: twisted with evil.
1300 N:109:Night lizard
1301 G:R:b
1302 I:110:4d8:20:16:30
1303 W:7:2:0:35
1304 B:BITE:HURT:1d6
1305 B:BITE:HURT:1d6
1306 F:ANIMAL
1307 D:It is a black lizard with overlapping scales and a powerful jaw.
1309 N:110:Mughash the Kobold Lord
1310 G:k:v
1311 I:110:15d10:20:20:20
1312 W:7:3:0:100
1313 B:HIT:HURT:1d10
1314 B:HIT:HURT:1d10
1315 B:HIT:HURT:1d10
1316 F:UNIQUE | MALE
1317 F:FORCE_MAXHP
1318 F:ESCORT | ESCORTS
1319 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
1320 F:OPEN_DOOR | BASH_DOOR
1321 F:EVIL | IM_POIS
1322 D:Strong and powerful, for a kobold.
1324 N:111:Wormtongue, Agent of Saruman
1325 G:p:B
1326 I:110:25d10:20:30:20
1327 W:8:1:0:150
1328 B:HIT:HURT:1d5
1329 B:HIT:HURT:1d5
1330 B:TOUCH:EAT_GOLD
1331 B:INSULT
1332 F:UNIQUE | MALE
1333 F:FORCE_SLEEP | FORCE_MAXHP
1334 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | DROP_GREAT
1335 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
1336 F:EVIL
1337 S:1_IN_5
1338 S:HEAL | SLOW | TRAPS | BO_COLD | BA_POIS
1339 D:He's been spying for Saruman.  He is a snivelling wretch with no morals
1340 D: and disgusting habits.
1342 N:112:Lagduf, the Snaga
1343 G:o:y
1344 I:110:19d10:20:32:30
1345 W:8:2:0:80
1346 B:HIT:HURT:1d10
1347 B:HIT:HURT:1d10
1348 B:HIT:HURT:1d9
1349 B:HIT:HURT:1d9
1350 F:UNIQUE | MALE
1351 F:FORCE_MAXHP
1352 F:ESCORT
1353 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
1354 F:OPEN_DOOR | BASH_DOOR
1355 F:EVIL | ORC
1356 D:A captain of a regiment of weaker orcs, Lagduf keeps his troop in order
1357 D: with displays of excessive violence.
1359 N:113:Brown yeek
1360 G:y:u
1361 I:110:4d8:18:18:10
1362 W:8:1:0:11
1363 B:HIT:HURT:1d6
1364 F:DROP_60
1365 F:OPEN_DOOR | BASH_DOOR
1366 F:ANIMAL | IM_ACID
1367 D:It is a strange small humanoid.
1369 N:114:Novice ranger
1370 G:p:W
1371 I:110:6d8:20:8:5
1372 W:8:2:0:18
1373 B:HIT:HURT:1d5
1374 B:HIT:HURT:1d5
1375 F:MALE
1376 F:FORCE_SLEEP | FRIENDS | DROP_60
1377 F:OPEN_DOOR | BASH_DOOR
1378 S:1_IN_9
1379 S:ARROW_1 | MISSILE
1380 D:An agile hunter, ready and relaxed.
1382 N:115:Giant salamander
1383 G:R:y
1384 I:110:6d7:6:40:1
1385 W:8:1:0:50
1386 B:BITE:FIRE:3d6
1387 F:FORCE_SLEEP
1388 F:RAND_25
1389 F:ANIMAL | IM_FIRE
1390 S:1_IN_9
1391 S:BR_FIRE
1392 D:A large black and yellow lizard.  You'd better run away!
1394 N:116:Green mold
1395 G:m:g
1396 I:110:21d8:2:14:75
1397 W:8:1:0:28
1398 B:SPORE:TERRIFY:1d4
1399 F:NEVER_MOVE
1400 F:STUPID | EMPTY_MIND
1401 F:IM_ACID | IM_POIS
1402 F:NO_CONF | NO_SLEEP | NO_FEAR
1403 D:It is a strange growth on the dungeon floor.
1405 N:117:Skeleton orc
1406 G:s:w
1407 I:110:10d8:20:36:40
1408 W:8:1:0:26
1409 B:HIT:HURT:2d5
1410 F:COLD_BLOOD | EMPTY_MIND | OPEN_DOOR | BASH_DOOR
1411 F:EVIL | ORC | UNDEAD
1412 F:IM_COLD | IM_POIS
1413 F:NO_CONF | NO_SLEEP | NO_FEAR
1414 D:It is an animated orc skeleton.
1416 N:118:Novice paladin
1417 G:p:w
1418 I:110:6d8:20:16:5
1419 W:8:2:0:18
1420 B:HIT:HURT:1d7
1421 B:HIT:HURT:1d7
1422 F:MALE
1423 F:FORCE_SLEEP
1424 F:FRIENDS | DROP_60
1425 F:OPEN_DOOR | BASH_DOOR
1426 S:1_IN_9
1427 S:SCARE | CAUSE_1
1428 D:An adventurer both devoutly religious and skillful in combat.
1430 N:119:Lemure
1431 G:u:U
1432 I:110:13d9:20:32:30
1433 W:8:3:0:16
1434 B:HIT:HURT:1d8
1435 F:FRIENDS
1436 F:OPEN_DOOR | BASH_DOOR
1437 F:EVIL | DEMON | IM_FIRE | NO_FEAR
1438 D:It is the larval form of a major demon.
1440 N:120:Hill orc
1441 G:o:u
1442 I:110:13d9:20:32:30
1443 W:8:1:0:25
1444 B:HIT:HURT:1d10
1445 F:MALE
1446 F:FRIENDS | DROP_60
1447 F:OPEN_DOOR | BASH_DOOR
1448 F:EVIL | ORC
1449 D:He is a hardy well-weathered survivor.
1451 N:121:Bandit
1452 G:p:b
1453 I:110:8d8:20:24:10
1454 W:8:2:0:26
1455 B:HIT:HURT:2d4
1456 B:TOUCH:EAT_GOLD
1457 F:MALE
1458 F:DROP_1D2
1459 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
1460 F:EVIL
1461 D:He is after your cash!
1463 N:122:Yeti
1464 G:Y:w
1465 I:110:11d9:20:24:10
1466 W:9:3:0:30
1467 B:CLAW:HURT:1d3
1468 B:CLAW:HURT:1d3
1469 B:BITE:HURT:1d4
1470 F:OPEN_DOOR | BASH_DOOR
1471 F:ANIMAL | IM_COLD
1472 D:A large white figure covered in shaggy fur.
1474 N:123:Bloodshot icky thing
1475 G:i:r
1476 I:110:7d8:14:18:20
1477 W:9:3:0:24
1478 B:TOUCH:HURT:1d4
1479 B:CRAWL:ACID:2d4
1480 F:RAND_50
1481 F:EMPTY_MIND
1482 F:IM_POIS
1483 S:1_IN_11
1484 S:DRAIN_MANA
1485 D:It is a strange, slimy, icky creature.
1487 N:124:Giant grey rat
1488 G:r:s
1489 I:110:2d3:8:12:20
1490 W:9:1:0:2
1491 B:BITE:POISON:1d4
1492 F:RAND_25
1493 F:MULTIPLY
1494 F:ANIMAL | IM_POIS
1495 D:It is a rodent of unusual size.
1497 N:125:Black harpy
1498 G:H:D
1499 I:120:3d8:16:22:10
1500 W:9:1:0:19
1501 B:CLAW:HURT:1d2
1502 B:CLAW:HURT:1d2
1503 B:BITE:HURT:1d3
1504 F:FEMALE
1505 F:RAND_25
1506 F:ANIMAL | EVIL
1507 D:A woman's face on the body of a vicious black bird.
1509 N:126:Orc shaman
1510 G:o:r
1511 I:110:9d8:20:15:20
1512 W:9:1:0:30
1513 B:HIT:HURT:1d6
1514 B:HIT:HURT:1d6
1515 F:MALE
1516 F:FORCE_SLEEP | DROP_90
1517 F:OPEN_DOOR | BASH_DOOR
1518 F:EVIL | ORC | HURT_LITE
1519 S:1_IN_8
1520 S:BLINK | CAUSE_1 | MISSILE
1521 D:An orc dressed in skins who gestures wildly.
1523 N:127:Baby blue dragon
1524 G:d:b
1525 I:110:10d10:20:30:70
1526 W:9:2:0:35
1527 B:CLAW:HURT:1d3
1528 B:CLAW:HURT:1d3
1529 B:BITE:HURT:1d5
1530 F:FORCE_MAXHP | FORCE_SLEEP
1531 F:ONLY_GOLD | DROP_60 | DROP_1D2
1532 F:OPEN_DOOR | BASH_DOOR
1533 F:EVIL | DRAGON | IM_ELEC
1534 S:1_IN_12
1535 S:BR_ELEC
1536 D:This hatchling dragon is still soft, its eyes unaccustomed to light and
1537 D: its scales a pale blue.
1539 N:128:Baby white dragon
1540 G:d:w
1541 I:110:10d10:20:30:70
1542 W:9:2:0:35
1543 B:CLAW:HURT:1d3
1544 B:CLAW:HURT:1d3
1545 B:BITE:HURT:1d5
1546 F:FORCE_MAXHP | FORCE_SLEEP
1547 F:ONLY_GOLD | DROP_60 | DROP_1D2
1548 F:OPEN_DOOR | BASH_DOOR
1549 F:EVIL | DRAGON | IM_COLD
1550 S:1_IN_12
1551 S:BR_COLD
1552 D:This hatchling dragon is still soft, its eyes unaccustomed to light and
1553 D: its scales a pale white.
1555 N:129:Baby green dragon
1556 G:d:g
1557 I:110:10d10:20:30:70
1558 W:9:2:0:35
1559 B:CLAW:HURT:1d3
1560 B:CLAW:HURT:1d3
1561 B:BITE:HURT:1d5
1562 F:FORCE_MAXHP | FORCE_SLEEP
1563 F:ONLY_GOLD | DROP_60 | DROP_1D2
1564 F:OPEN_DOOR | BASH_DOOR
1565 F:EVIL | DRAGON | IM_POIS
1566 S:1_IN_12
1567 S:BR_POIS
1568 D:This hatchling dragon is still soft, its eyes unaccustomed to light and
1569 D: its scales a sickly green.
1571 N:130:Baby black dragon
1572 G:d:s
1573 I:110:10d10:20:30:70
1574 W:9:2:0:35
1575 B:CLAW:HURT:1d3
1576 B:CLAW:HURT:1d3
1577 B:BITE:HURT:1d5
1578 F:FORCE_MAXHP | FORCE_SLEEP
1579 F:ONLY_GOLD | DROP_60 | DROP_1D2
1580 F:OPEN_DOOR | BASH_DOOR
1581 F:EVIL | DRAGON | IM_ACID
1582 S:1_IN_12
1583 S:BR_ACID
1584 D:This hatchling dragon is still soft, its eyes unaccustomed to light and
1585 D: its scales a dull black.
1587 N:131:Baby red dragon
1588 G:d:r
1589 I:110:10d10:20:30:70
1590 W:9:2:0:35
1591 B:CLAW:HURT:1d3
1592 B:CLAW:HURT:1d3
1593 B:BITE:HURT:1d5
1594 F:FORCE_MAXHP | FORCE_SLEEP
1595 F:ONLY_GOLD | DROP_60 | DROP_1D2
1596 F:OPEN_DOOR | BASH_DOOR
1597 F:EVIL | DRAGON | IM_FIRE
1598 S:1_IN_12
1599 S:BR_FIRE
1600 D:This hatchling dragon is still soft, its eyes unaccustomed to light and
1601 D: its scales a pale red.
1603 N:132:Giant red ant
1604 G:a:r
1605 I:110:4d8:12:34:60
1606 W:9:2:0:22
1607 B:BITE:HURT:1d4
1608 B:STING:LOSE_STR:1d4
1609 F:WEIRD_MIND | BASH_DOOR
1610 F:ANIMAL
1611 D:It is large and has venomous mandibles.
1613 N:133:Brodda, the Easterling
1614 G:p:U
1615 I:110:21d10:20:25:20
1616 W:9:2:0:100
1617 B:HIT:HURT:1d12
1618 B:HIT:HURT:1d12
1619 B:HIT:HURT:1d12
1620 B:HIT:HURT:1d12
1621 F:UNIQUE | MALE
1622 F:FORCE_MAXHP
1623 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
1624 F:OPEN_DOOR | BASH_DOOR
1625 D:A nasty piece of work, Brodda picks on defenseless women and children.
1627 N:134:King cobra
1628 G:J:g
1629 I:110:8d10:8:30:1
1630 W:9:2:0:28
1631 B:SPIT:BLIND:1d2
1632 B:BITE:POISON:3d4
1633 F:RAND_50
1634 F:BASH_DOOR
1635 F:ANIMAL | IM_POIS
1636 D:It is a large snake with a hooded face.
1638 N:135:Giant spider
1639 G:S:v
1640 I:110:10d10:8:16:80
1641 W:10:2:0:35
1642 B:BITE:HURT:1d10
1643 B:BITE:POISON:1d6
1644 B:BITE:POISON:1d6
1645 B:BITE:HURT:1d10
1646 F:WEIRD_MIND | BASH_DOOR
1647 F:ANIMAL | IM_POIS
1648 D:It is a vast black spider whose bulbous body is bloated with poison.
1650 N:136:Dark elven mage
1651 G:h:r
1652 I:120:7d10:20:16:20
1653 W:10:1:0:50
1654 B:HIT:HURT:1d6
1655 B:HIT:HURT:1d6
1656 F:MALE
1657 F:FORCE_SLEEP
1658 F:ONLY_ITEM | DROP_1D2
1659 F:OPEN_DOOR | BASH_DOOR
1660 F:EVIL | IM_POIS | HURT_LITE
1661 S:1_IN_5
1662 S:BLIND | CONF | MISSILE | DARKNESS | BA_POIS
1663 D:A dark elven figure, dressed all in black, hurling spells at you.
1665 N:137:Orfax, Son of Boldor
1666 G:y:B
1667 I:120:12d10:18:20:10
1668 W:10:3:0:80
1669 B:HIT:HURT:1d9
1670 B:HIT:HURT:1d8
1671 B:INSULT
1672 B:INSULT
1673 F:UNIQUE | MALE
1674 F:FORCE_SLEEP | FORCE_MAXHP
1675 F:ESCORT | ESCORTS
1676 F:ONLY_ITEM | DROP_90 | DROP_GOOD
1677 F:SMART | OPEN_DOOR | BASH_DOOR
1678 F:ANIMAL | EVIL | IM_ACID
1679 S:1_IN_4
1680 S:HEAL | BLINK | TELE_TO | SLOW | CONF
1681 S:S_MONSTER
1682 D:He's just like his daddy!  He knows mighty spells, but fortunately he is a
1683 D: yeek.
1685 N:138:Dark elven warrior
1686 G:h:u
1687 I:110:10d11:20:16:20
1688 W:10:1:0:50
1689 B:HIT:HURT:1d8
1690 B:HIT:HURT:1d8
1691 F:MALE
1692 F:DROP_1D2
1693 F:OPEN_DOOR | BASH_DOOR
1694 F:EVIL | HURT_LITE
1695 D:A dark elven figure in armour and ready with his sword.
1697 N:139:Clear mushroom patch
1698 G:,:w
1699 I:120:1d1:4:1:0
1700 W:10:2:0:3
1701 B:SPORE:HURT:1d1
1702 F:ATTR_CLEAR
1703 F:NEVER_MOVE | INVISIBLE | COLD_BLOOD | MULTIPLY
1704 F:STUPID | EMPTY_MIND
1705 F:NO_CONF | NO_SLEEP | NO_FEAR
1706 D:Yum!  It looks quite tasty.
1708 N:140:Grishnakh, the Hill Orc
1709 G:o:y
1710 I:110:23d10:20:20:20
1711 W:10:3:0:160
1712 B:HIT:HURT:1d12
1713 B:HIT:HURT:1d10
1714 B:HIT:HURT:1d12
1715 B:HIT:HURT:1d10
1716 F:UNIQUE | MALE
1717 F:FORCE_MAXHP
1718 F:ESCORT
1719 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
1720 F:OPEN_DOOR | BASH_DOOR
1721 F:EVIL | ORC | IM_POIS
1722 D:He is a cunning and devious orc with a chaotic nature.
1724 N:141:Giant white tick
1725 G:S:w
1726 I:100:12d8:12:40:20
1727 W:10:2:0:27
1728 B:BITE:POISON:2d6
1729 F:WEIRD_MIND | BASH_DOOR
1730 F:ANIMAL | IM_POIS
1731 D:It is moving slowly towards you.
1733 N:142:Hairy mold
1734 G:m:o
1735 I:110:15d8:2:15:70
1736 W:10:1:0:32
1737 B:SPORE:POISON:1d3
1738 F:NEVER_MOVE
1739 F:STUPID | EMPTY_MIND
1740 F:IM_POIS
1741 F:NO_CONF | NO_SLEEP | NO_FEAR
1742 D:It is a strange hairy growth on the dungeon floor.
1744 N:143:Disenchanter mold
1745 G:m:v
1746 I:110:16d8:2:20:70
1747 W:10:1:0:40
1748 B:SPORE:UN_BONUS:1d6
1749 F:NEVER_MOVE | ATTR_MULTI
1750 F:STUPID | EMPTY_MIND
1751 F:IM_POIS | RES_DISE
1752 F:NO_CONF | NO_SLEEP | NO_FEAR
1753 S:1_IN_11
1754 S:DRAIN_MANA
1755 D:It is a strange glowing growth on the dungeon floor.
1757 N:144:Pseudo-dragon
1758 G:d:o
1759 I:110:20d10:20:30:70
1760 W:10:2:0:150
1761 B:CLAW:HURT:1d3
1762 B:CLAW:HURT:1d3
1763 B:BITE:HURT:1d5
1764 F:FORCE_MAXHP | FORCE_SLEEP
1765 F:DROP_60
1766 F:BASH_DOOR
1767 F:EVIL | DRAGON
1768 S:1_IN_11
1769 S:CONF | SCARE
1770 S:BR_LITE | BR_DARK
1771 D:A small relative of the dragon that inhabits dark caves.
1773 N:145:Tengu
1774 G:u:R
1775 I:120:16d9:20:32:30
1776 W:10:1:0:40
1777 B:HIT:HURT:1d8
1778 F:OPEN_DOOR | BASH_DOOR
1779 F:EVIL | DEMON | IM_FIRE | NO_FEAR
1780 S:1_IN_3
1781 S:BLINK | TELE_TO
1782 D:It is a fast-moving demon that blinks quickly in and out of existence; no
1783 D: other demon matches its teleporting mastery.
1785 N:146:Creeping gold coins
1786 G:$:y
1787 I:100:18d8:5:36:10
1788 W:10:3:0:32
1789 B:HIT:HURT:2d5
1790 B:TOUCH:POISON:3d5
1791 F:ONLY_GOLD | DROP_90 | DROP_1D2
1792 F:COLD_BLOOD | BASH_DOOR
1793 F:IM_POIS | IM_ELEC | IM_ACID | NO_CONF | NO_SLEEP
1794 D:It appears to be a pile of gold coins, until it starts crawling towards you
1795 D: on tiny legs.
1797 N:147:Wolf
1798 G:C:u
1799 I:120:6d6:30:30:20
1800 W:10:1:0:30
1801 B:BITE:HURT:1d6
1802 F:RAND_25
1803 F:FRIENDS
1804 F:BASH_DOOR
1805 F:ANIMAL
1806 D:It howls and snaps at you.
1808 N:148:Giant fruit fly
1809 G:I:G
1810 I:120:2d2:8:14:10
1811 W:10:3:0:4
1812 B:BITE:HURT:1d2
1813 F:RAND_50 | RAND_25
1814 F:MULTIPLY | WEIRD_MIND
1815 F:ANIMAL
1816 D:A fast-breeding, annoying pest.
1818 N:149:Panther
1819 G:f:u
1820 I:120:10d8:40:30:0
1821 W:10:2:0:25
1822 B:CLAW:HURT:1d8
1823 B:CLAW:HURT:1d8
1824 F:BASH_DOOR
1825 F:ANIMAL
1826 D:A large black cat, stalking you with intent.  It thinks you're its next
1827 D: meal.
1829 N:150:Brigand
1830 G:p:b
1831 I:110:9d8:20:32:10
1832 W:10:2:0:35
1833 B:HIT:HURT:2d4
1834 B:TOUCH:EAT_ITEM
1835 F:MALE
1836 F:DROP_1D2
1837 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
1838 F:EVIL
1839 D:He is eyeing your backpack.
1841 N:151:Baby multi-hued dragon
1842 G:d:v
1843 I:110:13d10:20:30:70
1844 W:11:2:0:45
1845 B:CLAW:HURT:1d4
1846 B:CLAW:HURT:1d4
1847 B:BITE:HURT:1d6
1848 F:ATTR_MULTI
1849 F:FORCE_MAXHP | FORCE_SLEEP
1850 F:ONLY_GOLD | DROP_60 | DROP_1D2
1851 F:OPEN_DOOR | BASH_DOOR
1852 F:EVIL | DRAGON
1853 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
1854 S:1_IN_12
1855 S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS
1856 D:This hatchling dragon is still soft, its eyes unaccustomed to light and
1857 D: its scales shimmering with hints of many different colours.
1859 N:152:Hippogriff
1860 G:H:U
1861 I:110:20d9:12:14:10
1862 W:11:1:0:30
1863 B:HIT:HURT:2d5
1864 B:BITE:HURT:2d5
1865 F:BASH_DOOR
1866 F:ANIMAL
1867 D:A strange hybrid of eagle and horse.  It looks weird.
1869 N:153:Zombified orc
1870 G:z:s
1871 I:110:11d8:20:24:25
1872 W:11:1:0:30
1873 B:HIT:HURT:1d4
1874 B:HIT:HURT:1d4
1875 B:HIT:HURT:1d4
1876 F:COLD_BLOOD | EMPTY_MIND | OPEN_DOOR | BASH_DOOR
1877 F:EVIL | ORC | UNDEAD
1878 F:IM_COLD | IM_POIS
1879 F:NO_CONF | NO_SLEEP | NO_FEAR
1880 D:It is a shambling orcish corpse leaving behind a trail of flesh.
1882 N:154:Gnome mage
1883 G:h:r
1884 I:110:7d8:18:20:10
1885 W:11:2:0:38
1886 B:HIT:HURT:1d5
1887 F:MALE
1888 F:FORCE_SLEEP | DROP_1D2
1889 F:OPEN_DOOR | BASH_DOOR
1890 F:EVIL
1891 S:1_IN_4
1892 S:BLINK | DARKNESS | BO_COLD
1893 S:S_MONSTER
1894 D:A mage of short stature.
1896 N:155:Black mamba
1897 G:J:D
1898 I:120:10d8:10:32:1
1899 W:12:3:0:40
1900 B:BITE:POISON:4d4
1901 F:RAND_50
1902 F:BASH_DOOR
1903 F:ANIMAL | IM_POIS
1904 D:It has glistening black skin, a sleek body and highly venomous fangs.
1906 N:156:White wolf
1907 G:C:w
1908 I:120:7d7:30:30:20
1909 W:12:1:0:30
1910 B:BITE:HURT:1d3
1911 B:BITE:HURT:1d4
1912 F:RAND_25
1913 F:FRIENDS
1914 F:BASH_DOOR
1915 F:ANIMAL | IM_COLD
1916 D:A large and muscled wolf from the northern wastes.  Its breath is cold and
1917 D: icy and its fur coated in frost.
1919 N:157:Grape jelly
1920 G:j:v
1921 I:110:52d8:2:1:99
1922 W:12:3:0:60
1923 B:TOUCH:EXP_10
1924 F:NEVER_MOVE
1925 F:STUPID | EMPTY_MIND
1926 F:IM_POIS | HURT_LITE
1927 F:NO_CONF | NO_SLEEP | NO_FEAR
1928 S:1_IN_11
1929 S:DRAIN_MANA
1930 D:Yum!  It looks quite tasty.  It is a pulsing mound of glowing flesh.
1932 N:158:Nether worm mass
1933 G:w:D
1934 I:100:5d8:10:15:3
1935 W:12:3:0:6
1936 B:TOUCH:EXP_10
1937 F:RAND_50 | RAND_25
1938 F:STUPID | WEIRD_MIND | MULTIPLY | BASH_DOOR
1939 F:ANIMAL | HURT_LITE | NO_FEAR
1940 D:It is a disgusting mass of dark worms, eating each other, the floor,
1941 D: the air, you....
1943 N:159:Golfimbul, the Hill Orc Chief
1944 G:o:y
1945 I:110:24d10:20:60:20
1946 W:12:3:0:230
1947 B:HIT:HURT:1d12
1948 B:HIT:HURT:1d12
1949 B:HIT:HURT:1d10
1950 B:HIT:HURT:1d10
1951 F:UNIQUE | MALE
1952 F:FORCE_MAXHP
1953 F:ESCORT
1954 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
1955 F:OPEN_DOOR | BASH_DOOR
1956 F:EVIL | ORC | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
1957 D:A leader of a band of raiding orcs, he picks on hobbits.
1959 N:160:Master yeek
1960 G:y:U
1961 I:110:12d9:18:24:10
1962 W:12:2:0:28
1963 B:HIT:HURT:1d8
1964 F:FORCE_SLEEP
1965 F:DROP_60
1966 F:OPEN_DOOR | BASH_DOOR
1967 F:ANIMAL | EVIL | IM_ACID
1968 S:1_IN_4
1969 S:BLINK | TPORT | BLIND | SLOW | BA_POIS
1970 S:S_MONSTER
1971 D:A small humanoid that radiates some power.
1973 N:161:Priest
1974 G:p:g
1975 I:110:12d8:20:22:40
1976 W:12:1:0:36
1977 B:HIT:HURT:2d3
1978 B:HIT:HURT:2d3
1979 F:MALE
1980 F:FORCE_SLEEP
1981 F:DROP_1D2
1982 F:SMART | OPEN_DOOR | BASH_DOOR
1983 F:EVIL
1984 S:1_IN_3
1985 S:HEAL | SCARE | CAUSE_2
1986 S:S_MONSTER
1987 D:A robed man, dedicated to his god.
1989 N:162:Dark elven priest
1990 G:h:g
1991 I:120:7d10:20:30:30
1992 W:12:1:0:50
1993 B:HIT:HURT:1d9
1994 B:HIT:HURT:1d10
1995 F:MALE
1996 F:FORCE_SLEEP
1997 F:ONLY_ITEM | DROP_1D2
1998 F:SMART | OPEN_DOOR | BASH_DOOR
1999 F:EVIL | HURT_LITE
2000 S:1_IN_5
2001 S:HEAL | BLIND | CONF | CAUSE_2 | DARKNESS
2002 D:A dark elven figure, dressed all in black, chanting curses and waiting to
2003 D: deliver your soul to hell.
2005 N:163:Air spirit
2006 G:E:B
2007 I:130:8d8:12:40:20
2008 W:12:2:0:40
2009 B:HIT:HURT:1d3
2010 F:RAND_50 | RAND_25
2011 F:EMPTY_MIND | INVISIBLE | COLD_BLOOD | BASH_DOOR
2012 F:IM_ELEC | IM_POIS
2013 F:NO_CONF | NO_SLEEP | NO_FEAR
2014 D:A whirlwind of sentient air.
2016 N:164:Skeleton human
2017 G:s:w
2018 I:110:10d8:20:30:30
2019 W:12:1:0:38
2020 B:HIT:HURT:1d8
2021 F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
2022 F:EVIL | UNDEAD | IM_COLD
2023 F:IM_POIS
2024 F:NO_CONF | NO_SLEEP | NO_FEAR
2025 D:It is an animated human skeleton.
2027 N:165:Zombified human
2028 G:z:s
2029 I:110:12d8:20:24:20
2030 W:12:1:0:34
2031 B:HIT:HURT:1d4
2032 B:HIT:HURT:1d4
2033 F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
2034 F:EVIL | UNDEAD | IM_COLD | IM_POIS
2035 F:NO_CONF | NO_SLEEP | NO_FEAR
2036 D:It is a shambling human corpse dropping chunks of flesh behind it.
2038 N:166:Tiger
2039 G:f:o
2040 I:120:12d10:40:40:0
2041 W:12:2:0:40
2042 B:CLAW:HURT:1d8
2043 B:CLAW:HURT:1d8
2044 B:BITE:HURT:1d6
2045 F:BASH_DOOR
2046 F:ANIMAL
2047 D:One of the largest of its species, a sleek orange and black shape creeps
2048 D: towards you, ready to pounce.
2050 N:167:Moaning spirit
2051 G:G:u
2052 I:120:5d8:14:20:10
2053 W:12:2:0:44
2054 B:WAIL:TERRIFY
2055 B:TOUCH:LOSE_DEX:1d8
2056 F:FORCE_SLEEP | RAND_25
2057 F:DROP_60 | DROP_90
2058 F:INVISIBLE | COLD_BLOOD | PASS_WALL
2059 F:EVIL | UNDEAD | IM_COLD | NO_CONF | NO_SLEEP
2060 S:1_IN_15
2061 S:TPORT | SCARE
2062 D:A ghostly apparition that shrieks horribly.
2064 N:168:Swordsman
2065 G:p:u
2066 I:110:12d8:20:34:20
2067 W:12:1:0:40
2068 B:HIT:HURT:3d5
2069 B:HIT:HURT:3d5
2070 F:MALE
2071 F:DROP_1D2
2072 F:OPEN_DOOR | BASH_DOOR
2073 D:A warrior of considerable skill.
2075 N:169:Stegocentipede
2076 G:c:u
2077 I:120:13d8:12:30:30
2078 W:12:2:0:40
2079 B:BITE:HURT:2d4
2080 B:BITE:HURT:2d4
2081 B:STING:HURT:2d4
2082 F:WEIRD_MIND | BASH_DOOR
2083 F:ANIMAL
2084 D:It is a vast armoured centipede with massive mandibles and a spiked tail.
2086 N:170:Spotted jelly
2087 G:j:o
2088 I:120:13d8:12:18:1
2089 W:12:3:0:33
2090 B:TOUCH:ACID:1d10
2091 B:TOUCH:ACID:2d6
2092 B:TOUCH:ACID:2d6
2093 F:NEVER_MOVE
2094 F:STUPID | EMPTY_MIND | COLD_BLOOD
2095 F:IM_ACID | IM_POIS | HURT_LITE
2096 F:NO_CONF | NO_SLEEP | NO_FEAR
2097 D:A strange jelly thing, covered in discoloured blotches.
2099 N:171:Drider
2100 G:S:b
2101 I:110:10d13:8:30:80
2102 W:13:2:0:55
2103 B:HIT:HURT:1d12
2104 B:HIT:HURT:1d12
2105 B:BITE:POISON:1d6
2106 F:FORCE_SLEEP
2107 F:BASH_DOOR
2108 F:EVIL | IM_POIS
2109 S:1_IN_8
2110 S:CONF | CAUSE_1 | DARKNESS
2111 D:A dark elven torso merged with the bloated form of a giant spider.
2113 N:172:Killer brown beetle
2114 G:K:u
2115 I:110:13d8:10:40:30
2116 W:13:1:0:38
2117 B:BITE:HURT:3d4
2118 F:WEIRD_MIND | BASH_DOOR
2119 F:ANIMAL
2120 D:It is a vicious insect with a tough carapace.
2122 N:173:Boldor, King of the Yeeks
2123 G:y:v
2124 I:120:18d10:18:24:10
2125 W:13:3:0:200
2126 B:HIT:HURT:1d9
2127 B:HIT:HURT:1d9
2128 B:HIT:HURT:1d8
2129 F:UNIQUE | MALE
2130 F:FORCE_SLEEP | FORCE_MAXHP
2131 F:ESCORT | ESCORTS
2132 F:ONLY_ITEM | DROP_90 | DROP_1D2 | DROP_GOOD
2133 F:SMART | OPEN_DOOR | BASH_DOOR
2134 F:ANIMAL | EVIL | IM_ACID
2135 S:1_IN_3
2136 S:HEAL | BLINK | TPORT | BLIND | SLOW
2137 S:S_MONSTER | S_KIN
2138 D:A great yeek, powerful in magic and sorcery, but a yeek all the same.
2140 N:174:Ogre
2141 G:O:U
2142 I:110:13d9:20:33:30
2143 W:13:2:0:50
2144 B:HIT:HURT:2d8
2145 F:FRIENDS
2146 F:DROP_60
2147 F:OPEN_DOOR | BASH_DOOR
2148 F:EVIL | GIANT
2149 D:A hideous, smallish giant that is often found near or with orcs.
2151 N:175:Creeping mithril coins
2152 G:$:B
2153 I:110:20d8:5:50:10
2154 W:13:3:0:45
2155 B:HIT:HURT:2d5
2156 B:TOUCH:POISON:3d5
2157 F:ONLY_GOLD | DROP_90 | DROP_2D2
2158 F:COLD_BLOOD | BASH_DOOR
2159 F:IM_POIS | IM_ELEC | IM_ACID | NO_CONF | NO_SLEEP
2160 D:It appears to be a pile of sentient mithril coins that doesn't like being
2161 D: picked up.
2163 N:176:Illusionist
2164 G:p:R
2165 I:120:12d8:20:10:10
2166 W:13:2:0:50
2167 B:HIT:HURT:2d2
2168 F:MALE
2169 F:FORCE_SLEEP | DROP_1D2
2170 F:SMART | OPEN_DOOR | BASH_DOOR
2171 F:EVIL
2172 S:1_IN_3
2173 S:HASTE | BLINK | TPORT | BLIND | HOLD | SLOW | CONF | DARKNESS
2174 D:A deceptive spell caster.
2176 N:177:Druid
2177 G:p:G
2178 I:110:12d12:20:10:10
2179 W:13:2:0:50
2180 B:HIT:HURT:2d4
2181 B:HIT:HURT:2d4
2182 F:MALE
2183 F:FORCE_SLEEP | DROP_1D2
2184 F:SMART | OPEN_DOOR | BASH_DOOR
2185 F:EVIL
2186 S:1_IN_3
2187 S:S_ANIMAL
2188 S:HASTE | BLINK | BLIND | HOLD | SLOW | BO_FIRE | BO_ELEC
2189 D:A priest devoted to Nature.
2191 N:178:Black orc
2192 G:o:D
2193 I:110:12d10:20:36:20
2194 W:13:1:0:45
2195 B:HIT:HURT:3d4
2196 B:HIT:HURT:3d4
2197 F:MALE
2198 F:FRIENDS | DROP_60
2199 F:OPEN_DOOR | BASH_DOOR
2200 F:EVIL | ORC | HURT_LITE
2201 S:1_IN_9 | ARROW_2
2202 D:He is a large orc with powerful arms and deep black skin.
2204 N:179:Ochre jelly
2205 G:j:U
2206 I:120:13d8:12:18:1
2207 W:13:3:0:40
2208 B:TOUCH:ACID:1d10
2209 B:TOUCH:ACID:2d6
2210 B:TOUCH:ACID:2d6
2211 F:STUPID | EMPTY_MIND | COLD_BLOOD
2212 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
2213 F:IM_ACID | IM_POIS
2214 F:NO_CONF | NO_SLEEP | NO_FEAR
2215 D:A fast moving highly acidic jelly thing, that is eating away the floor it
2216 D: rests on.
2218 N:180:Giant flea
2219 G:I:s
2220 I:120:2d2:8:25:10
2221 W:14:3:0:4
2222 B:BITE:HURT:1d2
2223 F:RAND_50 | RAND_25
2224 F:MULTIPLY | WEIRD_MIND | BASH_DOOR
2225 F:ANIMAL
2226 D:It makes you itch just to look at it.
2228 N:181:Ufthak of Cirith Ungol
2229 G:o:g
2230 I:110:32d10:20:50:20
2231 W:14:3:0:250
2232 B:HIT:HURT:3d4
2233 B:HIT:HURT:3d4
2234 B:HIT:HURT:3d4
2235 B:HIT:HURT:3d4
2236 F:UNIQUE | MALE
2237 F:FORCE_MAXHP
2238 F:ESCORT
2239 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
2240 F:OPEN_DOOR | BASH_DOOR
2241 F:EVIL | ORC | IM_COLD | IM_POIS
2242 D:A strong orc guarding the pass of Cirith Ungol.  He is mortally afraid of
2243 D: spiders.
2245 N:182:Giant white dragon fly
2246 G:F:w
2247 I:110:3d8:12:20:50
2248 W:14:2:0:60
2249 B:BITE:COLD:1d6
2250 F:FORCE_SLEEP
2251 F:RAND_50
2252 F:WEIRD_MIND | BASH_DOOR
2253 F:ANIMAL | IM_COLD
2254 S:1_IN_10
2255 S:BR_COLD
2256 D:It is a large fly that drips frost.
2258 N:183:Blue icky thing
2259 G:i:b
2260 I:100:10d6:15:20:20
2261 W:14:4:0:20
2262 B:CRAWL:POISON:1d4
2263 B:CRAWL:EAT_FOOD
2264 B:HIT:HURT:1d4
2265 B:HIT:HURT:1d4
2266 F:FORCE_SLEEP
2267 F:RAND_50
2268 F:MULTIPLY | OPEN_DOOR | BASH_DOOR
2269 F:EVIL | IM_POIS
2270 S:1_IN_8
2271 S:BLIND | CONF | SCARE
2272 D:It is a strange, slimy, icky creature, with rudimentary intelligence,
2273 D: but evil cunning.  It hungers for food, and you look tasty.
2275 N:184:Hill giant
2276 G:P:U
2277 I:110:30d15:20:45:50
2278 W:25:1:0:150
2279 B:HIT:HURT:4d8
2280 B:HIT:HURT:4d8
2281 F:DROP_60
2282 F:OPEN_DOOR | BASH_DOOR
2283 F:EVIL | GIANT
2284 S:1_IN_10
2285 S:BOULDER
2286 D:A ten foot tall humanoid with powerful muscles.
2288 N:185:Flesh golem
2289 G:g:R
2290 I:110:12d8:12:30:10
2291 W:14:2:0:50
2292 B:HIT:HURT:1d6
2293 B:HIT:HURT:1d6
2294 F:EMPTY_MIND | BASH_DOOR
2295 F:IM_ELEC
2296 F:NO_CONF | NO_SLEEP | NO_FEAR
2297 D:A shambling humanoid monster with long scars.
2299 N:186:Warg
2300 G:C:s
2301 I:120:8d8:20:20:40
2302 W:14:2:0:40
2303 B:BITE:HURT:1d8
2304 F:RAND_25
2305 F:FRIENDS
2306 F:BASH_DOOR
2307 F:ANIMAL | EVIL
2308 D:It is a large wolf with eyes full of cunning.
2310 N:187:Giant black louse
2311 G:l:D
2312 I:120:1d2:6:7:10
2313 W:14:1:0:3
2314 B:BITE:HURT:1d2
2315 F:RAND_50
2316 F:WEIRD_MIND | MULTIPLY
2317 F:ANIMAL
2318 D:It makes you itch just to look at it.
2320 N:188:Lurker
2321 G:.:w
2322 I:110:20d10:30:25:10
2323 W:14:3:0:80
2324 B:HIT:HURT:1d8
2325 B:HIT:HURT:1d8
2326 F:CHAR_CLEAR | ATTR_CLEAR
2327 F:NEVER_MOVE | FORCE_MAXHP
2328 F:EMPTY_MIND | INVISIBLE | COLD_BLOOD
2329 F:NO_CONF | NO_SLEEP | NO_FEAR
2330 D:A strange creature that merges with the dungeon floor, trapping its
2331 D: victims by enveloping them within its perfectly disguised form.
2333 N:189:Wererat
2334 G:r:D
2335 I:110:20d8:10:10:10
2336 W:15:2:0:45
2337 B:CLAW:HURT:1d8
2338 B:CLAW:HURT:1d8
2339 B:BITE:HURT:2d6
2340 F:FORCE_SLEEP
2341 F:ONLY_GOLD | DROP_60
2342 F:OPEN_DOOR | BASH_DOOR
2343 F:ANIMAL | EVIL
2344 S:1_IN_9
2345 S:BLINK | CAUSE_2 | BO_COLD | BA_POIS
2346 D:A large rat with glowing red eyes.  The wererat is a disgusting creature,
2347 D: relishing in filth and disease.
2349 N:190:Black ogre
2350 G:O:D
2351 I:110:20d9:20:33:30
2352 W:15:2:0:75
2353 B:HIT:HURT:2d8
2354 B:HIT:HURT:2d8
2355 F:RAND_25
2356 F:FRIENDS | DROP_60
2357 F:OPEN_DOOR | BASH_DOOR
2358 F:EVIL | GIANT
2359 D:A massive orc-like figure with black skin and powerful arms.
2361 N:191:Magic mushroom patch
2362 G:,:B
2363 I:140:1d1:40:10:0
2364 W:15:2:0:10
2365 B:SPORE:CONFUSE
2366 B:SPORE:CONFUSE
2367 B:SPORE:HALLU
2368 B:SPORE:HALLU
2369 F:FORCE_SLEEP | NEVER_MOVE
2370 F:STUPID | EMPTY_MIND
2371 F:NO_CONF | NO_SLEEP | NO_FEAR
2372 S:1_IN_2
2373 S:BLINK | SLOW | SCARE | DARKNESS
2374 D:Yum!  It looks quite tasty.  It seems to glow with an unusual light.
2376 N:192:Guardian naga
2377 G:n:B
2378 I:110:24d11:20:65:120
2379 W:15:2:0:80
2380 B:CRUSH:HURT:2d8
2381 B:BITE:HURT:1d8
2382 B:BITE:HURT:1d8
2383 F:FEMALE
2384 F:RAND_25 | DROP_60 | DROP_1D2
2385 F:OPEN_DOOR | BASH_DOOR
2386 F:EVIL
2387 D:A giant snake-like figure with a woman's torso.
2389 N:193:Light hound
2390 G:Z:o
2391 I:110:6d6:30:30:0
2392 W:15:1:0:50
2393 B:CLAW:HURT:1d4
2394 B:CLAW:HURT:1d4
2395 B:BITE:HURT:1d6
2396 F:FORCE_SLEEP
2397 F:FRIENDS
2398 F:BASH_DOOR
2399 F:ANIMAL
2400 S:1_IN_5
2401 S:BR_LITE
2402 D:A brilliant canine form whose light hurts your eyes, even at this distance.
2404 N:194:Dark hound
2405 G:Z:D
2406 I:110:6d6:30:30:0
2407 W:15:1:0:50
2408 B:CLAW:HURT:1d4
2409 B:CLAW:HURT:1d4
2410 B:BITE:HURT:1d6
2411 F:FORCE_SLEEP
2412 F:FRIENDS
2413 F:BASH_DOOR
2414 F:ANIMAL
2415 S:1_IN_5
2416 S:BR_DARK
2417 D:A hole in the air in the shape of a huge hound.  No light falls upon its
2418 D: form.
2420 N:195:Half-orc
2421 G:o:s
2422 I:110:16d10:20:40:20
2423 W:15:2:0:50
2424 B:HIT:HURT:3d4
2425 B:HIT:HURT:3d4
2426 F:MALE
2427 F:FRIENDS | DROP_60
2428 F:OPEN_DOOR | BASH_DOOR
2429 F:EVIL | ORC
2430 D:He is a hideous deformed cross-breed with man and orc, combining man's
2431 D: strength and cunning with orcish evil.  The traitorous wizard Saruman is
2432 D: generally believed to be responsible for this abomination.
2434 N:196:Giant tarantula
2435 G:S:o
2436 I:120:10d15:8:32:80
2437 W:15:3:0:70
2438 B:BITE:POISON:1d6
2439 B:BITE:POISON:1d6
2440 B:BITE:POISON:1d6
2441 F:WEIRD_MIND | BASH_DOOR
2442 F:ANIMAL | IM_POIS
2443 D:A giant spider with hairy black and red legs.
2445 N:197:Giant clear centipede
2446 G:c:w
2447 I:110:5d8:12:30:30
2448 W:15:2:0:30
2449 B:BITE:HURT:2d4
2450 B:STING:HURT:2d4
2451 F:ATTR_CLEAR
2452 F:INVISIBLE | WEIRD_MIND | BASH_DOOR
2453 F:ANIMAL
2454 D:It is about four feet long and carnivorous.
2456 N:198:Mirkwood spider
2457 G:S:g
2458 I:120:9d8:15:25:80
2459 W:15:2:0:25
2460 B:BITE:HURT:1d8
2461 B:BITE:POISON:1d6
2462 B:BITE:POISON:1d6
2463 F:FRIENDS
2464 F:WEIRD_MIND | BASH_DOOR
2465 F:ANIMAL | EVIL | IM_POIS
2466 D:A strong and powerful spider from Mirkwood forest.  Cunning and evil, it
2467 D: seeks to taste your juicy insides.
2469 N:199:Frost giant
2470 G:P:w
2471 I:110:32d15:20:50:50
2472 W:28:1:0:180
2473 B:HIT:COLD:5d8
2474 B:HIT:COLD:5d8
2475 F:DROP_60
2476 F:OPEN_DOOR | BASH_DOOR
2477 F:EVIL | GIANT
2478 F:IM_COLD
2479 S:1_IN_10
2480 S:BOULDER
2481 D:A twelve foot tall giant covered in furs.
2483 N:200:Griffon
2484 G:H:u
2485 I:110:30d8:12:15:10
2486 W:15:1:0:70
2487 B:HIT:HURT:3d4
2488 B:BITE:HURT:2d6
2489 F:BASH_DOOR
2490 F:ANIMAL
2491 D:It is half lion, half eagle.  It flies menacingly towards you.
2493 N:201:Homunculus
2494 G:u:y
2495 I:110:8d8:20:32:30
2496 W:15:3:0:40
2497 B:HIT:PARALYZE:1d2
2498 B:HIT:HURT:1d10
2499 F:OPEN_DOOR | BASH_DOOR
2500 F:EVIL | DEMON | IM_FIRE | NO_FEAR
2501 D:It is a small demonic spirit full of malevolence.
2503 N:202:Gnome mage
2504 G:h:r
2505 I:110:7d8:20:20:20
2506 W:15:2:0:40
2507 B:HIT:HURT:1d5
2508 F:MALE
2509 F:FORCE_SLEEP | FRIENDS | DROP_60
2510 F:OPEN_DOOR | BASH_DOOR
2511 F:EVIL
2512 S:1_IN_4
2513 S:BLINK | DARKNESS | BO_COLD
2514 S:S_MONSTER
2515 D:A mage of short stature.
2517 N:203:Clear hound
2518 G:Z:w
2519 I:110:6d6:30:30:0
2520 W:15:1:0:50
2521 B:CLAW:HURT:1d6
2522 B:CLAW:HURT:1d6
2523 B:BITE:HURT:1d8
2524 F:ATTR_CLEAR
2525 F:FRIENDS
2526 F:INVISIBLE | BASH_DOOR
2527 F:ANIMAL
2528 D:A completely translucent hound.
2530 N:204:Clay golem
2531 G:g:U
2532 I:110:14d8:12:30:10
2533 W:15:2:0:60
2534 B:HIT:HURT:1d8
2535 B:HIT:HURT:1d8
2536 F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR
2537 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
2538 F:HURT_ROCK
2539 F:NO_CONF | NO_SLEEP | NO_FEAR
2540 D:It is a massive animated statue made out of hardened clay.
2542 N:205:Umber hulk
2543 G:X:U
2544 I:110:20d10:20:50:10
2545 W:16:1:0:75
2546 B:GAZE:CONFUSE
2547 B:HIT:HURT:1d6
2548 B:HIT:HURT:1d6
2549 B:BITE:HURT:2d6
2550 F:EMPTY_MIND | COLD_BLOOD
2551 F:BASH_DOOR | KILL_WALL
2552 F:ANIMAL | EVIL
2553 F:IM_POIS
2554 F:HURT_ROCK | NO_CONF | NO_SLEEP
2555 D:This bizarre creature has glaring eyes and large mandibles capable of
2556 D: slicing through rock.
2558 N:206:Orc captain
2559 G:o:o
2560 I:110:20d10:20:59:20
2561 W:18:3:0:80
2562 B:HIT:HURT:3d5
2563 B:HIT:HURT:3d5
2564 B:HIT:HURT:3d5
2565 F:MALE | ESCORT | DROP_90
2566 F:OPEN_DOOR | BASH_DOOR
2567 F:EVIL | ORC | IM_POIS
2568 S:1_IN_9 | ARROW_2
2569 D:An armoured orc with an air of authority.
2571 N:207:Gelatinous cube
2572 G:j:G
2573 I:110:36d10:12:18:1
2574 W:16:4:0:80
2575 B:TOUCH:ACID:1d10
2576 B:TOUCH:ACID:1d10
2577 B:TOUCH:ACID:1d10
2578 F:FORCE_MAXHP
2579 F:DROP_1D2 | DROP_4D2
2580 F:STUPID | EMPTY_MIND | COLD_BLOOD
2581 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
2582 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
2583 F:NO_CONF | NO_SLEEP | NO_FEAR
2584 D:It is a strange, vast gelatinous structure that assumes cubic proportions
2585 D: as it lines all four walls of the corridors it patrols.  Through its
2586 D: transparent jelly structure you can see treasures it has engulfed, and a
2587 D: few corpses as well.
2589 N:208:Giant green dragon fly
2590 G:F:g
2591 I:110:3d8:12:20:50
2592 W:16:2:0:65
2593 B:BITE:POISON:1d6
2594 F:FORCE_SLEEP | RAND_50 | RAND_25
2595 F:WEIRD_MIND | BASH_DOOR
2596 F:ANIMAL | IM_POIS
2597 S:1_IN_10
2598 S:BR_POIS
2599 D:A vast, foul-smelling dragonfly.
2601 N:209:Fire giant
2602 G:P:r
2603 I:110:34d16:20:60:50
2604 W:30:1:0:220
2605 B:HIT:FIRE:6d8
2606 B:HIT:FIRE:6d8
2607 F:DROP_60
2608 F:OPEN_DOOR | BASH_DOOR
2609 F:EVIL | GIANT
2610 F:IM_FIRE
2611 S:1_IN_8
2612 S:BOULDER
2613 D:A glowing fourteen foot tall giant.  Flames drip from its red skin.
2615 N:210:Hummerhorn
2616 G:I:y
2617 I:120:2d2:8:14:10
2618 W:16:4:0:4
2619 B:BITE:CONFUSE:2d2
2620 F:RAND_50 | RAND_25
2621 F:MULTIPLY | WEIRD_MIND
2622 F:ANIMAL
2623 D:A giant buzzing wasp, its stinger drips venom.
2625 N:211:Ulfast, Son of Ulfang
2626 G:p:U
2627 I:110:34d10:20:40:40
2628 W:16:3:0:200
2629 B:HIT:HURT:3d5
2630 B:HIT:HURT:3d5
2631 B:HIT:HURT:3d5
2632 B:HIT:HURT:3d5
2633 F:UNIQUE
2634 F:MALE
2635 F:FORCE_MAXHP
2636 F:ONLY_ITEM | DROP_90 | DROP_GOOD
2637 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
2638 F:EVIL
2639 D:A short and swarthy Easterling.
2641 N:212:Quasit
2642 G:u:o
2643 I:110:6d8:20:30:20
2644 W:16:2:0:50
2645 B:BITE:LOSE_DEX:1d6
2646 B:CLAW:HURT:1d3
2647 B:CLAW:HURT:1d3
2648 F:FORCE_SLEEP
2649 F:RAND_25
2650 F:ONLY_ITEM | DROP_1D2
2651 F:SMART | INVISIBLE | BASH_DOOR
2652 F:EVIL | DEMON | IM_FIRE
2653 S:1_IN_10
2654 S:BLINK | TPORT | TELE_TO | TELE_LEVEL | BLIND | CONF | SCARE
2655 D:The chaotic evil master's favourite pet.
2657 N:213:Imp
2658 G:u:g
2659 I:110:6d8:20:30:20
2660 W:17:2:0:55
2661 B:HIT:POISON:3d4
2662 B:HIT:POISON:3d4
2663 F:FORCE_SLEEP
2664 F:RAND_25
2665 F:ONLY_ITEM | DROP_1D2
2666 F:SMART | INVISIBLE | COLD_BLOOD | BASH_DOOR
2667 F:EVIL | DEMON | IM_FIRE
2668 S:1_IN_10
2669 S:BLINK | TPORT | TELE_TO | TELE_LEVEL | BLIND | CONF | SCARE
2670 D:The lawful evil master's favourite pet.
2672 N:214:Forest troll
2673 G:T:g
2674 I:110:20d10:20:50:40
2675 W:17:1:0:70
2676 B:HIT:HURT:1d4
2677 B:HIT:HURT:1d4
2678 B:BITE:HURT:1d6
2679 F:MALE
2680 F:FRIENDS | DROP_60
2681 F:OPEN_DOOR | BASH_DOOR
2682 F:EVIL | TROLL | HURT_LITE | REGENERATE
2683 D:He is green skinned and ugly.
2685 N:215:Nar, the Dwarf
2686 G:h:y
2687 I:110:45d10:25:70:25
2688 W:17:2:0:250
2689 B:HIT:HURT:3d5
2690 B:HIT:HURT:3d5
2691 B:HIT:HURT:3d5
2692 B:HIT:HURT:3d5
2693 F:UNIQUE | MALE
2694 F:FORCE_MAXHP | FORCE_SLEEP
2695 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
2696 F:OPEN_DOOR | BASH_DOOR
2697 F:IM_FIRE | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
2698 S:1_IN_6
2699 S:HEAL | BLIND | CONF | CAUSE_2 | MIND_BLAST
2700 D:The friend and companion of the dwarven king Thror, he went mad with
2701 D: grief after Thror's death at the hands of Azog the Orc.  With torn beard
2702 D: and ragged clothes, he seems to have fixed on you as a convenient target
2703 D: to vent his anger.
2705 N:216:2-headed hydra
2706 G:M:u
2707 I:110:100d3:20:60:20
2708 W:17:2:0:80
2709 B:BITE:HURT:2d6
2710 B:BITE:HURT:2d6
2711 F:FORCE_SLEEP
2712 F:ONLY_GOLD | DROP_1D2
2713 F:OPEN_DOOR | BASH_DOOR | MOVE_BODY
2714 F:ANIMAL
2715 S:1_IN_11
2716 S:SCARE
2717 D:A strange reptilian hybrid with two heads, guarding its hoard.
2719 N:217:Water spirit
2720 G:E:b
2721 I:120:9d8:12:28:40
2722 W:17:2:0:58
2723 B:HIT:HURT:2d4
2724 B:HIT:HURT:2d4
2725 F:RAND_25
2726 F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR
2727 F:IM_ACID | IM_POIS | IM_WATER
2728 F:NO_CONF | NO_SLEEP | NO_FEAR
2729 D:A whirlpool of sentient liquid.
2731 N:218:Giant red scorpion
2732 G:S:r
2733 I:110:11d8:12:44:20
2734 W:17:1:0:62
2735 B:BITE:HURT:2d4
2736 B:STING:LOSE_STR:1d7
2737 F:WEIRD_MIND | BASH_DOOR
2738 F:ANIMAL
2739 D:It is fast and poisonous.
2741 N:219:Earth spirit
2742 G:E:u
2743 I:120:13d8:10:40:50
2744 W:17:2:0:64
2745 B:HIT:HURT:1d8
2746 B:HIT:HURT:1d8
2747 F:RAND_25
2748 F:EMPTY_MIND | COLD_BLOOD
2749 F:PASS_WALL
2750 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | HURT_ROCK
2751 F:NO_CONF | NO_SLEEP | NO_FEAR
2752 D:A whirling form of sentient rock.
2754 N:220:Fire spirit
2755 G:E:r
2756 I:120:10d9:16:30:20
2757 W:18:2:0:75
2758 B:HIT:FIRE:2d6
2759 B:HIT:FIRE:2d6
2760 F:RAND_25
2761 F:EMPTY_MIND | BASH_DOOR
2762 F:IM_FIRE | IM_POIS
2763 F:NO_CONF | NO_SLEEP | NO_FEAR
2764 D:A whirlwind of sentient flame.
2766 N:221:Fire hound
2767 G:Z:r
2768 I:110:10d6:30:30:0
2769 W:18:1:0:70
2770 B:CLAW:HURT:3d3
2771 B:CLAW:HURT:3d3
2772 B:BITE:FIRE:2d6
2773 F:FORCE_SLEEP
2774 F:FRIENDS
2775 F:BASH_DOOR
2776 F:ANIMAL | IM_FIRE
2777 S:1_IN_10
2778 S:BR_FIRE
2779 D:Flames lick at its feet and its tongue is a blade of fire.  You can feel a
2780 D: furnace heat radiating from the creature.
2782 N:222:Cold hound
2783 G:Z:w
2784 I:110:10d6:30:30:0
2785 W:18:1:0:70
2786 B:CLAW:HURT:3d3
2787 B:CLAW:HURT:3d3
2788 B:BITE:COLD:2d6
2789 F:FORCE_SLEEP
2790 F:FRIENDS
2791 F:BASH_DOOR
2792 F:ANIMAL | IM_COLD
2793 S:1_IN_10
2794 S:BR_COLD
2795 D:A hound as tall as a man, this creature appears to be composed of angular
2796 D: planes of ice.  Cold radiates from it and freezes your breath in the air.
2798 N:223:Energy hound
2799 G:Z:b
2800 I:110:10d6:30:30:0
2801 W:18:1:0:70
2802 B:CLAW:HURT:3d3
2803 B:CLAW:HURT:3d3
2804 B:BITE:ELEC:2d6
2805 F:FORCE_SLEEP
2806 F:FRIENDS
2807 F:BASH_DOOR
2808 F:ANIMAL | IM_ELEC
2809 S:1_IN_10
2810 S:BR_ELEC
2811 D:Saint Elmo's Fire forms a ghostly halo around this hound, and sparks sting
2812 D: your fingers as energy builds up in the air around you.
2814 N:224:Potion mimic
2815 G:!:w
2816 I:110:10d10:25:30:0
2817 W:18:3:0:60
2818 B:HIT:POISON:3d4
2819 B:HIT:HURT:2d3
2820 B:HIT:HURT:2d3
2821 F:CHAR_MULTI
2822 F:FORCE_SLEEP | NEVER_MOVE
2823 F:EMPTY_MIND | COLD_BLOOD
2824 F:NO_CONF | NO_SLEEP | NO_FEAR
2825 S:1_IN_6
2826 S:BLIND | CONF | SCARE | CAUSE_2 | BO_COLD
2827 D:A strange creature that disguises itself as a discarded potion bottle to lure
2828 D: unsuspecting adventurers within reach of its venomous claws.
2830 N:225:Blink dog
2831 G:C:B
2832 I:120:8d8:20:20:10
2833 W:18:2:0:50
2834 B:BITE:HURT:1d8
2835 F:RAND_25
2836 F:FRIENDS
2837 F:BASH_DOOR
2838 F:ANIMAL
2839 S:1_IN_4
2840 S:BLINK | TELE_TO
2841 D:A strange magical member of the canine race, its form seems to shimmer and
2842 D: fade in front of your very eyes.
2844 N:226:Uruk
2845 G:o:B
2846 I:110:8d10:20:50:20
2847 W:16:1:0:60
2848 B:HIT:HURT:3d5
2849 B:HIT:HURT:3d5
2850 F:MALE
2851 F:FORCE_MAXHP | FRIENDS | DROP_60
2852 F:OPEN_DOOR | BASH_DOOR
2853 F:EVIL | ORC | IM_POIS
2854 S:1_IN_9 | ARROW_2
2855 D:A cunning orc of power, as tall as a man, and stronger.  It fears
2856 D: little.
2858 N:227:Shagrat, the Orc Captain
2859 G:o:g
2860 I:110:40d10:20:60:20
2861 W:19:2:0:400
2862 B:HIT:HURT:3d8
2863 B:HIT:HURT:3d8
2864 B:HIT:HURT:3d5
2865 B:HIT:HURT:3d5
2866 F:UNIQUE | MALE
2867 F:FORCE_MAXHP
2868 F:ESCORT
2869 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
2870 F:OPEN_DOOR | BASH_DOOR
2871 F:EVIL | ORC | IM_POIS
2872 D:He is an orc of power and great cunning, leader of the garrison at Cirith Ungol.
2874 N:228:Gorbag, the Orc Captain
2875 G:o:g
2876 I:110:40d10:20:60:20
2877 W:19:2:0:400
2878 B:HIT:HURT:3d8
2879 B:HIT:HURT:3d8
2880 B:HIT:HURT:3d5
2881 B:HIT:HURT:3d5
2882 F:UNIQUE | MALE
2883 F:FORCE_MAXHP
2884 F:ESCORT
2885 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
2886 F:OPEN_DOOR | BASH_DOOR
2887 F:EVIL | ORC | IM_POIS
2888 D:He is an orc of power and great cunning, leader of the garrison at Minas Morgul.
2890 N:229:Shambling mound
2891 G:,:g
2892 I:110:20d6:20:16:40
2893 W:18:2:0:75
2894 B:HIT:HURT:1d8
2895 B:HIT:HURT:1d8
2896 F:ONLY_GOLD | DROP_90
2897 F:STUPID | EMPTY_MIND | OPEN_DOOR | BASH_DOOR
2898 F:EVIL
2899 F:NO_CONF | NO_SLEEP | NO_FEAR
2900 S:1_IN_4
2901 S:SHRIEK
2902 D:A pile of rotting vegetation that slides towards you with a disgusting
2903 D: stench, waking all it nears.
2905 N:230:Stone giant
2906 G:P:W
2907 I:110:35d18:20:75:50
2908 W:33:1:0:250
2909 B:HIT:HURT:7d8
2910 B:HIT:HURT:7d8
2911 F:DROP_60
2912 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
2913 F:EVIL | GIANT
2914 S:1_IN_5
2915 S:BOULDER
2916 D:It is eighteen feet tall and looking at you.
2918 N:231:Giant black dragon fly
2919 G:F:s
2920 I:120:3d8:12:20:50
2921 W:18:2:0:70
2922 F:FORCE_SLEEP | NEVER_BLOW | RAND_50 | RAND_25
2923 F:WEIRD_MIND | BASH_DOOR
2924 F:ANIMAL | IM_ACID
2925 S:1_IN_10
2926 S:BR_ACID
2927 D:The size of a large bird, this fly drips caustic acid.
2929 N:232:Stone golem
2930 G:g:W
2931 I:100:28d8:12:75:10
2932 W:19:2:0:100
2933 B:HIT:HURT:1d10
2934 B:HIT:HURT:1d10
2935 F:COLD_BLOOD | EMPTY_MIND | BASH_DOOR
2936 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
2937 F:HURT_ROCK
2938 F:NO_CONF | NO_SLEEP | NO_FEAR
2939 D:It is a massive animated statue.
2941 N:233:Red mold
2942 G:m:r
2943 I:110:17d8:2:16:70
2944 W:19:1:0:64
2945 B:SPORE:FIRE:4d4
2946 F:NEVER_MOVE
2947 F:STUPID | EMPTY_MIND
2948 F:IM_FIRE | IM_POIS
2949 F:NO_CONF | NO_SLEEP | NO_FEAR
2950 D:It is a strange red growth on the dungeon floor; it seems to burn with
2951 D: flame.
2953 N:234:Giant gold dragon fly
2954 G:F:y
2955 I:120:3d8:12:20:50
2956 W:19:2:0:75
2957 B:BITE:HURT:1d3
2958 F:FORCE_SLEEP
2959 F:RAND_50 | RAND_25
2960 F:WEIRD_MIND | BASH_DOOR
2961 F:ANIMAL | IM_FIRE
2962 S:1_IN_10
2963 S:BR_SOUN
2964 D:Large beating wings support this dazzling insect.  A loud buzzing noise
2965 D: pervades the air.
2967 N:235:Bolg, Son of Azog
2968 G:o:v
2969 I:120:50d10:20:50:20
2970 W:20:4:0:800
2971 B:HIT:HURT:3d6
2972 B:HIT:HURT:3d6
2973 B:HIT:HURT:3d6
2974 B:HIT:HURT:3d6
2975 F:UNIQUE | MALE
2976 F:FORCE_MAXHP
2977 F:ESCORT
2978 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
2979 F:OPEN_DOOR | BASH_DOOR
2980 F:EVIL | ORC | IM_POIS
2981 D:A large and powerful orc, he looks just like his father.  He is tall and
2982 D: fast, but fortunately blessed with orcish brains.
2984 N:236:Phase spider
2985 G:S:B
2986 I:120:6d8:15:25:80
2987 W:20:2:0:60
2988 B:BITE:HURT:1d8
2989 B:BITE:POISON:1d6
2990 B:BITE:POISON:1d6
2991 F:FRIENDS
2992 F:WEIRD_MIND | BASH_DOOR
2993 F:ANIMAL | IM_POIS
2994 S:1_IN_5
2995 S:BLINK | TELE_TO
2996 D:A spider that never seems quite there.  Everywhere you look it is just
2997 D: half-seen in the corner of one eye.
2999 N:237:3-headed hydra
3000 G:M:o
3001 I:120:100d5:20:65:20
3002 W:20:2:0:350
3003 B:BITE:HURT:2d6
3004 B:BITE:HURT:2d6
3005 B:BITE:HURT:2d6
3006 F:FORCE_SLEEP
3007 F:ONLY_GOLD | DROP_1D2 | DROP_2D2
3008 F:OPEN_DOOR | BASH_DOOR | MOVE_BODY
3009 F:ANIMAL
3010 S:1_IN_9
3011 S:SCARE
3012 D:A strange reptilian hybrid with three heads, guarding its hoard.
3014 N:238:Earth hound
3015 G:Z:u
3016 I:110:15d8:30:30:0
3017 W:20:1:0:200
3018 B:BITE:HURT:1d8
3019 B:BITE:HURT:1d8
3020 B:CLAW:HURT:3d3
3021 B:CLAW:HURT:3d3
3022 F:FORCE_SLEEP
3023 F:FRIENDS
3024 F:BASH_DOOR
3025 F:ANIMAL
3026 S:1_IN_10
3027 S:BR_SHAR
3028 D:A beautiful crystalline shape does not disguise the danger this hound
3029 D: clearly presents.  Your flesh tingles as it approaches.
3031 N:239:Air hound
3032 G:Z:g
3033 I:110:15d8:30:30:0
3034 W:20:1:0:200
3035 B:BITE:POISON:1d8
3036 B:BITE:POISON:1d8
3037 B:CLAW:HURT:3d3
3038 B:CLAW:HURT:3d3
3039 F:FORCE_SLEEP
3040 F:FRIENDS
3041 F:BASH_DOOR
3042 F:ANIMAL | IM_POIS
3043 S:1_IN_10
3044 S:BR_POIS
3045 D:Swirling vapours surround this beast as it floats towards you, seemingly
3046 D: walking on air.  Noxious gases sting your throat.
3048 N:240:Sabre-tooth tiger
3049 G:f:y
3050 I:120:20d14:40:50:0
3051 W:20:2:0:120
3052 B:CLAW:HURT:1d10
3053 B:CLAW:HURT:1d10
3054 B:BITE:HURT:1d10
3055 B:BITE:HURT:1d10
3056 F:BASH_DOOR
3057 F:ANIMAL
3058 D:A fierce and dangerous cat, its huge tusks and sharp claws would lacerate
3059 D: even the strongest armour.
3061 N:241:Water hound
3062 G:Z:s
3063 I:110:15d8:30:30:0
3064 W:20:1:0:200
3065 B:BITE:ACID:1d8
3066 B:BITE:ACID:1d8
3067 B:CLAW:HURT:3d3
3068 B:CLAW:HURT:3d3
3069 F:FORCE_SLEEP
3070 F:FRIENDS
3071 F:BASH_DOOR
3072 F:ANIMAL | IM_ACID
3073 S:1_IN_10
3074 S:BR_ACID
3075 D:Liquid footprints follow this hound as it pads around the dungeon.  An
3076 D: acrid smell of acid rises from the dog's pelt.
3078 N:242:Chimaera
3079 G:H:r
3080 I:110:20d15:12:15:10
3081 W:20:2:0:200
3082 B:BUTT:HURT:2d8
3083 B:BITE:HURT:2d10
3084 B:BITE:FIRE:2d6
3085 F:FORCE_SLEEP
3086 F:BASH_DOOR
3087 F:IM_FIRE
3088 S:1_IN_10
3089 S:BR_FIRE
3090 D:It is a strange concoction of goat, lion and dragon, with the heads of all
3091 D: three beasts.
3093 N:243:Quylthulg
3094 G:Q:y
3095 I:110:6d8:10:1:0
3096 W:20:1:0:250
3097 F:FORCE_SLEEP | NEVER_MOVE | NEVER_BLOW
3098 F:EMPTY_MIND | INVISIBLE | ANIMAL
3099 F:NO_CONF | NO_SLEEP | NO_FEAR
3100 S:1_IN_4
3101 S:BLINK
3102 S:S_MONSTER
3103 D:It is a strange pulsing mound of flesh.
3105 N:244:Sasquatch
3106 G:Y:g
3107 I:120:20d19:15:40:10
3108 W:20:3:0:180
3109 B:CLAW:HURT:1d10
3110 B:CLAW:HURT:1d10
3111 B:BITE:HURT:2d8
3112 F:OPEN_DOOR | BASH_DOOR
3113 F:ANIMAL | IM_COLD
3114 D:A tall shaggy, furry humanoid, it could call the yeti brother.
3116 N:245:Werewolf
3117 G:C:D
3118 I:110:20d22:15:30:70
3119 W:20:1:0:150
3120 B:CLAW:HURT:2d6
3121 B:CLAW:HURT:2d6
3122 B:BITE:HURT:2d10
3123 F:RAND_25
3124 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
3125 F:ANIMAL | EVIL
3126 D:It is a huge wolf with eyes that glow with manly intelligence.
3128 N:246:Dark elven lord
3129 G:h:s
3130 I:120:18d15:20:40:30
3131 W:20:2:0:500
3132 B:HIT:HURT:3d8
3133 B:HIT:HURT:3d5
3134 F:MALE
3135 F:FORCE_SLEEP
3136 F:ONLY_ITEM | DROP_2D2
3137 F:OPEN_DOOR | BASH_DOOR
3138 F:EVIL | HURT_LITE
3139 S:1_IN_5
3140 S:HASTE | BLIND | CONF | DARKNESS | BO_FIRE | BO_COLD
3141 D:A dark elven figure in armour and radiating evil power.
3143 N:247:Cloud giant
3144 G:P:b
3145 I:110:35d20:20:60:50
3146 W:36:1:0:500
3147 B:HIT:ELEC:8d8
3148 B:HIT:ELEC:8d8
3149 F:DROP_90
3150 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
3151 F:EVIL | GIANT | IM_ELEC
3152 S:1_IN_8
3153 S:BOULDER
3154 D:It is a twenty foot tall giant wreathed in clouds.
3156 N:248:Lugdush, the Uruk
3157 G:o:b
3158 I:110:64d10:20:90:20
3159 W:21:4:0:550
3160 B:HIT:HURT:3d7
3161 B:HIT:HURT:3d7
3162 B:HIT:HURT:3d5
3163 B:HIT:HURT:3d5
3164 F:UNIQUE | MALE
3165 F:FORCE_MAXHP
3166 F:ESCORT
3167 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
3168 F:OPEN_DOOR | BASH_DOOR
3169 F:EVIL | ORC | IM_POIS
3170 D:A large and powerful orc, captain of one of Saruman's orcish regiments.
3172 N:249:Ugluk, the Uruk
3173 G:o:b
3174 I:110:72d10:20:95:20
3175 W:22:3:0:600
3176 B:HIT:HURT:3d8
3177 B:HIT:HURT:3d8
3178 B:HIT:HURT:3d5
3179 B:HIT:HURT:3d5
3180 F:UNIQUE | MALE
3181 F:FORCE_MAXHP
3182 F:ESCORT
3183 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
3184 F:OPEN_DOOR | BASH_DOOR
3185 F:EVIL | ORC | IM_FIRE | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
3186 D:A strong and cunning orc warrior, the commander of Saruman's orcish horde.
3188 N:250:Blue dragon bat
3189 G:b:b
3190 I:130:4d4:12:26:50
3191 W:21:1:0:54
3192 B:BITE:ELEC:1d3
3193 F:FORCE_SLEEP
3194 F:RAND_50
3195 F:BASH_DOOR
3196 F:ANIMAL | IM_ELEC
3197 S:1_IN_4
3198 S:BR_ELEC
3199 D:It is a glowing blue bat with a sharp tail.
3201 N:251:Scroll mimic
3202 G:?:w
3203 I:110:10d14:30:40:0
3204 W:21:3:0:70
3205 B:HIT:POISON:3d4
3206 B:HIT:POISON:3d4
3207 B:HIT:HURT:2d3
3208 B:HIT:HURT:2d3
3209 F:CHAR_MULTI
3210 F:FORCE_SLEEP | NEVER_MOVE
3211 F:EMPTY_MIND | COLD_BLOOD
3212 F:NO_CONF | NO_SLEEP | NO_FEAR
3213 S:1_IN_5
3214 S:BLIND | CONF | SCARE | CAUSE_2 | BO_FIRE
3215 S:S_MONSTER
3216 D:A strange creature that disguises itself as a discarded scroll to lure
3217 D: unsuspecting adventurers within reach of its venomous claws.
3219 N:252:Fire vortex
3220 G:v:r
3221 I:110:9d9:100:30:0
3222 W:21:1:0:100
3223 B:ENGULF:FIRE:3d3
3224 F:FORCE_SLEEP | RAND_50
3225 F:EMPTY_MIND | BASH_DOOR | POWERFUL
3226 F:IM_FIRE | NO_FEAR | NO_CONF | NO_SLEEP
3227 S:1_IN_6
3228 S:BR_FIRE
3229 D:A whirling maelstrom of fire.
3231 N:253:Water vortex
3232 G:v:s
3233 I:110:9d9:100:30:0
3234 W:21:1:0:100
3235 B:ENGULF:ACID:3d3
3236 F:FORCE_SLEEP | RAND_50
3237 F:EMPTY_MIND | BASH_DOOR | POWERFUL
3238 F:IM_ACID | NO_FEAR | NO_CONF | NO_SLEEP | IM_WATER
3239 S:1_IN_6
3240 S:BR_ACID
3241 D:A caustic spinning whirlpool of water.
3243 N:254:Cold vortex
3244 G:v:w
3245 I:110:9d9:100:30:0
3246 W:21:1:0:100
3247 B:ENGULF:COLD:3d3
3248 F:FORCE_SLEEP | RAND_50
3249 F:EMPTY_MIND | BASH_DOOR | POWERFUL
3250 F:IM_COLD | NO_FEAR | NO_CONF | NO_SLEEP
3251 S:1_IN_6
3252 S:BR_COLD
3253 D:A twisting whirlpool of frost.
3255 N:255:Energy vortex
3256 G:v:b
3257 I:110:9d9:100:30:0
3258 W:21:1:0:100
3259 B:ENGULF:ELEC:3d3
3260 F:FORCE_SLEEP | RAND_50
3261 F:EMPTY_MIND | BASH_DOOR | POWERFUL
3262 F:IM_ELEC | NO_FEAR | NO_CONF | NO_SLEEP
3263 S:1_IN_6
3264 S:BR_ELEC
3265 D:A shimmering tornado of air, sparks crackle along its length.
3267 N:256:Mummified orc
3268 G:z:w
3269 I:110:15d8:20:28:75
3270 W:21:1:0:56
3271 B:HIT:HURT:2d4
3272 B:HIT:HURT:2d4
3273 F:DROP_90
3274 F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
3275 F:EVIL | ORC | UNDEAD
3276 F:IM_COLD | IM_POIS
3277 F:NO_CONF | NO_SLEEP | NO_FEAR
3278 D:It is an orcish figure covered in wrappings.
3280 N:257:Killer stag beetle
3281 G:K:g
3282 I:110:15d8:12:55:30
3283 W:22:1:0:80
3284 B:CLAW:HURT:1d12
3285 B:CLAW:HURT:1d12
3286 F:RAND_25
3287 F:WEIRD_MIND | BASH_DOOR
3288 F:ANIMAL
3289 D:It is a giant beetle with vicious claws.
3291 N:258:Iron golem
3292 G:g:s
3293 I:110:80d12:12:80:10
3294 W:22:2:0:160
3295 B:HIT:HURT:1d12
3296 F:FORCE_SLEEP
3297 F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR
3298 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
3299 F:NO_CONF | NO_SLEEP | NO_FEAR
3300 S:1_IN_7
3301 S:SLOW
3302 D:It is a massive metal statue that moves steadily towards you.
3304 N:259:Giant yellow scorpion
3305 G:S:y
3306 I:110:12d8:12:38:20
3307 W:22:1:0:60
3308 B:BITE:HURT:1d8
3309 B:STING:POISON:2d5
3310 F:WEIRD_MIND | BASH_DOOR
3311 F:ANIMAL
3312 D:It is a giant scorpion with a sharp stinger.
3314 N:260:Black ooze
3315 G:j:D
3316 I:90:6d8:10:6:1
3317 W:23:1:0:7
3318 B:TOUCH:ACID:2d6
3319 F:RAND_50 | DROP_60
3320 F:STUPID | EMPTY_MIND | MULTIPLY
3321 F:TAKE_ITEM | KILL_BODY | OPEN_DOOR | BASH_DOOR
3322 F:IM_POIS | NO_FEAR
3323 S:1_IN_11
3324 S:DRAIN_MANA
3325 D:It is a strangely moving puddle.
3327 N:261:Hardened warrior
3328 G:p:u
3329 I:110:15d11:20:40:40
3330 W:23:1:0:60
3331 B:HIT:HURT:6d5
3332 B:HIT:HURT:6d5
3333 F:MALE
3334 F:DROP_1D2
3335 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
3336 F:EVIL
3337 D:A scarred warrior who moves with confidence.
3339 N:262:Azog, King of the Uruk-Hai
3340 G:o:v
3341 I:120:90d10:20:80:20
3342 W:23:5:0:1111
3343 B:HIT:HURT:5d5
3344 B:HIT:HURT:5d5
3345 B:HIT:HURT:5d5
3346 F:UNIQUE | MALE
3347 F:FORCE_MAXHP
3348 F:ESCORT | ESCORTS
3349 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
3350 F:OPEN_DOOR | BASH_DOOR
3351 F:EVIL | ORC | IM_POIS
3352 D:He is also known as the King of Khazad-dum.  His ego is renowned to be
3353 D: bigger than his head.
3355 N:263:Master rogue
3356 G:p:b
3357 I:120:15d9:20:30:40
3358 W:23:2:0:110
3359 B:HIT:HURT:2d8
3360 B:HIT:HURT:2d8
3361 B:HIT:EAT_GOLD:4d4
3362 F:MALE
3363 F:DROP_2D2
3364 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
3365 F:EVIL
3366 D:A thief of great power and shifty speed.
3368 N:264:Red dragon bat
3369 G:b:r
3370 I:130:3d8:12:28:50
3371 W:23:1:0:60
3372 B:BITE:FIRE:1d3
3373 F:FORCE_SLEEP | RAND_50
3374 F:BASH_DOOR
3375 F:ANIMAL | IM_FIRE
3376 S:1_IN_4
3377 S:BR_FIRE
3378 D:It is a sharp-tailed bat, wreathed in fire.
3380 N:265:Killer white beetle
3381 G:K:w
3382 I:110:18d8:14:55:30
3383 W:23:1:0:85
3384 B:BITE:HURT:4d5
3385 F:RAND_25
3386 F:WEIRD_MIND | BASH_DOOR
3387 F:ANIMAL
3388 D:It is looking for prey.
3390 N:266:Giant bronze dragon fly
3391 G:F:U
3392 I:120:3d8:12:20:50
3393 W:23:2:0:80
3394 F:FORCE_SLEEP | NEVER_BLOW
3395 F:RAND_50 | RAND_25
3396 F:WEIRD_MIND | BASH_DOOR
3397 F:ANIMAL | NO_CONF | NO_SLEEP
3398 S:1_IN_10
3399 S:BR_CONF
3400 D:This vast gleaming bronze fly has wings which beat mesmerically fast.
3402 N:267:Forest wight
3403 G:W:g
3404 I:110:12d8:20:30:30
3405 W:24:1:0:140
3406 B:HIT:HURT:1d6
3407 B:HIT:HURT:1d6
3408 B:TOUCH:EXP_20
3409 F:FORCE_SLEEP | RAND_25
3410 F:DROP_60 | DROP_90
3411 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
3412 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE
3413 F:NO_CONF | NO_SLEEP
3414 S:1_IN_10
3415 S:SCARE | DRAIN_MANA
3416 D:It is a ghostly apparition with a humanoid form.
3418 N:268:Ibun, Son of Mim
3419 G:h:o
3420 I:110:82d10:20:80:10
3421 W:24:2:0:300
3422 B:HIT:HURT:3d6
3423 B:HIT:HURT:3d6
3424 B:HIT:HURT:3d6
3425 B:HIT:UN_BONUS
3426 F:UNIQUE | MALE
3427 F:FORCE_SLEEP | FORCE_MAXHP
3428 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
3429 F:OPEN_DOOR | BASH_DOOR
3430 F:IM_FIRE | IM_COLD | NO_CONF | NO_SLEEP
3431 S:1_IN_8
3432 S:HEAL | SLOW | BO_FIRE
3433 D:One of the last of the Petty-Dwarves.  Ibun is a tricky sorcerous little
3434 D: being, full of mischief.
3436 N:269:Khim, Son of Mim
3437 G:h:o
3438 I:110:82d10:20:80:10
3439 W:24:2:0:300
3440 B:HIT:HURT:3d6
3441 B:HIT:HURT:3d6
3442 B:HIT:HURT:3d6
3443 B:HIT:UN_BONUS
3444 F:UNIQUE | MALE
3445 F:FORCE_SLEEP | FORCE_MAXHP
3446 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
3447 F:OPEN_DOOR | BASH_DOOR
3448 F:IM_FIRE | IM_COLD | NO_CONF | NO_SLEEP
3449 S:1_IN_8
3450 S:HEAL | SLOW | BO_FIRE
3451 D:One of the last of the Petty-Dwarves.  Khim is a tricky sorcerous little
3452 D: being, full of mischief.
3454 N:270:4-headed hydra
3455 G:M:y
3456 I:120:100d6:20:70:20
3457 W:24:2:0:450
3458 B:BITE:HURT:2d6
3459 B:BITE:HURT:2d6
3460 B:BITE:HURT:2d6
3461 B:BITE:HURT:2d6
3462 F:FORCE_SLEEP
3463 F:ONLY_GOLD | DROP_4D2
3464 F:OPEN_DOOR | BASH_DOOR | MOVE_BODY
3465 F:ANIMAL
3466 S:1_IN_7
3467 S:SCARE
3468 D:A strange reptilian hybrid with four heads, guarding its hoard.
3470 N:271:Mummified human
3471 G:z:w
3472 I:110:17d9:20:34:60
3473 W:24:1:0:70
3474 B:HIT:HURT:2d4
3475 B:HIT:HURT:2d4
3476 F:ONLY_ITEM | DROP_90
3477 F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
3478 F:EVIL | UNDEAD | IM_COLD | IM_POIS
3479 F:NO_CONF | NO_SLEEP | NO_FEAR
3480 D:It is a human form encased in mouldy wrappings.
3482 N:272:Vampire bat
3483 G:b:D
3484 I:120:9d10:12:40:50
3485 W:24:2:0:150
3486 B:BITE:EXP_40:1d4
3487 B:BITE:EXP_40:1d4
3488 F:RAND_50 | COLD_BLOOD | REGENERATE
3489 F:EVIL | ANIMAL | UNDEAD | IM_COLD | IM_POIS
3490 F:NO_CONF | NO_SLEEP | NO_FEAR
3491 D:A blood-sucking bat that flies at your neck hungrily.
3493 N:273:Sangahyando of Umbar
3494 G:p:U
3495 I:110:80d10:25:80:25
3496 W:24:2:0:400
3497 B:HIT:HURT:4d6
3498 B:HIT:HURT:4d6
3499 B:HIT:HURT:4d6
3500 B:HIT:HURT:4d6
3501 F:UNIQUE | MALE
3502 F:FORCE_SLEEP | FORCE_MAXHP
3503 F:ONLY_ITEM | DROP_90 | DROP_1D2 | DROP_GOOD
3504 F:OPEN_DOOR | BASH_DOOR
3505 F:EVIL | IM_FIRE | IM_ELEC | NO_CONF | NO_SLEEP
3506 S:1_IN_4
3507 S:SLOW | CONF
3508 D:A Black Numenorean with a blacker heart.
3510 N:274:Angamaite of Umbar
3511 G:p:U
3512 I:110:80d10:25:80:25
3513 W:24:2:0:400
3514 B:HIT:HURT:4d6
3515 B:HIT:HURT:4d6
3516 B:HIT:HURT:4d6
3517 B:HIT:HURT:4d6
3518 F:UNIQUE | MALE
3519 F:FORCE_SLEEP | FORCE_MAXHP
3520 F:ONLY_ITEM | DROP_90 | DROP_1D2 | DROP_GOOD
3521 F:OPEN_DOOR | BASH_DOOR
3522 F:EVIL | IM_FIRE | IM_ELEC | NO_CONF | NO_SLEEP
3523 S:1_IN_4
3524 S:SLOW | CONF
3525 D:A Black Numenorean who hates the men of the west.
3527 N:275:Banshee
3528 G:G:b
3529 I:120:6d8:20:24:10
3530 W:24:2:0:60
3531 B:WAIL:TERRIFY
3532 B:TOUCH:EXP_20
3533 F:FEMALE
3534 F:RAND_50 | DROP_1D2
3535 F:INVISIBLE | COLD_BLOOD | TAKE_ITEM | PASS_WALL
3536 F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
3537 S:1_IN_15
3538 S:TPORT | DRAIN_MANA
3539 D:It is a ghostly woman's form that wails mournfully.
3541 N:276:Pukelman
3542 G:g:D
3543 I:110:80d12:12:80:10
3544 W:25:3:0:600
3545 B:HIT:HURT:1d12
3546 B:HIT:HURT:3d6
3547 F:FORCE_SLEEP
3548 F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR
3549 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
3550 F:HURT_ROCK
3551 F:NO_CONF | NO_SLEEP | NO_FEAR
3552 S:1_IN_4
3553 S:SLOW | CONF | BO_ACID
3554 D:A stumpy figure carved from stone, with glittering eyes, this sentinel
3555 D: strides towards you with deadly intent.
3557 N:277:Dark elven druid
3558 G:h:G
3559 I:120:20d20:15:75:10
3560 W:25:3:0:500
3561 B:HIT:HURT:1d7
3562 B:HIT:HURT:1d7
3563 B:HIT:HURT:3d8
3564 F:MALE
3565 F:FORCE_SLEEP
3566 F:ONLY_ITEM | DROP_1D2
3567 F:OPEN_DOOR | BASH_DOOR
3568 F:EVIL | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
3569 S:1_IN_6
3570 S:HEAL | CONF | DARKNESS
3571 S:S_MONSTER | S_SPIDER | S_ANIMAL
3572 D:A powerful dark elf, with mighty nature-controlling enchantments.
3574 N:278:Stone troll
3575 G:T:W
3576 I:110:23d10:20:40:50
3577 W:25:1:0:85
3578 B:HIT:HURT:1d6
3579 B:HIT:HURT:1d6
3580 B:BITE:HURT:3d4
3581 F:MALE
3582 F:FRIENDS | DROP_60
3583 F:OPEN_DOOR | BASH_DOOR
3584 F:EVIL | TROLL | HURT_LITE | HURT_ROCK | REGENERATE
3585 D:He is a giant troll with scabrous black skin.
3587 N:279:Troll priest
3588 G:T:G
3589 I:110:30d10:20:50:30
3590 W:26:1:0:120
3591 B:HIT:HURT:1d8
3592 B:HIT:HURT:1d8
3593 B:BITE:HURT:3d4
3594 F:MALE
3595 F:FORCE_SLEEP | FORCE_MAXHP | DROP_90
3596 F:OPEN_DOOR | BASH_DOOR | REGENERATE
3597 F:EVIL | TROLL | HURT_LITE | NO_CONF | NO_SLEEP
3598 S:1_IN_5
3599 S:BLINK | SCARE | CAUSE_1 | MISSILE | DARKNESS
3600 D:A troll who is so bright he knows how to read.
3602 N:280:Wereworm
3603 G:w:D
3604 I:110:100d11:15:70:20
3605 W:25:3:0:300
3606 B:GAZE:EXP_20
3607 B:CRAWL:ACID:2d4
3608 B:BITE:HURT:1d10
3609 B:BITE:POISON:1d6
3610 F:BASH_DOOR
3611 F:ANIMAL | IM_ACID
3612 D:A huge wormlike shape dripping acid, twisted by evil sorcery into a foul
3613 D: monster that breeds on death.
3615 N:281:Carrion crawler
3616 G:c:o
3617 I:110:20d12:15:40:10
3618 W:25:2:0:60
3619 B:STING:PARALYZE:2d6
3620 B:STING:PARALYZE:2d6
3621 F:RAND_25
3622 F:WEIRD_MIND | BASH_DOOR
3623 F:ANIMAL | IM_POIS
3624 D:A hideous centipede covered in slime and with glowing tentacles around its
3625 D: head.
3627 N:282:Killer red beetle
3628 G:K:r
3629 I:110:20d8:14:50:30
3630 W:25:1:0:90
3631 B:BITE:LOSE_STR:4d4
3632 F:RAND_25
3633 F:WEIRD_MIND | BASH_DOOR
3634 F:ANIMAL
3635 D:It is a giant beetle with poisonous mandibles.
3637 N:283:Giant grey ant
3638 G:a:s
3639 I:110:19d8:10:40:40
3640 W:26:1:0:90
3641 B:BITE:HURT:2d12
3642 F:RAND_25 | KILL_BODY
3643 F:WEIRD_MIND | BASH_DOOR
3644 F:ANIMAL
3645 D:It is an ant encased in shaggy grey fur.
3647 N:284:Ulwarth, Son of Ulfang
3648 G:p:U
3649 I:110:85d10:20:40:40
3650 W:26:4:0:500
3651 B:HIT:HURT:4d6
3652 B:HIT:HURT:4d6
3653 B:HIT:HURT:4d6
3654 F:UNIQUE | MALE
3655 F:FORCE_MAXHP
3656 F:ONLY_ITEM | DROP_90 | DROP_GOOD
3657 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
3658 F:EVIL
3659 D:A short and swarthy Easterling.
3661 N:285:Displacer beast
3662 G:f:D
3663 I:110:25d10:35:100:20
3664 W:26:2:0:100
3665 B:BITE:HURT:2d8
3666 B:HIT:HURT:1d10
3667 B:HIT:HURT:1d10
3668 B:HIT:HURT:1d10
3669 F:INVISIBLE | BASH_DOOR
3670 F:ANIMAL
3671 D:It is a huge black panther, clubbed tentacles sprouting from its shoulders.
3673 N:286:Giant fire tick
3674 G:S:R
3675 I:110:16d8:14:54:20
3676 W:26:1:0:90
3677 B:BITE:FIRE:3d6
3678 F:RAND_25
3679 F:WEIRD_MIND | BASH_DOOR
3680 F:ANIMAL | IM_FIRE
3681 D:It is smoking and burning with great heat.
3683 N:287:Cave ogre
3684 G:O:u
3685 I:110:30d9:20:33:30
3686 W:26:2:0:80
3687 B:HIT:HURT:3d8
3688 B:HIT:HURT:3d8
3689 F:FRIENDS | DROP_60
3690 F:OPEN_DOOR | BASH_DOOR
3691 F:EVIL | GIANT
3692 D:A giant orc-like figure with an awesomely muscled frame.
3694 N:288:White wraith
3695 G:W:w
3696 I:110:15d8:20:40:10
3697 W:26:1:0:175
3698 B:HIT:HURT:1d6
3699 B:HIT:HURT:1d6
3700 B:TOUCH:EXP_20
3701 F:FORCE_SLEEP
3702 F:DROP_1D2
3703 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
3704 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
3705 S:1_IN_8
3706 S:SCARE | CAUSE_2 | DARKNESS
3707 D:It is a tangible but ghostly form made of white fog.
3709 N:289:Angel
3710 G:A:o
3711 I:110:30d10:30:60:255
3712 W:26:4:0:220
3713 B:HIT:HURT:3d4
3714 B:HIT:HURT:3d4
3715 B:HIT:HURT:3d4
3716 B:HIT:HURT:3d4
3717 F:FORCE_MAXHP | FORCE_SLEEP
3718 F:ONLY_ITEM | DROP_2D2
3719 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL
3720 F:IM_ACID | IM_POIS | NO_CONF | NO_SLEEP
3721 S:1_IN_3
3722 S:BLIND | CONF | SCARE
3723 D:Who knows why you are now facing an angel as an enemy? Is it a punishment
3724 D: from your own god for your sins, or a test of your mettle, or has this angel
3725 D: been sent by another god on behalf of someone who wishes to claim the glory
3726 D: for his own god? Perhaps you will never know: but it is here, and you must
3727 D: fight it.
3729 N:290:Mim, Betrayer of Turin
3730 G:h:o
3731 I:120:11d100:20:80:20
3732 W:27:4:0:1000
3733 B:HIT:HURT:3d8
3734 B:HIT:HURT:3d8
3735 B:HIT:HURT:3d8
3736 B:HIT:UN_BONUS
3737 F:UNIQUE | MALE
3738 F:FORCE_MAXHP | FORCE_SLEEP
3739 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD | DROP_GREAT
3740 F:OPEN_DOOR | BASH_DOOR
3741 F:EVIL | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
3742 F:NO_CONF | NO_SLEEP
3743 S:1_IN_6
3744 S:HEAL | SCARE | BO_ACID | BA_ACID
3745 D:The last of his race, Mim is a Petty-Dwarf.  Petty-Dwarves are strange
3746 D: creatures, powerful in sorcery and originating in the East.  They have
3747 D: been hunted nearly to extinction by the High Elves.
3749 N:291:Killer fire beetle
3750 G:K:R
3751 I:110:22d8:14:45:30
3752 W:27:1:0:95
3753 B:BITE:HURT:3d4
3754 B:SPIT:FIRE:4d5
3755 F:WEIRD_MIND | BASH_DOOR
3756 F:ANIMAL | IM_FIRE
3757 D:It is a giant beetle wreathed in flames.
3759 N:292:Creeping adamantite coins
3760 G:$:G
3761 I:120:20d25:5:50:10
3762 W:27:3:0:60
3763 B:BITE:POISON:3d4
3764 B:TOUCH:POISON:3d5
3765 B:HIT:HURT:1d12
3766 B:HIT:HURT:1d12
3767 F:ONLY_GOLD | DROP_90 | DROP_2D2
3768 F:COLD_BLOOD | BASH_DOOR
3769 F:IM_ACID | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
3770 D:It appears to be a pile of coins made of precious adamant, slithering toward
3771 D: you on lots of tiny legs.
3773 N:293:Algroth
3774 G:T:o
3775 I:110:21d12:20:60:40
3776 W:27:1:0:150
3777 B:CLAW:POISON:3d3
3778 B:CLAW:POISON:3d3
3779 B:BITE:HURT:1d6
3780 F:FRIENDS | DROP_60
3781 F:OPEN_DOOR | BASH_DOOR
3782 F:EVIL | TROLL | REGENERATE
3783 D:A powerful troll form.  Venom drips from its needlelike claws.
3785 N:294:Vibration hound
3786 G:Z:y
3787 I:110:25d10:30:30:0
3788 W:27:2:0:250
3789 B:BITE:HURT:2d8
3790 B:BITE:HURT:2d8
3791 B:CLAW:HURT:3d3
3792 B:CLAW:HURT:3d3
3793 F:FORCE_SLEEP
3794 F:FRIENDS
3795 F:BASH_DOOR
3796 F:ANIMAL | NO_CONF | NO_SLEEP
3797 S:1_IN_5
3798 S:BR_SOUN
3799 D:A blurry canine form which seems to be moving as fast as the eye can
3800 D: follow.  You can feel the earth resonating beneath your feet.
3802 N:295:Nexus hound
3803 G:Z:v
3804 I:110:25d10:30:30:0
3805 W:27:2:0:250
3806 B:BITE:HURT:2d8
3807 B:BITE:HURT:2d8
3808 B:CLAW:HURT:3d3
3809 B:CLAW:HURT:3d3
3810 F:FORCE_SLEEP
3811 F:FRIENDS
3812 F:BASH_DOOR
3813 F:ANIMAL | NO_CONF | NO_SLEEP | RES_NEXUS
3814 S:1_IN_5
3815 S:BR_NEXU
3816 D:A locus of conflicting points coalesce to form the vague shape of a huge
3817 D: hound.  Or is it just your imagination?
3819 N:296:Ogre mage
3820 G:O:r
3821 I:110:25d12:20:40:30
3822 W:27:2:0:300
3823 B:HIT:HURT:3d8
3824 B:HIT:HURT:3d8
3825 B:HIT:HURT:3d8
3826 B:HIT:HURT:3d8
3827 F:FORCE_SLEEP
3828 F:DROP_1D2
3829 F:OPEN_DOOR | BASH_DOOR
3830 F:EVIL | GIANT
3831 S:1_IN_4
3832 S:HEAL | HOLD | TRAPS | BA_COLD
3833 S:S_MONSTER
3834 D:A hideous ogre wrapped in black sorcerous robes.
3836 N:297:Lokkak, the Ogre Chieftain
3837 G:O:v
3838 I:120:15d100:20:100:20
3839 W:32:2:0:1500
3840 B:HIT:HURT:6d6
3841 B:HIT:HURT:6d6
3842 B:HIT:HURT:6d6
3843 F:UNIQUE | MALE
3844 F:FORCE_MAXHP
3845 F:ESCORT
3846 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
3847 F:OPEN_DOOR | BASH_DOOR
3848 F:EVIL | GIANT | IM_POIS
3849 D:An ogre renowned for acts of surpassing cruelty, Lokkak quickly became the
3850 D: leader of a large band of violent ogres.
3852 N:298:Vampire
3853 G:V:W
3854 I:110:25d12:20:45:10
3855 W:27:1:0:175
3856 B:HIT:HURT:1d6
3857 B:HIT:HURT:1d6
3858 B:BITE:EXP_20:2d6
3859 B:BITE:EXP_20:2d6
3860 F:FORCE_SLEEP
3861 F:COLD_BLOOD | DROP_60 | DROP_1D2
3862 F:OPEN_DOOR | BASH_DOOR | REGENERATE
3863 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
3864 S:1_IN_9
3865 S:TELE_TO | HOLD | SCARE | CAUSE_2 | MIND_BLAST | DARKNESS
3866 D:It is a humanoid with an aura of power.  You notice a sharp set of front
3867 D: teeth.
3869 N:299:Gorgimaera
3870 G:H:o
3871 I:110:25d20:12:55:10
3872 W:27:2:0:400
3873 B:BUTT:HURT:2d10
3874 B:BITE:FIRE:2d10
3875 B:GAZE:PARALYZE:2d6
3876 F:FORCE_SLEEP
3877 F:BASH_DOOR
3878 F:IM_FIRE
3879 S:1_IN_8
3880 S:BR_FIRE
3881 D:The result of evil experiments, this travesty of nature should never be
3882 D: alive.  It has three heads - goat, dragon and gorgon - all attached to a
3883 D: lion's body.
3885 N:300:Colbran
3886 G:g:y
3887 I:120:80d12:12:80:10
3888 W:27:2:0:900
3889 B:HIT:ELEC:3d8
3890 B:HIT:ELEC:3d8
3891 F:FORCE_SLEEP
3892 F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR
3893 F:IM_ELEC | IM_POIS
3894 F:NO_CONF | NO_SLEEP | NO_FEAR
3895 S:1_IN_3
3896 S:BO_ELEC
3897 D:A man-shaped form of living lightning, sparks and shocks crackle all over
3898 D: this madly capering figure, as it leaps and whirls around and about you.
3900 N:301:Spirit naga
3901 G:n:w
3902 I:110:30d15:20:75:120
3903 W:28:2:0:60
3904 B:CRUSH:HURT:2d8
3905 B:CRUSH:HURT:2d8
3906 B:BITE:HURT:1d8
3907 B:BITE:HURT:1d8
3908 F:FEMALE
3909 F:FORCE_SLEEP
3910 F:ONLY_ITEM | DROP_90 | DROP_2D2
3911 F:INVISIBLE | OPEN_DOOR | BASH_DOOR
3912 F:EVIL | NO_CONF | NO_SLEEP
3913 S:1_IN_4
3914 S:HEAL | BLIND | MIND_BLAST | DARKNESS
3915 D:A wraithly snake-like form with the torso of a beautiful woman, it is the
3916 D: most powerful of its kind.
3918 N:302:5-headed hydra
3919 G:M:g
3920 I:120:100d8:20:80:20
3921 W:28:2:0:650
3922 B:BITE:POISON:4d4
3923 B:BITE:POISON:4d4
3924 B:BITE:POISON:4d4
3925 B:BITE:POISON:4d4
3926 F:FORCE_SLEEP
3927 F:ONLY_GOLD | DROP_1D2 | DROP_4D2
3928 F:BASH_DOOR | MOVE_BODY
3929 F:ANIMAL | IM_POIS
3930 S:1_IN_5
3931 S:SCARE | BA_POIS
3932 D:A strange reptilian hybrid with five heads dripping venom.
3934 N:303:Black knight
3935 G:p:s
3936 I:120:30d10:20:70:10
3937 W:28:1:0:240
3938 B:HIT:HURT:5d5
3939 B:HIT:HURT:5d5
3940 B:HIT:HURT:5d5
3941 F:MALE
3942 F:FORCE_SLEEP | DROP_1D2
3943 F:OPEN_DOOR | BASH_DOOR
3944 F:EVIL
3945 S:1_IN_8
3946 S:BLIND | SCARE | CAUSE_3 | DARKNESS
3947 D:He is a figure encased in deep black plate armour; he looks at you
3948 D: menacingly.
3950 N:304:Uldor the Accursed
3951 G:p:U
3952 I:110:10d100:20:70:40
3953 W:28:4:0:600
3954 B:HIT:HURT:4d6
3955 B:HIT:HURT:4d6
3956 B:HIT:HURT:4d6
3957 B:HIT:HURT:4d6
3958 F:UNIQUE | MALE
3959 F:FORCE_MAXHP
3960 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
3961 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
3962 F:EVIL
3963 S:1_IN_10 | S_KIN
3964 D:An evil and cunning man from the East.  Having once sworn allegiance to the
3965 D: sons of Feanor, it was Uldor's treachery that turned the tide of the Battle
3966 D: of Unnumbered Tears in Morgoth's favour.
3968 N:305:Mage
3969 G:p:r
3970 I:110:15d8:20:40:10
3971 W:28:1:0:150
3972 B:HIT:HURT:2d5
3973 B:HIT:HURT:2d5
3974 F:MALE
3975 F:FORCE_SLEEP
3976 F:ONLY_ITEM | DROP_1D2
3977 F:SMART | OPEN_DOOR | BASH_DOOR
3978 F:EVIL
3979 S:1_IN_3
3980 S:HASTE | TPORT | TELE_TO | BLIND | CONF
3981 S:BO_FIRE | BO_COLD | BO_ELEC
3982 S:S_MONSTER
3983 D:A mage of some power - you can tell by the size of his hat.
3985 N:306:Mind flayer
3986 G:h:v
3987 I:110:15d10:20:60:10
3988 W:28:1:0:200
3989 B:GAZE:LOSE_INT:2d6
3990 B:GAZE:LOSE_WIS:2d6
3991 F:FORCE_SLEEP | FORCE_MAXHP
3992 F:ONLY_ITEM | DROP_60 | DROP_1D2
3993 F:OPEN_DOOR | BASH_DOOR
3994 F:EVIL | NO_CONF | NO_SLEEP
3995 S:1_IN_8
3996 S:BLIND | HOLD | SCARE | MIND_BLAST | BRAIN_SMASH | FORGET
3997 D:A humanoid form with a gruesome head, tentacular mouth, and piercing
3998 D: eyes.  Claws reach out for you and you feel a presence invade your mind.
4000 N:307:Draebor, the Imp
4001 G:u:v
4002 I:120:52d10:20:50:20
4003 W:28:5:0:750
4004 B:HIT:POISON:3d4
4005 B:HIT:POISON:3d4
4006 B:HIT:HURT:3d4
4007 B:INSULT
4008 F:UNIQUE
4009 F:FORCE_MAXHP | FORCE_SLEEP
4010 F:ESCORT
4011 F:RAND_25
4012 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
4013 F:SMART | INVISIBLE | BASH_DOOR
4014 F:EVIL | DEMON | IM_FIRE
4015 S:1_IN_5
4016 S:BLINK | TPORT | TELE_TO | TELE_AWAY | TELE_LEVEL | BLIND
4017 S:CONF | SCARE | S_KIN
4018 D:An intensely irritating git of a monster.
4020 N:308:Basilisk
4021 G:R:s
4022 I:120:20d30:15:90:30
4023 W:28:3:0:300
4024 B:GAZE:PARALYZE
4025 B:BITE:HURT:2d12
4026 B:BITE:HURT:2d12
4027 B:BITE:HURT:2d12
4028 F:ONLY_ITEM | DROP_1D2
4029 F:OPEN_DOOR | BASH_DOOR
4030 F:ANIMAL | NO_CONF | NO_SLEEP
4031 S:1_IN_8
4032 S:BR_POIS
4033 D:An evil reptile that preys on unsuspecting travellers.  Its eyes stare
4034 D: deeply at you and your soul starts to wilt!
4036 N:309:Ice troll
4037 G:T:w
4038 I:110:24d10:20:56:50
4039 W:28:1:0:200
4040 B:HIT:HURT:1d5
4041 B:HIT:HURT:1d5
4042 B:BITE:COLD:2d6
4043 B:BITE:COLD:2d6
4044 F:MALE
4045 F:FRIENDS | DROP_60
4046 F:OPEN_DOOR | BASH_DOOR | REGENERATE
4047 F:EVIL | TROLL | IM_COLD | HURT_LITE
4048 D:He is a white troll with powerfully clawed hands.
4050 N:310:Purple worm
4051 G:w:v
4052 I:110:65d8:14:65:30
4053 W:29:3:0:400
4054 B:HIT:HURT:1d8
4055 B:BITE:ACID:2d8
4056 B:STING:POISON:1d8
4057 F:BASH_DOOR
4058 F:ANIMAL | IM_ACID | IM_POIS
4059 D:It is a massive worm form, many feet in length.  Its vast maw drips acid
4060 D: and poison.
4062 N:311:Archangel
4063 G:A:B
4064 I:110:60d10:30:68:255
4065 W:34:4:0:1000
4066 B:HIT:HURT:3d5
4067 B:HIT:HURT:3d5
4068 B:HIT:HURT:3d5
4069 B:HIT:HURT:3d5
4070 F:FORCE_MAXHP | FORCE_SLEEP
4071 F:ONLY_ITEM | DROP_2D2
4072 F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL
4073 F:IM_FIRE | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
4074 S:1_IN_3
4075 S:HEAL | HASTE | BLIND | CONF | SCARE
4076 D:An angel protected by an aura of holiness.  Its muscular form looks
4077 D: extremely powerful next to your own frail body.
4079 N:312:Catoblepas
4080 G:q:g
4081 I:110:30d10:15:55:40
4082 W:29:2:0:400
4083 B:GAZE:TERRIFY:2d4
4084 B:GAZE:BLIND:2d4
4085 B:BUTT:HURT:2d6
4086 B:BITE:HURT:2d12
4087 F:ONLY_GOLD | DROP_2D2
4088 F:BASH_DOOR
4089 F:ANIMAL | IM_POIS
4090 D:A strange ox-like form with a huge head but a thin, weak neck, it looks
4091 D: likes the creation of some deranged alchemist.
4093 N:313:Ring mimic
4094 G:=:w
4095 I:120:10d35:30:60:100
4096 W:29:3:0:200
4097 B:HIT:POISON:3d4
4098 B:HIT:POISON:3d4
4099 B:HIT:POISON:3d4
4100 B:HIT:POISON:3d4
4101 F:CHAR_MULTI
4102 F:FORCE_SLEEP | NEVER_MOVE
4103 F:EMPTY_MIND | COLD_BLOOD
4104 F:NO_CONF | NO_SLEEP | NO_FEAR
4105 S:1_IN_4
4106 S:BLIND | CONF | SCARE | CAUSE_2
4107 S:BO_ACID | BO_FIRE | BO_COLD | BO_ELEC
4108 S:S_MONSTER
4109 D:A strange creature that disguises itself as a discarded ring to lure
4110 D: unsuspecting adventurers within reach of its venomous claws.
4112 N:314:Young blue dragon
4113 G:d:b
4114 I:110:27d10:20:50:70
4115 W:29:1:0:500
4116 B:CLAW:HURT:2d4
4117 B:CLAW:HURT:2d4
4118 B:BITE:HURT:2d6
4119 F:FORCE_SLEEP | FORCE_MAXHP
4120 F:DROP_2D2
4121 F:OPEN_DOOR | BASH_DOOR
4122 F:EVIL | DRAGON | IM_ELEC
4123 S:1_IN_10
4124 S:SCARE
4125 S:BR_ELEC
4126 D:It has a form that legends are made of.  Its still-tender scales are a
4127 D: deep blue in hue.  Sparks crackle along its length.
4129 N:315:Young white dragon
4130 G:d:w
4131 I:110:27d10:20:50:70
4132 W:29:1:0:500
4133 B:CLAW:HURT:2d4
4134 B:CLAW:HURT:2d4
4135 B:BITE:HURT:2d6
4136 F:FORCE_SLEEP | FORCE_MAXHP
4137 F:DROP_2D2
4138 F:OPEN_DOOR | BASH_DOOR
4139 F:EVIL | DRAGON | IM_COLD
4140 S:1_IN_10
4141 S:SCARE
4142 S:BR_COLD
4143 D:It has a form that legends are made of.  Its still-tender scales are a
4144 D: frosty white in hue.  Icy blasts of cold air come from it as it breathes.
4146 N:316:Young green dragon
4147 G:d:g
4148 I:110:27d10:20:50:70
4149 W:29:1:0:500
4150 B:CLAW:HURT:2d4
4151 B:CLAW:HURT:2d4
4152 B:BITE:HURT:2d6
4153 F:FORCE_SLEEP | FORCE_MAXHP
4154 F:DROP_2D2
4155 F:OPEN_DOOR | BASH_DOOR
4156 F:EVIL | DRAGON | IM_POIS
4157 S:1_IN_10
4158 S:SCARE
4159 S:BR_POIS
4160 D:It has a form that legends are made of.  Its still-tender scales are a
4161 D: deep green in hue.  Foul gas seeps through its scales.
4163 N:317:Young bronze dragon
4164 G:d:U
4165 I:110:27d10:20:50:70
4166 W:29:1:0:500
4167 B:CLAW:HURT:2d4
4168 B:CLAW:HURT:2d4
4169 B:BITE:HURT:2d6
4170 F:FORCE_SLEEP | FORCE_MAXHP
4171 F:DROP_2D2
4172 F:OPEN_DOOR | BASH_DOOR
4173 F:EVIL | DRAGON | NO_CONF
4174 S:1_IN_10
4175 S:SCARE
4176 S:BR_CONF
4177 D:It has a form that legends are made of.  Its still-tender scales are a rich
4178 D: bronze hue, and its shape glitters with strange colours that confuse you.
4180 N:318:Mithril golem
4181 G:g:B
4182 I:110:80d15:12:100:10
4183 W:30:4:0:500
4184 B:HIT:HURT:3d8
4185 B:HIT:HURT:3d8
4186 B:HIT:HURT:5d5
4187 B:HIT:HURT:5d5
4188 F:ONLY_GOLD | DROP_2D2
4189 F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR
4190 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
4191 F:NO_CONF | NO_SLEEP | NO_FEAR
4192 D:It is a massive statue of purest mithril.  It looks expensive!
4194 N:319:Shadow drake
4195 G:d:G
4196 I:110:30d10:20:70:70
4197 W:33:3:0:1100
4198 B:CLAW:HURT:2d4
4199 B:CLAW:HURT:2d4
4200 B:BITE:EXP_10:3d6
4201 F:FORCE_SLEEP | FORCE_MAXHP
4202 F:ONLY_ITEM | DROP_3D2 | PASS_WALL
4203 F:INVISIBLE | OPEN_DOOR | BASH_DOOR
4204 F:EVIL | DRAGON | NO_CONF | NO_SLEEP
4205 S:1_IN_6
4206 S:SLOW | CONF | SCARE | DARKNESS | BR_NETH
4207 D:It is a dragon-like form wrapped in shadow.  Glowing red eyes shine out in
4208 D: the dark, and it is surrounded by an aura of unearthly cold that chills
4209 D: the soul rather than the body.
4211 N:320:Skeleton troll
4212 G:s:w
4213 I:110:20d10:20:55:20
4214 W:30:1:0:225
4215 B:HIT:HURT:1d6
4216 B:HIT:HURT:1d6
4217 B:BITE:HURT:3d4
4218 F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
4219 F:EVIL | TROLL | UNDEAD
4220 F:IM_COLD | IM_POIS | REGENERATE
4221 F:NO_CONF | NO_SLEEP | NO_FEAR
4222 D:It is a troll skeleton animated by dark dweomers.
4224 N:321:Manticore
4225 G:H:y
4226 I:120:25d10:12:15:10
4227 W:30:2:0:300
4228 B:HIT:HURT:3d4
4229 B:HIT:HURT:3d4
4230 B:HIT:HURT:3d4
4231 B:HIT:HURT:3d4
4232 F:FORCE_SLEEP | FORCE_MAXHP
4233 F:BASH_DOOR
4234 F:EVIL
4235 S:1_IN_5
4236 S:ARROW_4
4237 D:It is a winged lion's body with a human torso and a tail covered in
4238 D: vicious spikes.
4240 N:322:Giant blue ant
4241 G:a:b
4242 I:110:8d8:10:50:60
4243 W:30:2:0:80
4244 B:BITE:ELEC:5d5
4245 F:RAND_25
4246 F:WEIRD_MIND | BASH_DOOR
4247 F:ANIMAL | IM_ELEC
4248 D:It is a giant ant that crackles with energy.
4250 N:323:Giant army ant
4251 G:a:o
4252 I:120:19d6:10:40:40
4253 W:30:3:0:90
4254 B:BITE:HURT:2d12
4255 F:RAND_25 | KILL_BODY | FRIENDS
4256 F:WEIRD_MIND | BASH_DOOR
4257 F:ANIMAL
4258 D:An armoured form moving with purpose.  Powerful on its own, flee when
4259 D: hordes of them march.
4261 N:324:Grave wight
4262 G:W:b
4263 I:110:12d10:20:50:30
4264 W:30:1:0:325
4265 B:HIT:HURT:1d7
4266 B:HIT:HURT:1d7
4267 B:TOUCH:EXP_20
4268 F:FORCE_SLEEP | RAND_25
4269 F:ONLY_ITEM | DROP_1D2
4270 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
4271 F:EVIL | UNDEAD
4272 F:IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
4273 S:1_IN_8
4274 S:SCARE | CAUSE_3 | DARKNESS
4275 D:It is a ghostly form with eyes that haunt you.
4277 N:325:Killer slicer beetle
4278 G:K:y
4279 I:110:25d10:14:60:30
4280 W:30:2:0:200
4281 B:BITE:HURT:5d8
4282 B:BITE:HURT:5d8
4283 F:WEIRD_MIND | BASH_DOOR
4284 F:ANIMAL
4285 D:It is a beetle with deadly sharp cutting mandibles and a rock-hard
4286 D: carapace.
4288 N:326:Ghost
4289 G:G:w
4290 I:120:13d8:20:30:10
4291 W:31:1:0:350
4292 B:WAIL:TERRIFY
4293 B:TOUCH:EXP_20
4294 B:CLAW:LOSE_INT:1d6
4295 B:CLAW:LOSE_WIS:1d6
4296 F:FORCE_SLEEP | RAND_25 | DROP_60 | DROP_1D2
4297 F:INVISIBLE | COLD_BLOOD | TAKE_ITEM | PASS_WALL
4298 F:EVIL | UNDEAD | IM_COLD
4299 F:IM_POIS | NO_CONF | NO_SLEEP
4300 S:1_IN_15
4301 S:BLIND | HOLD | DRAIN_MANA
4302 D:You don't believe in it.  But it believes in you...
4304 N:327:Death watch beetle
4305 G:K:D
4306 I:110:25d12:16:60:30
4307 W:31:3:0:220
4308 B:BITE:HURT:5d4
4309 B:WAIL:TERRIFY:5d6
4310 F:WEIRD_MIND | BASH_DOOR
4311 F:ANIMAL
4312 D:It is a giant beetle that produces a chilling sound.
4314 N:328:Ogre shaman
4315 G:O:G
4316 I:110:25d12:20:55:30
4317 W:27:2:0:300
4318 B:HIT:HURT:3d6
4319 B:HIT:HURT:3d6
4320 B:HIT:HURT:3d6
4321 F:FORCE_SLEEP
4322 F:ONLY_ITEM | DROP_90
4323 F:OPEN_DOOR | BASH_DOOR
4324 F:EVIL | GIANT
4325 S:1_IN_5
4326 S:TPORT | HOLD | SCARE | CAUSE_2 | TRAPS | BO_FIRE
4327 S:S_MONSTER
4328 D:It is an ogre wrapped in furs and covered in grotesque body paints.
4330 N:329:Nexus quylthulg
4331 G:Q:v
4332 I:110:10d12:10:1:0
4333 W:32:1:0:300
4334 F:FORCE_SLEEP | NEVER_MOVE | NEVER_BLOW
4335 F:INVISIBLE | EMPTY_MIND | ANIMAL
4336 F:NO_CONF | NO_SLEEP | NO_FEAR | RES_NEXUS
4337 S:1_IN_1
4338 S:BLINK | TELE_AWAY
4339 D:It is a very unstable, strange pulsing mound of flesh.
4341 N:330:Shelob, Spider of Darkness
4342 G:S:D
4343 I:120:35d100:30:120:80
4344 W:55:3:0:27000
4345 B:CLAW:POISON:5d6
4346 B:CLAW:POISON:5d6
4347 B:BITE:PARALYZE:5d10
4348 B:STING:LOSE_STR:5d4
4349 F:UNIQUE | FEMALE
4350 F:FORCE_SLEEP | FORCE_MAXHP
4351 F:ESCORT | ESCORTS
4352 F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | DROP_GOOD
4353 F:SMART | BASH_DOOR
4354 F:ANIMAL | EVIL | HURT_LITE | NO_CONF | NO_SLEEP | IM_POIS | IM_ACID
4355 S:1_IN_4
4356 S:HEAL | BLIND | SLOW | CONF | SCARE
4357 S:CAUSE_3 | CAUSE_4 | BR_DARK | BR_POIS
4358 S:TRAPS | S_KIN
4359 D:Shelob is an enormous bloated spider, the last daughter of Ungoliant the
4360 D: Unlight.  Her poison is legendary, as is her ego.  She normally guards the
4361 D: pass through Cirith Ungol, but occasionally goes out foraging for food to
4362 D: feed her voracious appetite.
4364 N:331:Ninja
4365 G:p:y
4366 I:120:13d12:20:60:10
4367 W:32:2:0:300
4368 B:HIT:POISON:3d4
4369 B:HIT:LOSE_STR:3d4
4370 B:HIT:LOSE_STR:3d4
4371 F:MALE
4372 F:DROP_1D2
4373 F:OPEN_DOOR | BASH_DOOR
4374 F:EVIL | NO_CONF | NO_SLEEP
4375 D:A humanoid clothed in black who moves with blinding speed.
4377 N:332:Memory moss
4378 G:,:r
4379 I:110:1d2:30:1:5
4380 W:32:3:0:150
4381 B:HIT:CONFUSE:1d4
4382 B:HIT:CONFUSE:1d4
4383 F:FORCE_SLEEP | NEVER_MOVE
4384 F:STUPID | EMPTY_MIND
4385 F:NO_CONF | NO_SLEEP | NO_FEAR
4386 S:1_IN_6
4387 S:FORGET
4388 D:A mass of green vegetation.  You don't remember seeing anything like it
4389 D: before.
4391 N:333:Storm giant
4392 G:P:B
4393 I:120:40d20:20:60:40
4394 W:40:1:0:1000
4395 B:HIT:ELEC:10d8
4396 B:HIT:ELEC:10d8
4397 F:FORCE_SLEEP | FORCE_MAXHP | DROP_1D2
4398 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
4399 F:EVIL | GIANT | IM_COLD | IM_ELEC
4400 S:1_IN_8
4401 S:BOULDER | BLINK | TELE_TO | CONF | SCARE | BO_ELEC | BA_ELEC
4402 D:It is a twenty-five foot tall giant wreathed in lightning.
4404 N:334:Cave troll
4405 G:T:u
4406 I:110:24d12:20:50:50
4407 W:33:1:0:350
4408 B:HIT:HURT:3d5
4409 B:HIT:HURT:3d5
4410 B:BITE:HURT:1d8
4411 B:BITE:HURT:1d8
4412 F:MALE
4413 F:FRIENDS | DROP_60
4414 F:OPEN_DOOR | BASH_DOOR | REGENERATE
4415 F:EVIL | TROLL | IM_POIS | HURT_LITE
4416 D:He is a vicious monster, feared for his ferocity.
4418 N:335:Half-troll
4419 G:T:U
4420 I:110:25d14:20:50:50
4421 W:34:2:0:400
4422 B:CLAW:HURT:1d5
4423 B:CLAW:HURT:1d5
4424 B:BITE:HURT:2d6
4425 B:BITE:HURT:2d6
4426 F:MALE
4427 F:FRIENDS
4428 F:ONLY_ITEM | DROP_90
4429 F:OPEN_DOOR | BASH_DOOR
4430 F:EVIL | TROLL | IM_POIS | REGENERATE
4431 D:A huge, ugly, half-human in search of plunder.
4433 N:336:Mystic
4434 G:p:o
4435 I:120:35d10:30:50:5
4436 W:33:3:0:500
4437 B:KICK:HURT:10d2
4438 B:KICK:HURT:10d2
4439 B:KICK:HURT:10d2
4440 B:KICK:HURT:10d2
4441 F:MALE
4442 F:FORCE_SLEEP | FORCE_MAXHP
4443 F:ONLY_ITEM | DROP_1D2
4444 F:INVISIBLE | OPEN_DOOR | BASH_DOOR
4445 F:IM_ACID | IM_POIS | NO_CONF | NO_SLEEP
4446 S:1_IN_6
4447 S:HEAL | S_SPIDER | S_ANIMAL
4448 D:An adept at unarmed combat, the mystic strikes with stunning power.  He
4449 D: can summon help from nature and is able to focus his power to ease any
4450 D: pain.
4452 N:337:Barrow wight
4453 G:W:v
4454 I:110:15d10:20:40:10
4455 W:33:3:0:375
4456 B:HIT:HURT:1d8
4457 B:HIT:HURT:1d8
4458 B:TOUCH:EXP_40
4459 F:FORCE_SLEEP | FRIENDS | DROP_60
4460 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
4461 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
4462 S:1_IN_8
4463 S:HOLD | SCARE | CAUSE_2 | DARKNESS
4464 D:It is a ghostly nightmare of a entity.
4466 N:338:Skeleton ettin
4467 G:s:w
4468 I:110:45d10:20:50:20
4469 W:33:1:0:325
4470 B:HIT:HURT:1d9
4471 B:HIT:HURT:1d9
4472 B:BITE:HURT:1d5
4473 B:BITE:HURT:1d5
4474 F:FORCE_MAXHP
4475 F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
4476 F:EVIL | TROLL | UNDEAD
4477 F:IM_COLD | IM_POIS | REGENERATE
4478 F:NO_CONF | NO_SLEEP | NO_FEAR
4479 D:It is the animated form of a massive two-headed troll.
4481 N:339:Chaos drake
4482 G:d:v
4483 I:110:50d10:20:70:70
4484 W:33:3:0:1400
4485 B:CLAW:HURT:2d4
4486 B:CLAW:HURT:2d4
4487 B:BITE:HURT:3d6
4488 F:ATTR_MULTI
4489 F:FORCE_SLEEP | FORCE_MAXHP
4490 F:ONLY_ITEM | DROP_3D2
4491 F:OPEN_DOOR | BASH_DOOR
4492 F:EVIL | DRAGON
4493 F:IM_FIRE | NO_CONF | NO_SLEEP | RES_DISE
4494 S:1_IN_6
4495 S:SLOW | CONF | SCARE
4496 S:BR_DISE | BR_CHAO
4497 D:A dragon twisted by the forces of chaos.  It seems first ugly, then fair,
4498 D: as its form shimmers and changes in front of your eyes.
4500 N:340:Law drake
4501 G:d:B
4502 I:110:50d10:20:70:70
4503 W:33:3:0:1400
4504 B:CLAW:HURT:2d4
4505 B:CLAW:HURT:2d4
4506 B:BITE:HURT:3d6
4507 F:FORCE_SLEEP | FORCE_MAXHP
4508 F:ONLY_ITEM | DROP_3D2
4509 F:OPEN_DOOR | BASH_DOOR
4510 F:EVIL | DRAGON
4511 F:IM_COLD | NO_CONF | NO_SLEEP
4512 S:1_IN_6
4513 S:SLOW | CONF | SCARE
4514 S:BR_SOUN | BR_SHAR
4515 D:This dragon is clever and cunning.  It laughs at your puny efforts to
4516 D: disturb it.
4518 N:341:Balance drake
4519 G:d:v
4520 I:110:60d10:20:70:70
4521 W:33:3:0:1600
4522 B:CLAW:HURT:2d4
4523 B:CLAW:HURT:2d4
4524 B:BITE:HURT:3d6
4525 F:FORCE_SLEEP | FORCE_MAXHP
4526 F:ONLY_ITEM | DROP_3D2
4527 F:OPEN_DOOR | BASH_DOOR
4528 F:EVIL | DRAGON
4529 F:IM_FIRE | IM_COLD | NO_CONF | NO_SLEEP | RES_DISE
4530 S:1_IN_6
4531 S:SLOW | CONF | SCARE
4532 S:BR_SOUN | BR_SHAR | BR_DISE | BR_CHAO
4533 D:A mighty dragon, the balance drake seeks to maintain the Cosmic Balance,
4534 D: and despises your feeble efforts to destroy evil.
4536 N:342:Ethereal drake
4537 G:d:o
4538 I:110:40d10:20:70:70
4539 W:33:3:0:1200
4540 B:CLAW:HURT:2d4
4541 B:CLAW:HURT:2d4
4542 B:BITE:HURT:3d6
4543 F:FORCE_SLEEP | FORCE_MAXHP
4544 F:ONLY_ITEM | DROP_3D2
4545 F:INVISIBLE | PASS_WALL
4546 F:EVIL | DRAGON | NO_CONF | NO_SLEEP
4547 S:1_IN_6
4548 S:SLOW | CONF | SCARE
4549 S:BR_LITE | BR_DARK
4550 D:A dragon of great power, with control over light and dark, the
4551 D: ethereal drake's eyes glare with white hatred from the shadows.
4553 N:343:Bert the Stone Troll
4554 G:T:s
4555 I:120:11d100:20:70:50
4556 W:34:7:0:2000
4557 B:HIT:HURT:6d6
4558 B:HIT:HURT:6d6
4559 B:BITE:HURT:3d10
4560 F:UNIQUE | MALE
4561 F:FORCE_MAXHP
4562 F:ESCORT
4563 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | MOVE_BODY
4564 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | REGENERATE
4565 F:EVIL | TROLL | IM_COLD | IM_POIS | HURT_LITE | HURT_ROCK
4566 S:1_IN_7
4567 S:BOULDER
4568 D:Big, brawny, powerful and with a taste for hobbit.  He has friends called
4569 D: Bill and Tom.
4571 N:344:Bill the Stone Troll
4572 G:T:s
4573 I:120:11d100:20:70:50
4574 W:34:7:0:2000
4575 B:HIT:HURT:6d6
4576 B:HIT:HURT:6d6
4577 B:BITE:HURT:3d10
4578 F:UNIQUE | MALE
4579 F:FORCE_MAXHP
4580 F:ESCORT
4581 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | MOVE_BODY
4582 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | REGENERATE
4583 F:EVIL | TROLL | IM_COLD | IM_POIS | HURT_LITE | HURT_ROCK
4584 S:1_IN_7
4585 S:BOULDER
4586 D:Big, brawny, powerful and with a taste for hobbit.  He has friends called
4587 D: Bert and Tom.
4589 N:345:Tom the Stone Troll
4590 G:T:s
4591 I:120:11d100:20:70:50
4592 W:34:7:0:2000
4593 B:HIT:HURT:6d6
4594 B:HIT:HURT:6d6
4595 B:BITE:HURT:3d10
4596 F:UNIQUE | MALE
4597 F:FORCE_MAXHP
4598 F:ESCORT
4599 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | MOVE_BODY
4600 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | REGENERATE
4601 F:EVIL | TROLL | IM_COLD | IM_POIS | HURT_LITE | HURT_ROCK
4602 S:1_IN_7
4603 S:BOULDER
4604 D:Big, brawny, powerful and with a taste for hobbit.  He has friends called
4605 D: Bert and Bill.
4607 N:346:Shade
4608 G:G:D
4609 I:120:14d20:20:30:10
4610 W:33:3:0:350
4611 B:WAIL:TERRIFY
4612 B:TOUCH:EXP_40
4613 B:CLAW:LOSE_INT:1d10
4614 F:FORCE_SLEEP | RAND_25
4615 F:ONLY_ITEM | DROP_90 | DROP_2D2
4616 F:INVISIBLE | COLD_BLOOD | TAKE_ITEM | PASS_WALL
4617 F:EVIL | UNDEAD | IM_COLD | IM_POIS
4618 F:NO_CONF | NO_SLEEP
4619 S:1_IN_15
4620 S:BLIND | HOLD | DRAIN_MANA
4621 D:A shadowy form clutches at you from the darkness.  A powerful undead creature
4622 D: with a deadly touch.
4624 N:347:Spectre
4625 G:G:U
4626 I:120:14d20:20:30:10
4627 W:34:3:0:350
4628 B:WAIL:TERRIFY
4629 B:TOUCH:EXP_40
4630 B:CLAW:LOSE_WIS:5d5
4631 F:FORCE_SLEEP | RAND_25
4632 F:ONLY_ITEM | DROP_90 | DROP_2D2
4633 F:INVISIBLE | COLD_BLOOD | TAKE_ITEM | PASS_WALL
4634 F:EVIL | UNDEAD | IM_COLD | IM_POIS
4635 F:NO_CONF | NO_SLEEP
4636 S:1_IN_15
4637 S:BLIND | HOLD | DRAIN_MANA
4638 D:A phantasmal shrieking spirit.  Its wail drives the intense cold of pure
4639 D: evil deep within your body.
4641 N:348:Water troll
4642 G:T:B
4643 I:110:36d10:20:50:50
4644 W:35:1:0:420
4645 B:HIT:HURT:1d9
4646 B:HIT:HURT:1d9
4647 B:BITE:HURT:2d2
4648 B:BITE:HURT:2d2
4649 F:MALE
4650 F:FORCE_MAXHP
4651 F:FRIENDS | DROP_60
4652 F:OPEN_DOOR | BASH_DOOR | REGENERATE
4653 F:EVIL | TROLL | IM_COLD | IM_POIS | HURT_LITE
4654 D:He is a troll that reeks of brine.
4656 N:349:Fire elemental
4657 G:E:r
4658 I:110:30d8:12:50:50
4659 W:33:2:0:350
4660 B:HIT:FIRE:4d6
4661 B:HIT:FIRE:4d6
4662 F:FORCE_SLEEP | RAND_25
4663 F:EMPTY_MIND
4664 F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL
4665 F:IM_ELEC | IM_FIRE | IM_POIS | IM_ACID
4666 F:NO_CONF | NO_SLEEP | NO_FEAR
4667 S:1_IN_6
4668 S:BO_FIRE
4669 D:It is a towering inferno of flames.
4671 N:350:Cherub
4672 G:A:G
4673 I:120:100d10:30:68:255
4674 W:39:6:0:2700
4675 B:HIT:HURT:4d3
4676 B:HIT:HURT:3d8
4677 B:HIT:HURT:4d3
4678 B:HIT:HURT:3d8
4679 F:FORCE_SLEEP | FORCE_MAXHP
4680 F:ONLY_ITEM | DROP_1D2 | DROP_2D2
4681 F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
4682 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
4683 F:NO_CONF | NO_SLEEP
4684 S:1_IN_3
4685 S:HEAL | HASTE | BLIND | SCARE | MIND_BLAST | BO_FIRE
4686 S:S_MONSTERS
4687 D:It is an angel moving very quickly, wielding a holy war hammer and casting
4688 D: a volley of powerful spells in your direction.
4690 N:351:Water elemental
4691 G:E:b
4692 I:110:25d8:12:40:50
4693 W:33:2:0:325
4694 B:HIT:HURT:1d10
4695 B:HIT:HURT:1d10
4696 B:HIT:HURT:1d10
4697 F:FORCE_SLEEP | RAND_25
4698 F:EMPTY_MIND | COLD_BLOOD
4699 F:KILL_BODY | KILL_ITEM | BASH_DOOR | POWERFUL
4700 F:IM_ACID | IM_POIS | IM_FIRE | IM_COLD | IM_WATER
4701 F:NO_CONF | NO_SLEEP | NO_FEAR
4702 S:1_IN_6
4703 S:BO_COLD
4704 D:It is a towering tempest of water.
4706 N:352:Invisible stalker
4707 G:E:y
4708 I:130:19d12:20:46:20
4709 W:35:3:0:300
4710 B:HIT:HURT:1d6
4711 B:HIT:HURT:1d6
4712 B:HIT:HURT:1d6
4713 F:RAND_50
4714 F:EMPTY_MIND | INVISIBLE | COLD_BLOOD
4715 F:OPEN_DOOR | BASH_DOOR | POWERFUL
4716 F:EVIL | IM_ELEC | IM_POIS
4717 F:NO_CONF | NO_SLEEP | NO_FEAR
4718 D:It is impossible to define its form but its violence is legendary.
4720 N:353:Carrion crawler
4721 G:c:o
4722 I:110:20d12:15:40:10
4723 W:34:2:0:100
4724 B:STING:PARALYZE:2d6
4725 B:STING:PARALYZE:2d6
4726 F:RAND_25 | FRIENDS
4727 F:WEIRD_MIND | BASH_DOOR
4728 F:ANIMAL | IM_POIS
4729 D:A hideous centipede covered in slime and with glowing tentacles around its
4730 D: head.
4732 N:354:Master thief
4733 G:p:b
4734 I:130:18d10:20:30:40
4735 W:34:2:0:350
4736 B:HIT:HURT:2d8
4737 B:HIT:HURT:3d4
4738 B:HIT:EAT_GOLD:4d4
4739 B:HIT:EAT_ITEM:4d5
4740 F:MALE
4741 F:DROP_90 | DROP_2D2
4742 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
4743 F:EVIL
4744 S:1_IN_6
4745 S:TRAPS | ARROW_2 | BLINK
4746 D:Cool and confident, fast and lithe; protect your possessions quickly!
4748 N:355:Ulfang the Black
4749 G:p:U
4750 I:120:10d100:20:90:40
4751 W:34:5:0:1200
4752 B:HIT:HURT:5d5
4753 B:HIT:HURT:5d5
4754 B:HIT:HURT:5d5
4755 B:HIT:HURT:5d5
4756 F:UNIQUE | MALE
4757 F:FORCE_MAXHP
4758 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
4759 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
4760 F:EVIL
4761 S:1_IN_10 | S_KIN
4762 D:A short and swarthy Easterling dressed in black.  He and his three sons
4763 D: once openly swore allegiance to the High Elves, but were secretly in the
4764 D: pay of Morgoth.
4766 N:356:Lich
4767 G:L:o
4768 I:110:30d10:20:60:60
4769 W:34:2:0:1000
4770 B:TOUCH:EXP_40
4771 B:TOUCH:UN_POWER
4772 B:TOUCH:LOSE_DEX:2d8
4773 B:TOUCH:LOSE_DEX:2d8
4774 F:FORCE_SLEEP | FORCE_MAXHP | DROP_1D2
4775 F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
4776 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE
4777 F:NO_CONF | NO_SLEEP
4778 S:1_IN_4
4779 S:BLINK | TELE_TO | TELE_AWAY | BLIND | HOLD | SLOW | SCARE
4780 S:CAUSE_3 | DRAIN_MANA | BRAIN_SMASH
4781 D:It is a skeletal form dressed in robes.  It radiates vastly evil power.
4783 N:357:Master vampire
4784 G:V:g
4785 I:110:34d10:20:60:10
4786 W:36:1:0:750
4787 B:HIT:HURT:2d6
4788 B:HIT:HURT:2d6
4789 B:BITE:EXP_40:3d6
4790 B:BITE:EXP_40:3d6
4791 F:FORCE_SLEEP | FORCE_MAXHP
4792 F:DROP_4D2
4793 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | REGENERATE
4794 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
4795 S:1_IN_6
4796 S:TELE_TO | HOLD | CONF | SCARE | CAUSE_3 | MIND_BLAST
4797 S:DARKNESS | BO_NETH
4798 D:It is a humanoid form dressed in robes.  Power emanates from its chilling
4799 D: frame.
4801 N:358:Giant grey scorpion
4802 G:S:s
4803 I:120:18d20:12:50:40
4804 W:34:4:0:275
4805 B:BITE:HURT:1d6
4806 B:STING:POISON:1d4
4807 F:WEIRD_MIND | BASH_DOOR
4808 F:ANIMAL
4809 D:It is a giant grey scorpion.  It looks poisonous.
4811 N:359:Earth elemental
4812 G:E:u
4813 I:100:30d10:10:60:90
4814 W:34:2:0:375
4815 B:HIT:HURT:4d6
4816 B:HIT:HURT:4d6
4817 B:HIT:HURT:4d6
4818 F:FORCE_SLEEP
4819 F:EMPTY_MIND | COLD_BLOOD
4820 F:KILL_ITEM | KILL_BODY | PASS_WALL | POWERFUL
4821 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | HURT_ROCK
4822 F:NO_CONF | NO_SLEEP | NO_FEAR
4823 S:1_IN_8
4824 S:BO_ACID
4825 D:It is a towering form composed of rock with fists of awesome power.
4827 N:360:Air elemental
4828 G:E:B
4829 I:120:30d5:12:50:50
4830 W:34:2:0:390
4831 B:HIT:HURT:1d10
4832 B:HIT:CONFUSE:1d4
4833 B:HIT:HURT:1d10
4834 F:FORCE_SLEEP | RAND_25
4835 F:EMPTY_MIND | COLD_BLOOD
4836 F:KILL_BODY | KILL_ITEM | BASH_DOOR | POWERFUL
4837 F:IM_ACID | IM_COLD | IM_ELEC | IM_POIS
4838 F:NO_CONF | NO_SLEEP | NO_FEAR
4839 S:1_IN_8
4840 S:BO_ELEC
4841 D:It is a towering tornado of winds.
4843 N:361:Hellhound
4844 G:C:r
4845 I:120:40d10:25:80:30
4846 W:35:3:0:600
4847 B:BITE:FIRE:3d12
4848 B:BITE:FIRE:3d12
4849 B:BITE:FIRE:3d12
4850 F:FORCE_SLEEP | FORCE_MAXHP
4851 F:RAND_25
4852 F:BASH_DOOR | MOVE_BODY
4853 F:ANIMAL | EVIL | IM_FIRE
4854 S:1_IN_5
4855 S:BR_FIRE
4856 D:It is a giant dog that glows with heat.  Flames pour from its nostrils.
4858 N:362:Eog golem
4859 G:g:u
4860 I:100:100d20:12:125:10
4861 W:34:4:0:1200
4862 B:HIT:HURT:8d6
4863 B:HIT:HURT:8d6
4864 B:HIT:HURT:6d6
4865 B:HIT:HURT:6d6
4866 F:ONLY_GOLD | DROP_2D2
4867 F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR
4868 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
4869 F:NO_CONF | NO_SLEEP | NO_FEAR
4870 D:It is a massive deep brown statue, striding towards you with an
4871 D: all-too-familiar purpose.  Your magic surprisingly feels much less
4872 D: powerful now.
4874 N:363:Olog
4875 G:T:y
4876 I:110:42d10:20:50:50
4877 W:36:1:0:450
4878 B:HIT:HURT:1d12
4879 B:HIT:HURT:1d12
4880 B:BITE:HURT:2d3
4881 B:BITE:HURT:2d3
4882 F:FORCE_MAXHP | OPEN_DOOR | FRIENDS | DROP_60
4883 F:SMART | BASH_DOOR
4884 F:EVIL | TROLL | IM_POIS | REGENERATE
4885 D:It is a massive intelligent troll with needle-sharp fangs.
4887 N:364:Dagashi
4888 G:p:y
4889 I:120:13d25:20:70:10
4890 W:35:4:0:500
4891 B:HIT:POISON:3d4
4892 B:HIT:LOSE_STR:3d4
4893 B:HIT:LOSE_STR:3d4
4894 B:HIT:POISON:3d4
4895 F:MALE
4896 F:DROP_1D2
4897 F:OPEN_DOOR | BASH_DOOR
4898 F:EVIL | NO_CONF | NO_SLEEP
4899 D:A human warrior, moving with lightning speed.
4901 N:365:Gravity hound
4902 G:Z:W
4903 I:110:35d10:30:30:0
4904 W:35:2:0:500
4905 B:CLAW:HURT:2d8
4906 B:CLAW:HURT:2d8
4907 B:BITE:HURT:2d8
4908 B:BITE:HURT:2d8
4909 F:FORCE_SLEEP | FRIENDS
4910 F:BASH_DOOR
4911 F:ANIMAL | NO_CONF | NO_SLEEP
4912 S:1_IN_5
4913 S:BR_GRAV
4914 D:Unfettered by the usual constraints of gravity, these unnatural creatures
4915 D: are walking on the walls and even the ceiling!  The earth suddenly feels
4916 D: rather less solid as you see gravity warp all round the monsters.
4918 N:366:Acidic cytoplasm
4919 G:j:s
4920 I:120:40d10:12:18:1
4921 W:35:5:0:180
4922 B:TOUCH:ACID:1d10
4923 B:TOUCH:ACID:1d10
4924 B:TOUCH:ACID:1d10
4925 B:TOUCH:ACID:1d10
4926 F:FORCE_MAXHP | TAKE_ITEM | COLD_BLOOD
4927 F:DROP_1D2 | DROP_4D2
4928 F:STUPID | EMPTY_MIND | OPEN_DOOR | BASH_DOOR
4929 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
4930 F:NO_FEAR | NO_CONF | NO_SLEEP
4931 D:A disgusting animated blob of destruction.  Flee its gruesome hunger!
4933 N:367:Inertia hound
4934 G:Z:W
4935 I:110:35d10:30:30:0
4936 W:35:2:0:500
4937 B:CLAW:HURT:2d8
4938 B:CLAW:HURT:2d8
4939 B:BITE:HURT:2d8
4940 B:BITE:HURT:2d8
4941 F:FORCE_SLEEP | FRIENDS
4942 F:BASH_DOOR
4943 F:ANIMAL | NO_CONF | NO_SLEEP
4944 S:1_IN_5
4945 S:BR_INER
4946 D:Bizarrely, this hound seems to be hardly moving at all, yet it approaches
4947 D: you with deadly menace.  It makes you tired just to look at it.
4949 N:368:Impact hound
4950 G:Z:u
4951 I:110:35d10:30:30:0
4952 W:35:2:0:500
4953 B:CLAW:HURT:2d8
4954 B:CLAW:HURT:2d8
4955 B:BITE:HURT:2d8
4956 B:BITE:HURT:2d8
4957 F:FORCE_SLEEP
4958 F:FRIENDS
4959 F:BASH_DOOR
4960 F:ANIMAL | NO_CONF | NO_SLEEP
4961 S:1_IN_5
4962 S:BR_WALL
4963 D:A deep brown shape is visible before you, its canine form strikes you with
4964 D: an almost physical force.  The dungeon floor buckles as if struck by a
4965 D: powerful blow as it stalks towards you.
4967 N:369:Dread
4968 G:G:o
4969 I:120:25d20:20:30:10
4970 W:35:2:0:600
4971 B:HIT:HURT:6d6
4972 B:HIT:HURT:6d6
4973 B:HIT:LOSE_STR:3d4
4974 F:FORCE_SLEEP | RAND_25
4975 F:ONLY_ITEM | DROP_60 | DROP_2D2
4976 F:TAKE_ITEM | INVISIBLE | COLD_BLOOD | PASS_WALL
4977 F:EVIL | UNDEAD | IM_COLD | IM_POIS
4978 F:NO_CONF | NO_SLEEP
4979 S:1_IN_15
4980 S:BLIND | HOLD | CONF | DRAIN_MANA | BO_NETH
4981 D:It is a form that screams its presence against the eye.  Death incarnate,
4982 D: its hideous black body seems to struggle against reality as the universe
4983 D: itself struggles to banish it.
4985 N:370:Ooze elemental
4986 G:E:g
4987 I:110:13d10:10:80:90
4988 W:36:3:0:300
4989 B:TOUCH:ACID:1d10
4990 B:TOUCH:ACID:1d10
4991 B:TOUCH:ACID:1d10
4992 F:FORCE_SLEEP
4993 F:EMPTY_MIND | COLD_BLOOD
4994 F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL
4995 F:IM_ACID | IM_FIRE | IM_COLD | IM_POIS
4996 F:NO_CONF | NO_SLEEP | NO_FEAR
4997 S:1_IN_5
4998 S:BO_ACID | BA_ACID
4999 D:It is a towering mass of filth, an eyesore of ooze.
5001 N:371:Smoke elemental
5002 G:E:R
5003 I:120:15d10:10:80:90
5004 W:36:3:0:375
5005 B:ENGULF:HURT:2d6
5006 B:ENGULF:HURT:2d6
5007 F:FORCE_SLEEP
5008 F:EMPTY_MIND
5009 F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL
5010 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
5011 F:NO_CONF | NO_SLEEP | NO_FEAR
5012 S:1_IN_5
5013 S:DARKNESS | BO_FIRE
5014 D:It is a towering blackened form, crackling with heat.
5016 N:372:Young black dragon
5017 G:d:s
5018 I:110:30d10:20:60:70
5019 W:31:1:0:700
5020 B:CLAW:HURT:2d6
5021 B:CLAW:HURT:2d6
5022 B:BITE:HURT:2d8
5023 F:FORCE_SLEEP | FORCE_MAXHP
5024 F:DROP_3D2
5025 F:OPEN_DOOR | BASH_DOOR
5026 F:EVIL | DRAGON | IM_ACID
5027 S:1_IN_10
5028 S:SCARE
5029 S:BR_ACID
5030 D:It has a form that legends are made of.  Its still-tender scales are a
5031 D: darkest black hue.  Acid drips from its body.
5033 N:373:Mumak
5034 G:q:s
5035 I:110:90d10:20:55:100
5036 W:35:3:0:2100
5037 B:BUTT:HURT:4d6
5038 B:BUTT:HURT:4d6
5039 B:CRUSH:HURT:4d4
5040 F:BASH_DOOR
5041 F:ANIMAL
5042 D:A massive elephantine form with eyes twisted by madness.
5044 N:374:Giant fire ant
5045 G:a:R
5046 I:110:20d10:14:49:40
5047 W:35:1:0:350
5048 B:BITE:FIRE:3d12
5049 B:BITE:FIRE:3d12
5050 F:FORCE_MAXHP | KILL_BODY | FRIENDS
5051 F:WEIRD_MIND | BASH_DOOR
5052 F:ANIMAL | IM_FIRE
5053 D:A giant ant covered in shaggy fur.  Its powerful jaws glow with heat.
5055 N:375:Mature white dragon
5056 G:d:w
5057 I:110:40d10:20:70:70
5058 W:34:1:0:1200
5059 B:CLAW:HURT:2d8
5060 B:CLAW:HURT:2d8
5061 B:BITE:HURT:4d8
5062 F:FORCE_SLEEP | FORCE_MAXHP | DROP_4D2
5063 F:OPEN_DOOR | BASH_DOOR
5064 F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
5065 S:1_IN_9
5066 S:SCARE
5067 S:BR_COLD
5068 D:A large dragon, scales gleaming bright white.
5070 N:376:Xorn
5071 G:X:u
5072 I:110:16d10:20:80:10
5073 W:36:2:0:650
5074 B:HIT:HURT:1d6
5075 B:HIT:HURT:1d6
5076 B:HIT:HURT:1d6
5077 B:HIT:HURT:1d6
5078 F:FORCE_MAXHP
5079 F:EMPTY_MIND | COLD_BLOOD
5080 F:KILL_ITEM | PASS_WALL
5081 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
5082 F:HURT_ROCK | NO_CONF | NO_SLEEP
5083 D:A huge creature of the element Earth.  Able to merge with its element, it
5084 D: has four huge arms protruding from its enormous torso.
5086 N:377:Shadow
5087 G:G:D
5088 I:120:10d20:30:30:20
5089 W:36:3:0:400
5090 B:TOUCH:EXP_80
5091 B:TOUCH:EXP_40
5092 B:CLAW:LOSE_INT:1d10
5093 B:CLAW:LOSE_WIS:1d10
5094 F:FORCE_SLEEP
5095 F:ONLY_ITEM | DROP_1D2
5096 F:INVISIBLE | COLD_BLOOD | PASS_WALL
5097 F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
5098 S:1_IN_8
5099 S:TELE_TO | SLOW | BO_NETH
5100 D:A mighty spirit of darkness of vaguely humanoid form.  Razor-edged claws
5101 D: reach out to end your life as it glides towards you, seeking to suck the
5102 D: energy from your soul to feed its power.
5104 N:378:Phantom
5105 G:G:v
5106 I:120:20d25:30:30:20
5107 W:36:3:0:400
5108 B:TOUCH:EXP_80
5109 B:TOUCH:EXP_40
5110 B:CLAW:LOSE_INT:1d10
5111 B:CLAW:LOSE_WIS:1d10
5112 F:FORCE_SLEEP
5113 F:ONLY_ITEM | DROP_1D2
5114 F:INVISIBLE | COLD_BLOOD | PASS_WALL
5115 F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
5116 S:1_IN_5
5117 S:FORGET
5118 D:An unholy creature of darkness, the aura emanating from this evil being
5119 D: saps your very soul.
5121 N:379:Grey wraith
5122 G:W:s
5123 I:110:19d10:20:50:10
5124 W:36:1:0:700
5125 B:HIT:HURT:1d10
5126 B:HIT:HURT:1d10
5127 B:TOUCH:EXP_40
5128 F:FORCE_SLEEP | FORCE_MAXHP
5129 F:DROP_60 | DROP_90
5130 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
5131 F:EVIL | UNDEAD | HURT_LITE | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
5132 S:1_IN_7
5133 S:HOLD | SCARE | CAUSE_3 | DARKNESS
5134 D:A tangible but ghostly form, made of grey fog.  The air around it feels
5135 D: deathly cold.
5137 N:380:Young multi-hued dragon
5138 G:d:v
5139 I:110:32d10:20:60:70
5140 W:32:1:0:900
5141 B:CLAW:HURT:2d6
5142 B:CLAW:HURT:2d6
5143 B:BITE:HURT:3d8
5144 F:ATTR_MULTI
5145 F:FORCE_SLEEP | FORCE_MAXHP
5146 F:DROP_1D2 | DROP_3D2
5147 F:OPEN_DOOR | BASH_DOOR
5148 F:EVIL | DRAGON | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
5149 S:1_IN_8
5150 S:SCARE
5151 S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS
5152 D:It has a form that legends are made of.  Beautiful scales of shimmering
5153 D: and magical colours cover it.
5155 N:381:Colossus
5156 G:g:G
5157 I:100:30d100:12:150:10
5158 W:36:4:0:850
5159 B:HIT:HURT:10d10
5160 B:HIT:HURT:10d10
5161 B:HIT:HURT:6d6
5162 B:HIT:HURT:6d6
5163 F:FORCE_MAXHP
5164 F:EMPTY_MIND | COLD_BLOOD | BASH_DOOR
5165 F:IM_FIRE | IM_COLD | IM_ELEC
5166 F:IM_POIS
5167 F:NO_CONF | NO_SLEEP | NO_FEAR
5168 D:An enormous construct resembling a titan made from stone.  It strides
5169 D: purposefully towards you, swinging its slow fists with earth-shattering
5170 D: power.
5172 N:382:Young gold dragon
5173 G:d:y
5174 I:110:30d10:20:60:70
5175 W:31:1:0:700
5176 B:CLAW:HURT:2d6
5177 B:CLAW:HURT:2d6
5178 B:BITE:HURT:2d8
5179 F:FORCE_SLEEP | FORCE_MAXHP
5180 F:DROP_3D2
5181 F:OPEN_DOOR | BASH_DOOR
5182 F:EVIL | DRAGON
5183 S:1_IN_10
5184 S:SCARE
5185 S:BR_SOUN
5186 D:It has a form that legends are made of.  Its still-tender scales are a
5187 D: tarnished gold hue, and light is reflected from its form.
5189 N:383:Rogrog the Black Troll
5190 G:T:D
5191 I:120:20d100:20:70:50
5192 W:42:3:0:5000
5193 B:HIT:HURT:6d7
5194 B:HIT:HURT:6d7
5195 B:BITE:HURT:4d10
5196 B:SPIT:ACID:4d8
5197 F:UNIQUE | MALE
5198 F:FORCE_MAXHP
5199 F:ESCORT | MOVE_BODY
5200 F:ONLY_ITEM | DROP_3D2 | DROP_GOOD
5201 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
5202 F:EVIL | TROLL | IM_COLD | IM_POIS | REGENERATE
5203 S:1_IN_7
5204 S:BOULDER
5205 D:A massive and cruel troll of great power, drool slides caustically down
5206 D: his muscular frame.  Despite his bulk, he strikes with stunning speed.
5208 N:384:Mature blue dragon
5209 G:d:b
5210 I:110:40d10:20:70:70
5211 W:34:1:0:1200
5212 B:CLAW:HURT:2d8
5213 B:CLAW:HURT:2d8
5214 B:BITE:HURT:4d8
5215 F:FORCE_SLEEP | FORCE_MAXHP | DROP_4D2
5216 F:BASH_DOOR
5217 F:EVIL | DRAGON | IM_ELEC | NO_CONF | NO_SLEEP
5218 S:1_IN_9
5219 S:SCARE
5220 S:BR_ELEC
5221 D:A large dragon, scales tinted deep blue.
5223 N:385:Mature green dragon
5224 G:d:g
5225 I:110:40d10:20:70:70
5226 W:34:1:0:1200
5227 B:CLAW:HURT:2d8
5228 B:CLAW:HURT:2d8
5229 B:BITE:HURT:4d8
5230 F:FORCE_SLEEP | FORCE_MAXHP | DROP_4D2
5231 F:BASH_DOOR
5232 F:EVIL | DRAGON | IM_POIS | NO_CONF | NO_SLEEP
5233 S:1_IN_9
5234 S:SCARE
5235 S:BR_POIS
5236 D:A large dragon, scales tinted deep green.
5238 N:386:Mature bronze dragon
5239 G:d:U
5240 I:110:40d10:20:70:70
5241 W:34:1:0:1200
5242 B:CLAW:HURT:2d8
5243 B:CLAW:HURT:2d8
5244 B:BITE:HURT:4d8
5245 F:FORCE_SLEEP | FORCE_MAXHP | DROP_4D2
5246 F:BASH_DOOR
5247 F:EVIL | DRAGON | NO_CONF | NO_SLEEP
5248 S:1_IN_9
5249 S:CONF | SCARE
5250 S:BR_CONF
5251 D:A large dragon with scales of rich bronze.
5253 N:387:Young red dragon
5254 G:d:r
5255 I:110:30d10:20:60:70
5256 W:31:1:0:700
5257 B:CLAW:HURT:2d6
5258 B:CLAW:HURT:2d6
5259 B:BITE:HURT:2d8
5260 F:FORCE_SLEEP | FORCE_MAXHP
5261 F:DROP_3D2
5262 F:OPEN_DOOR | BASH_DOOR
5263 F:EVIL | DRAGON | IM_FIRE
5264 S:1_IN_10
5265 S:SCARE
5266 S:BR_FIRE
5267 D:It has a form that legends are made of.  Its still-tender scales are a
5268 D: deepest red hue.  Heat radiates from its form.
5270 N:388:Trapper
5271 G:.:w
5272 I:120:60d10:30:75:10
5273 W:36:3:0:580
5274 B:HIT:HURT:3d8
5275 B:HIT:HURT:3d8
5276 B:HIT:PARALYZE:15d1
5277 B:HIT:PARALYZE:15d1
5278 F:CHAR_CLEAR | ATTR_CLEAR
5279 F:NEVER_MOVE | FORCE_MAXHP
5280 F:INVISIBLE | EMPTY_MIND | COLD_BLOOD
5281 F:NO_CONF | NO_SLEEP | NO_FEAR
5282 D:A larger cousin of the lurker, this creature traps unsuspecting victims
5283 D: and paralyzes them, to be slowly digested later.
5285 N:389:Bodak
5286 G:u:r
5287 I:110:35d10:10:68:90
5288 W:36:2:0:750
5289 B:HIT:FIRE:4d6
5290 B:HIT:FIRE:4d6
5291 B:GAZE:EXP_20
5292 F:FORCE_SLEEP
5293 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
5294 F:EVIL | DEMON | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP
5295 S:1_IN_4
5296 S:BO_FIRE | BA_FIRE
5297 S:S_DEMON
5298 D:It is a humanoid form composed of flames and hatred.
5300 N:390:Ice elemental
5301 G:E:w
5302 I:110:35d10:10:60:90
5303 W:37:3:0:650
5304 B:TOUCH:COLD:4d3
5305 B:HIT:HURT:4d6
5306 B:TOUCH:COLD:4d3
5307 F:FORCE_SLEEP
5308 F:EMPTY_MIND | COLD_BLOOD
5309 F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL
5310 F:IM_COLD | IM_ELEC | IM_POIS | IM_ACID
5311 F:NO_CONF | NO_SLEEP | NO_FEAR
5312 S:1_IN_5
5313 S:BO_ICEE | BA_COLD
5314 D:It is a towering glacier of ice.
5316 N:391:Necromancer
5317 G:p:R
5318 I:110:28d10:20:50:10
5319 W:36:2:0:630
5320 B:HIT:HURT:2d6
5321 B:HIT:HURT:2d6
5322 F:MALE
5323 F:FORCE_SLEEP | FORCE_MAXHP
5324 F:ONLY_ITEM | DROP_1D2
5325 F:SMART | OPEN_DOOR | BASH_DOOR
5326 F:EVIL
5327 S:1_IN_3
5328 S:HASTE | TPORT | TELE_TO | BLIND | HOLD | SCARE | CAUSE_3
5329 S:BO_NETH
5330 S:S_UNDEAD
5331 D:A gaunt figure, clothed in black robes.
5333 N:392:Lorgan, Chief of the Easterlings
5334 G:p:v
5335 I:120:18d100:25:100:10
5336 W:36:2:0:1200
5337 B:HIT:HURT:6d6
5338 B:HIT:HURT:6d6
5339 B:HIT:HURT:3d8
5340 B:HIT:HURT:3d8
5341 F:UNIQUE | MALE
5342 F:FORCE_SLEEP | FORCE_MAXHP
5343 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
5344 F:OPEN_DOOR | BASH_DOOR
5345 F:EVIL | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
5346 F:NO_CONF | NO_SLEEP
5347 S:1_IN_4
5348 S:TELE_TO
5349 S:S_MONSTERS
5350 D:A mighty warrior from the east, Lorgan hates everything that he cannot
5351 D: control.
5353 N:393:Demonologist
5354 G:p:R
5355 I:120:28d10:20:50:10
5356 W:36:2:0:700
5357 B:HIT:HURT:2d6
5358 B:HIT:HURT:2d6
5359 B:HIT:HURT:2d6
5360 F:MALE
5361 F:FORCE_SLEEP | FORCE_MAXHP
5362 F:ONLY_ITEM | DROP_1D2
5363 F:SMART | OPEN_DOOR | BASH_DOOR
5364 F:EVIL
5365 S:1_IN_2
5366 S:TPORT | HOLD
5367 S:S_DEMON | BO_FIRE
5368 D:A figure twisted by evil standing in robes of deepest crimson.
5370 N:394:Mummified troll
5371 G:z:w
5372 I:110:19d10:20:50:50
5373 W:37:1:0:420
5374 B:HIT:HURT:2d6
5375 B:HIT:HURT:2d6
5376 F:FORCE_MAXHP
5377 F:DROP_60
5378 F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
5379 F:EVIL | TROLL | UNDEAD | IM_COLD | IM_POIS
5380 F:NO_CONF | NO_SLEEP | NO_FEAR | REGENERATE
5381 D:It is a massive figure clothed in wrappings.  You are wary of its massive
5382 D: fists.
5384 N:395:The Queen Ant
5385 G:a:v
5386 I:120:15d100:30:100:10
5387 W:37:2:0:2000
5388 B:BITE:HURT:2d12
5389 B:BITE:HURT:2d12
5390 B:BITE:HURT:2d8
5391 B:BITE:HURT:2d8
5392 F:UNIQUE | FEMALE
5393 F:FORCE_SLEEP | FORCE_MAXHP
5394 F:ESCORT | ESCORTS
5395 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
5396 F:WEIRD_MIND | OPEN_DOOR | BASH_DOOR
5397 F:ANIMAL | NO_CONF | NO_SLEEP
5398 S:1_IN_2
5399 S:S_KIN
5400 D:She's upset because you hurt her children.
5402 N:396:Will o' the wisp
5403 G:E:W
5404 I:130:20d10:30:150:0
5405 W:38:4:0:500
5406 B:HIT:HURT:1d9
5407 B:HIT:HURT:1d9
5408 B:HIT:HALLU:1d9
5409 F:FORCE_SLEEP | FORCE_MAXHP | RAND_50
5410 F:SMART | EMPTY_MIND | INVISIBLE
5411 F:PASS_WALL | POWERFUL
5412 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
5413 F:NO_CONF | NO_SLEEP | NO_FEAR
5414 S:1_IN_2
5415 S:BLINK | TPORT | CONF | CAUSE_2
5416 D:A strange ball of glowing light.  It disappears and reappears and seems to
5417 D: draw you to it.  You seem somehow compelled to stand still and watch its
5418 D: strange dancing motion.
5420 N:397:Magma elemental
5421 G:E:o
5422 I:110:35d10:10:70:90
5423 W:37:3:0:950
5424 B:HIT:FIRE:3d7
5425 B:HIT:HURT:4d6
5426 B:HIT:FIRE:3d7
5427 F:FORCE_SLEEP
5428 F:EMPTY_MIND
5429 F:KILL_ITEM | KILL_BODY | PASS_WALL | POWERFUL
5430 F:IM_FIRE | IM_ELEC | IM_POIS | IM_ACID
5431 F:NO_CONF | NO_SLEEP | NO_FEAR
5432 S:1_IN_7
5433 S:BO_PLAS | BA_FIRE
5434 D:It is a towering glowing form of molten hate.
5436 N:398:Black pudding
5437 G:j:D
5438 I:110:40d10:12:18:1
5439 W:37:5:0:50
5440 B:TOUCH:ACID:1d10
5441 B:TOUCH:ACID:1d10
5442 B:TOUCH:ACID:1d10
5443 B:TOUCH:ACID:1d10
5444 F:FORCE_MAXHP
5445 F:FRIENDS
5446 F:DROP_60 | DROP_90 | DROP_1D2
5447 F:STUPID | EMPTY_MIND | COLD_BLOOD
5448 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
5449 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
5450 F:NO_CONF | NO_SLEEP | NO_FEAR
5451 D:A lump of rotting black flesh that slurrrrrrrps across the dungeon floor.
5453 N:399:Killer iridescent beetle
5454 G:K:v
5455 I:110:25d15:16:60:30
5456 W:37:2:0:850
5457 B:CLAW:ELEC:1d12
5458 B:CLAW:ELEC:1d12
5459 B:GAZE:PARALYZE
5460 F:FORCE_MAXHP | ATTR_MULTI
5461 F:WEIRD_MIND | BASH_DOOR
5462 F:ANIMAL | IM_ELEC
5463 D:It is a giant beetle, whose carapace shimmers with vibrant energies.
5465 N:400:Nexus vortex
5466 G:v:v
5467 I:120:32d10:100:40:0
5468 W:37:1:0:800
5469 B:ENGULF:HURT:5d5
5470 F:FORCE_SLEEP
5471 F:RAND_50 | RAND_25
5472 F:EMPTY_MIND | BASH_DOOR | POWERFUL
5473 F:NO_CONF | NO_SLEEP | NO_FEAR | RES_NEXUS
5474 S:1_IN_6
5475 S:BR_NEXU
5476 D:A maelstrom of potent magical energy.
5478 N:401:Plasma vortex
5479 G:v:R
5480 I:120:32d10:100:40:0
5481 W:37:1:0:800
5482 B:ENGULF:FIRE:4d8
5483 B:ENGULF:ELEC:4d8
5484 F:FORCE_SLEEP
5485 F:RAND_50 | RAND_25
5486 F:EMPTY_MIND | BASH_DOOR | POWERFUL
5487 F:IM_FIRE | IM_ELEC | RES_PLAS
5488 F:NO_CONF | NO_SLEEP | NO_FEAR
5489 S:1_IN_6
5490 S:BR_PLAS
5491 D:A whirlpool of intense flame, charring the stones at your feet.
5493 N:402:Mature red dragon
5494 G:d:r
5495 I:110:50d10:20:80:70
5496 W:36:1:0:1500
5497 B:CLAW:HURT:2d10
5498 B:CLAW:HURT:2d10
5499 B:BITE:HURT:4d10
5500 F:FORCE_SLEEP | FORCE_MAXHP
5501 F:DROP_1D2 | DROP_4D2
5502 F:BASH_DOOR
5503 F:EVIL | DRAGON | IM_FIRE | NO_CONF | NO_SLEEP
5504 S:1_IN_9
5505 S:CONF | SCARE
5506 S:BR_FIRE
5507 D:A large dragon, scales tinted deep red.
5509 N:403:Mature gold dragon
5510 G:d:y
5511 I:110:50d10:20:80:70
5512 W:36:1:0:1500
5513 B:CLAW:HURT:2d10
5514 B:CLAW:HURT:2d10
5515 B:BITE:HURT:4d10
5516 F:FORCE_SLEEP | FORCE_MAXHP
5517 F:DROP_1D2 | DROP_4D2
5518 F:BASH_DOOR
5519 F:EVIL | DRAGON | NO_CONF | NO_SLEEP
5520 S:1_IN_9
5521 S:CONF | SCARE
5522 S:BR_SOUN
5523 D:A large dragon with scales of gleaming gold.
5525 N:404:Crystal drake
5526 G:d:u
5527 I:110:45d10:20:70:70
5528 W:33:3:0:1350
5529 B:CLAW:HURT:2d4
5530 B:CLAW:HURT:2d4
5531 B:BITE:HURT:3d6
5532 F:FORCE_SLEEP | FORCE_MAXHP
5533 F:ONLY_ITEM | DROP_3D2
5534 F:OPEN_DOOR | BASH_DOOR
5535 F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
5536 S:1_IN_6
5537 S:SLOW | CONF | SCARE
5538 S:BR_SHAR
5539 D:A dragon of strange crystalline form.  Light shines through it, dazzling
5540 D: your eyes with spectrums of colour.
5542 N:405:Mature black dragon
5543 G:d:s
5544 I:110:50d10:20:80:70
5545 W:36:1:0:1500
5546 B:CLAW:HURT:2d10
5547 B:CLAW:HURT:2d10
5548 B:BITE:HURT:4d10
5549 F:FORCE_SLEEP | FORCE_MAXHP
5550 F:DROP_1D2 | DROP_4D2
5551 F:BASH_DOOR
5552 F:EVIL | DRAGON | IM_ACID | NO_CONF | NO_SLEEP
5553 S:1_IN_9
5554 S:SCARE
5555 S:BR_ACID
5556 D:A large dragon, with scales of deepest black.
5558 N:406:Mature multi-hued dragon
5559 G:d:v
5560 I:110:60d10:20:80:70
5561 W:38:1:0:1800
5562 B:CLAW:HURT:2d12
5563 B:CLAW:HURT:2d12
5564 B:BITE:HURT:4d12
5565 F:ATTR_MULTI
5566 F:FORCE_SLEEP | FORCE_MAXHP
5567 F:DROP_2D2 | DROP_4D2
5568 F:OPEN_DOOR | BASH_DOOR
5569 F:EVIL | DRAGON | IM_ACID | IM_FIRE | IM_COLD
5570 F:IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
5571 S:1_IN_7
5572 S:BLIND | CONF | SCARE
5573 S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS
5574 D:A large dragon, scales shimmering many colours.
5576 N:407:Death knight
5577 G:p:D
5578 I:120:60d10:20:100:10
5579 W:38:1:0:1000
5580 B:HIT:HURT:6d6
5581 B:HIT:HURT:5d5
5582 B:HIT:HURT:5d5
5583 F:FORCE_SLEEP | FORCE_MAXHP | SMART
5584 F:ONLY_ITEM | DROP_1D2 | DROP_2D2
5585 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
5586 F:EVIL | IM_COLD
5587 S:1_IN_5
5588 S:BLIND | SCARE | CAUSE_3 | BO_NETH
5589 S:S_MONSTERS
5590 D:It is a humanoid figure dressed in armour of an ancient form.  From beneath
5591 D: its helmet, eyes glow a baleful red and seem to pierce you like lances of
5592 D: fire.
5594 N:408:Castamir the Usurper
5595 G:p:R
5596 I:120:88d10:20:90:40
5597 W:38:5:0:1600
5598 B:HIT:HURT:5d5
5599 B:HIT:HURT:5d5
5600 B:HIT:HURT:5d5
5601 B:HIT:HURT:5d5
5602 F:UNIQUE | MALE
5603 F:FORCE_SLEEP | FORCE_MAXHP
5604 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
5605 F:SMART | OPEN_DOOR | TAKE_ITEM | BASH_DOOR
5606 F:EVIL
5607 S:1_IN_2
5608 S:HEAL | TRAPS | BO_FIRE | BO_COLD | BO_ELEC | BO_ICEE
5609 D:A Black Numenorean who usurped the throne of Gondor, he is treacherous and
5610 D: evil.
5612 N:409:Time vortex
5613 G:v:B
5614 I:130:32d10:100:40:0
5615 W:38:4:0:800
5616 B:ENGULF:EXP_20:5d5
5617 F:FORCE_SLEEP
5618 F:RAND_50 | RAND_25
5619 F:EMPTY_MIND | BASH_DOOR | POWERFUL
5620 F:NO_CONF | NO_SLEEP | NO_FEAR
5621 S:1_IN_6
5622 S:BR_TIME
5623 D:You haven't seen it yet.
5625 N:410:Shimmering vortex
5626 G:v:o
5627 I:140:32d10:100:40:0
5628 W:38:4:0:800
5629 B:ENGULF:BLIND:4d4
5630 B:ENGULF:BLIND:4d4
5631 F:FORCE_SLEEP
5632 F:RAND_50 | RAND_25
5633 F:EMPTY_MIND | BASH_DOOR | POWERFUL
5634 F:NO_CONF | NO_SLEEP | NO_FEAR
5635 S:1_IN_4
5636 S:BR_LITE | SHRIEK
5637 D:A strange pillar of shining light that hurts your eyes.  Its shape changes
5638 D: constantly as it cuts through the air towards you.  It is like a beacon,
5639 D: waking monsters from their slumber.
5641 N:411:Ancient blue dragon
5642 G:D:b
5643 I:120:72d10:20:90:80
5644 W:40:1:0:2000
5645 B:CLAW:HURT:4d8
5646 B:CLAW:HURT:4d8
5647 B:BITE:ELEC:7d8
5648 F:FORCE_SLEEP | FORCE_MAXHP
5649 F:DROP_3D2 | DROP_4D2
5650 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
5651 F:EVIL | DRAGON | IM_ELEC | NO_CONF | NO_SLEEP
5652 S:1_IN_6
5653 S:BLIND | CONF | SCARE
5654 S:BR_ELEC
5655 D:A huge draconic form.  Lightning crackles along its length.
5657 N:412:Ancient bronze dragon
5658 G:D:U
5659 I:120:72d10:20:90:80
5660 W:40:1:0:2000
5661 B:CLAW:HURT:4d8
5662 B:CLAW:HURT:4d8
5663 B:BITE:HURT:7d8
5664 F:FORCE_SLEEP | FORCE_MAXHP
5665 F:DROP_3D2 | DROP_4D2
5666 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
5667 F:EVIL | DRAGON | NO_CONF | NO_SLEEP
5668 S:1_IN_6
5669 S:BLIND | CONF | SCARE
5670 S:BR_CONF
5671 D:A huge draconic form enveloped in a cascade of colour.
5673 N:413:Beholder
5674 G:e:U
5675 I:120:16d100:30:80:10
5676 W:40:3:0:6000
5677 B:GAZE:EXP_20:2d6
5678 B:GAZE:UN_POWER:2d6
5679 B:GAZE:LOSE_INT:2d6
5680 B:BITE:HURT:6d6
5681 F:FORCE_SLEEP | FORCE_MAXHP
5682 F:BASH_DOOR
5683 F:EVIL | IM_POIS | NO_CONF | NO_SLEEP
5684 S:1_IN_2
5685 S:BLIND | SLOW | CONF | SCARE | DRAIN_MANA | MIND_BLAST
5686 S:FORGET | DARKNESS | BO_ACID | BO_FIRE | BO_COLD | BO_ELEC
5687 D:A vile creature with one huge central eye, twelve smaller eyes on stalks, and
5688 D: a huge mouth filled with sharp teeth.
5690 N:414:Emperor wight
5691 G:W:r
5692 I:120:38d10:20:40:10
5693 W:38:2:0:1600
5694 B:HIT:HURT:1d12
5695 B:HIT:HURT:1d12
5696 B:TOUCH:EXP_80
5697 B:TOUCH:EXP_80
5698 F:FORCE_SLEEP | FORCE_MAXHP
5699 F:ONLY_ITEM | DROP_90 | DROP_4D2
5700 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
5701 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
5702 S:1_IN_6
5703 S:HOLD | SCARE | CAUSE_3 | BO_NETH
5704 D:Your life force is torn from your body as this powerful unearthly being
5705 D: approaches.
5707 N:415:Seraph
5708 G:A:r
5709 I:120:150d10:30:68:255
5710 W:45:6:0:5000
5711 B:HIT:HURT:4d6
5712 B:HIT:HURT:5d5
5713 B:HIT:HURT:5d5
5714 B:HIT:HURT:4d6
5715 F:FORCE_SLEEP | FORCE_MAXHP | SMART
5716 F:ONLY_ITEM | DROP_1D2 | DROP_2D2
5717 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
5718 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
5719 F:NO_CONF | NO_SLEEP | NO_FEAR
5720 S:1_IN_11
5721 S:HEAL | HASTE | TELE_AWAY | CONF | BO_MANA | BO_PLAS
5722 S:S_MONSTERS | S_ANGEL
5723 D:It is an angel, fast and strong.  You are stunned by its extreme holiness
5724 D: and try to resist all desires to obey it.
5726 N:416:Vargo, Tyrant of Fire
5727 G:E:r
5728 I:120:24d100:12:50:50
5729 W:43:3:0:4000
5730 B:HIT:FIRE:4d6
5731 B:HIT:FIRE:4d6
5732 B:HIT:FIRE:4d6
5733 B:HIT:FIRE:4d6
5734 F:UNIQUE
5735 F:FORCE_SLEEP | FORCE_MAXHP | RAND_25
5736 F:EMPTY_MIND
5737 F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL
5738 F:IM_FIRE | IM_POIS | IM_ACID | IM_ELEC
5739 F:NO_CONF | NO_SLEEP | NO_FEAR
5740 S:1_IN_4
5741 S:BO_PLAS | BA_FIRE
5742 D:A towering fire elemental, Vargo burns everything beyond recognition.
5744 N:417:Black wraith
5745 G:W:D
5746 I:120:50d10:20:55:10
5747 W:38:2:0:1700
5748 B:HIT:HURT:1d12
5749 B:HIT:HURT:1d12
5750 B:TOUCH:EXP_40
5751 B:TOUCH:EXP_40
5752 F:FORCE_SLEEP | FORCE_MAXHP
5753 F:ONLY_ITEM | DROP_1D2 | DROP_2D2
5754 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
5755 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
5756 S:1_IN_7
5757 S:BLIND | HOLD | SCARE | CAUSE_3 | BO_NETH
5758 D:A figure that seems made of void, its strangely human shape is cloaked in
5759 D: shadow.  It reaches out at you.
5761 N:418:Erinyes
5762 G:U:u
5763 I:110:24d10:20:50:80
5764 W:38:2:0:1000
5765 B:HIT:HURT:3d4
5766 B:TOUCH:LOSE_STR:1d5
5767 F:FEMALE
5768 F:FORCE_SLEEP | FORCE_MAXHP
5769 F:ONLY_ITEM | DROP_60
5770 F:OPEN_DOOR | BASH_DOOR | POWERFUL
5771 F:EVIL | DEMON
5772 F:IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP
5773 S:1_IN_7
5774 S:BLIND | CONF | BO_FIRE
5775 D:It is a lesser demon of female form; however, she takes little time to
5776 D: show her true colours.
5778 N:419:Nether wraith
5779 G:W:G
5780 I:120:48d10:20:55:10
5781 W:39:2:0:1700
5782 B:HIT:HURT:1d12
5783 B:HIT:HURT:1d12
5784 B:TOUCH:EXP_80
5785 B:TOUCH:EXP_80
5786 F:FORCE_SLEEP | FORCE_MAXHP
5787 F:ONLY_ITEM | DROP_90 | DROP_4D2
5788 F:INVISIBLE | COLD_BLOOD | PASS_WALL
5789 F:EVIL | UNDEAD | IM_COLD | IM_POIS
5790 F:HURT_LITE | NO_CONF | NO_SLEEP
5791 S:1_IN_6
5792 S:BLIND | SCARE | CAUSE_3 | MIND_BLAST | DARKNESS | BO_NETH
5793 D:A form that hurts the eye, death permeates the air around it.  As it nears
5794 D: you, a coldness saps your soul.
5796 N:420:Eldrak
5797 G:T:r
5798 I:110:75d10:20:80:50
5799 W:37:3:0:800
5800 B:HIT:HURT:3d4
5801 B:HIT:HURT:3d4
5802 B:HIT:HURT:3d4
5803 F:FORCE_MAXHP
5804 F:DROP_60
5805 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
5806 F:EVIL | TROLL | IM_POIS | NO_CONF | NO_SLEEP
5807 D:A massive troll, larger and stronger than many men together.
5809 N:421:Ettin
5810 G:T:b
5811 I:110:15d100:20:100:30
5812 W:38:3:0:1000
5813 B:HIT:HURT:3d6
5814 B:HIT:HURT:3d6
5815 B:HIT:HURT:3d6
5816 F:FORCE_MAXHP
5817 F:ONLY_ITEM | DROP_1D2
5818 F:OPEN_DOOR | BASH_DOOR
5819 F:EVIL | TROLL | IM_POIS | NO_CONF | NO_SLEEP
5820 D:A massive two-headed troll of huge strength, ettins are stupid but violent.
5821 D: They are also living proof that two heads are not more intelligent than one...
5823 N:422:Waldern, King of Water
5824 G:E:b
5825 I:120:25d100:12:80:50
5826 W:43:3:0:4250
5827 B:HIT:HURT:5d5
5828 B:HIT:HURT:5d5
5829 B:HIT:HURT:5d5
5830 B:HIT:HURT:5d5
5831 F:UNIQUE
5832 F:FORCE_SLEEP | FORCE_MAXHP | RAND_25
5833 F:EMPTY_MIND | COLD_BLOOD
5834 F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL
5835 F:IM_POIS | IM_ACID | IM_FIRE | IM_COLD | IM_WATER
5836 F:NO_CONF | NO_SLEEP | NO_FEAR
5837 S:1_IN_4
5838 S:BO_ICEE | BO_WATE | BA_COLD | BA_WATE
5839 D:A towering water elemental, Waldern is master of all things liquid.
5840 D: Wave after wave drowns your frail body.
5842 N:423:Kavlax the Many-Headed
5843 G:d:v
5844 I:120:13d100:20:85:30
5845 W:39:3:0:3000
5846 B:BITE:HURT:2d12
5847 B:BITE:HURT:2d12
5848 B:BITE:HURT:2d12
5849 B:BITE:HURT:2d12
5850 F:UNIQUE | MALE | ATTR_MULTI
5851 F:FORCE_SLEEP | FORCE_MAXHP
5852 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
5853 F:OPEN_DOOR | BASH_DOOR | POWERFUL
5854 F:EVIL | DRAGON | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC
5855 F:NO_CONF | NO_SLEEP | RES_NEXUS
5856 S:1_IN_4
5857 S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_SOUN | BR_CONF
5858 S:BR_SHAR | BR_GRAV | BR_NEXU
5859 D:A large dragon with a selection of heads, all shouting and arguing as they
5860 D: look for prey, but each with its own deadly breath weapon.
5862 N:424:Ancient white dragon
5863 G:D:w
5864 I:120:72d10:20:90:80
5865 W:40:1:0:2000
5866 B:CLAW:HURT:4d8
5867 B:CLAW:HURT:4d8
5868 B:BITE:COLD:7d8
5869 F:FORCE_SLEEP | FORCE_MAXHP
5870 F:DROP_3D2 | DROP_4D2
5871 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
5872 F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
5873 S:1_IN_6
5874 S:BLIND | CONF | SCARE
5875 S:BR_COLD
5876 D:A huge draconic form.  Frost covers it from head to tail.
5878 N:425:Ancient green dragon
5879 G:D:g
5880 I:120:72d10:20:90:80
5881 W:40:1:0:2000
5882 B:CLAW:HURT:4d8
5883 B:CLAW:HURT:4d8
5884 B:BITE:POISON:7d8
5885 F:FORCE_SLEEP | FORCE_MAXHP
5886 F:DROP_3D2 | DROP_4D2
5887 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
5888 F:EVIL | DRAGON | IM_POIS | NO_CONF | NO_SLEEP
5889 S:1_IN_6
5890 S:BLIND | CONF | SCARE
5891 S:BR_POIS
5892 D:A huge draconic form enveloped in clouds of poisonous vapour.
5894 N:426:7-headed hydra
5895 G:M:G
5896 I:120:100d10:20:90:20
5897 W:39:2:0:2000
5898 B:BITE:POISON:3d9
5899 B:BITE:POISON:3d9
5900 B:BITE:POISON:3d9
5901 B:SPIT:BLIND:1d2
5902 F:FORCE_SLEEP
5903 F:ONLY_GOLD | DROP_2D2 | DROP_4D2
5904 F:BASH_DOOR | MOVE_BODY
5905 F:ANIMAL | IM_POIS
5906 S:1_IN_5
5907 S:SCARE | BA_POIS
5908 S:BR_POIS
5909 D:A strange reptilian hybrid with seven heads dripping venom.
5911 N:427:Night mare
5912 G:q:G
5913 I:120:15d100:30:85:0
5914 W:39:3:0:2900
5915 B:BITE:EXP_80:2d6
5916 B:HIT:HURT:3d8
5917 B:HIT:HURT:3d8
5918 B:HIT:CONFUSE:6d6
5919 F:FORCE_MAXHP
5920 F:ONLY_GOLD | DROP_2D2
5921 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
5922 F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
5923 D:A fearsome skeletal horse with glowing eyes, that watch you with little
5924 D: more than a hatred of all that lives.
5926 N:428:Vampire lord
5927 G:V:b
5928 I:120:16d100:20:70:10
5929 W:42:1:0:1800
5930 B:HIT:HURT:3d6
5931 B:HIT:HURT:3d6
5932 B:BITE:EXP_80:4d6
5933 B:BITE:EXP_80:4d6
5934 F:FORCE_SLEEP | FORCE_MAXHP
5935 F:DROP_60 | DROP_4D2
5936 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | REGENERATE
5937 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE
5938 F:NO_CONF | NO_SLEEP
5939 S:1_IN_7
5940 S:BLIND | HOLD | SCARE | CAUSE_3 | CAUSE_4 | DRAIN_MANA
5941 S:BRAIN_SMASH | DARKNESS | BO_NETH
5942 D:A foul wind chills your bones as this ghastly figure approaches.
5944 N:429:Ancient black dragon
5945 G:D:s
5946 I:120:10d100:20:90:80
5947 W:41:1:0:2500
5948 B:CLAW:HURT:4d9
5949 B:CLAW:HURT:4d9
5950 B:BITE:ACID:7d9
5951 F:FORCE_SLEEP | FORCE_MAXHP
5952 F:DROP_3D2 | DROP_4D2
5953 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
5954 F:EVIL | DRAGON | IM_ACID | NO_CONF | NO_SLEEP
5955 S:1_IN_6
5956 S:BLIND | CONF | SCARE
5957 S:BR_ACID
5958 D:A huge draconic form.  Pools of acid melt the floor around it.
5960 N:430:Disenchanter worm mass
5961 G:w:v
5962 I:100:10d8:7:5:10
5963 W:40:3:0:30
5964 B:CRAWL:UN_BONUS:1d4
5965 F:RAND_50 | ATTR_MULTI
5966 F:STUPID | WEIRD_MIND | MULTIPLY | BASH_DOOR
5967 F:ANIMAL | HURT_LITE | NO_FEAR | RES_DISE
5968 D:It is a strange mass of squirming worms.  Magical energy crackles
5969 D: around its disgusting form.
5971 N:431:Rotting quylthulg
5972 G:Q:u
5973 I:120:48d10:20:1:0
5974 W:45:1:0:3000
5975 F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW
5976 F:INVISIBLE | EMPTY_MIND | ANIMAL
5977 F:NO_CONF | NO_SLEEP | NO_FEAR
5978 S:1_IN_2
5979 S:BLINK | TPORT
5980 S:S_UNDEAD
5981 D:It is a pulsing flesh mound that reeks of death and putrefaction.
5983 N:432:Spirit troll
5984 G:G:G
5985 I:110:10d100:20:90:5
5986 W:40:3:0:900
5987 B:HIT:HURT:3d6
5988 B:HIT:HURT:3d6
5989 B:HIT:HURT:3d6
5990 F:FORCE_MAXHP
5991 F:DROP_90
5992 F:INVISIBLE | PASS_WALL
5993 F:EVIL | UNDEAD | TROLL | IM_COLD | IM_ELEC | IM_POIS
5994 F:NO_CONF | NO_SLEEP | REGENERATE
5995 D:A weird ghostly troll-like being from the ethereal plane.
5997 N:433:Lesser titan
5998 G:P:y
5999 I:120:24d100:30:80:15
6000 W:56:3:0:6000
6001 B:HIT:CONFUSE:9d9
6002 B:HIT:CONFUSE:9d9
6003 B:HIT:CONFUSE:9d9
6004 B:HIT:CONFUSE:9d9
6005 F:FORCE_SLEEP | FORCE_MAXHP
6006 F:DROP_4D2 | DROP_GOOD | ONLY_ITEM
6007 F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR
6008 F:EVIL | GIANT
6009 S:1_IN_3
6010 S:BOULDER | HEAL | TELE_TO | S_MONSTERS
6011 D:It is a humanoid figure thirty feet tall that gives off an aura of power
6012 D: and hate.
6014 N:434:9-headed hydra
6015 G:M:r
6016 I:120:100d12:20:95:20
6017 W:40:2:0:3000
6018 B:BITE:FIRE:3d10
6019 B:BITE:FIRE:3d10
6020 B:BITE:FIRE:3d10
6021 B:BITE:FIRE:3d10
6022 F:FORCE_SLEEP
6023 F:ONLY_GOLD | DROP_2D2 | DROP_4D2
6024 F:OPEN_DOOR | BASH_DOOR | MOVE_BODY
6025 F:ANIMAL | IM_FIRE
6026 S:1_IN_4
6027 S:SCARE | BO_FIRE
6028 S:BR_FIRE
6029 D:A strange reptilian hybrid with nine smouldering heads.
6031 N:435:Enchantress
6032 G:p:R
6033 I:130:52d10:20:60:10
6034 W:40:4:0:2100
6035 B:HIT:HURT:2d6
6036 B:HIT:HURT:2d6
6037 B:HIT:HURT:2d8
6038 F:FEMALE
6039 F:FORCE_SLEEP | FORCE_MAXHP
6040 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
6041 F:OPEN_DOOR | BASH_DOOR
6042 F:EVIL | NO_CONF | NO_SLEEP
6043 S:1_IN_2
6044 S:BLIND
6045 S:S_DRAGON
6046 D:This elusive female spellcaster has a special affinity for dragons, whom
6047 D: she rarely fights without.
6049 N:436:Knight Templar
6050 G:p:w
6051 I:120:60d20:20:60:10
6052 W:44:2:0:2000
6053 B:HIT:HURT:5d5
6054 B:HIT:HURT:5d5
6055 B:HIT:HURT:5d5
6056 F:MALE | FORCE_MAXHP
6057 F:ONLY_ITEM | DROP_90 | DROP_2D2
6058 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | SMART
6059 F:NO_CONF | NO_SLEEP | NO_FEAR
6060 S:1_IN_4
6061 S:HEAL | CAUSE_3 | CAUSE_4 | HASTE | SCARE | BLIND | S_ANGEL
6062 D:It seems that the more devout the person, the more likely they are to cross
6063 D: the boundary between piety and sanctimoniousness.  And such is the case with
6064 D: the Order of the Knights Templar; they are among the most pious and
6065 D: powerful of the religious knightly orders, but noted for their intolerance.
6066 D: Thus it is Morgoth's will that is unwittingly done, as the forces of good
6067 D: are set against each other.
6069 N:437:Sorcerer
6070 G:p:R
6071 I:130:52d10:20:60:10
6072 W:40:2:0:2150
6073 B:HIT:HURT:2d8
6074 B:HIT:HURT:2d8
6075 B:HIT:HURT:2d8
6076 F:MALE
6077 F:FORCE_SLEEP | FORCE_MAXHP
6078 F:ONLY_ITEM | DROP_90 | DROP_4D2
6079 F:OPEN_DOOR | BASH_DOOR
6080 F:EVIL | NO_CONF | NO_SLEEP
6081 S:1_IN_2
6082 S:BLINK | TELE_TO | BLIND | CONF | CAUSE_3 | TRAPS
6083 S:BO_ACID | BA_FIRE | BA_COLD
6084 S:S_MONSTER | S_UNDEAD | S_DRAGON
6085 D:A human figure in robes, he moves with magically improved speed, and his
6086 D: hands are ablur with spell casting.
6088 N:438:Xaren
6089 G:X:s
6090 I:120:32d10:20:80:10
6091 W:40:1:0:1200
6092 B:HIT:HURT:3d4
6093 B:HIT:HURT:3d4
6094 B:HIT:HURT:3d4
6095 B:HIT:HURT:3d4
6096 F:FORCE_MAXHP
6097 F:EMPTY_MIND | COLD_BLOOD
6098 F:KILL_ITEM | PASS_WALL
6099 F:ONLY_GOLD | DROP_2D2
6100 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
6101 F:HURT_ROCK | NO_CONF | NO_SLEEP
6102 D:It is a tougher relative of the Xorn.  Its hide glitters with metal ores.
6104 N:439:Giant roc
6105 G:B:u
6106 I:110:80d13:20:70:10
6107 W:40:3:0:1000
6108 B:CRUSH:HURT:8d12
6109 B:CRUSH:HURT:8d12
6110 B:HIT:ELEC:12d12
6111 F:BASH_DOOR
6112 F:ANIMAL | IM_ELEC
6113 D:A vast legendary bird, its iron talons rake the most impenetrable of
6114 D: surfaces and its screech echoes through the many winding dungeon corridors.
6116 N:440:Uvatha the Horseman
6117 G:W:D
6118 I:120:18d100:90:60:10
6119 W:40:3:0:10000
6120 B:HIT:HURT:6d6
6121 B:HIT:HURT:6d6
6122 B:HIT:EXP_80:4d6
6123 B:HIT:EXP_80:4d6
6124 F:UNIQUE | MALE
6125 F:FORCE_MAXHP
6126 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
6127 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY
6128 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
6129 D:A tall black cloaked Ringwraith, he is a master of horsemanship.  He longs
6130 D: to taste your blood.
6132 N:441:Minotaur
6133 G:H:s
6134 I:130:100d10:13:25:10
6135 W:40:2:0:2100
6136 B:BUTT:HURT:4d6
6137 B:BUTT:HURT:4d6
6138 B:BUTT:HURT:2d6
6139 B:BUTT:HURT:2d6
6140 F:BASH_DOOR
6141 F:EVIL
6142 D:It is a cross between a human and a bull.
6144 N:442:Medusa, the Gorgon
6145 G:n:v
6146 I:120:24d100:30:100:5
6147 W:40:3:0:9000
6148 B:GAZE:EXP_80
6149 B:GAZE:PARALYZE
6150 B:HIT:HURT:8d6
6151 B:HIT:HURT:8d6
6152 F:UNIQUE | FEMALE
6153 F:FORCE_SLEEP | FORCE_MAXHP
6154 F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | DROP_GOOD
6155 F:SMART | OPEN_DOOR | BASH_DOOR
6156 F:EVIL | IM_ACID | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP
6157 S:1_IN_2
6158 S:HOLD | SCARE | CAUSE_3 | BO_FIRE | BO_PLAS | BA_ACID
6159 S:S_HYDRA | S_KIN
6160 D:One of the original three ugly sisters.  Her face could sink a thousand
6161 D: ships.  Her scales rattle as she slithers towards you, venom dripping from
6162 D: her ghastly mouth.
6164 N:443:Death drake
6165 G:D:G
6166 I:120:21d100:25:100:80
6167 W:45:2:0:10000
6168 B:CLAW:HURT:4d10
6169 B:CLAW:HURT:4d10
6170 B:BITE:EXP_80:7d10
6171 F:FORCE_SLEEP | FORCE_MAXHP
6172 F:ONLY_ITEM | DROP_2D2 | DROP_4D2
6173 F:INVISIBLE | TAKE_ITEM
6174 F:SMART | PASS_WALL | POWERFUL | MOVE_BODY
6175 F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
6176 S:1_IN_5
6177 S:SLOW | CONF | SCARE
6178 S:BR_NETH | DARKNESS
6179 D:It is a dragon-like form wrapped in darkness.  You cannot make out its
6180 D: true form but you sense its evil.
6182 N:444:Ancient red dragon
6183 G:D:r
6184 I:120:10d100:20:90:80
6185 W:41:1:0:2500
6186 B:CLAW:HURT:4d9
6187 B:CLAW:HURT:4d9
6188 B:BITE:FIRE:7d9
6189 F:FORCE_SLEEP | FORCE_MAXHP
6190 F:DROP_3D2 | DROP_4D2
6191 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
6192 F:EVIL | DRAGON | IM_FIRE | NO_CONF | NO_SLEEP
6193 S:1_IN_6
6194 S:BLIND | CONF | SCARE
6195 S:BR_FIRE
6196 D:A huge draconic form.  Wisps of smoke steam from its nostrils and the
6197 D: extreme heat surrounding it makes you gasp for breath.
6199 N:445:Ancient gold dragon
6200 G:D:y
6201 I:120:10d100:20:90:80
6202 W:41:1:0:2500
6203 B:CLAW:HURT:4d9
6204 B:CLAW:HURT:4d9
6205 B:BITE:HURT:7d9
6206 F:FORCE_SLEEP | FORCE_MAXHP
6207 F:DROP_3D2 | DROP_4D2
6208 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
6209 F:EVIL | DRAGON | NO_CONF | NO_SLEEP
6210 S:1_IN_6
6211 S:BLIND | CONF | SCARE
6212 S:BR_SOUN
6213 D:A huge draconic form wreathed in a nimbus of light. Its roar stuns and deafens you.
6215 N:446:Great crystal drake
6216 G:D:u
6217 I:120:21d100:25:100:80
6218 W:45:2:0:10000
6219 B:CLAW:HURT:4d10
6220 B:CLAW:HURT:4d10
6221 B:BITE:HURT:7d10
6222 F:FORCE_SLEEP | FORCE_MAXHP
6223 F:ONLY_ITEM | DROP_2D2 | DROP_4D2
6224 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
6225 F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
6226 S:1_IN_5
6227 S:SLOW | CONF | SCARE
6228 S:BR_SHAR
6229 D:A huge crystalline dragon.  Its claws could cut you to shreds and its
6230 D: teeth are razor sharp.  Strange colours ripple through it as it moves in
6231 D: the light.
6233 N:447:Vrock
6234 G:U:s
6235 I:110:40d10:20:50:80
6236 W:40:2:0:2000
6237 B:HIT:HURT:3d4
6238 B:CRUSH:HURT:8d12
6239 B:CRUSH:HURT:8d12
6240 F:FORCE_SLEEP | FORCE_MAXHP
6241 F:FRIENDS
6242 F:ONLY_ITEM | DROP_60
6243 F:OPEN_DOOR | BASH_DOOR | POWERFUL
6244 F:EVIL | DEMON | IM_FIRE | NO_CONF | NO_SLEEP
6245 S:1_IN_8
6246 S:BLIND | CONF
6247 D:It is a demon with a long neck and raking claws.
6249 N:448:Death quasit
6250 G:u:D
6251 I:130:44d10:20:80:0
6252 W:40:3:0:1000
6253 B:BITE:LOSE_DEX:3d6
6254 B:CLAW:HURT:3d3
6255 B:CLAW:HURT:3d3
6256 F:FORCE_SLEEP | FORCE_MAXHP
6257 F:ONLY_ITEM | DROP_90 | DROP_2D2 | DROP_4D2
6258 F:SMART | INVISIBLE | PASS_WALL
6259 F:EVIL | DEMON | IM_FIRE | IM_POIS
6260 F:NO_CONF | NO_SLEEP | NO_FEAR
6261 S:1_IN_10
6262 S:BLIND | CONF | SCARE | CAUSE_3
6263 S:S_DEMON
6264 D:It is a demon of small stature, but its armoured frame moves with
6265 D: lightning speed and its powers make it a tornado of death and destruction.
6267 N:449:Adunaphel the Quiet
6268 G:W:D
6269 I:120:21d100:90:60:10
6270 W:43:3:0:13000
6271 B:HIT:HURT:6d6
6272 B:HIT:HURT:6d6
6273 B:TOUCH:EXP_80:5d6
6274 B:TOUCH:EXP_80:5d6
6275 F:UNIQUE | FEMALE
6276 F:FORCE_SLEEP | FORCE_MAXHP
6277 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
6278 F:INVISIBLE | COLD_BLOOD | PASS_WALL | MOVE_BODY
6279 F:EVIL | UNDEAD | IM_COLD | IM_POIS
6280 F:HURT_LITE | NO_CONF | NO_SLEEP
6281 S:1_IN_3
6282 S:BLIND | HOLD | SCARE | CAUSE_3 | FORGET
6283 S:BO_ACID | BO_FIRE | BO_COLD | BO_NETH
6284 S:S_MONSTER
6285 D:A sorceress in life, Adunaphel quickly fell under Sauron's sway and the
6286 D: power of the rings.
6288 N:450:Dark elven sorcerer
6289 G:h:R
6290 I:130:80d10:20:70:10
6291 W:41:2:0:3000
6292 B:HIT:HURT:2d8
6293 B:HIT:HURT:2d8
6294 B:HIT:HURT:2d8
6295 F:MALE
6296 F:FORCE_SLEEP | FORCE_MAXHP
6297 F:ONLY_ITEM | DROP_90 | DROP_4D2
6298 F:SMART | OPEN_DOOR | BASH_DOOR
6299 F:EVIL | HURT_LITE | NO_CONF | NO_SLEEP
6300 S:1_IN_2
6301 S:HEAL | BLINK | TELE_TO | BLIND | CONF | CAUSE_3 | DARKNESS
6302 S:BO_ACID | BA_FIRE | BA_COLD
6303 S:S_MONSTER | S_UNDEAD | S_DEMON
6304 D:A dark elven figure, dressed in deepest black.  Power seems to crackle
6305 D: from his slender frame.
6307 N:451:Master lich
6308 G:L:r
6309 I:120:18d100:20:80:50
6310 W:41:2:0:10000
6311 B:TOUCH:EXP_80
6312 B:TOUCH:UN_POWER
6313 B:TOUCH:LOSE_DEX:2d12
6314 B:TOUCH:LOSE_DEX:2d12
6315 F:FORCE_SLEEP | FORCE_MAXHP | SMART
6316 F:ONLY_ITEM | DROP_2D2 | DROP_4D2
6317 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
6318 F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
6319 S:1_IN_3
6320 S:BLINK | TELE_TO | BLIND | HOLD | CONF | SCARE | CAUSE_3 | CAUSE_4
6321 S:DRAIN_MANA | BRAIN_SMASH
6322 S:S_UNDEAD
6323 D:A skeletal form wrapped in robes.  Powerful magic crackles along its bony
6324 D: fingers.
6326 N:452:Hezrou
6327 G:U:g
6328 I:110:52d10:20:40:80
6329 W:41:3:0:2500
6330 B:HIT:HURT:3d4
6331 B:HIT:HURT:3d4
6332 F:FORCE_SLEEP | FORCE_MAXHP | FRIENDS
6333 F:ONLY_ITEM | DROP_1D2
6334 F:OPEN_DOOR | BASH_DOOR | POWERFUL
6335 F:EVIL | DEMON | IM_FIRE | NO_CONF | NO_SLEEP
6336 S:1_IN_9
6337 S:BO_FIRE
6338 S:S_DEMON
6339 D:It is a demon of lizard form with cruel-looking jaws.
6341 N:453:Akhorahil the Blind
6342 G:W:D
6343 I:120:24d100:90:70:10
6344 W:45:3:0:15000
6345 B:HIT:HURT:7d6
6346 B:HIT:HURT:7d6
6347 B:GAZE:EXP_80:6d6
6348 B:WAIL:TERRIFY:6d6
6349 F:UNIQUE | MALE
6350 F:FORCE_SLEEP | FORCE_MAXHP
6351 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
6352 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY
6353 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
6354 S:1_IN_3
6355 S:BLIND | HOLD | SCARE | CAUSE_3 | DARKNESS
6356 S:BO_FIRE | BO_COLD | BO_NETH
6357 S:S_MONSTERS
6358 D:A mighty sorcerer King, Akhorahil was blind in life.  With powerful
6359 D: enchantments, he created jewelled eyes that enabled him to see better than
6360 D: any ordinary man ever could.
6362 N:454:Gorlim, Betrayer of Barahir
6363 G:p:s
6364 I:120:16d100:20:120:40
6365 W:41:3:0:7000
6366 B:HIT:HURT:8d6
6367 B:HIT:HURT:8d6
6368 B:HIT:UN_BONUS:6d8
6369 B:HIT:UN_BONUS:6d8
6370 F:UNIQUE | MALE
6371 F:FORCE_SLEEP | FORCE_MAXHP
6372 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
6373 F:SMART | OPEN_DOOR | BASH_DOOR
6374 F:IM_ACID | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
6375 S:1_IN_2
6376 S:CAUSE_3 | BO_WATE | BO_MANA
6377 D:This sad creature - once a mighty warrior - betrayed his former friends to
6378 D: Morgoth's army in return for, he thought, safety for himself and his wife.
6379 D: And so he fell under Morgoth's power and became little more than a mindless
6380 D: servant of evil, even though the other side of his "bargain" was not kept.
6382 N:455:Archon
6383 G:A:y
6384 I:130:100d35:30:140:255
6385 W:55:5:0:10000
6386 B:GAZE:TERRIFY:4d4
6387 B:GAZE:TERRIFY:4d4
6388 B:HIT:HURT:8d6
6389 B:HIT:HURT:8d6
6390 F:FORCE_SLEEP
6391 F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD
6392 F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
6393 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
6394 F:NO_CONF | NO_FEAR | NO_SLEEP
6395 S:1_IN_3
6396 S:TELE_TO | BLIND | SCARE | CAUSE_2 | CAUSE_4 | BO_MANA
6397 S:S_ANGEL
6398 D:Never a more heavenly being have you seen.  The very holiness of its
6399 D: presence makes you deeply respect it.  Few creatures can match the powers
6400 D: of an Archon; fewer still live to tell the tale after attacking one.
6402 N:456:Glabrezu
6403 G:U:U
6404 I:110:70d10:20:40:80
6405 W:43:2:0:3000
6406 B:HIT:HURT:3d4
6407 B:HIT:HURT:3d4
6408 F:FORCE_SLEEP | FORCE_MAXHP
6409 F:ONLY_ITEM | DROP_90
6410 F:OPEN_DOOR | BASH_DOOR | POWERFUL
6411 F:EVIL | DEMON | IM_FIRE | NO_CONF | NO_SLEEP
6412 S:1_IN_9
6413 S:BO_FIRE
6414 S:S_DEMON
6415 D:It is demon with arms and pincers, its form a true mockery of life.
6417 N:457:Ren the Unclean
6418 G:W:D
6419 I:120:27d100:90:70:10
6420 W:48:3:0:18000
6421 B:HIT:HURT:7d7
6422 B:HIT:HURT:7d7
6423 B:TOUCH:EXP_80:6d7
6424 B:WAIL:TERRIFY:6d7
6425 F:UNIQUE | MALE
6426 F:FORCE_SLEEP | FORCE_MAXHP
6427 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
6428 F:INVISIBLE | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY
6429 F:EVIL | UNDEAD | IM_FIRE | IM_COLD | IM_POIS
6430 F:HURT_LITE | NO_CONF | NO_SLEEP
6431 S:1_IN_3
6432 S:BLIND | HOLD | SCARE | CAUSE_3 | BO_FIRE | BO_NETH | BA_FIRE
6433 S:S_MONSTER
6434 D:Ren was an insane eastern king who believed himself to be the son of a
6435 D: volcano god.  At an early age his sanity was destroyed by a plague that
6436 D: wiped out his family, and he never recovered.
6438 N:458:Nalfeshnee
6439 G:U:r
6440 I:110:90d10:20:50:80
6441 W:45:2:0:5000
6442 B:HIT:HURT:3d4
6443 B:HIT:HURT:3d4
6444 B:HIT:HURT:3d4
6445 F:FORCE_SLEEP | FORCE_MAXHP
6446 F:ONLY_ITEM | DROP_1D2
6447 F:OPEN_DOOR | BASH_DOOR | POWERFUL
6448 F:EVIL | DEMON
6449 F:IM_FIRE | NO_CONF | NO_SLEEP
6450 S:1_IN_9
6451 S:BLIND | CONF
6452 S:BR_FIRE
6453 S:S_DEMON
6454 D:It is a large demon with the head of a giant boar.  Flames run up and down
6455 D: its length.
6457 N:459:Undead beholder
6458 G:e:u
6459 I:120:27d100:30:100:10
6460 W:45:3:0:8000
6461 B:GAZE:EXP_40:3d6
6462 B:GAZE:UN_POWER:3d6
6463 B:GAZE:LOSE_INT:3d6
6464 B:BITE:EXP_40:7d6
6465 F:FORCE_SLEEP | FORCE_MAXHP
6466 F:COLD_BLOOD | BASH_DOOR
6467 F:EVIL | UNDEAD
6468 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
6469 F:NO_CONF | NO_SLEEP
6470 S:1_IN_2
6471 S:SLOW | CONF | CAUSE_4 | DRAIN_MANA | MIND_BLAST | FORGET
6472 S:BO_MANA | BO_NETH | BRAIN_SMASH | BA_FIRE | BA_COLD | BO_ACID
6473 S:S_UNDEAD
6474 D:A beholder which has cheated death.  Black nether storms rage around the
6475 D: bloodshot pupil of its central giant eye, and light seems to bend as it
6476 D: sucks its power from the very air around it.  Your soul chills as it drains
6477 D: your vitality for its evil enchantments.
6479 N:460:Dread
6480 G:G:o
6481 I:120:25d20:20:30:10
6482 W:42:1:0:600
6483 B:HIT:HURT:6d6
6484 B:HIT:HURT:6d6
6485 B:HIT:LOSE_STR:3d4
6486 F:FORCE_SLEEP
6487 F:RAND_25 | FRIENDS
6488 F:ONLY_ITEM | DROP_60
6489 F:TAKE_ITEM | INVISIBLE | COLD_BLOOD | PASS_WALL
6490 F:EVIL | UNDEAD | IM_COLD | IM_POIS
6491 F:NO_CONF | NO_SLEEP
6492 S:1_IN_15
6493 S:BLIND | HOLD | CONF | DRAIN_MANA | BO_NETH
6494 D:It is a form that screams its presence against the eye.  Death incarnate,
6495 D: its hideous black body seems to struggle against reality as the universe
6496 D: itself struggles to banish it.
6498 N:461:Mumak
6499 G:q:s
6500 I:110:90d10:20:55:100
6501 W:43:2:0:2100
6502 B:BUTT:HURT:4d6
6503 B:BUTT:HURT:4d6
6504 B:CRUSH:HURT:4d4
6505 F:FRIENDS
6506 F:BASH_DOOR
6507 F:ANIMAL
6508 D:A massive elephantine form with eyes twisted by madness.
6510 N:462:Ancient multi-hued dragon
6511 G:D:v
6512 I:120:21d100:25:100:80
6513 W:43:1:0:13000
6514 B:CLAW:HURT:4d10
6515 B:CLAW:HURT:4d10
6516 B:BITE:HURT:7d10
6517 F:ATTR_MULTI
6518 F:FORCE_SLEEP | FORCE_MAXHP
6519 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2
6520 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
6521 F:EVIL | DRAGON | IM_ACID | IM_FIRE | IM_COLD
6522 F:IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
6523 S:1_IN_5
6524 S:BLIND | CONF | SCARE
6525 S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS
6526 D:A huge draconic form.  Many colours ripple down its massive frame.  Few
6527 D: live to see another.
6529 N:463:Ethereal dragon
6530 G:D:o
6531 I:120:21d100:25:100:80
6532 W:45:2:0:10000
6533 B:CLAW:HURT:4d10
6534 B:CLAW:HURT:4d10
6535 B:BITE:HURT:7d10
6536 F:FORCE_SLEEP | FORCE_MAXHP
6537 F:ONLY_ITEM | DROP_2D2 | DROP_4D2
6538 F:INVISIBLE
6539 F:SMART | PASS_WALL | POWERFUL | MOVE_BODY
6540 F:EVIL | DRAGON | NO_CONF | NO_SLEEP
6541 S:1_IN_5
6542 S:BLIND | CONF
6543 S:BR_LITE | BR_DARK | BR_CONF
6544 D:A huge dragon emanating from the ethereal plane, this terrible dragon is
6545 D: a master of light and dark.  Its form disappears from sight as it cloaks
6546 D: itself in unearthly shadows.
6548 N:464:Ji Indur Dawndeath
6549 G:W:D
6550 I:120:32d100:90:70:10
6551 W:52:3:0:22000
6552 B:HIT:HURT:8d7
6553 B:HIT:HURT:8d7
6554 B:TOUCH:EXP_40:6d7
6555 B:TOUCH:EXP_40:6d7
6556 F:UNIQUE | MALE
6557 F:FORCE_SLEEP | FORCE_MAXHP
6558 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
6559 F:INVISIBLE | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY
6560 F:EVIL | UNDEAD | IM_FIRE | IM_COLD | IM_POIS
6561 F:HURT_LITE | NO_CONF | NO_SLEEP
6562 S:1_IN_3
6563 S:BLIND | HOLD | SCARE | CAUSE_3
6564 S:BA_FIRE | BA_NETH | BA_COLD | BA_ELEC | BA_ACID
6565 S:S_UNDEAD
6566 D:This Ringwraith was a weak-minded sorcerer-king who fell easily under
6567 D: Sauron's power.
6569 N:465:Marilith
6570 G:U:y
6571 I:120:20d70:20:75:80
6572 W:47:2:0:7000
6573 B:HIT:HURT:4d6
6574 B:HIT:HURT:4d6
6575 B:HIT:HURT:4d6
6576 B:HIT:HURT:4d6
6577 F:FEMALE
6578 F:FORCE_SLEEP | FORCE_MAXHP
6579 F:ONLY_ITEM | DROP_1D2
6580 F:OPEN_DOOR | BASH_DOOR | POWERFUL
6581 F:EVIL | DEMON | IM_FIRE | NO_CONF | NO_SLEEP
6582 S:1_IN_9
6583 S:BLIND | CAUSE_2
6584 S:S_DEMON
6585 D:She is a demon of female form with many arms, each bearing deadly weapons.
6587 N:466:Quaker, Master of Earth
6588 G:E:u
6589 I:110:28d100:10:97:90
6590 W:43:3:0:4500
6591 B:HIT:HURT:6d6
6592 B:HIT:HURT:6d6
6593 B:HIT:HURT:6d6
6594 B:HIT:SHATTER:10d10
6595 F:UNIQUE | MALE
6596 F:FORCE_SLEEP | FORCE_MAXHP
6597 F:EMPTY_MIND | COLD_BLOOD
6598 F:KILL_ITEM | KILL_BODY | PASS_WALL | POWERFUL
6599 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
6600 F:HURT_ROCK
6601 F:NO_CONF | NO_SLEEP | NO_FEAR
6602 S:1_IN_6
6603 S:BO_ACID | BA_ACID
6604 D:A towering stone elemental stands before you.  The walls and ceiling are
6605 D: reduced to rubble as Quaker advances.
6607 N:467:Lesser Balrog
6608 G:U:v
6609 I:120:20d100:20:50:80
6610 W:49:2:0:10000
6611 B:HIT:FIRE:4d12
6612 B:HIT:FIRE:4d12
6613 B:CRUSH:HURT:3d12
6614 B:TOUCH:UN_POWER
6615 F:FORCE_SLEEP | FORCE_MAXHP
6616 F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | DROP_GOOD
6617 F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
6618 F:EVIL | DEMON | IM_FIRE | NO_CONF | NO_SLEEP
6619 S:1_IN_4
6620 S:BLIND | CONF
6621 S:BR_FIRE
6622 S:S_DEMON
6623 D:It is a massive humanoid demon wreathed in flames.
6625 N:468:Ariel, Queen of Air
6626 G:E:B
6627 I:130:27d100:12:50:50
6628 W:43:3:0:4750
6629 B:HIT:HURT:4d6
6630 B:HIT:HURT:4d6
6631 B:HIT:CONFUSE:4d4
6632 B:HIT:CONFUSE:4d4
6633 F:UNIQUE | FEMALE
6634 F:FORCE_SLEEP | FORCE_MAXHP
6635 F:RAND_25
6636 F:EMPTY_MIND | COLD_BLOOD
6637 F:KILL_ITEM | KILL_BODY | BASH_DOOR | POWERFUL
6638 F:IM_ACID | IM_COLD | IM_ELEC | IM_POIS
6639 F:NO_CONF | NO_SLEEP | NO_FEAR
6640 S:1_IN_5
6641 S:BO_ELEC | BA_COLD | BA_ELEC
6642 D:A towering air elemental, Ariel, the sorceress, avoids your blows
6643 D: with her extreme speed.
6645 N:469:11-headed hydra
6646 G:M:R
6647 I:120:100d18:20:100:20
6648 W:44:2:0:6000
6649 B:BITE:FIRE:3d12
6650 B:BITE:FIRE:3d12
6651 B:BITE:FIRE:3d12
6652 B:BITE:FIRE:3d12
6653 F:FORCE_SLEEP
6654 F:ONLY_GOLD | DROP_2D2 | DROP_4D2
6655 F:OPEN_DOOR | BASH_DOOR | MOVE_BODY
6656 F:ANIMAL | IM_FIRE
6657 S:1_IN_4
6658 S:SCARE | BO_FIRE | BO_PLAS | BA_FIRE
6659 S:BR_FIRE
6660 D:A strange reptilian hybrid with eleven smouldering heads.
6662 N:470:Patriarch
6663 G:p:G
6664 I:120:52d10:20:60:10
6665 W:40:2:0:1800
6666 B:HIT:HURT:3d4
6667 B:HIT:HURT:3d4
6668 B:HIT:HURT:3d5
6669 F:MALE
6670 F:FORCE_SLEEP | FORCE_MAXHP
6671 F:ONLY_ITEM | DROP_90 | DROP_2D2
6672 F:SMART | OPEN_DOOR | BASH_DOOR
6673 F:EVIL | NO_CONF | NO_SLEEP
6674 S:1_IN_2
6675 S:HEAL | BLIND | HOLD | CAUSE_3 | CAUSE_4
6676 S:S_MONSTER | S_UNDEAD
6677 D:An evil priest, dressed all in black.  Deadly spells hit you at an
6678 D: alarming rate as his black spiked mace rains down blow after blow on your
6679 D: pitiful frame.
6681 N:471:Dreadmaster
6682 G:G:y
6683 I:120:12d100:20:100:10
6684 W:44:2:0:8000
6685 B:HIT:HURT:6d6
6686 B:HIT:HURT:6d6
6687 B:HIT:LOSE_STR:3d4
6688 B:HIT:LOSE_STR:3d4
6689 F:FORCE_SLEEP | FORCE_MAXHP | RAND_25
6690 F:ONLY_ITEM | DROP_1D2 | DROP_4D2
6691 F:SMART | TAKE_ITEM | INVISIBLE | COLD_BLOOD | PASS_WALL
6692 F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
6693 S:1_IN_9
6694 S:TELE_LEVEL | BLIND | HOLD | CONF | CAUSE_4 | DRAIN_MANA | BO_NETH
6695 S:S_UNDEAD
6696 D:It is an unlife of power almost unequaled.  An affront to existence, its
6697 D: very touch abuses and disrupts the flow of life, and its unearthly limbs,
6698 D: of purest black, crush rock and flesh with ease.
6700 N:472:Drolem
6701 G:g:g
6702 I:120:25d100:25:130:30
6703 W:44:3:0:12000
6704 B:CLAW:HURT:3d10
6705 B:CLAW:HURT:3d10
6706 B:BITE:POISON:5d10
6707 B:BITE:POISON:5d10
6708 F:FORCE_SLEEP | FORCE_MAXHP
6709 F:EMPTY_MIND | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
6710 F:DRAGON | IM_FIRE | IM_COLD
6711 F:IM_ELEC | IM_POIS
6712 F:NO_CONF | NO_SLEEP | NO_FEAR
6713 S:1_IN_5
6714 S:BLIND | SLOW | CONF | ARROW_3
6715 S:BR_POIS
6716 D:A constructed dragon, the drolem has massive strength.  Powerful spells
6717 D: weaved during its creation make it a fearsome adversary.  Its eyes show
6718 D: little intelligence, but it has been instructed to destroy all it meets.
6720 N:473:Scatha the Worm
6721 G:D:W
6722 I:120:22d100:30:130:70
6723 W:46:2:0:17000
6724 B:CLAW:HURT:4d10
6725 B:CLAW:HURT:4d10
6726 B:CLAW:COLD:4d14
6727 B:BITE:COLD:4d14
6728 F:UNIQUE | MALE
6729 F:FORCE_SLEEP | FORCE_MAXHP
6730 F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD
6731 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
6732 F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
6733 S:1_IN_4
6734 S:CONF | CAUSE_3
6735 S:BR_COLD
6736 D:An ancient and wise Dragon.  Scatha has grown clever over the long years.
6737 D: His scales are covered with frost, and his breath sends a shower of ice
6738 D: into the air.
6740 N:474:Dwar, Dog Lord of Waw
6741 G:W:D
6742 I:120:40d100:90:90:10
6743 W:56:3:0:25000
6744 B:HIT:HURT:8d8
6745 B:HIT:HURT:8d8
6746 B:BITE:EXP_40:6d7
6747 B:WAIL:TERRIFY:6d7
6748 F:UNIQUE | MALE
6749 F:FORCE_SLEEP | FORCE_MAXHP
6750 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
6751 F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY
6752 F:EVIL | UNDEAD | IM_FIRE | IM_COLD
6753 F:IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
6754 S:1_IN_3
6755 S:BLIND | HOLD | SCARE | CAUSE_3 | BA_FIRE | BA_NETH
6756 S:S_MONSTERS | S_UNDEAD | S_HOUND
6757 D:Dwar had a special affinity for dogs in life, and can still command them
6758 D: at will.  He howls maniacally as he reaches out to destroy you.
6760 N:475:Smaug the Golden
6761 G:D:R
6762 I:120:24d100:30:130:70
6763 W:48:2:0:23000
6764 B:CLAW:HURT:4d12
6765 B:CLAW:HURT:4d12
6766 B:BITE:FIRE:5d14
6767 B:BITE:FIRE:5d14
6768 F:UNIQUE | MALE
6769 F:FORCE_SLEEP | FORCE_MAXHP
6770 F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD
6771 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
6772 F:EVIL | DRAGON | IM_FIRE | NO_CONF | NO_SLEEP
6773 S:1_IN_4
6774 S:CONF | CAUSE_3
6775 S:BR_FIRE
6776 D:Smaug is one of the Uruloki that still survive, a fire-drake of immense
6777 D: cunning and intelligence.  His speed through air is matched by few other
6778 D: dragons and his dragonfire is what legends are made of; he is believed to
6779 D: be the greatest dragon still surviving into the Third Age.
6781 N:476:Dracolich
6782 G:D:G
6783 I:120:35d100:25:120:80
6784 W:55:2:0:18000
6785 B:CLAW:HURT:4d12
6786 B:CLAW:HURT:4d12
6787 B:BITE:EXP_80:7d14
6788 F:FORCE_SLEEP | FORCE_MAXHP
6789 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
6790 F:COLD_BLOOD
6791 F:TAKE_ITEM | SMART | BASH_DOOR | POWERFUL | MOVE_BODY
6792 F:EVIL | DRAGON | UNDEAD | IM_COLD | IM_POIS
6793 F:NO_CONF | NO_SLEEP
6794 S:1_IN_6
6795 S:CONF | SCARE
6796 S:BR_COLD | BR_NETH
6797 D:The skeletal form of a once-great dragon, enchanted by magic most
6798 D: perilous.  Its animated form strikes with speed and drains life from its
6799 D: prey to satisfy its hunger.
6801 N:477:Greater titan
6802 G:P:o
6803 I:120:38d100:30:125:15
6804 W:66:3:0:23500
6805 B:HIT:CONFUSE:12d12
6806 B:HIT:CONFUSE:12d12
6807 B:HIT:CONFUSE:12d12
6808 B:HIT:CONFUSE:12d12
6809 F:FORCE_SLEEP | FORCE_MAXHP
6810 F:ONLY_ITEM | DROP_4D2 | DROP_1D2 | DROP_GOOD
6811 F:SMART | TAKE_ITEM | BASH_DOOR
6812 F:EVIL | GIANT
6813 S:1_IN_3
6814 S:BOULDER | HEAL | TELE_TO | S_MONSTERS
6815 D:A forty foot tall humanoid that shakes the ground as it walks.  The power
6816 D: radiating from its frame shakes your courage, its hatred inspired by your
6817 D: defiance.
6819 N:478:Dracolisk
6820 G:D:R
6821 I:120:35d100:25:120:80
6822 W:55:2:0:14000
6823 B:BITE:HURT:4d12
6824 B:BITE:HURT:4d12
6825 B:BITE:FIRE:7d14
6826 B:GAZE:PARALYZE
6827 F:FORCE_SLEEP | FORCE_MAXHP
6828 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
6829 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
6830 F:ANIMAL | EVIL | DRAGON | IM_ACID | IM_FIRE | NO_CONF | NO_SLEEP
6831 F:RES_NEXUS
6832 S:1_IN_6
6833 S:HOLD | SCARE
6834 S:BR_FIRE | BR_NEXU
6835 D:A mixture of dragon and basilisk, the dracolisk stares at you with deep
6836 D: piercing eyes, its evil breath burning the ground where it stands.
6838 N:479:Death mold
6839 G:m:D
6840 I:140:100d20:200:60:0
6841 W:47:1:0:1000
6842 B:SPORE:UN_BONUS:7d7
6843 B:SPORE:UN_BONUS:7d7
6844 B:SPORE:UN_BONUS:7d7
6845 B:SPORE:EXP_80:5d5
6846 F:FORCE_SLEEP | NEVER_MOVE
6847 F:EVIL | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
6848 F:NO_CONF | NO_SLEEP | NO_FEAR
6849 D:It is the epitome of all that is evil, in a mold.  Its lifeless form draws
6850 D: power from sucking the souls of those that approach it, a nimbus of pure
6851 D: evil surrounds it.  Luckily for you, it can't move.
6853 N:480:Itangast the Fire Drake
6854 G:D:R
6855 I:120:22d100:30:120:70
6856 W:47:2:0:20000
6857 B:CLAW:HURT:4d10
6858 B:CLAW:HURT:4d10
6859 B:BITE:FIRE:4d14
6860 B:BITE:FIRE:4d14
6861 F:UNIQUE | MALE
6862 F:FORCE_SLEEP | FORCE_MAXHP
6863 F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD
6864 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
6865 F:EVIL | DRAGON | IM_FIRE | NO_CONF | NO_SLEEP
6866 S:1_IN_4
6867 S:CONF | CAUSE_3
6868 S:BR_FIRE
6869 D:A mighty ancient dragon, Itangast's form scorches your flesh.  Wisps of
6870 D: smoke curl up from his nostrils as he regards you with disdain.
6872 N:481:Glaurung, Father of the Dragons
6873 G:D:R
6874 I:130:75d100:30:140:70
6875 W:70:3:0:50000
6876 B:CLAW:HURT:5d12
6877 B:CLAW:HURT:5d12
6878 B:BITE:POISON:8d14
6879 B:BITE:FIRE:8d14
6880 F:UNIQUE | MALE
6881 F:FORCE_SLEEP | FORCE_MAXHP
6882 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT
6883 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
6884 F:EVIL | DRAGON | IM_POIS | IM_FIRE
6885 F:NO_CONF | NO_SLEEP
6886 S:1_IN_3
6887 S:BLIND | CONF | SCARE
6888 S:BR_FIRE | BR_POIS
6889 S:S_HI_DRAGON
6890 D:Glaurung is the father of all dragons, and was for a long time the most
6891 D: powerful.  Though this is no longer so, he still has full command over
6892 D: his brood and can command them to appear whenever he so wishes.  He is
6893 D: the definition of dragonfire.
6895 N:482:Master mystic
6896 G:p:o
6897 I:130:11d100:30:60:5
6898 W:50:3:0:6000
6899 B:KICK:HURT:10d2
6900 B:KICK:HURT:10d2
6901 B:HIT:POISON:20d1
6902 B:HIT:PARALYZE:15d1
6903 F:MALE
6904 F:FORCE_SLEEP | FORCE_MAXHP
6905 F:ONLY_ITEM | DROP_1D2 | DROP_2D2
6906 F:INVISIBLE | OPEN_DOOR | BASH_DOOR
6907 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
6908 F:NO_CONF | NO_SLEEP
6909 S:1_IN_3
6910 S:S_ANIMAL | HEAL
6911 D:A lord of all that is natural, skilled in the mystic ways.  He is a master
6912 D: of martial arts and is at one with nature, able to summon help from the
6913 D: wild if need be.
6915 N:483:The Balrog of Moria
6916 G:U:v
6917 I:130:30d100:20:100:80
6918 W:50:3:0:30000
6919 B:HIT:FIRE:6d12
6920 B:HIT:FIRE:6d12
6921 B:CRUSH:HURT:5d12
6922 B:TOUCH:UN_POWER
6923 F:UNIQUE | MALE
6924 F:FORCE_SLEEP | FORCE_MAXHP
6925 F:ESCORT | ESCORTS
6926 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
6927 F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
6928 F:EVIL | DEMON | IM_FIRE
6929 F:NO_CONF | NO_SLEEP
6930 S:1_IN_4
6931 S:CONF | SCARE
6932 S:BR_FIRE
6933 S:S_UNDEAD | S_DEMON
6934 D:A huge Balrog surrounded by raging pillars of fire, this is indeed a
6935 D: terrible opponent.  Wielding a great whip of fire and a blazing sword, his
6936 D: fury blisters your skin and melts your flesh!
6938 N:484:Nightwing
6939 G:W:D
6940 I:120:60d60:20:120:10
6941 W:61:3:0:10000
6942 B:TOUCH:POISON:6d5
6943 B:TOUCH:POISON:6d5
6944 B:HIT:UN_BONUS:6d8
6945 B:HIT:UN_BONUS:6d8
6946 F:FORCE_SLEEP
6947 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
6948 F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
6949 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
6950 S:1_IN_4
6951 S:BLIND | SCARE | CAUSE_4 | BRAIN_SMASH
6952 S:BO_MANA | BO_NETH | BA_NETH | S_UNDEAD
6953 D:Everywhere colours seem paler and the air chiller.  At the centre of the
6954 D: cold stands a mighty figure.  Its wings envelop you in the chill of death
6955 D: as the nightwing reaches out to draw you into oblivion.  Your muscles sag
6956 D: and your mind loses all will to fight as you stand in awe of this mighty
6957 D: being.
6959 N:485:Nether hound
6960 G:Z:G
6961 I:120:60d10:30:100:0
6962 W:51:2:0:5000
6963 B:CLAW:HURT:2d12
6964 B:CLAW:HURT:2d12
6965 B:BITE:HURT:2d12
6966 B:BITE:HURT:2d12
6967 F:FORCE_SLEEP
6968 F:FRIENDS
6969 F:OPEN_DOOR | BASH_DOOR
6970 F:ANIMAL | NO_CONF | NO_SLEEP
6971 S:1_IN_5
6972 S:BR_NETH
6973 D:You feel a soul-tearing chill upon viewing this beast, a ghostly form of
6974 D: darkness in the shape of a large dog.
6976 N:486:Time hound
6977 G:Z:B
6978 I:130:60d10:30:100:0
6979 W:51:2:0:5000
6980 B:CLAW:HURT:2d12
6981 B:CLAW:HURT:2d12
6982 B:BITE:HURT:2d12
6983 B:BITE:HURT:2d12
6984 F:FORCE_SLEEP
6985 F:FRIENDS
6986 F:OPEN_DOOR | BASH_DOOR
6987 F:ANIMAL | NO_CONF | NO_SLEEP
6988 S:1_IN_5
6989 S:BR_TIME
6990 D:You get a terrible sense of deja vu, or is it a premonition?  All at once
6991 D: you see a little puppy and a toothless old dog.  Perhaps you should give
6992 D: up and go to bed.
6994 N:487:Plasma hound
6995 G:Z:R
6996 I:120:60d10:30:100:0
6997 W:51:2:0:5000
6998 B:CLAW:HURT:2d12
6999 B:CLAW:HURT:2d12
7000 B:BITE:HURT:2d12
7001 B:BITE:HURT:2d12
7002 F:FORCE_SLEEP
7003 F:FRIENDS
7004 F:OPEN_DOOR | BASH_DOOR
7005 F:ANIMAL | IM_FIRE | IM_ELEC | NO_CONF | NO_SLEEP | RES_PLAS
7006 S:1_IN_5
7007 S:BR_PLAS
7008 D:The very air warps as pure elemental energy stalks towards you in the
7009 D: shape of a giant hound.  Your hair stands on end and your palms itch as
7010 D: you sense trouble.
7012 N:488:Demonic quylthulg
7013 G:Q:r
7014 I:120:48d10:20:1:0
7015 W:45:1:0:3000
7016 F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW
7017 F:INVISIBLE | EMPTY_MIND | ANIMAL
7018 F:NO_CONF | NO_SLEEP | NO_FEAR
7019 S:1_IN_2
7020 S:BLINK | TPORT
7021 S:S_DEMON
7022 D:A pile of pulsing flesh that glows with an inner hellish fire.  The world
7023 D: itself seems to cry out against it.
7025 N:489:Great Storm Wyrm
7026 G:D:b
7027 I:120:35d100:30:150:80
7028 W:63:2:0:20000
7029 B:CLAW:HURT:4d12
7030 B:CLAW:HURT:4d12
7031 B:BITE:ELEC:6d14
7032 B:BITE:ELEC:6d14
7033 F:FORCE_SLEEP | FORCE_MAXHP
7034 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
7035 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
7036 F:EVIL | DRAGON | IM_ELEC | NO_CONF | NO_SLEEP
7037 S:1_IN_4
7038 S:BLIND | CONF | SCARE
7039 S:BR_ELEC
7040 D:A vast dragon of power.  Storms and lightning crash around its titanic
7041 D: form.  Deep blue scales reflect the flashes and highlight the creature's
7042 D: great muscles.  It regards you with contempt.
7044 N:490:Baphomet the Minotaur Lord
7045 G:H:v
7046 I:130:47d100:30:120:30
7047 W:58:4:0:24000
7048 B:BUTT:HURT:12d13
7049 B:BUTT:HURT:12d13
7050 B:HIT:HURT:10d10
7051 B:HIT:HURT:10d10
7052 F:UNIQUE | MALE
7053 F:FORCE_SLEEP | FORCE_MAXHP
7054 F:ONLY_ITEM | DROP_1D2 | DROP_4D2 | DROP_GOOD
7055 F:BASH_DOOR
7056 F:EVIL | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP
7057 S:1_IN_6
7058 S:SLOW | ARROW_4 | BO_MANA | BO_PLAS | BA_ELEC
7059 S:BR_WALL
7060 D:A fearsome bull-headed monster, Baphomet swings a mighty axe as he curses
7061 D: all that defy him.
7063 N:491:Harowen the Black Hand
7064 G:p:B
7065 I:140:25d100:40:90:0
7066 W:51:3:0:20000
7067 B:TOUCH:EAT_GOLD:5d5
7068 B:TOUCH:EAT_ITEM:5d5
7069 B:HIT:BLIND:10d5
7070 B:HIT:POISON:8d5
7071 F:UNIQUE | MALE
7072 F:FORCE_SLEEP | FORCE_MAXHP
7073 F:ONLY_ITEM | DROP_1D2 | DROP_4D2 | DROP_GOOD
7074 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
7075 F:IM_POIS | NO_CONF | NO_SLEEP
7076 S:1_IN_6
7077 S:TRAPS
7078 D:He is a master of disguise, an expert of stealth, a genius at traps, and
7079 D: moves with blinding speed.  Check your pockets!
7081 N:492:Hoarmurath of Dir
7082 G:W:D
7083 I:120:45d100:90:100:10
7084 W:64:3:0:30000
7085 B:HIT:HURT:9d9
7086 B:HIT:HURT:9d9
7087 B:TOUCH:EXP_80:6d7
7088 B:WAIL:TERRIFY:6d7
7089 F:UNIQUE | MALE
7090 F:FORCE_SLEEP | FORCE_MAXHP | SMART
7091 F:ONLY_ITEM | DROP_2D2 | DROP_4D2 | DROP_GOOD
7092 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY
7093 F:EVIL | UNDEAD | IM_COLD | IM_POIS
7094 F:HURT_LITE | NO_CONF | NO_SLEEP
7095 S:1_IN_3
7096 S:BLIND | HOLD | SCARE | CAUSE_3 | CAUSE_4 | MIND_BLAST
7097 S:BO_COLD | BA_COLD | BA_NETH
7098 S:S_UNDEAD
7099 D:A Ringwraith powerful in fell sorcery, he yearns for the life he has lost
7100 D: for an unlife of everlasting torment.
7102 N:493:Grand master mystic
7103 G:p:o
7104 I:130:22d100:30:80:5
7105 W:57:3:0:15000
7106 B:KICK:HURT:20d2
7107 B:KICK:HURT:10d2
7108 B:HIT:POISON:20d1
7109 B:HIT:PARALYZE:15d1
7110 F:MALE
7111 F:FORCE_SLEEP | FORCE_MAXHP
7112 F:ONLY_ITEM | DROP_4D2
7113 F:INVISIBLE | OPEN_DOOR | BASH_DOOR
7114 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
7115 S:1_IN_3
7116 S:HEAL | MIND_BLAST | S_SPIDER | S_HOUND | S_ANIMAL
7117 D:He is one of the few true masters of the art, being extremely skillful in
7118 D: all forms of unarmed combat and controlling the world's natural creatures
7119 D: with disdainful ease.
7121 N:494:Khamul, the Black Easterling
7122 G:W:D
7123 I:120:50d100:90:100:10
7124 W:72:3:0:40000
7125 B:HIT:HURT:9d10
7126 B:HIT:HURT:9d10
7127 B:TOUCH:EXP_40:7d7
7128 B:TOUCH:EXP_40:7d7
7129 F:UNIQUE | MALE
7130 F:FORCE_SLEEP | FORCE_MAXHP
7131 F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD
7132 F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY
7133 F:EVIL | UNDEAD | IM_ACID | IM_FIRE | IM_COLD | IM_POIS
7134 F:HURT_LITE | NO_CONF | NO_SLEEP
7135 S:1_IN_2
7136 S:TELE_LEVEL | BLIND | HOLD | SCARE | CAUSE_3 | CAUSE_4 | BO_MANA
7137 S:BA_FIRE | BA_COLD | BA_NETH | S_HI_UNDEAD
7138 D:A warrior-king of the East.  Khamul is a powerful opponent, his skill in
7139 D: combat awesome and his form twisted by evil cunning.
7141 N:495:Ethereal hound
7142 G:Z:G
7143 I:120:60d15:30:100:0
7144 W:59:3:0:7000
7145 B:CLAW:HURT:2d12
7146 B:CLAW:HURT:2d12
7147 B:BITE:HURT:2d12
7148 B:BITE:HURT:2d12
7149 F:FORCE_SLEEP | FRIENDS
7150 F:INVISIBLE | PASS_WALL
7151 F:ANIMAL | NO_CONF | NO_SLEEP
7152 S:1_IN_5
7153 S:BR_NETH
7154 D:A pale green hound.  Pulsing red lines and strange fluorescent light
7155 D: hints at internal organs best left to the imagination.
7157 N:496:Great Ice Wyrm
7158 G:D:w
7159 I:120:35d100:30:150:80
7160 W:63:2:0:20000
7161 B:CLAW:HURT:4d12
7162 B:CLAW:HURT:4d12
7163 B:BITE:COLD:6d14
7164 B:BITE:COLD:6d14
7165 F:FORCE_SLEEP | FORCE_MAXHP
7166 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
7167 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
7168 F:EVIL | DRAGON | IM_COLD | NO_CONF | NO_SLEEP
7169 S:1_IN_4
7170 S:BLIND | CONF | SCARE
7171 S:BR_COLD
7172 D:An immense dragon capable of awesome destruction.  You have never felt
7173 D: such extreme cold, or witnessed such an icy stare.  Begone quickly or feel
7174 D: its wrath!
7176 N:497:The Phoenix
7177 G:B:r
7178 I:120:36d100:60:130:0
7179 W:54:3:0:40000
7180 B:BITE:FIRE:12d6
7181 B:BITE:FIRE:12d6
7182 B:HIT:FIRE:9d12
7183 B:HIT:FIRE:9d12
7184 F:UNIQUE
7185 F:FORCE_SLEEP | FORCE_MAXHP
7186 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
7187 F:OPEN_DOOR | BASH_DOOR
7188 F:ANIMAL | IM_ACID | IM_FIRE | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
7189 F:RES_PLAS
7190 S:1_IN_3
7191 S:BO_FIRE | BO_PLAS | BA_FIRE
7192 S:BR_FIRE | BR_LITE | BR_PLAS | S_KIN
7193 D:A massive glowing eagle bathed in flames.  The searing heat chars your
7194 D: skin and melts your armour.
7196 N:498:Nightcrawler
7197 G:W:D
7198 I:120:80d60:20:160:10
7199 W:69:3:0:15000
7200 B:STING:LOSE_CON:8d8
7201 B:STING:LOSE_CON:8d8
7202 B:BITE:ACID:10d10
7203 B:BITE:ACID:10d10
7204 F:FORCE_SLEEP | SMART
7205 F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | DROP_GOOD
7206 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
7207 F:EVIL | UNDEAD | IM_FIRE | IM_COLD | IM_POIS
7208 F:HURT_LITE | NO_CONF | NO_SLEEP
7209 S:1_IN_4
7210 S:BLIND | SCARE | BRAIN_SMASH
7211 S:BO_MANA | BO_NETH | BA_NETH
7212 S:BR_NETH | S_UNDEAD
7213 D:This intensely evil creature bears the form of a gargantuan black worm.
7214 D: Its gaping maw is a void of blackness, acid drips from its steely hide.
7215 D: It is like nothing you have ever seen before, and a terrible chill runs
7216 D: down your spine as you face it.
7218 N:499:Hand druj
7219 G:s:y
7220 I:130:60d10:20:110:10
7221 W:57:2:0:12000
7222 F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW
7223 F:SMART | COLD_BLOOD
7224 F:EVIL | UNDEAD | IM_COLD | IM_POIS
7225 F:NO_CONF | NO_SLEEP | NO_FEAR
7226 S:1_IN_1
7227 S:TELE_AWAY | BLIND | CONF | SCARE | CAUSE_3 | FORGET | DARKNESS
7228 S:BO_FIRE | BO_ACID | BO_COLD | BO_ELEC
7229 D:A skeletal hand floating in the air, motionless except for its flexing
7230 D: fingers.
7232 N:500:Eye druj
7233 G:s:r
7234 I:130:10d100:20:90:10
7235 W:58:2:0:15000
7236 F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW
7237 F:SMART | COLD_BLOOD
7238 F:EVIL | UNDEAD
7239 F:IM_FIRE | IM_COLD | IM_POIS
7240 F:NO_CONF | NO_SLEEP | NO_FEAR
7241 S:1_IN_1
7242 S:BO_MANA | BO_NETH | BA_NETH | BRAIN_SMASH
7243 S:S_UNDEAD
7244 D:A bloodshot eyeball floating in the air, you'd be forgiven for assuming it
7245 D: harmless.
7247 N:501:Skull druj
7248 G:s:o
7249 I:130:14d100:20:120:10
7250 W:59:2:0:18000
7251 F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW
7252 F:SMART | COLD_BLOOD
7253 F:EVIL | UNDEAD
7254 F:IM_FIRE | IM_COLD | IM_POIS
7255 F:NO_CONF | NO_SLEEP | NO_FEAR
7256 S:1_IN_1
7257 S:SLOW | CAUSE_4 | MIND_BLAST | BRAIN_SMASH | TRAPS | BO_PLAS
7258 S:BO_NETH | BA_WATE
7259 S:S_UNDEAD
7260 D:A glowing skull possessed by sorcerous power.  It need not move, but
7261 D: merely blast you with mighty magic as it speaks the words of power.
7263 N:502:Chaos vortex
7264 G:v:v
7265 I:120:30d20:100:80:0
7266 W:53:3:0:4000
7267 B:ENGULF:CONFUSE:5d5
7268 B:ENGULF:CONFUSE:5d5
7269 B:ENGULF:CONFUSE:5d5
7270 B:ENGULF:HALLU:5d5
7271 F:ATTR_MULTI | FORCE_SLEEP
7272 F:RAND_50 | RAND_25
7273 F:EMPTY_MIND | BASH_DOOR | POWERFUL
7274 F:NO_CONF | NO_SLEEP | NO_FEAR
7275 S:1_IN_6
7276 S:BR_CHAO
7277 D:Void, nothingness, spinning destructively.
7279 N:503:Aether vortex
7280 G:v:v
7281 I:130:40d20:100:40:0
7282 W:60:4:0:5000
7283 B:ENGULF:ELEC:5d5
7284 B:ENGULF:FIRE:5d5
7285 B:ENGULF:ACID:5d5
7286 B:ENGULF:COLD:5d5
7287 F:ATTR_MULTI
7288 F:FORCE_SLEEP
7289 F:RAND_50 | RAND_25
7290 F:EMPTY_MIND | BASH_DOOR | POWERFUL
7291 F:RES_PLAS | RES_NEXUS
7292 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
7293 F:NO_CONF | NO_SLEEP | NO_FEAR
7294 S:1_IN_6
7295 S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS | BR_LITE
7296 S:BR_DARK | BR_SOUN | BR_CONF | BR_CHAO | BR_SHAR | BR_NETH
7297 S:BR_WALL | BR_INER | BR_TIME | BR_GRAV | BR_PLAS | BR_NEXU
7298 D:An awesome vortex of pure magic, power radiates from its frame.
7300 N:504:The Lernaean Hydra
7301 G:M:v
7302 I:120:45d100:20:140:20
7303 W:57:2:0:20000
7304 B:BITE:POISON:8d6
7305 B:BITE:POISON:8d6
7306 B:BITE:FIRE:12d6
7307 B:BITE:FIRE:12d6
7308 F:UNIQUE
7309 F:FORCE_SLEEP | FORCE_MAXHP | SMART
7310 F:ONLY_GOLD | DROP_3D2 | DROP_4D2
7311 F:OPEN_DOOR | BASH_DOOR | KILL_BODY | POWERFUL
7312 F:ANIMAL | IM_FIRE | IM_POIS
7313 F:NO_CONF | NO_SLEEP | REGENERATE
7314 S:1_IN_3
7315 S:SCARE
7316 S:BO_FIRE | BO_PLAS | BA_FIRE | BA_POIS
7317 S:BR_FIRE | BR_POIS | S_HYDRA | S_KIN
7318 D:A massive legendary hydra.  It has twelve powerful heads.  Its many eyes
7319 D: stare at you as clouds of smoke and poisonous vapour rise from its
7320 D: seething form.  And it grows new heads as fast as you chop them off.
7322 N:505:Thuringwethil, the Vampire Messenger
7323 G:V:v
7324 I:130:50d100:20:145:10
7325 W:67:4:0:23000
7326 B:BITE:EXP_80:6d6
7327 B:BITE:EXP_80:6d6
7328 B:HIT:CONFUSE:6d6
7329 B:HIT:CONFUSE:6d6
7330 F:UNIQUE | FEMALE
7331 F:FORCE_SLEEP | FORCE_MAXHP | SMART
7332 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
7333 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | REGENERATE
7334 F:EVIL | UNDEAD | IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
7335 S:1_IN_3
7336 S:BLIND | HOLD | SCARE | CAUSE_3 | CAUSE_4 | DRAIN_MANA
7337 S:BRAIN_SMASH | BA_NETH | S_KIN | S_HI_UNDEAD
7338 D:Chief messenger between Sauron and Morgoth, she is surely the most deadly
7339 D: of her vampire race.  At first she is charming to meet, but her wings and
7340 D: eyes give away her true form.
7342 N:506:Great Hell Wyrm
7343 G:D:r
7344 I:120:38d100:30:150:80
7345 W:67:2:0:23000
7346 B:CLAW:HURT:4d12
7347 B:CLAW:HURT:4d12
7348 B:BITE:FIRE:6d14
7349 B:BITE:FIRE:6d14
7350 F:FORCE_SLEEP | FORCE_MAXHP
7351 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
7352 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
7353 F:EVIL | DRAGON | IM_FIRE | NO_CONF | NO_SLEEP
7354 S:1_IN_4
7355 S:BLIND | CONF | SCARE
7356 S:BR_FIRE
7357 D:A vast dragon of immense power.  Fire leaps continuously from its huge
7358 D: form.  The air around it scalds you.  Its slightest glance burns you, and
7359 D: you truly realize how insignificant you are.
7361 N:507:Draconic quylthulg
7362 G:Q:g
7363 I:120:48d10:20:1:0
7364 W:45:1:0:3000
7365 F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW
7366 F:INVISIBLE | EMPTY_MIND | ANIMAL
7367 F:NO_CONF | NO_SLEEP | NO_FEAR
7368 S:1_IN_2
7369 S:BLINK | TPORT
7370 S:S_DRAGON
7371 D:It looks like it was once a dragon corpse, now deeply infected with
7372 D: magical bacteria that make it pulse in a foul and degrading way.
7374 N:508:Fundin Bluecloak
7375 G:h:B
7376 I:130:50d100:25:195:10
7377 W:59:2:0:20000
7378 B:HIT:HURT:8d8
7379 B:HIT:HURT:8d8
7380 B:HIT:HURT:8d8
7381 B:HIT:HURT:8d8
7382 F:UNIQUE | MALE
7383 F:FORCE_SLEEP | FORCE_MAXHP
7384 F:ONLY_ITEM | DROP_1D2 | DROP_4D2 | DROP_GOOD
7385 F:OPEN_DOOR | BASH_DOOR
7386 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
7387 S:1_IN_4
7388 S:HEAL | BLIND | CONF | SCARE | CAUSE_3 | CAUSE_4 | BRAIN_SMASH
7389 S:S_MONSTERS | S_ANIMAL
7390 D:He is one of the greatest dwarven priests to walk the earth.  Fundin has
7391 D: earned a high position in the church, and his skill with both weapon and
7392 D: spell only justify his position further.  His combination of both dwarven
7393 D: strength and priestly wisdom are a true match for any adventurer.
7395 N:509:Uriel, Angel of Fire
7396 G:A:R
7397 I:130:55d100:40:160:10
7398 W:61:3:0:25000
7399 B:HIT:FIRE:4d12
7400 B:HIT:FIRE:4d12
7401 B:HIT:HURT:10d10
7402 B:HIT:HURT:10d10
7403 F:UNIQUE | MALE
7404 F:FORCE_SLEEP | FORCE_MAXHP
7405 F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD
7406 F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
7407 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
7408 F:RES_PLAS
7409 S:1_IN_2
7410 S:TELE_TO | BLIND
7411 S:BO_FIRE | BO_MANA | BO_PLAS | BA_FIRE
7412 S:BR_FIRE | BR_PLAS
7413 S:S_ANGEL
7414 D:A creature of godly appearance, you dare not challenge Uriel's supremacy.
7415 D: Those who stood against him before are but a memory, cremated by his
7416 D: mastery of elemental fire.
7418 N:510:Azriel, Angel of Death
7419 G:A:D
7420 I:130:60d100:40:170:10
7421 W:62:3:0:30000
7422 B:HIT:EXP_80:10d5
7423 B:HIT:EXP_80:10d5
7424 B:HIT:HURT:10d10
7425 B:HIT:HURT:10d10
7426 F:UNIQUE | MALE
7427 F:FORCE_SLEEP | FORCE_MAXHP | SMART
7428 F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD
7429 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
7430 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
7431 S:1_IN_2
7432 S:TELE_TO | BLIND
7433 S:BO_MANA | BO_NETH | BA_NETH
7434 S:BR_NETH | S_ANGEL
7435 D:Azriel commands awesome power, his visage holy enough to shrivel your
7436 D: soul.  You shriek with disbelief as his mastery of death draws you to your
7437 D: grave.  It is truly beyond all but the mightiest of warriors to stand
7438 D: against him and live.
7440 N:511:Ancalagon the Black
7441 G:D:D
7442 I:130:100d100:40:170:70
7443 W:85:3:0:45000
7444 B:CLAW:HURT:6d12
7445 B:CLAW:HURT:6d12
7446 B:BITE:HURT:10d14
7447 B:BITE:HURT:10d14
7448 F:UNIQUE | MALE
7449 F:FORCE_SLEEP | FORCE_MAXHP | ESCORT
7450 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT
7451 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
7452 F:EVIL | DRAGON
7453 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
7454 S:1_IN_3
7455 S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS
7456 S:S_HI_DRAGON | S_KIN
7457 D:"Rushing Jaws" is his name, and death is his game; the greatest and most
7458 D: terrible of all dragonkind, his power dismayed even the Valar for a time.
7460 N:512:Nightwalker
7461 G:W:D
7462 I:130:50d65:20:175:10
7463 W:73:3:0:20000
7464 B:HIT:UN_BONUS:10d10
7465 B:HIT:UN_BONUS:10d10
7466 B:HIT:UN_BONUS:8d8
7467 B:HIT:UN_BONUS:8d8
7468 F:FORCE_SLEEP
7469 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
7470 F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
7471 F:EVIL | UNDEAD | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
7472 F:HURT_LITE | NO_CONF | NO_SLEEP
7473 S:1_IN_4
7474 S:BLIND | SCARE | BRAIN_SMASH
7475 S:BO_MANA | BO_NETH | BA_NETH
7476 S:S_UNDEAD
7477 D:A huge giant garbed in black, more massive than a titan and stronger than
7478 D: a dragon.  With terrible blows, it breaks your armour from your back,
7479 D: leaving you defenseless against its evil wrath.  It can smell your fear,
7480 D: and you in turn smell the awful stench of death as this ghastly figure
7481 D: strides towards you menacingly.
7483 N:513:Gabriel, the Messenger
7484 G:A:w
7485 I:130:75d100:40:180:10
7486 W:64:3:0:35000
7487 B:HIT:UN_BONUS:6d8
7488 B:HIT:FIRE:6d8
7489 B:HIT:BLIND:10d10
7490 B:HIT:BLIND:10d10
7491 F:UNIQUE | MALE
7492 F:FORCE_SLEEP | FORCE_MAXHP | SMART
7493 F:ESCORT
7494 F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD
7495 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
7496 F:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
7497 S:1_IN_2
7498 S:TELE_TO | BLIND | BO_MANA | S_KIN
7499 D:Commanding a legion of angels, Gabriel will destroy you for your sins.  He
7500 D: will crush you like the pitiful insignificant being he sees you to be.
7501 D: Your very soul will be taken into judgement by his supreme authority as he
7502 D: cleanses the world of evil.
7504 N:514:Saruman of Many Colours
7505 G:p:v
7506 I:120:50d100:100:100:0
7507 W:60:1:0:35000
7508 B:HIT:UN_BONUS:6d8
7509 B:HIT:UN_BONUS:6d8
7510 B:HIT:HURT:5d5
7511 B:HIT:HURT:5d5
7512 F:UNIQUE | MALE | ATTR_MULTI
7513 F:FORCE_SLEEP | FORCE_MAXHP
7514 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT
7515 F:SMART | OPEN_DOOR | BASH_DOOR
7516 F:EVIL | IM_FIRE | IM_COLD
7517 F:IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
7518 S:1_IN_2
7519 S:HEAL | HASTE | TPORT | TELE_AWAY | BLIND | MIND_BLAST | SCARE
7520 S:CAUSE_4 | FORGET | TRAPS
7521 S:BO_ICEE | BA_ACID | BA_FIRE | BA_COLD | BA_WATE
7522 S:S_UNDEAD | S_DEMON | S_HI_DRAGON | S_MONSTERS | S_ANIMAL
7523 D:Originally known as the White, Saruman fell prey to Sauron's wiles.  He
7524 D: seeks to emulate him and breeds orcs and trolls to fight for him.  He
7525 D: searches forever for the One Ring, to become a mighty Sorcerer-King of the
7526 D: world.
7528 N:515:Dreadlord
7529 G:G:r
7530 I:120:30d100:20:150:10
7531 W:62:2:0:20000
7532 B:HIT:EXP_40:6d6
7533 B:HIT:EXP_40:6d6
7534 B:HIT:LOSE_STR:4d6
7535 B:HIT:LOSE_STR:4d6
7536 F:FORCE_SLEEP | FORCE_MAXHP
7537 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2
7538 F:INVISIBLE | COLD_BLOOD | TAKE_ITEM | PASS_WALL
7539 F:EVIL | UNDEAD
7540 F:IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
7541 S:1_IN_4
7542 S:BLIND | HOLD | CONF | DRAIN_MANA | BA_NETH
7543 S:S_UNDEAD | TELE_TO | TPORT | BLINK | BRAIN_SMASH
7544 D:It is a massive form of animated death, its colour deeper than black.  It
7545 D: drinks in light, and space around it is twisted and torn by the weight of
7546 D: its evil.  It is unlife and it knows nothing but the stealing of souls and
7547 D: the stench of death.  Flee its hunger!
7549 N:516:The Cat Lord
7550 G:f:v
7551 I:130:48d100:100:200:0
7552 W:66:3:0:30000
7553 B:CLAW:CONFUSE:12d12
7554 B:CLAW:LOSE_DEX:2d12
7555 B:CLAW:BLIND:10d5
7556 B:BITE:PARALYZE:15d1
7557 F:UNIQUE | MALE
7558 F:FORCE_SLEEP | FORCE_MAXHP
7559 F:ESCORT | ESCORTS
7560 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
7561 F:INVISIBLE | OPEN_DOOR | BASH_DOOR
7562 F:IM_FIRE | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
7563 S:1_IN_3
7564 S:TELE_TO | S_KIN
7565 D:Master of all things feline, the Cat Lord moves with unsurpassed stealth.
7567 N:517:Jabberwock
7568 G:H:v
7569 I:130:32d100:35:125:255
7570 W:68:3:0:19000
7571 B:CLAW:HURT:10d10
7572 B:CLAW:HURT:10d10
7573 B:BITE:HURT:10d10
7574 B:BITE:HURT:10d10
7575 F:ATTR_MULTI
7576 F:FORCE_SLEEP | FORCE_MAXHP
7577 F:ONLY_ITEM | DROP_60 | DROP_90
7578 F:BASH_DOOR
7579 F:ANIMAL
7580 S:1_IN_5
7581 S:CAUSE_4
7582 S:BR_CHAO
7583 D:"Beware the Jabberwock, my son! The jaws that bite, the claws that catch!"
7584 D: Run and run quickly, for death incarnate chases behind you!
7586 N:518:Chaos hound
7587 G:Z:v
7588 I:120:60d30:30:100:0
7589 W:64:2:0:10000
7590 B:CLAW:HURT:2d12
7591 B:CLAW:HURT:2d12
7592 B:BITE:HURT:2d12
7593 B:BITE:HURT:2d12
7594 F:ATTR_MULTI
7595 F:FORCE_SLEEP
7596 F:FRIENDS
7597 F:BASH_DOOR
7598 F:ANIMAL | NO_CONF | NO_SLEEP
7599 S:1_IN_5
7600 S:BR_CHAO
7601 D:A constantly changing canine form, this hound rushes towards you as if
7602 D: expecting mayhem and chaos ahead.  It appears to have an almost kamikaze
7603 D: relish for combat.  You suspect all may not be as it seems.
7605 N:519:Great Wyrm of Chaos
7606 G:D:v
7607 I:120:45d100:40:170:100
7608 W:75:2:0:29000
7609 B:CLAW:HURT:5d12
7610 B:CLAW:HURT:5d12
7611 B:BITE:HURT:7d14
7612 B:BITE:HURT:7d14
7613 F:ATTR_MULTI
7614 F:FORCE_SLEEP | FORCE_MAXHP
7615 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
7616 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
7617 F:EVIL | DRAGON | NO_CONF | NO_SLEEP | IM_FIRE
7618 F:RES_DISE
7619 S:1_IN_4
7620 S:BLIND | CONF | SCARE
7621 S:BR_CHAO | BR_DISE
7622 S:S_DRAGON | S_HI_DRAGON
7623 D:A massive dragon of changing form.  As you watch, it appears first fair
7624 D: and then foul.  Its body is twisted by chaotic forces as it strives to
7625 D: stay real.  Its very existence distorts the universe around it.
7627 N:520:Great Wyrm of Law
7628 G:D:B
7629 I:120:45d100:40:170:100
7630 W:75:2:0:29000
7631 B:CLAW:HURT:5d12
7632 B:CLAW:HURT:5d12
7633 B:BITE:HURT:7d14
7634 B:BITE:HURT:7d14
7635 F:FORCE_SLEEP | FORCE_MAXHP
7636 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
7637 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
7638 F:EVIL | DRAGON | NO_CONF | NO_SLEEP | IM_COLD
7639 S:1_IN_4
7640 S:BLIND | CONF | SCARE
7641 S:BR_SOUN | BR_SHAR
7642 S:S_DRAGON | S_HI_DRAGON
7643 D:A massive dragon of powerful intellect.  It seeks to dominate the universe
7644 D: and despises all other life.  It sees all who do not obey it as mere
7645 D: insects to be crushed underfoot.
7647 N:521:Great Wyrm of Balance
7648 G:D:v
7649 I:120:50d100:40:170:100
7650 W:79:2:0:31000
7651 B:CLAW:HURT:5d12
7652 B:CLAW:HURT:5d12
7653 B:BITE:HURT:7d14
7654 B:BITE:HURT:7d14
7655 F:FORCE_SLEEP | FORCE_MAXHP
7656 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
7657 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
7658 F:EVIL | DRAGON | NO_CONF | NO_SLEEP | IM_FIRE | IM_COLD
7659 F:RES_DISE
7660 S:1_IN_4
7661 S:BLIND | CONF | SCARE
7662 S:BR_SOUN | BR_CHAO | BR_SHAR | BR_DISE
7663 S:S_DRAGON | S_HI_DRAGON
7664 D:A massive dragon, one of the mightiest of dragonkind.  It is thousands of
7665 D: years old and seeks to maintain the Cosmic Balance.  It sees you as an
7666 D: upstart troublemaker without the wisdom to control your actions.  It will
7667 D: destroy you.
7669 N:522:Tselakus, the Dreadlord
7670 G:G:R
7671 I:130:65d100:20:150:10
7672 W:68:2:0:35000
7673 B:HIT:HURT:10d10
7674 B:HIT:HURT:10d10
7675 B:HIT:LOSE_STR:4d6
7676 B:HIT:LOSE_STR:4d6
7677 F:UNIQUE | MALE
7678 F:FORCE_SLEEP | FORCE_MAXHP
7679 F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD
7680 F:INVISIBLE | COLD_BLOOD | PASS_WALL
7681 F:EVIL | UNDEAD | IM_COLD
7682 F:IM_POIS | NO_CONF | NO_SLEEP
7683 S:1_IN_3
7684 S:BLIND | HOLD | CONF
7685 S:BA_DARK | BA_NETH
7686 S:S_WRAITH | S_HI_UNDEAD | S_KIN
7687 D:This huge affront to existence twists and tears at the fabric of space.  A
7688 D: master of mighty magic, Tselakus hungers for your tender flesh.  Darkness
7689 D: itself recoils from the touch of Tselakus as he leaves a trail of death
7690 D: and destruction.  Tselakus is a being of sneering contempt, laughing at
7691 D: your pitiful efforts to defy him.  Mighty claws rend reality as he
7692 D: annihilates all in his path to your soul!
7694 N:523:Great Wyrm of Many Colours
7695 G:D:v
7696 I:120:50d100:40:170:100
7697 W:79:2:0:31000
7698 B:CLAW:HURT:5d12
7699 B:CLAW:HURT:5d12
7700 B:BITE:HURT:7d14
7701 B:BITE:HURT:7d14
7702 F:ATTR_MULTI
7703 F:FORCE_SLEEP | FORCE_MAXHP
7704 F:IM_FIRE | IM_ACID | IM_POIS | IM_COLD | IM_ELEC
7705 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
7706 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
7707 F:EVIL | DRAGON | NO_CONF | NO_SLEEP
7708 S:1_IN_4
7709 S:BR_POIS | BR_ELEC | BR_ACID | BR_FIRE | BR_COLD
7710 S:CONF | SCARE | BLIND
7711 S:S_DRAGON | S_HI_DRAGON
7712 D:A gigantic dragon whose scales shimmer in myriad hues.
7714 N:524:Black reaver
7715 G:L:D
7716 I:120:45d100:20:170:50
7717 W:74:3:0:23000
7718 B:HIT:UN_BONUS:6d8
7719 B:HIT:UN_BONUS:6d8
7720 B:HIT:LOSE_STR:4d6
7721 B:HIT:LOSE_STR:4d6
7722 F:FORCE_SLEEP | FORCE_MAXHP | SMART
7723 F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | DROP_GOOD
7724 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
7725 F:EVIL | UNDEAD | IM_COLD | IM_POIS
7726 F:NO_CONF | NO_SLEEP | KILL_WALL
7727 S:1_IN_3
7728 S:TELE_TO | BLIND | HOLD | CONF | CAUSE_3 | CAUSE_4 | DRAIN_MANA
7729 S:BRAIN_SMASH | BA_MANA | BA_NETH
7730 S:S_UNDEAD
7731 D:A humanoid form,  black as night, advancing steadily and unstoppably, even
7732 D: the very rock of the dungeon cannot prevent it reaching you.
7734 N:525:Greater demonic quylthulg
7735 G:Q:R
7736 I:120:15d100:20:1:0
7737 W:71:2:0:10500
7738 F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW
7739 F:INVISIBLE | EMPTY_MIND
7740 F:ANIMAL
7741 F:NO_CONF | NO_SLEEP | NO_FEAR
7742 S:1_IN_2
7743 S:BLINK | TELE_TO | S_HI_DEMON
7744 D:A massive pulsating mound of flesh, glowing with a hellish light.
7746 N:526:Greater draconic quylthulg
7747 G:Q:G
7748 I:120:15d100:20:1:0
7749 W:71:2:0:10500
7750 F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW
7751 F:INVISIBLE | EMPTY_MIND | ANIMAL
7752 F:NO_CONF | NO_SLEEP | NO_FEAR
7753 S:1_IN_2
7754 S:BLINK | TELE_TO
7755 S:S_HI_DRAGON
7756 D:A massive mound of scaled flesh, throbbing and pulsating with multi-hued
7757 D: light.
7759 N:527:Greater rotting quylthulg
7760 G:Q:U
7761 I:120:15d100:20:1:0
7762 W:71:2:0:10500
7763 F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW
7764 F:INVISIBLE | EMPTY_MIND | ANIMAL
7765 F:NO_CONF | NO_SLEEP | NO_FEAR
7766 S:1_IN_2
7767 S:BLINK | TELE_TO
7768 S:S_HI_UNDEAD
7769 D:A massive pile of rotting flesh.  A disgusting stench fills the air as it
7770 D: throbs and writhes.
7772 N:528:Feagwath, the Undead Sorcerer
7773 G:L:y
7774 I:130:50d100:20:85:50
7775 W:77:2:0:30000
7776 B:TOUCH:EXP_80:6d12
7777 B:TOUCH:UN_POWER:6d12
7778 B:TOUCH:LOSE_DEX:6d12
7779 B:TOUCH:LOSE_DEX:6d12
7780 F:UNIQUE | MALE
7781 F:FORCE_SLEEP | FORCE_MAXHP
7782 F:ESCORT
7783 F:ONLY_ITEM | DROP_2D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT
7784 F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
7785 F:EVIL | UNDEAD | IM_COLD
7786 F:IM_POIS | NO_CONF | NO_SLEEP
7787 S:1_IN_2
7788 S:BLINK | TELE_TO | BLIND | HOLD | SCARE | CAUSE_4
7789 S:BRAIN_SMASH | TRAPS | BA_MANA
7790 S:BO_MANA | BA_NETH | S_KIN | S_MONSTERS | S_UNDEAD
7791 D:A stench of corruption and decay surrounds this sorcerer, who has clearly
7792 D: risen from the dead to continue his foul plots and schemes.
7794 N:529:Omarax, the Eye Tyrant
7795 G:e:v
7796 I:130:65d100:30:80:10
7797 W:73:3:0:25000
7798 B:GAZE:UN_BONUS:6d6
7799 B:GAZE:UN_POWER:6d6
7800 B:GAZE:LOSE_INT:6d6
7801 B:BITE:EXP_80:8d8
7802 F:UNIQUE | MALE
7803 F:FORCE_SLEEP | FORCE_MAXHP
7804 F:SMART | BASH_DOOR
7805 F:EVIL | IM_POIS | IM_FIRE | IM_COLD | IM_ACID
7806 F:NO_CONF | NO_SLEEP
7807 S:1_IN_2
7808 S:BLIND | CONF | FORGET | SCARE | DRAIN_MANA | BRAIN_SMASH
7809 S:BA_DARK | BO_MANA | BA_NETH | BA_ACID | BA_FIRE | BA_COLD
7810 S:S_KIN
7811 D:A beholder of great size and age, floating in the air.  His gaze seems to
7812 D: shred your soul and his spells crush your will.  He is ancient, his history
7813 D: steeped in forgotten evils, his atrocities numerous and sickening.
7815 N:530:Ungoliant, the Unlight
7816 G:S:D
7817 I:130:130d100:40:160:80
7818 W:75:1:0:35000
7819 B:CLAW:POISON:8d6
7820 B:CLAW:POISON:8d6
7821 B:BITE:PARALYZE:8d10
7822 B:STING:LOSE_STR:8d4
7823 F:UNIQUE | FEMALE
7824 F:FORCE_SLEEP | FORCE_MAXHP
7825 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
7826 F:SMART | BASH_DOOR
7827 F:ANIMAL | EVIL | IM_POIS | IM_ACID | HURT_LITE | NO_CONF | NO_SLEEP
7828 S:1_IN_3
7829 S:HEAL | BLIND | SLOW | CONF | SCARE | DARKNESS | BA_DARK
7830 S:BR_POIS | BR_DARK | S_KIN
7831 D:This enormous, hideous spirit of void is in the form of a spider of
7832 D: immense proportions.  She is surrounded by a cloud of Unlight as she sucks
7833 D: in all living light into her bloated body, and breathes out the blackest of
7834 D: darkness.  She is always ravenously hungry and would even eat herself to
7835 D: avoid starvation.
7837 N:531:Aether hound
7838 G:Z:v
7839 I:120:60d40:30:100:0
7840 W:74:3:0:10000
7841 B:CLAW:HURT:3d12
7842 B:CLAW:HURT:3d12
7843 B:BITE:HURT:3d12
7844 B:BITE:HURT:3d12
7845 F:ATTR_MULTI
7846 F:FORCE_SLEEP
7847 F:FRIENDS
7848 F:BASH_DOOR
7849 F:ANIMAL | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
7850 F:NO_CONF | NO_SLEEP
7851 F:RES_PLAS | RES_NEXUS | RES_DISE
7852 S:1_IN_5
7853 S:BR_ACID | BR_FIRE | BR_COLD | BR_ELEC | BR_POIS
7854 S:BR_LITE | BR_DARK | BR_SOUN | BR_CONF | BR_CHAO | BR_SHAR
7855 S:BR_NETH | BR_DISE | BR_WALL | BR_INER | BR_TIME
7856 S:BR_GRAV | BR_PLAS | BR_NEXU
7857 D:A shifting, swirling form.  It seems to be all colours and sizes and
7858 D: shapes, though the dominant form is that of a huge dog.  You feel very
7859 D: uncertain all of a sudden.
7861 N:532:The Mouth of Sauron
7862 G:p:v
7863 I:130:70d100:60:100:10
7864 W:65:3:0:38000
7865 B:HIT:UN_BONUS:6d8
7866 B:HIT:UN_BONUS:6d8
7867 B:HIT:UN_POWER:5d5
7868 B:HIT:UN_POWER:5d5
7869 F:UNIQUE | MALE
7870 F:FORCE_SLEEP | FORCE_MAXHP | SMART
7871 F:ONLY_ITEM | DROP_1D2 | DROP_4D2 | DROP_GOOD
7872 F:INVISIBLE | OPEN_DOOR | BASH_DOOR
7873 F:EVIL | IM_FIRE | IM_COLD
7874 F:IM_ELEC | NO_CONF | NO_SLEEP
7875 S:1_IN_2
7876 S:TELE_TO | HOLD | CAUSE_3 | TRAPS
7877 S:BO_PLAS | BA_DARK | BA_MANA | BA_FIRE | BA_WATE | BA_NETH
7878 S:S_HI_DEMON | S_HI_UNDEAD
7879 D:The Mouth of Sauron is a mighty spell caster.  So old that even he cannot
7880 D: remember his own name, his power and evil are undeniable.  He believes
7881 D: unshakably that he is unbeatable and laughs as he weaves his awesome
7882 D: spells.
7884 N:533:Master quylthulg
7885 G:Q:B
7886 I:120:30d100:30:1:0
7887 W:76:2:0:15000
7888 F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW
7889 F:INVISIBLE | EMPTY_MIND | ANIMAL
7890 F:NO_CONF | NO_SLEEP | NO_FEAR
7891 S:1_IN_1
7892 S:S_ANIMAL
7893 S:S_MONSTERS | S_HI_UNDEAD | S_HI_DRAGON | S_HI_DEMON | BLINK | TELE_TO
7894 D:A giant seething mass of flesh, overwhelming you with monster after monster.
7896 N:534:Qlzqqlzuup, the Emperor Quylthulg
7897 G:Q:v
7898 I:130:50d100:30:1:0
7899 W:79:3:0:20000
7900 F:UNIQUE | ATTR_MULTI
7901 F:FORCE_SLEEP | FORCE_MAXHP | NEVER_MOVE | NEVER_BLOW
7902 F:ONLY_ITEM | DROP_4D2
7903 F:INVISIBLE | EMPTY_MIND | ANIMAL
7904 F:NO_CONF | NO_SLEEP | NO_FEAR
7905 S:1_IN_1
7906 S:S_ANIMAL
7907 S:S_MONSTERS | S_ANGEL | S_HOUND | S_HYDRA | S_SPIDER
7908 S:S_HI_UNDEAD | S_HI_DRAGON | S_HI_DEMON | S_WRAITH | S_UNIQUE | S_KIN
7909 D:A gigantic seething mass of flesh, Qlzqqlzuup changes colours in front
7910 D: of your eyes.  Pulsating first one colour then the next, it knows only it
7911 D: must bring help to protect itself.
7913 N:535:The Witch-King of Angmar
7914 G:W:D
7915 I:130:60d100:90:120:10
7916 W:80:3:0:60000
7917 B:HIT:HURT:10d10
7918 B:HIT:HURT:10d10
7919 B:HIT:EXP_80:7d7
7920 B:HIT:EXP_80:7d7
7921 F:UNIQUE | MALE
7922 F:FORCE_SLEEP | FORCE_MAXHP | SMART
7923 F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT
7924 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | MOVE_BODY
7925 F:EVIL | UNDEAD
7926 F:IM_COLD | IM_POIS | HURT_LITE | NO_CONF | NO_SLEEP
7927 S:1_IN_2
7928 S:TELE_AWAY | BLIND | HOLD | SCARE | CAUSE_3
7929 S:BO_MANA | BA_NETH | BRAIN_SMASH
7930 S:S_MONSTERS | S_WRAITH | S_HI_UNDEAD | S_HI_DRAGON | S_HI_DEMON | S_KIN
7931 D:The Chief of the Ringwraiths.  A fell being of devastating power.  His
7932 D: spells are lethal and his combat blows crushingly hard.  He moves at
7933 D: speed, and commands legions of evil to do his bidding.  It is said that he
7934 D: is fated never to die by the hand of mortal man.
7936 N:536:Pazuzu, Lord of Air
7937 G:U:b
7938 I:140:55d100:40:125:10
7939 W:82:2:0:30000
7940 B:HIT:ELEC:12d12
7941 B:HIT:ELEC:12d12
7942 B:HIT:ELEC:12d12
7943 B:HIT:ELEC:12d12
7944 F:UNIQUE | MALE
7945 F:FORCE_SLEEP | FORCE_MAXHP
7946 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
7947 F:INVISIBLE | OPEN_DOOR | BASH_DOOR
7948 F:EVIL | DEMON | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC
7949 F:IM_POIS | NO_CONF | NO_SLEEP
7950 S:1_IN_3
7951 S:MIND_BLAST | BO_ELEC | BO_MANA | BA_ELEC | S_HI_DEMON
7952 D:A winged humanoid demon from the Planes of Hell, Pazuzu grins inhumanely at
7953 D: you as he decides your fate.
7955 N:537:Hellhound
7956 G:C:r
7957 I:120:40d10:25:80:30
7958 W:78:2:0:600
7959 B:BITE:FIRE:3d12
7960 B:BITE:FIRE:3d12
7961 B:BITE:FIRE:3d12
7962 F:FORCE_SLEEP | FORCE_MAXHP
7963 F:RAND_25 | FRIENDS
7964 F:BASH_DOOR | MOVE_BODY
7965 F:ANIMAL | EVIL | IM_FIRE
7966 S:1_IN_5
7967 S:BR_FIRE
7968 D:It is a giant dog that glows with heat.  Flames pour from its nostrils.
7970 N:538:Cantoras, the Skeletal Lord
7971 G:s:v
7972 I:140:75d100:20:120:80
7973 W:84:2:0:45000
7974 B:GAZE:EXP_80:5d5
7975 B:GAZE:EXP_80:5d5
7976 B:TOUCH:POISON:5d5
7977 B:TOUCH:POISON:5d5
7978 F:UNIQUE | MALE
7979 F:FORCE_SLEEP | FORCE_MAXHP
7980 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT
7981 F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
7982 F:EVIL | UNDEAD | IM_FIRE | IM_COLD | IM_POIS
7983 F:NO_CONF | NO_SLEEP | NO_FEAR
7984 S:1_IN_2
7985 S:TELE_TO | SLOW | SCARE | CAUSE_4 | BRAIN_SMASH
7986 S:BO_ICEE | BO_MANA | BA_WATE | BA_NETH
7987 S:S_HI_UNDEAD
7988 D:A legion of evil undead druj animating the skeleton of a once mighty
7989 D: sorcerer.  His power is devastating and his speed unmatched in the
7990 D: underworld.  Flee his wrath!
7992 N:539:The Tarrasque
7993 G:R:v
7994 I:130:85d100:50:185:20
7995 W:86:2:0:35000
7996 B:HIT:HURT:10d10
7997 B:HIT:HURT:10d10
7998 B:TOUCH:UN_POWER
7999 B:TOUCH:UN_POWER
8000 F:UNIQUE | ATTR_MULTI
8001 F:FORCE_SLEEP | FORCE_MAXHP
8002 F:ONLY_ITEM | DROP_2D2 | DROP_4D2 | DROP_GOOD
8003 F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
8004 F:ANIMAL | IM_FIRE | IM_COLD | NO_CONF | NO_SLEEP
8005 F:RES_DISE
8006 S:1_IN_2
8007 S:BR_FIRE | BR_COLD | BR_DISE
8008 D:The Tarrasque is a massive reptile of legend, rumoured to be unkillable
8009 D: and immune to magic.  Fear its anger, for its devastation is unmatched!
8011 N:540:Lungorthin, the Balrog of White Fire
8012 G:U:v
8013 I:130:70d100:20:125:80
8014 W:88:2:0:37000
8015 B:HIT:FIRE:8d12
8016 B:HIT:FIRE:8d12
8017 B:CRUSH:HURT:8d12
8018 B:TOUCH:UN_POWER
8019 F:UNIQUE | MALE
8020 F:FORCE_SLEEP | FORCE_MAXHP
8021 F:ESCORT | ESCORTS
8022 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
8023 F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
8024 F:EVIL | DEMON | IM_FIRE
8025 F:NO_CONF | NO_SLEEP
8026 F:RES_PLAS
8027 S:1_IN_4
8028 S:BLIND | CONF | SCARE
8029 S:BR_FIRE | BR_PLAS
8030 S:S_HI_DEMON | S_UNDEAD
8031 D:A massive form cloaked in flame.  Lungorthin stares balefully at you with
8032 D: eyes that smoulder red.  The dungeon floor where he stands is scorched by
8033 D: the heat of his body.
8035 N:541:Draugluin, Sire of All Werewolves
8036 G:C:u
8037 I:130:70d100:80:90:90
8038 W:83:2:0:40000
8039 B:CLAW:HURT:6d8
8040 B:CLAW:HURT:6d8
8041 B:BITE:POISON:6d6
8042 B:BITE:POISON:6d6
8043 F:UNIQUE | MALE
8044 F:FORCE_SLEEP | FORCE_MAXHP
8045 F:ESCORT | ESCORTS
8046 F:RAND_25
8047 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD
8048 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | MOVE_BODY
8049 F:ANIMAL | EVIL | IM_POIS
8050 S:1_IN_3
8051 S:SCARE | S_MONSTERS | S_HOUND
8052 D:Draugluin provides Sauron with a fearsome personal guard.  He is an
8053 D: enormous wolf inhabited with a human spirit.  He is chief of all his kind.
8055 N:542:Vecna, the Emperor Lich
8056 G:L:v
8057 I:130:60d100:100:100:0
8058 W:92:3:0:45000
8059 B:HIT:EXP_80:7d12
8060 B:HIT:LOSE_DEX:7d12
8061 B:HIT:UN_POWER:7d12
8062 B:HIT:UN_POWER:7d12
8063 F:UNIQUE | MALE
8064 F:FORCE_SLEEP | FORCE_MAXHP
8065 F:ESCORT
8066 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT
8067 F:SMART | COLD_BLOOD | OPEN_DOOR | BASH_DOOR
8068 F:EVIL | UNDEAD
8069 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP
8070 S:1_IN_2
8071 S:TPORT | BLIND | SCARE | CAUSE_4 | BRAIN_SMASH
8072 S:BA_MANA | BO_MANA | BA_FIRE | BA_NETH
8073 S:S_MONSTERS | S_HI_DEMON | S_HI_UNDEAD | S_KIN
8074 D:The greatest of all undead sorcerers, even the gods once feared him.  This
8075 D: ancient shadow of death wilts every living thing it passes.
8077 N:543:Huan, Wolfhound of the Valar
8078 G:C:W
8079 I:130:80d100:50:160:10
8080 W:90:1:0:40000
8081 B:CLAW:COLD:9d12
8082 B:CLAW:COLD:9d12
8083 B:BITE:COLD:9d12
8084 B:BITE:COLD:9d12
8085 F:UNIQUE | MALE
8086 F:FORCE_SLEEP | FORCE_MAXHP
8087 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
8088 F:SMART | OPEN_DOOR | BASH_DOOR | KILL_BODY
8089 F:ANIMAL | NO_CONF | NO_SLEEP | NO_FEAR
8090 F:IM_COLD | IM_ACID | IM_ELEC
8091 S:1_IN_5
8092 S:BR_COLD | BR_SHAR | BR_SOUN | BR_LITE
8093 D:The wolfhound of the Valar, Huan has served many masters in his time, from
8094 D: Celegorm son of Feanor to Beren son of Barahir: but now he runs wild and
8095 D: acknowledges no master save himself, as he hunts alone for his nemesis -
8096 D: Carcharoth, the terrible wolf of Angband.
8098 N:544:Carcharoth, the Jaws of Thirst
8099 G:C:r
8100 I:130:80d100:50:160:10
8101 W:90:1:0:40000
8102 B:CLAW:FIRE:9d12
8103 B:CLAW:FIRE:9d12
8104 B:BITE:FIRE:9d12
8105 B:BITE:FIRE:9d12
8106 F:UNIQUE | MALE
8107 F:FORCE_SLEEP | FORCE_MAXHP
8108 F:ONLY_ITEM | DROP_4D2 | DROP_GOOD
8109 F:SMART | OPEN_DOOR | BASH_DOOR | MOVE_BODY
8110 F:ANIMAL | EVIL | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP
8111 S:1_IN_3
8112 S:BR_DARK | BR_POIS
8113 S:BR_FIRE | BR_NETH
8114 S:S_HOUND
8115 D:The first guard of Angband, Carcharoth, also known as 'The Red Maw', is
8116 D: the greatest wolf to ever walk the earth.  He is highly intelligent and a
8117 D: deadly opponent in combat.
8119 N:545:Gothmog, the High Captain of Balrogs
8120 G:U:v
8121 I:130:80d100:100:140:0
8122 W:95:1:0:43000
8123 B:HIT:FIRE:9d12
8124 B:HIT:FIRE:9d12
8125 B:CRUSH:HURT:8d12
8126 B:TOUCH:UN_POWER
8127 F:UNIQUE | MALE
8128 F:FORCE_SLEEP | FORCE_MAXHP
8129 F:ESCORT | ESCORTS
8130 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT
8131 F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
8132 F:EVIL | DEMON
8133 F:IM_FIRE | IM_ELEC | NO_CONF | NO_SLEEP
8134 F:RES_PLAS
8135 S:1_IN_3
8136 S:BLIND | CONF | SCARE
8137 S:BR_FIRE | BR_PLAS
8138 S:S_HI_DEMON | S_HI_UNDEAD
8139 D:Gothmog is the Chief Balrog in Morgoth's personal guard.  He is renowned
8140 D: for slaying Feanor and Fingon, two of the High Kings of the Noldor Elves,
8141 D: and has never been defeated in combat.  With his whip of flame and awesome
8142 D: fiery breath he saved his master from Ungoliant's rage.
8144 # Sauron is the basic "Quest" (thus the QUESTOR flag).
8145 # You must kill him to gain access to Morgoth's level.
8147 N:546:Sauron, the Sorcerer
8148 G:p:v
8149 I:130:105d100:100:160:0
8150 W:99:1:0:50000
8151 B:HIT:UN_BONUS:10d12
8152 B:HIT:UN_BONUS:10d12
8153 B:HIT:UN_POWER:8d12
8154 B:HIT:UN_POWER:8d12
8155 F:UNIQUE | QUESTOR | MALE
8156 F:FORCE_SLEEP | FORCE_MAXHP | FORCE_DEPTH
8157 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT
8158 F:SMART | OPEN_DOOR | BASH_DOOR | MOVE_BODY | REGENERATE
8159 F:EVIL | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
8160 F:NO_CONF | NO_SLEEP | NO_FEAR
8161 S:1_IN_2
8162 S:TPORT | TELE_LEVEL | BLIND | SCARE | CAUSE_4
8163 S:BO_ICEE | BO_MANA | BO_PLAS | BRAIN_SMASH
8164 S:BA_MANA | BA_FIRE | BA_WATE | BA_NETH | BA_DARK
8165 S:S_MONSTERS | S_HI_DEMON | S_HI_UNDEAD | S_HI_DRAGON
8166 S:S_WRAITH | S_UNIQUE
8167 D:He is Morgoth's most powerful servant.  Mighty in spells and enchantments,
8168 D: he created the One Ring.  His eyes glow with power and his gaze seeks to
8169 D: destroy your soul.  He has many servants, and rarely fights without them.
8171 # Morgoth is the final "Quest" (thus the QUESTOR flag).
8172 # You must kill him to complete the final quest, and win the game.
8174 N:547:Morgoth, Lord of Darkness
8175 G:P:D
8176 I:140:200d100:100:150:0
8177 W:100:1:0:60000
8178 B:HIT:SHATTER:20d10
8179 B:HIT:SHATTER:20d10
8180 B:HIT:LOSE_ALL:10d12
8181 B:TOUCH:UN_POWER
8182 F:UNIQUE | QUESTOR | MALE
8183 F:FORCE_SLEEP | FORCE_MAXHP | FORCE_DEPTH
8184 F:ONLY_ITEM | DROP_1D2 | DROP_2D2 | DROP_3D2 | DROP_4D2
8185 F:DROP_GOOD | DROP_GREAT | DROP_CHOSEN
8186 F:SMART | KILL_WALL | MOVE_BODY
8187 F:REGENERATE
8188 F:EVIL | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
8189 F:NO_CONF | NO_SLEEP | NO_FEAR
8190 S:1_IN_3
8191 S:BA_MANA | BO_MANA | BA_NETH | BRAIN_SMASH
8192 S:S_MONSTERS | S_UNIQUE | S_WRAITH | S_HI_UNDEAD | S_HI_DRAGON | S_HI_DEMON
8193 D:He is the Master of the Pits of Angband.  His figure is like a black
8194 D: mountain crowned with lightning.  He rages with everlasting anger, his
8195 D: body scarred by Fingolfin's eight mighty wounds.  He can never rest from
8196 D: his pain, but seeks forever to dominate all that is light and good in the
8197 D: world.  He is the origin of man's fear of darkness and created many foul
8198 D: creatures with his evil powers.  Orcs, Dragons, and Trolls are his most
8199 D: foul corruptions, causing much pain and suffering in the world to please
8200 D: him.  His disgusting visage, twisted with evil, is crowned with iron, the
8201 D: two remaining Silmarils forever burning him.  Grond, the mighty Hammer of
8202 D: the Underworld, cries defiance as he strides towards you to crush you to a
8203 D: pulp!
8205 N:548:Silver mouse
8206 G:r:W
8207 I:110:1d3:8:4:20
8208 W:4:1:0:1
8209 B:BITE:EAT_LITE:1d2
8210 F:RAND_50
8211 F:MULTIPLY
8212 F:ANIMAL
8213 D:It is about three feet long with large teeth.  As the light of your lamp falls
8214 D: on it, it seems to grow stronger.
8216 N:549:Rot jelly
8217 G:j:u
8218 I:120:20d8:2:30:99
8219 W:5:1:0:15
8220 B:TOUCH:EAT_FOOD:2d3
8221 B:TOUCH:LOSE_CHR:2d3
8222 F:NEVER_MOVE
8223 F:STUPID | EMPTY_MIND
8224 F:HURT_LITE | IM_POIS
8225 F:NO_CONF | NO_SLEEP | NO_FEAR
8226 D:It is a large pile of rotting flesh, whose touch spoils your food.  The terrible
8227 D: smell it exudes is also very hard to get rid of...
8229 N:550:Giant tan bat
8230 G:b:U
8231 I:130:3d8:12:20:50
8232 W:15:2:0:18
8233 B:BITE:TERRIFY:1d3
8234 B:CLAW:HURT:1d2
8235 B:CLAW:HURT:1d2
8236 F:FORCE_SLEEP | RAND_50 | ANIMAL
8237 D:A giant bat, the beating of whose wings produces a strangely unnerving noise.
8239 N:551:Giant silver ant
8240 G:a:W
8241 I:110:9d8:10:38:40
8242 W:23:1:0:45
8243 B:BITE:ACID:4d4
8244 F:RAND_25
8245 F:WEIRD_MIND | BASH_DOOR
8246 F:ANIMAL
8247 D:A giant silver ant with a caustic bite.
8249 N:552:Giant brown tick
8250 G:S:u
8251 I:110:18d8:12:50:20
8252 W:25:2:0:47
8253 B:BITE:POISON:2d6
8254 B:STING:BLIND:1d1
8255 F:WEIRD_MIND | BASH_DOOR
8256 F:ANIMAL | IM_POIS
8257 D:It is moving slowly towards you.
8259 N:553:Disenchanter bat
8260 G:b:v
8261 I:130:6d8:12:28:50
8262 W:26:4:0:75
8263 B:HIT:UN_BONUS
8264 F:FORCE_SLEEP | RAND_50 | ANIMAL | ATTR_MULTI | RES_DISE
8265 D:A giant bat which feeds on raw magical energy.
8267 N:554:Shimmering mold
8268 G:m:b
8269 I:110:32d8:2:24:70
8270 W:27:1:0:140
8271 B:SPORE:ELEC:5d4
8272 B:SPORE:ELEC:5d4
8273 F:NEVER_MOVE
8274 F:STUPID | EMPTY_MIND
8275 F:IM_ELEC | IM_POIS
8276 F:NO_CONF | NO_SLEEP | NO_FEAR
8277 D:It is a strange growth on the dungeon floor, glowing and crackling with sparks.
8279 N:555:Wyvern
8280 G:d:g
8281 I:120:5d80:20:66:60
8282 W:22:2:0:250
8283 B:BITE:HURT:2d6
8284 B:BITE:HURT:2d6
8285 B:STING:POISON:2d6
8286 F:FORCE_SLEEP
8287 F:ONLY_GOLD | DROP_2D2 | IM_POIS
8288 F:OPEN_DOOR | BASH_DOOR | MOVE_BODY
8289 F:ANIMAL | EVIL | DRAGON
8290 D:A fast-moving and deadly draconian animal.  Beware its poisonous sting!
8292 N:556:Chest mimic
8293 G:~:s
8294 I:110:15d40:30:40:0
8295 W:35:4:0:250
8296 B:BITE:POISON:4d4
8297 B:BITE:POISON:4d4
8298 B:BUTT:CONFUSE:4d4
8299 B:SPIT:BLIND:4d4
8300 F:CHAR_MULTI
8301 F:FORCE_SLEEP | NEVER_MOVE | DROP_2D2
8302 F:EMPTY_MIND | COLD_BLOOD
8303 F:NO_CONF | NO_SLEEP | NO_FEAR
8304 S:1_IN_5
8305 S:BLIND | CONF | SCARE | CAUSE_2 | BA_POIS
8306 S:S_MONSTER
8307 D:A strange creature that disguises itself as a chest to lure
8308 D: unsuspecting adventurers within reach of its venomous claws.  The
8309 D: first that most adventurers realise of the deception is when the
8310 D: seemingly invitingly open lid of the chest suddenly grows teeth
8311 D: and then slams shut on the adventurer's hand...
8313 N:557:Demilich
8314 G:L:U
8315 I:120:32d100:20:100:50
8316 W:54:2:0:12500
8317 B:TOUCH:EXP_80
8318 B:TOUCH:UN_POWER
8319 B:TOUCH:LOSE_DEX:4d12
8320 B:TOUCH:LOSE_DEX:4d12
8321 F:FORCE_SLEEP | FORCE_MAXHP | SMART
8322 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_GOOD
8323 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
8324 F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
8325 S:1_IN_3
8326 S:BLINK | TELE_TO | BLIND | HOLD | CONF | SCARE | CAUSE_3 | CAUSE_4
8327 S:DRAIN_MANA | BRAIN_SMASH | S_UNDEAD | S_DEMON | FORGET
8328 S:TPORT | HEAL
8329 D:A lich who is partially immaterial, on its way to a new, ethereal form.
8331 N:558:Archlich
8332 G:L:B
8333 I:120:40d100:20:120:50
8334 W:64:2:0:20000
8335 B:TOUCH:EXP_80
8336 B:TOUCH:UN_POWER
8337 B:TOUCH:LOSE_DEX:8d12
8338 B:TOUCH:LOSE_DEX:8d12
8339 F:FORCE_SLEEP | FORCE_MAXHP | SMART
8340 F:ONLY_ITEM | DROP_4D2 | DROP_2D2 | DROP_GOOD
8341 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | PASS_WALL
8342 F:EVIL | UNDEAD | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP
8343 S:1_IN_3
8344 S:BLINK | TELE_TO | SCARE | HOLD | CAUSE_4
8345 S:DRAIN_MANA | BRAIN_SMASH | FORGET
8346 S:TPORT | HEAL | S_HI_UNDEAD | S_DEMON | BA_NETH
8347 D:A lich who has reached its ultimate evolutionary stage:  a completely
8348 D: immaterial state.
8350 N:559:Crow
8351 G:B:s
8352 I:120:3d5:40:12:0
8353 W:2:2:0:8
8354 B:BITE:HURT:1d3
8355 B:BITE:HURT:1d3
8356 F:ANIMAL
8357 D:It is a hooded crow, gray except for the black wings and head.
8359 N:560:Raven
8360 G:B:D
8361 I:120:4d5:40:12:0
8362 W:4:2:0:10
8363 B:BITE:HURT:1d4
8364 B:BITE:HURT:1d4
8365 F:ANIMAL
8366 D:Larger than a crow, and pitch black.
8368 N:561:Crebain
8369 G:B:D
8370 I:120:3d5:40:12:0
8371 W:16:4:0:20
8372 B:CLAW:HURT:1d4
8373 B:CLAW:HURT:1d4
8374 F:ANIMAL | FRIENDS
8375 S:1_IN_8 | SHRIEK
8376 D:A type of crow, specially bred by the forces of evil as spies; their
8377 D: rudimentary intelligence guided by an evil mind has tracked you down,
8378 D: and now they seek to alert other evil creatures to your presence.
8380 N:562:Winged Horror
8381 G:B:D
8382 I:120:25d80:30:80:5
8383 W:48:3:0:4000
8384 B:CLAW:HURT:3d8
8385 B:CLAW:HURT:3d8
8386 B:BITE:EXP_40:4d6
8387 B:BITE:EXP_40:4d6
8388 F:ANIMAL | IM_COLD | IM_POIS
8389 S:1_IN_6
8390 S:BR_NETH | BR_DARK | BR_POIS
8391 D:A terrifying sight:  a winged creature greater than any bird you have ever
8392 D: seen, and with no feathers on its horrid black leathery wings.  Descended
8393 D: from a creature of an older world perhaps, bred by Sauron to be a winged
8394 D: steed for his Ringwraiths.
8396 N:563:Cave bear
8397 G:q:u
8398 I:110:8d8:10:35:10
8399 W:9:1:0:25
8400 B:CLAW:HURT:1d6
8401 B:CLAW:HURT:1d6
8402 B:BITE:HURT:1d8
8403 F:BASH_DOOR | ANIMAL | RAND_25
8404 D:A large bear appears to have made its home in this cave.  It is hungry,
8405 D: and you are trespassing in its territory.
8407 N:564:Grizzly bear
8408 G:q:U
8409 I:110:12d12:10:35:10
8410 W:16:2:0:55
8411 B:CLAW:HURT:1d8
8412 B:CLAW:HURT:1d8
8413 B:BITE:HURT:1d12
8414 B:CRUSH:HURT:1d10
8415 F:BASH_DOOR | ANIMAL
8416 D:A huge, beastly bear, more savage than most of its kind.
8418 N:565:Werebear
8419 G:q:D
8420 I:110:25d25:20:50:20
8421 W:24:2:0:200
8422 B:CLAW:HURT:1d10
8423 B:CLAW:HURT:1d10
8424 B:BITE:HURT:2d8
8425 B:CRUSH:HURT:2d6
8426 F:BASH_DOOR | OPEN_DOOR
8427 F:ANIMAL | EVIL | DROP_1D2
8428 D:In the eyes of this bear, there glimmers the faintest light of intelligence.
8429 D: And then its form begins to change... The combination of animal cunning,
8430 D: human intelligence and the great physical strength of the bear makes for
8431 D: a dangerous enemy.
8433 N:566:Beorn, the Shape-Changer
8434 G:q:D
8435 I:120:20d70:25:60:25
8436 W:28:3:0:1000
8437 B:CLAW:HURT:2d10
8438 B:CLAW:HURT:2d10
8439 B:BITE:HURT:4d8
8440 B:CRUSH:HURT:3d6
8441 F:UNIQUE | MALE | FORCE_MAXHP | FORCE_SLEEP
8442 F:BASH_DOOR | ANIMAL | ESCORT | MOVE_BODY | SMART
8443 F:ONLY_ITEM | DROP_2D2 | DROP_GOOD
8444 D:Beorn is only occasionally seen in human form these days, preferring to
8445 D: appear in the shape of a giant black bear:  he also prefers the company of
8446 D: beasts to that of humans.  He has never taken kindly to strangers, even in
8447 D: human form - and still less when in bear's shape, as he is now.
8449 N:567:Barbazu
8450 G:U:G
8451 I:120:80d10:25:60:80
8452 W:55:4:0:3000
8453 B:HIT:HURT:4d10
8454 B:HIT:HURT:4d10
8455 B:HIT:LOSE_CON:10d2
8456 B:STING:POISON:5d5
8457 F:FORCE_SLEEP | FORCE_MAXHP | FRIENDS
8458 F:ONLY_ITEM | DROP_1D2
8459 F:OPEN_DOOR | BASH_DOOR | POWERFUL
8460 F:EVIL | DEMON | IM_POIS | NO_CONF | NO_SLEEP
8461 S:1_IN_10
8462 S:SCARE | S_DEMON
8463 D:A foul, humanoid creature with a long tail, clawed hands and feet,
8464 D: and a disgusting, wiry, snaky beard.  They are the elite shock troops
8465 D: of the hells, capable of a terrifying berserk fury.
8467 N:568:Bile Demon
8468 G:U:R
8469 I:120:28d100:40:90:80
8470 W:61:2:0:12000
8471 B:HIT:HURT:8d8
8472 B:HIT:HURT:8d8
8473 B:CRUSH:ACID:9d9
8474 F:FORCE_SLEEP | FORCE_MAXHP
8475 F:ONLY_ITEM | DROP_3D2 | DROP_GOOD
8476 F:OPEN_DOOR | BASH_DOOR | POWERFUL
8477 F:EVIL | DEMON | IM_POIS | IM_ACID | NO_CONF | NO_SLEEP
8478 S:1_IN_6
8479 S:BR_POIS | BR_ACID | S_DEMON | BLIND | CONF | ARROW_4
8480 D:It's big.  It's fat.  It's red.  It's ugly.  It's got a severe attack of
8481 D: highly poisonous flatulence.  And its insides are corrosive.  All of which
8482 D: go together to make the single most repulsive sight - and smell - you have
8483 D: ever experienced.
8485 N:569:Osyluth
8486 G:U:W
8487 I:130:26d100:20:75:80
8488 W:65:2:0:13000
8489 B:HIT:LOSE_CHR:6d6
8490 B:HIT:LOSE_CHR:6d6
8491 B:BITE:POISON:8d8
8492 B:STING:LOSE_STR:5d5
8493 F:FORCE_SLEEP | FORCE_MAXHP
8494 F:ONLY_ITEM | DROP_3D2 | DROP_GOOD
8495 F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
8496 F:EVIL | DEMON | NO_CONF | NO_SLEEP | INVISIBLE
8497 F:IM_ACID | IM_ELEC | IM_POIS | IM_COLD | IM_FIRE
8498 S:1_IN_6
8499 S:BA_ELEC | BA_COLD | BO_ICEE | SCARE | S_DEMON
8500 D:It is a demon made almost entirely out of bones.  It is humanoid, but with
8501 D: a large tail similar to that of a giant scorpion, and emits a foul smell
8502 D: of decay and rot.  They are despised even in the hells.
8504 N:570:Gelugon
8505 G:U:w
8506 I:130:35d100:20:100:80
8507 W:69:3:0:14000
8508 B:CLAW:COLD:6d8
8509 B:CLAW:COLD:6d8
8510 B:BITE:COLD:9d9
8511 B:HIT:PARALYZE:5d5
8512 F:FORCE_SLEEP | FORCE_MAXHP
8513 F:ONLY_ITEM | DROP_GOOD | DROP_4D2
8514 F:OPEN_DOOR | BASH_DOOR | POWERFUL | REGENERATE
8515 F:EVIL | DEMON | IM_COLD | NO_CONF | NO_SLEEP
8516 S:1_IN_6
8517 S:BR_COLD | BR_SHAR | BA_COLD | BO_ICEE | S_HI_DEMON
8518 S:SLOW | SCARE | HOLD
8519 D:This demon from the ice planes is a truly terrifying sight.  It has an
8520 D: extremely large, insect-like body towering a full twelve feet tall, with
8521 D: great claws on its hands and pincers on its mouth, and its head bulges
8522 D: with great multi-faceted eyes.  Its tail is covered with razor-sharp
8523 D: spikes.
8525 N:571:Horned Reaper
8526 G:U:B
8527 I:130:38d100:40:120:80
8528 W:72:3:0:18000
8529 B:HIT:HURT:11d11
8530 B:HIT:HURT:11d11
8531 B:HIT:HURT:11d11
8532 B:HIT:HURT:11d11
8533 F:FORCE_SLEEP | FORCE_MAXHP | REGENERATE
8534 F:ONLY_ITEM | DROP_GOOD | DROP_4D2 | DROP_2D2
8535 F:OPEN_DOOR | BASH_DOOR | KILL_BODY | POWERFUL
8536 F:EVIL | DEMON | NO_CONF | NO_SLEEP
8537 F:IM_FIRE | IM_COLD | IM_POIS | IM_ACID | IM_ELEC
8538 S:1_IN_5
8539 S:HASTE | SLOW | SCARE | S_HI_DEMON
8540 D:A giant humanoid demon wielding a massive, heavy and sharp scythe.  Feared
8541 D: by foes and friends alike when it flies into one of its berserk rages, the
8542 D: Horned Reaper will cut down anything in its path between it and you - even
8543 D: the minions it has just summoned.
8545 N:572:Pit Fiend
8546 G:U:o
8547 I:130:40d100:30:120:75
8548 W:77:3:0:22000
8549 B:CLAW:FIRE:6d10
8550 B:CLAW:FIRE:6d10
8551 B:BITE:POISON:5d10
8552 B:BITE:LOSE_CON:5d10
8553 F:FORCE_SLEEP | FORCE_MAXHP | REGENERATE
8554 F:ONLY_ITEM | DROP_GOOD | DROP_4D2 | DROP_2D2
8555 F:OPEN_DOOR | BASH_DOOR | MOVE_BODY | POWERFUL
8556 F:EVIL | DEMON | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP
8557 S:1_IN_5
8558 S:S_HI_DEMON | S_HI_DRAGON | BR_FIRE | BR_POIS | BR_CHAO
8559 S:SCARE | BA_FIRE | CAUSE_4
8560 D:Appearing as a giant, clawed and winged humanoid with a scaly red body
8561 D: and massive fangs dripping a foul green liquid, the Pit Fiend is a
8562 D: dreadful enemy from the lowest depths of the hells.  They are often the
8563 D: commanders of vast demon armies.
8565 N:573:Greater Balrog
8566 G:U:v
8567 I:130:50d100:40:140:80
8568 W:79:3:0:25000
8569 B:HIT:FIRE:8d12
8570 B:HIT:FIRE:8d12
8571 B:CRUSH:HURT:7d12
8572 B:TOUCH:UN_POWER
8573 F:FORCE_SLEEP | FORCE_MAXHP
8574 F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD
8575 F:OPEN_DOOR | BASH_DOOR | POWERFUL | MOVE_BODY
8576 F:EVIL | DEMON | IM_FIRE | IM_ELEC | IM_POIS
8577 F:NO_CONF | NO_SLEEP
8578 F:RES_PLAS
8579 S:1_IN_3
8580 S:CONF | SCARE
8581 S:BR_FIRE | BR_PLAS | BO_PLAS | BA_FIRE
8582 S:S_UNDEAD | S_DEMON | S_HI_DEMON
8583 D:Originally of the semi-divine Maiar, this evil spirit swore allegiance
8584 D: to Morgoth at the beginning of time and is now one of his most terrible
8585 D: demonic servants.  With its flaming whip and sword it seeks to destroy you.
8587 N:574:Baby bronze dragon
8588 G:d:U
8589 I:110:10d10:20:30:70
8590 W:9:2:0:35
8591 B:CLAW:HURT:1d3
8592 B:CLAW:HURT:1d3
8593 B:BITE:HURT:1d5
8594 F:FORCE_MAXHP | FORCE_SLEEP
8595 F:ONLY_GOLD | DROP_60 | DROP_1D2
8596 F:OPEN_DOOR | BASH_DOOR
8597 F:EVIL | DRAGON | NO_CONF
8598 S:1_IN_12
8599 S:BR_CONF
8600 D:This hatchling dragon is still soft, its eyes unaccustomed to light and
8601 D: its scales a dull bronze.
8603 N:575:Baby gold dragon
8604 G:d:y
8605 I:110:10d10:20:30:70
8606 W:9:2:0:35
8607 B:CLAW:HURT:1d3
8608 B:CLAW:HURT:1d3
8609 B:BITE:HURT:1d5
8610 F:FORCE_MAXHP | FORCE_SLEEP
8611 F:ONLY_GOLD | DROP_60 | DROP_1D2
8612 F:OPEN_DOOR | BASH_DOOR
8613 F:EVIL | DRAGON
8614 S:1_IN_12
8615 S:BR_SOUN
8616 D:This hatchling dragon is still soft, its eyes unaccustomed to light and
8617 D: its scales a pale gold.
8619 N:576:Great Swamp Wyrm
8620 G:D:g
8621 I:120:35d100:30:150:80
8622 W:63:2:0:20000
8623 B:CLAW:HURT:4d12
8624 B:CLAW:HURT:4d12
8625 B:BITE:POISON:6d14
8626 B:BITE:POISON:6d14
8627 F:FORCE_SLEEP | FORCE_MAXHP
8628 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
8629 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
8630 F:EVIL | DRAGON | IM_POIS | NO_CONF | NO_SLEEP
8631 S:1_IN_4
8632 S:BLIND | CONF | SCARE
8633 S:BR_POIS
8634 D:A truly enormous dragon with great powers.  The foul gases issuing
8635 D: from the beast nearly make you vomit; and while you may try to hold
8636 D: your breath as you fight it, it sees no reason to do likewise.
8638 N:577:Great Wyrm of Perplexity
8639 G:D:U
8640 I:120:35d100:30:150:80
8641 W:63:2:0:20000
8642 B:CLAW:HURT:4d12
8643 B:CLAW:HURT:4d12
8644 B:BITE:CONFUSE:6d14
8645 B:BITE:CONFUSE:6d14
8646 F:FORCE_SLEEP | FORCE_MAXHP
8647 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
8648 F:SMART | BASH_DOOR | POWERFUL | MOVE_BODY
8649 F:EVIL | DRAGON | NO_CONF | NO_SLEEP
8650 S:1_IN_4
8651 S:BLIND | CONF | SCARE
8652 S:BR_CONF
8653 D:A dragon of great size and power.  Its polished bronze scales reflect the
8654 D: light in strange and confusing patterns, and you find it hard to keep your
8655 D: mind on the job of fighting for your life.
8657 N:578:Great Bile Wyrm
8658 G:D:s
8659 I:120:35d100:30:150:80
8660 W:67:2:0:23000
8661 B:CLAW:HURT:4d12
8662 B:CLAW:HURT:4d12
8663 B:BITE:ACID:6d14
8664 B:BITE:ACID:6d14
8665 F:FORCE_SLEEP | FORCE_MAXHP
8666 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
8667 F:BASH_DOOR | POWERFUL | MOVE_BODY
8668 F:EVIL | DRAGON | IM_ACID | NO_CONF | NO_SLEEP
8669 S:1_IN_4
8670 S:BLIND | CONF | SCARE
8671 S:BR_ACID
8672 D:A huge and very powerful dragon.  Great steaming pools of acid drip from
8673 D: its form onto the ground.  You shudder when you see the acid eating away
8674 D: the very stones of the dungeon - what could it do to you?
8676 N:579:Great Wyrm of Thunder
8677 G:D:y
8678 I:120:35d100:30:150:80
8679 W:67:2:0:23000
8680 B:CLAW:HURT:4d12
8681 B:CLAW:HURT:4d12
8682 B:BITE:HURT:6d14
8683 B:BITE:HURT:6d14
8684 F:FORCE_SLEEP | FORCE_MAXHP
8685 F:ONLY_ITEM | DROP_2D2 | DROP_3D2 | DROP_4D2 | DROP_GOOD
8686 F:BASH_DOOR | POWERFUL | MOVE_BODY
8687 F:EVIL | DRAGON | NO_CONF | NO_SLEEP
8688 S:1_IN_4
8689 S:BLIND | CONF | SCARE
8690 S:BR_SOUN
8691 D:A dragon of gigantic proportions, with destructive abilities to match.  The
8692 D: sheer loudness of its roar leaves you stunned and unable to think clearly
8693 D: enough to defend yourself adequately.
8695 N:580:Ranger
8696 G:p:W
8697 I:110:15d11:20:40:40
8698 W:20:1:0:55
8699 B:HIT:HURT:5d4
8700 B:HIT:HURT:5d4
8701 F:MALE
8702 F:DROP_1D2
8703 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
8704 S:1_IN_4
8705 S:S_ANIMAL
8706 S:ARROW_2 | MISSILE | BO_COLD | BO_ELEC | BLINK
8707 D:A warrior who is at one with nature.  A master of both bow and sword, with
8708 D: minor spellcasting skills, and animals come to do his bidding.
8710 N:581:Paladin
8711 G:p:w
8712 I:110:15d11:20:40:40
8713 W:20:1:0:55
8714 B:HIT:HURT:4d5
8715 B:HIT:HURT:4d5
8716 F:MALE
8717 F:DROP_1D2
8718 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
8719 S:1_IN_4
8720 S:HEAL | CAUSE_2 | SLOW | SCARE | BLIND
8721 D:A warrior for a holy cause.  Unfortunately, his god is not yours, and there is
8722 D: rivalry even between the various gods of Good, so he is your enemy.
8724 N:582:Ranger Chieftain
8725 G:p:W
8726 I:120:50d20:20:60:10
8727 W:41:2:0:1600
8728 B:HIT:HURT:5d5
8729 B:HIT:HURT:5d5
8730 B:HIT:HURT:5d5
8731 F:MALE | INVISIBLE | FORCE_MAXHP
8732 F:ONLY_ITEM | DROP_2D2
8733 F:TAKE_ITEM | OPEN_DOOR | BASH_DOOR
8734 F:NO_CONF | NO_SLEEP
8735 F:IM_FIRE | IM_ELEC | IM_COLD | IM_POIS
8736 S:1_IN_4
8737 S:S_ANIMAL
8738 S:ARROW_2 | ARROW_3 | ARROW_4 | MISSILE | BO_FIRE | BO_ELEC | BA_COLD
8739 S:HASTE | BLINK
8740 D:A chieftain among the Rangers.  His understanding of nature gives him
8741 D: powerful elemental spells to use against you, in addition to his skills
8742 D: as an archer and a warrior.  Furthermore, he is a master of camouflage, so
8743 D: you will need magically enhanced seeing to spot him.
8745 N:583:Berserker
8746 G:p:u
8747 I:120:60d25:20:80:10
8748 W:45:2:0:2500
8749 B:HIT:HURT:6d6
8750 B:HIT:HURT:6d6
8751 B:HIT:HURT:6d6
8752 F:MALE | FORCE_MAXHP
8753 F:ONLY_ITEM | DROP_90 | DROP_2D2
8754 F:BASH_DOOR | KILL_BODY
8755 F:NO_CONF | NO_SLEEP | NO_FEAR
8756 S:1_IN_4 | HASTE | SCARE
8757 D:Even the strongest of normal human warriors fears the Berserker - the one who
8758 D: can drive himself into such a terrible battle-frenzy that he can survive blows
8759 D: which should kill him, and still apparently feel no pain.  He tramples weaker
8760 D: creatures underfoot in his eagerness to get to his real enemy, and his
8761 D: battle-cry strikes terror into his foes.
8763 N:584:Cyclops
8764 G:P:u
8765 I:120:60d20:20:120:20
8766 W:45:2:0:1500
8767 B:HIT:HURT:9d9
8768 B:HIT:HURT:9d9
8769 F:FORCE_SLEEP | FORCE_MAXHP
8770 F:DROP_1D2 | TAKE_ITEM
8771 F:BASH_DOOR | OPEN_DOOR | MOVE_BODY
8772 F:EVIL | IM_POIS | IM_ACID | IM_FIRE | IM_COLD | GIANT
8773 S:1_IN_8
8774 S:BOULDER
8775 D:A gigantic ugly humanoid with but one eye and very thick skin.
8777 N:585:Polyphemus, the Blind Cyclops
8778 G:P:g
8779 I:130:53d100:40:140:40
8780 W:69:3:0:29000
8781 B:HIT:HURT:11d10
8782 B:HIT:HURT:11d10
8783 B:HIT:SHATTER:11d10
8784 F:UNIQUE | MALE
8785 F:FORCE_SLEEP | FORCE_MAXHP | RAND_25
8786 F:DROP_2D2 | DROP_3D2 | DROP_GOOD | ONLY_ITEM | KILL_ITEM
8787 F:BASH_DOOR | KILL_BODY
8788 F:EVIL | GIANT | IM_ACID | IM_POIS | IM_FIRE | IM_COLD
8789 S:1_IN_5
8790 S:BOULDER | BO_WATE | BA_WATE | BO_ICEE | BA_ACID
8791 D:No ordinary cyclops, but the son of a sea-god:  he wields the powers of
8792 D: elemental water as well as the considerable strength of a cyclops.  His
8793 D: one eye was blinded long ago by the warrior Odysseus, but he has trained
8794 D: himself to hear so well that it nearly makes up for his disability.
8796 N:586:Atlas, the Titan
8797 G:P:s
8798 I:120:60d100:30:160:15
8799 W:76:3:0:37000
8800 B:HIT:SHATTER:13d13
8801 B:HIT:CONFUSE:13d13
8802 B:HIT:SHATTER:13d13
8803 B:HIT:CONFUSE:13d13
8804 F:UNIQUE | MALE
8805 F:FORCE_SLEEP | FORCE_MAXHP
8806 F:ONLY_ITEM | DROP_GOOD | DROP_4D2 | KILL_BODY | KILL_WALL
8807 F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR
8808 F:EVIL | GIANT | HURT_ROCK
8809 F:IM_FIRE | IM_COLD | IM_ACID | IM_ELEC | IM_POIS
8810 S:1_IN_5
8811 S:BOULDER
8812 D:The strongest of all the Titans.  Legend has it that he used to hold the sky
8813 D: on his shoulders; and the mountain range that now does so is named after him.
8815 N:587:Kronos, Lord of the Titans
8816 G:P:v
8817 I:120:70d100:30:150:15
8818 W:87:3:0:42000
8819 B:HIT:CONFUSE:12d12
8820 B:HIT:CONFUSE:12d12
8821 B:HIT:CONFUSE:12d12
8822 B:HIT:CONFUSE:12d12
8823 F:UNIQUE | MALE
8824 F:FORCE_SLEEP | FORCE_MAXHP | MOVE_BODY
8825 F:ONLY_ITEM | DROP_4D2 | DROP_3D2 | DROP_GOOD
8826 F:SMART | TAKE_ITEM | BASH_DOOR
8827 F:EVIL | GIANT | ESCORT
8828 F:IM_FIRE | IM_COLD | IM_ACID | IM_POIS | IM_ELEC
8829 S:1_IN_3
8830 S:BOULDER | BR_FIRE | BR_COLD | BR_SHAR | BR_SOUN
8831 S:S_MONSTERS | S_KIN | TELE_TO | HEAL
8832 D:The lord of the Titans, he has broken loose from his confinement in
8833 D: the nether hells to seek revenge on the world.
8835 N:588:Evil eye
8836 G:e:g
8837 I:110:15d8:2:6:10
8838 W:18:3:0:80
8839 B:GAZE:EXP_10
8840 B:GAZE:EXP_10
8841 F:NEVER_MOVE | EVIL
8842 F:HURT_LITE | NO_FEAR
8843 S:1_IN_7
8844 S:HOLD | TELE_TO
8845 D:A huge disembodied eye.  As you stare into the black nothingness of its pupil,
8846 D: you feel your will and vitality draining away, and are unable to do anything
8847 D: except approach it in horrified fascination.
8849 N:589:Spectator
8850 G:e:B
8851 I:110:15d13:30:1:5
8852 W:28:2:0:150
8853 B:GAZE:PARALYZE:1d4
8854 B:GAZE:CONFUSE:1d4
8855 B:BITE:HURT:1d8
8856 F:FORCE_SLEEP | FORCE_MAXHP
8857 F:NO_CONF | NO_SLEEP | NO_FEAR
8858 S:1_IN_6
8859 S:FORGET | CAUSE_2 | HOLD | SLOW
8860 D:A lesser relative of the beholder:  a globular body with a large toothy mouth,
8861 D: a large central eye, and four smaller eyes on stalks protruding from the top
8862 D: of its body.
8864 N:590:Gauth
8865 G:e:D
8866 I:110:15d20:20:50:20
8867 W:36:2:0:600
8868 B:GAZE:UN_BONUS:5d2
8869 B:GAZE:UN_BONUS:5d2
8870 B:GAZE:UN_POWER:5d2
8871 B:GAZE:UN_POWER:5d2
8872 F:FORCE_SLEEP | FORCE_MAXHP
8873 F:BASH_DOOR | EVIL
8874 S:1_IN_5
8875 S:CAUSE_2 | TELE_AWAY | BA_COLD | BO_ELEC | HOLD | DRAIN_MANA
8876 D:Another lesser relative of the beholder, this six-eyed creature feeds on magic.
8878 N:591:Beholder hive-mother
8879 G:e:b
8880 I:120:35d100:30:80:10
8881 W:67:3:0:17000
8882 B:BITE:EXP_80:6d6
8883 B:GAZE:PARALYZE:5d5
8884 B:GAZE:LOSE_INT:5d5
8885 B:GAZE:UN_POWER:5d5
8886 F:FORCE_SLEEP | FORCE_MAXHP
8887 F:FEMALE | EVIL
8888 F:SMART | BASH_DOOR
8889 F:NO_CONF | NO_SLEEP | IM_POIS
8890 S:1_IN_2
8891 S:BLIND | CONF | FORGET | SCARE | DRAIN_MANA | BRAIN_SMASH
8892 S:BA_DARK | BO_MANA | BA_ACID | BA_FIRE | BA_COLD | BO_NETH
8893 S:S_KIN
8894 D:A hive mother of the race of beholders, she can summon her brood to her aid
8895 D: whenever she wishes.
8897 N:592:Neekerbreeker
8898 G:I:D
8899 I:120:3d2:8:18:10
8900 W:19:4:0:4
8901 B:BITE:POISON:2d2
8902 F:RAND_50 | RAND_25
8903 F:MULTIPLY | WEIRD_MIND | ANIMAL | EVIL
8904 S:1_IN_12
8905 S:SHRIEK
8906 D:Believed to be an evil relative of the cricket, this creature gets its name
8907 D: from its incessant squeaking, which can best be described as "neek-breek,
8908 D: neek-breek".  The noise can drive people frantic, and worse still, can be
8909 D: heard for quite some distance, alerting other monsters to your presence.
8911 N:593:Giant firefly
8912 G:I:r
8913 I:120:3d2:8:18:10
8914 W:24:4:0:4
8915 B:BITE:BLIND:1d2
8916 F:RAND_50 | RAND_25
8917 F:MULTIPLY | WEIRD_MIND | ANIMAL
8918 D:Clouds of these monsters light up the dungeon - so brightly that you can
8919 D: barely see through them.
8921 N:594:Eol, the Dark Elf
8922 G:h:D
8923 I:130:80d30:20:100:60
8924 W:49:2:0:25000
8925 B:HIT:HURT:3d8
8926 B:HIT:HURT:3d8
8927 B:HIT:HURT:3d8
8928 F:UNIQUE | MALE
8929 F:FORCE_SLEEP | FORCE_MAXHP
8930 F:ONLY_ITEM | DROP_2D2 | DROP_4D2 | DROP_GOOD
8931 F:SMART | OPEN_DOOR | BASH_DOOR | HURT_LITE
8932 F:EVIL | IM_POIS | IM_FIRE | IM_COLD | NO_CONF | NO_SLEEP
8933 S:1_IN_2
8934 S:HEAL | BLINK | TELE_TO | BLIND | CONF | CAUSE_4 | DARKNESS
8935 S:BA_NETH | BA_ELEC | BA_ACID | BA_FIRE | BA_COLD | BO_MANA
8936 S:S_MONSTERS | S_UNDEAD | S_DRAGON | S_DEMON
8937 D:A lord of the Teleri, Eol is a mighty metalsmith, the only one to ever
8938 D: forge weapons of meteorite iron.  The mortal enemy of the Eldar,
8939 D: he is currently fleeing their wrath, following the murder of Princess
8940 D: Aredhel of Gondolin.
8942 N:595:Maeglin, the Traitor of Gondolin
8943 G:h:D
8944 I:130:60d100:70:120:20
8945 W:81:2:0:35000
8946 B:HIT:HURT:8d8
8947 B:HIT:HURT:8d8
8948 B:HIT:HURT:8d8
8949 B:HIT:HURT:8d8
8950 F:UNIQUE | MALE
8951 F:FORCE_SLEEP | FORCE_MAXHP
8952 F:ONLY_ITEM | DROP_3D2 | DROP_4D2 | DROP_GOOD | DROP_GREAT
8953 F:OPEN_DOOR | BASH_DOOR | KILL_WALL | MOVE_BODY
8954 F:EVIL | IM_POIS | IM_FIRE | IM_COLD | NO_CONF | NO_SLEEP
8955 S:1_IN_6
8956 S:S_ANIMAL
8957 S:S_MONSTERS | S_WRAITH | S_HI_UNDEAD | S_HI_DRAGON | S_HI_DEMON | S_UNIQUE
8958 D:The son of Eol the Dark Elf, Maeglin is every bit as evil as his father
8959 D: and more.  His greed for gold led him to betray the Hidden Kingdom of
8960 D: Gondolin to Morgoth's forces.  He is a mighty warrior himself, and some
8961 D: of Morgoth's greatest servants answer to his call.
8963 N:596:Elder vampire
8964 G:V:r
8965 I:120:30d100:20:90:10
8966 W:54:3:0:4500
8967 B:HIT:HURT:4d6
8968 B:HIT:HURT:4d6
8969 B:BITE:EXP_80:5d6
8970 B:BITE:EXP_80:5d6
8971 F:FORCE_SLEEP | FORCE_MAXHP
8972 F:DROP_60 | DROP_4D2 | DROP_GOOD
8973 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR | REGENERATE
8974 F:INVISIBLE | PASS_WALL
8975 F:EVIL | UNDEAD | IM_COLD | IM_POIS | IM_FIRE | HURT_LITE
8976 F:NO_CONF | NO_SLEEP
8977 S:1_IN_5
8978 S:HOLD | SCARE | CAUSE_3 | CAUSE_4 | DRAIN_MANA
8979 S:BRAIN_SMASH | DARKNESS | BO_NETH | S_UNDEAD
8980 D:A terrible robed undead figure, this creature has existed in its
8981 D: unlife for many centuries by stealing the life of others.  It can
8982 D: summon the very shades of its victims from beyond the grave to
8983 D: come enslaved to its aid.
8985 N:597:Silent watcher
8986 G:g:r
8987 I:110:80d25:42:80:10
8988 W:35:3:0:800
8989 B:GAZE:TERRIFY
8990 B:GAZE:PARALYZE
8991 B:GAZE:LOSE_STR
8992 B:GAZE:HALLU
8993 F:EMPTY_MIND | NEVER_MOVE | EVIL
8994 F:IM_FIRE | IM_COLD | IM_ELEC | IM_POIS
8995 F:HURT_ROCK | COLD_BLOOD | HURT_LITE
8996 F:NO_CONF | NO_SLEEP | NO_FEAR
8997 S:1_IN_6
8998 S:SHRIEK | S_MONSTER | S_MONSTERS | HOLD | CONF | MIND_BLAST | DRAIN_MANA
8999 D:A figure carved from stone, with three vulture faces whose eyes glow
9000 D: with a malevolent light.
9002 N:598:Nighthawk
9003 G:B:u
9004 I:120:8d8:30:25:10
9005 W:8:2:0:22
9006 B:CLAW:HURT:1d3
9007 B:CLAW:HURT:1d3
9008 B:BITE:HURT:1d4
9009 F:ANIMAL | NO_FEAR
9010 D:Trained to hunt and kill without fear.
9012 N:599:Ghoul
9013 G:z:U
9014 I:110:15d10:30:30:20
9015 W:26:2:0:95
9016 B:CLAW:PARALYZE:1d4
9017 B:CLAW:PARALYZE:1d4
9018 B:BITE:POISON:1d6
9019 F:DROP_60 | OPEN_DOOR | BASH_DOOR
9020 F:EVIL | UNDEAD | FRIENDS | IM_POIS | IM_COLD | NO_CONF | NO_SLEEP
9021 F:COLD_BLOOD | HURT_LITE
9022 S:1_IN_9
9023 S:SCARE | HOLD
9024 D:Flesh is falling off in chunks from this decaying abomination.
9026 N:600:Ghast
9027 G:z:u
9028 I:120:30d10:30:50:20
9029 W:30:3:0:130
9030 B:CLAW:PARALYZE:2d4
9031 B:CLAW:PARALYZE:2d4
9032 B:BITE:LOSE_CON:2d4
9033 B:BITE:LOSE_CHR:2d4
9034 F:DROP_60 | OPEN_DOOR | BASH_DOOR
9035 F:EVIL | UNDEAD | ESCORT | IM_POIS | IM_COLD | NO_CONF | NO_SLEEP
9036 F:COLD_BLOOD | HURT_LITE
9037 S:1_IN_7
9038 S:SCARE | HOLD
9039 D:This vile abomination is a relative of ghouls, and often leads packs
9040 D: of them. It smells foul, and its bite carries a rotting disease.
9042 N:601:Greater basilisk
9043 G:R:D
9044 I:120:20d100:25:100:15
9045 W:45:2:0:10000
9046 B:GAZE:PARALYZE:3d12
9047 B:GAZE:PARALYZE:3d12
9048 B:BITE:POISON:2d12
9049 B:BITE:POISON:2d12
9050 F:ONLY_ITEM | DROP_1D2 | DROP_GOOD | POWERFUL
9051 F:OPEN_DOOR | BASH_DOOR | EVIL | IM_POIS
9052 F:ANIMAL | NO_CONF | NO_SLEEP | RES_NEXUS
9053 S:1_IN_8
9054 S:BR_POIS | BR_DARK | BR_NEXU
9055 D:A large basilisk, whose shape resembles that of a great wyrm.
9057 N:602:Aranea
9058 G:S:R
9059 I:110:30d10:20:45:50
9060 W:38:3:0:250
9061 B:CLAW:POISON:2d8
9062 B:CLAW:POISON:2d8
9063 B:BITE:POISON:2d6
9064 B:BITE:POISON:2d6
9065 F:FORCE_MAXHP | FRIENDS | FORCE_SLEEP
9066 F:OPEN_DOOR | BASH_DOOR | HURT_LITE
9067 F:ANIMAL | EVIL | IM_POIS | SMART
9068 S:1_IN_6
9069 S:BO_FIRE | SLOW | HOLD | CAUSE_3 | MISSILE
9070 D:An intelligent arachnid whose hairy legs weave spells in the air.
9072 N:603:Elder aranea
9073 G:S:r
9074 I:120:60d20:20:65:50
9075 W:48:5:0:2500
9076 B:CLAW:POISON:5d8
9077 B:CLAW:POISON:5d8
9078 B:BITE:POISON:5d6
9079 B:BITE:POISON:5d6
9080 F:FORCE_MAXHP | FORCE_SLEEP | ESCORT
9081 F:OPEN_DOOR | BASH_DOOR | HURT_LITE | SMART
9082 F:ANIMAL | EVIL | IM_FIRE | IM_POIS
9083 S:1_IN_6
9084 S:SLOW | HOLD | DRAIN_MANA | MIND_BLAST | HEAL
9085 S:BA_FIRE | BO_FIRE | CAUSE_3 | S_SPIDER | S_KIN
9086 D:A vast, bloated arachnid, master of its brood: among the more terrible of
9087 D: Ungoliant's descendants, this is a monster such as those who haunted the dread
9088 D: valley of Nan Dungortheb long ago.
9090 N:604:Kobold shaman
9091 G:k:r
9092 I:110:3d6:20:16:10
9093 W:3:1:0:15
9094 B:HIT:HURT:1d8
9095 F:DROP_60
9096 F:OPEN_DOOR | BASH_DOOR
9097 F:EVIL | IM_POIS
9098 S:1_IN_5 | MISSILE | CAUSE_1 | HEAL | CONF
9099 D:It is a kobold dressed in skins and gesturing wildly.
9101 N:605:Bat of Gorgoroth
9102 G:b:g
9103 I:120:20d10:20:30:30
9104 W:28:3:0:100
9105 B:BITE:POISON:1d10
9106 B:CLAW:HURT:1d4
9107 F:DROP_60 | RAND_25 | MOVE_BODY
9108 F:BASH_DOOR | WEIRD_MIND
9109 F:ANIMAL | IM_POIS | FRIENDS
9110 S:1_IN_8
9111 S:SCARE | BR_POIS | BR_DARK
9112 D:Fed with horrid meats and grown to enormous size, this slavering creature
9113 D: seeks livelier prey.
9115 N:606:Doombat
9116 G:b:R
9117 I:120:24d14:16:75:30
9118 W:32:2:0:250
9119 B:BITE:FIRE:5d4
9120 B:BITE:FIRE:5d4
9121 B:BITE:FIRE:5d4
9122 F:WEIRD_MIND | BASH_DOOR
9123 F:IM_FIRE | ANIMAL
9124 D:It is a fast moving creature of chaos, a gigantic black bat
9125 D: surrounded by flickering bright red flames.
9127 N:607:Wolf chieftain
9128 G:C:D
9129 I:120:22d22:20:20:5
9130 W:26:5:0:120
9131 B:CLAW:HURT:2d6
9132 B:CLAW:HURT:2d6
9133 B:BITE:HURT:2d10
9134 B:WAIL:TERRIFY
9135 F:ESCORTS | FORCE_MAXHP | IM_COLD | IM_ACID
9136 F:SMART | ESCORT | ANIMAL | EVIL
9137 F:OPEN_DOOR | BASH_DOOR | NO_FEAR | MALE
9138 S:1_IN_8 | DARKNESS
9139 D:A great wolf-chieftain whose pack is in the service of the Dark Lord,
9140 D: and whose howls strike fear into even the boldest heart.
9142 N:608:Bone golem
9143 G:g:D
9144 I:120:35d100:20:170:50
9145 W:68:3:0:23000
9146 B:HIT:UN_BONUS:8d8
9147 B:HIT:UN_BONUS:8d8
9148 B:HIT:LOSE_STR:6d6
9149 B:HIT:LOSE_STR:6d6
9150 F:FORCE_SLEEP | FORCE_MAXHP | EMPTY_MIND
9151 F:COLD_BLOOD | OPEN_DOOR | BASH_DOOR
9152 F:UNDEAD | IM_COLD | IM_POIS | IM_FIRE | IM_ELEC
9153 F:NO_CONF | NO_SLEEP | NO_FEAR
9154 S:1_IN_8
9155 S:TELE_TO | CAUSE_4 | DRAIN_MANA
9156 S:BRAIN_SMASH | BA_NETH | S_UNDEAD
9157 D:A skeletal form, black as night, constructed from the bones of its
9158 D: previous victims.
9160 N:609:Bronze golem
9161 G:g:o
9162 I:120:40d100:20:170:50
9163 W:75:3:0:26000
9164 B:HIT:HURT:10d10
9165 B:HIT:HURT:10d10
9166 B:HIT:HURT:10d10
9167 B:HIT:HURT:10d10
9168 F:FORCE_MAXHP | FORCE_SLEEP | EMPTY_MIND | COLD_BLOOD
9169 F:OPEN_DOOR | BASH_DOOR | IM_FIRE | IM_ELEC | IM_POIS | IM_ACID
9170 F:NO_CONF | NO_SLEEP | NO_FEAR | DEMON
9171 S:1_IN_8
9172 S:BO_PLAS | BA_FIRE | BR_FIRE | BA_ELEC | S_DEMON | TELE_TO
9173 D:A gigantic four-armed animated bronze statue of demonic shape, glowing with
9174 D: great heat.
9176 N:610:Ogre chieftain
9177 G:O:b
9178 I:120:30d15:20:55:30
9179 W:30:5:0:600
9180 B:HIT:HURT:3d8
9181 B:HIT:HURT:3d8
9182 B:HIT:HURT:3d8
9183 B:HIT:HURT:3d8
9184 F:FORCE_SLEEP
9185 F:ONLY_ITEM | DROP_90 | MOVE_BODY
9186 F:OPEN_DOOR | BASH_DOOR
9187 F:EVIL | MALE | GIANT | ESCORT
9188 D:This ogre is leader of his tribe.  He sneers at you as he advances towards you,
9189 D: wielding a huge club and pushing his own followers rudely aside.
9191 N:611:Ar-Pharazon the Golden
9192 G:p:y
9193 I:130:40d100:30:45:255
9194 W:55:1:0:32500
9195 B:HIT:HURT:8d8
9196 B:HIT:HURT:8d8
9197 B:HIT:HURT:8d8
9198 B:HIT:HURT:8d8
9199 F:FORCE_SLEEP | FORCE_MAXHP | UNIQUE | EVIL | MALE
9200 F:ONLY_ITEM | DROP_1D2 | DROP_3D2 | DROP_GOOD | DROP_GREAT
9201 F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | MOVE_BODY
9202 F:IM_FIRE | IM_ELEC | IM_POIS
9203 S:1_IN_6
9204 S:HEAL | TELE_AWAY | S_MONSTERS | S_KIN
9205 D:Last and proudest king of ancient Numenor. Corrupted by power and
9206 D: avarice, he fell victim to Sauron's wiles, tried to fight the Valar
9207 D: themselves, and condemned Numenor to oblivion.
9209 N:612:Troll chieftain
9210 G:T:v
9211 I:120:30d30:30:50:20
9212 W:40:5:0:3000
9213 B:HIT:HURT:2d12
9214 B:HIT:HURT:2d12
9215 B:BITE:HURT:3d6
9216 B:BITE:HURT:3d6
9217 F:FORCE_MAXHP | ESCORT | OPEN_DOOR | DROP_1D2
9218 F:SMART | BASH_DOOR | TAKE_ITEM | REGENERATE | MOVE_BODY
9219 F:EVIL | TROLL | IM_POIS | NO_FEAR
9220 D:This troll's great strength and size have won it the place of chieftain
9221 D: of its tribe. It fears nothing.
9223 N:613:Shardstorm
9224 G:v:u
9225 I:120:32d10:40:12:0
9226 W:37:1:0:800
9227 B:ENGULF:HURT:6d6
9228 F:FORCE_SLEEP | RAND_50
9229 F:EMPTY_MIND | BASH_DOOR | POWERFUL
9230 F:NO_FEAR | NO_CONF | NO_SLEEP
9231 S:1_IN_4
9232 S:BR_SHAR
9233 D:A howling blast of razor-sharp mountain fragments, kept intact by perilous
9234 D: magics.
9236 N:614:Storm of Unmagic
9237 G:v:v
9238 I:120:30d20:50:40:0
9239 W:53:3:0:4000
9240 B:ENGULF:UN_POWER:5d5
9241 B:ENGULF:UN_BONUS:5d5
9242 F:ATTR_MULTI | FORCE_SLEEP
9243 F:RAND_50 | RAND_25
9244 F:EMPTY_MIND | BASH_DOOR | POWERFUL
9245 F:NO_CONF | NO_SLEEP | NO_FEAR | RES_DISE
9246 S:1_IN_6
9247 S:BR_DISE
9248 D:Howling through the disintegrating dungeon, this whirlpool of Unmagic
9249 D: rips the enchantments from everything it touches.
9251 N:615:Greater mummy
9252 G:z:y
9253 I:110:34d10:30:68:255
9254 W:36:5:0:800
9255 B:CLAW:LOSE_CON:3d6
9256 B:CLAW:LOSE_CON:3d6
9257 B:GAZE:EXP_40:3d4
9258 B:GAZE:TERRIFY:3d4
9259 F:FORCE_SLEEP | FORCE_MAXHP | NO_FEAR | EVIL | UNDEAD | COLD_BLOOD
9260 F:ONLY_ITEM | DROP_1D2 | DROP_2D2
9261 F:SMART | TAKE_ITEM | OPEN_DOOR | BASH_DOOR | ESCORT | MOVE_BODY
9262 F:IM_ACID | IM_COLD | IM_ELEC | IM_POIS
9263 F:NO_CONF | NO_SLEEP
9264 S:1_IN_3
9265 S:HEAL | HASTE | BLIND | SCARE | S_UNDEAD
9266 S:BA_POIS | BO_NETH | BA_COLD | DRAIN_MANA
9267 S:MIND_BLAST | CAUSE_3 | DARKNESS | FORGET
9268 D:Once a powerful ruler, now an even more powerful undead menace.
9270 N:616:Multi-hued hound
9271 G:Z:v
9272 I:110:40d10:25:40:0
9273 W:43:5:0:600
9274 B:CLAW:HURT:2d8
9275 B:CLAW:HURT:2d8
9276 B:BITE:HURT:4d4
9277 B:BITE:HURT:4d4
9278 F:FORCE_SLEEP
9279 F:FRIENDS
9280 F:BASH_DOOR | ATTR_MULTI
9281 F:ANIMAL | NO_CONF | NO_SLEEP
9282 F:IM_ELEC | IM_POIS | IM_ACID | IM_FIRE | IM_COLD
9283 S:1_IN_5
9284 S:BR_ACID | BR_POIS | BR_COLD | BR_FIRE | BR_ELEC
9285 D:Shimmering in rainbow hues, this hound is beautiful and deadly.