# === Understanding monster.txt === # name: monster name # plural: custom plural for monster name # base: template name # glyph: symbol # color: color # speed: monster speed # hit-points: average hit points # light: monster's light intensity # hearing: hearing sensitivity # armor-class: armor class # sleepiness: initial sleep value # depth: usual depth # rarity: inverse probability of generation # weight: corpse weight # experience: experience per depth level # blow: attack method : attack effect : damage # flags: flag | flag | etc # flags-off: flag | flag | etc # spell-freq: spell frequency # innate-freq: frequency of innate attacks (among all spells) # spell-power: spell power # spells: spell type | spell type | etc # drop: item type : item name : percent drop chance : min : max # drop-base: item type : percent drop chance : min : max # friends: chance : number : name : ?role # friends-base: chance : number : name : ?role # desc: Description # mimic: tval : sval # locations: location (name or coordinates) | location | etc # 'name' indicates the beginning of an entry. # 'plural' is for plurals to monster names that can't be handled by normal # pluralisation rules (see mon-desc.c for more detail). # 'base' is for the monster base template (see monster_base.txt). This # provides the default display symbol, some default flags, and the monster's # pain messages. # 'glyph' is for the display symbol. If present, this overrides the default # display symbol from the base template. # 'color' is for color. There are 28 colors, as follows: # d - 0 - Black # w - 1 - White # s - 2 - Slate # o - 3 - Orange # r - 4 - Red # g - 5 - Green # b - 6 - Blue # u - 7 - Umber # D - 8 - Light Dark # W - 9 - Light Slate # P - 10 - Light Purple # y - 11 - Yellow # R - 12 - Light Red # G - 13 - Light Green # B - 14 - Light Blue # U - 15 - Light Umber # p - 16 - Purple # v - 17 - Violet # t - 18 - Teal # m - 19 - Mud # Y - 20 - Light Yellow # i - 21 - Magenta-Pink # T - 22 - Light Teal # V - 23 - Light Violet # I - 24 - Light Pink # M - 25 - Mustard # z - 26 - Blue Slate # Z - 27 - Deep Light Blue # (note that "black" is the same color as the screen background, and thus the # monster will appear to be an empty black space if its color is "d".) # Note to maintainers/devteam: Light Violet (V) is currently used for the # "purple uniques" option. The option makes all uniques appear in this colour # (instead of only Castamir and Waldern). It is therefore unwise to use it # for non-unique monsters. # 'speed' is for speed; 110 is normal speed. # 'hit-points' is the average number of hitpoints for this monster race, or the # exact number for unique monsters. # 'light' is for the light intensity generated by this monster; note that this # can be positive, negative or zero (the default if there is no light line) # 'hearing' is at what multiple of the player's vision radius the monster # notices the player. # 'armor-class' is a measure of how likely the player is to hit the monster; # the player's hit chance is rolled against 2/3 of this value. # 'sleepiness' is for initial monster sleep value. Sleepiness ranges from 0 # (ever vigilant for intruders) to 255 (prefers to ignore intruders). # 'depth' is the monster's usual dungeon level # 'rarity' is used for picking monsters to be generated; probability of a given # monster race is 100/rarity # 'weight' is the monster's corpse weight. # 'experience' is the base experience for the monster; this is multiplied by # the monster depth and divided by the player level to get the number of # experience points the player receives for killing the monster. # 'blow' is for blows -- method of attack, effect of attack, and damage from # attack. # There may be up to four of these lines; effect and damage are optional. # 'flags' is for flags. These are fairly self-explanatory. As many flags: # lines may be used as are needed to specify all the flags and flags are # separated by the '|' symbol. # 'flags-off' is for flags to remove from the template. For example, in # monster_base.txt, molds are given HURT_FIRE. We don't want the red mold # to have that, so we add a 'flags-off:HURT_FIRE' line to subtract that flag. # 'spell-freq' is for spell frequency - the number of monster turns, on # average, before the monster will cast one of its spells. This must not be # zero. If it is 1, the monster will never move while the player # is in sight, and will thus never attack in melee, as it will cast spells # every turn: if the monster is to use a melee attack, then X must be 2 or # greater. # 'innate-freq' is for frequency of innate ranged attacks - the chance of using # an innate ability instead of a non-innate ability when casting a spell. # 'spell-power' is for the relative casting strength of a spellcasting monster. # The default value is the same as the monster's depth, so a monster with # spell power greater than their depth is a particularly strong caster. # Note that (apart from boulder throwers) monsters with only innate attacks # but no spells a spell power value is not required. # 'spells' is for spell flags, which work just like regular flags. # 'drop' lines create possible drops for specific monsters. Each item # has its percent chance rolled for individually. Any specified drops are in # addition to those that are possible due to the flags set. Specific drops # can be affected by the DROP_GREAT and DROP_GOOD flags. # 'drop-base' lines work as for drops, but only the object tval is specified. # 'friends' lines specify options for what monsters can appear with other # monsters on creation. Note that number is throttled depending on the dungeon # level with only half appearing at depth and the full complement 5 levels # deeper. All town friends will be divided by two. # The code places monsters from bottom up and will not place it if it can't find # room. For best results, places the most important friends at the bottom. # Using 'Same' as the name does what you would expect. # Some friends can have special roles; these are appended to the line end. # 'desc' is for description. As many desc: lines may be used as are needed to # describe the monster. Note that lines will need spaces at their # ends or the beginning of the next line to prevent words from running # together. # 'mimic' lines give item types that this monster may mimic. Each of the objects # has an equal chance of being mimicked. # 'locations' restricts the creation of that monster race to specific locations # (town or dungeon). Mainly used for FORCE_DEPTH uniques to tag them as # "dungeon boss". # === Understanding monster.txt flags === # UNIQUE monsters are just "special" monster races, with the requirement that # only one monster of that race can exist at a time, and when it is killed, it # can never again be generated. # ATTR_CLEAR monsters appear the same color as the floor, terrain feature or # object underneath them. # ATTR_MULTI monsters are multi-hued -- they change color, every player turn. # Their base color is only used to set the initial color when they spawn. # ATTR_FLICKER monsters are also multi-hued -- but they only change between a # small range of colors related to their defined color, and they start out # as their defined color. # CHAR_CLEAR monsters are totally invisible: the symbol shown on the screen is # the same as the floor (or other terrain feature) below it, or the item that # is lying on that floor. # TODO: Explain the other monster and spell flags. But maybe in another file. # # === ! DUNGON BOSS HAS TO HAVE PWMANG_FIXED flag to appear in the dungeon ##### Non-race (contains the "player" picture) ##### name: base:player color:w ##### Monster races proper ##### ### Dungeon level 0 ### name:hobo base:townsfolk color:g speed:110 hit-points:2 hearing:60 armor-class:1 sleepiness:0 depth:0 rarity:2 weight:135 experience:0 blow:DROOL flags:MALE flags:RAND_25 | OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON desc:Ugly doesn't begin to describe him. locations:Farfest name:raving lunatic base:townsfolk color:G speed:115 hit-points:12 hearing:60 armor-class:1 sleepiness:0 depth:0 rarity:2 weight:150 experience:0 blow:DROOL flags:MALE flags:RAND_25 | OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON desc:Drooling and comical, but then, what do you expect? locations:Farfest name:filthy street urchin base:townsfolk color:D speed:110 hit-points:3 hearing:4 armor-class:1 sleepiness:40 depth:0 rarity:2 weight:120 experience:0 blow:BEG blow:TOUCH:EAT_GOLD flags:MALE flags:RAND_25 | OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON friends:50:2d1:scrawny cat friends:50:2d1:stray dog friends:100:3d4:Same desc:He looks squalid and thoroughly revolting. locations:Farfest name:scrawny cat base:feline color:U speed:110 hit-points:2 hearing:30 smell:30 armor-class:1 sleepiness:10 depth:0 rarity:3 weight:10 experience:0 blow:CLAW:HURT:1d1 flags:RAND_25 flags:DROP_CORPSE | DROP_SKELETON flags:NO_PASS_TREE desc:A skinny little furball with sharp claws and a menacing look. locations:Farfest #name:scruffy little dog name:stray dog base:canine color:U speed:110 hit-points:2 hearing:20 smell:50 armor-class:1 sleepiness:5 depth:0 rarity:3 weight:30 experience:0 blow:BITE:HURT:1d1 flags:RAND_25 flags:DROP_CORPSE | DROP_SKELETON flags:NO_PASS_TREE desc:A thin flea-ridden mutt, growling as you get close. locations:Farfest name:Farmer Maggot base:humanoid color:w speed:110 hit-points:50 light:2 hearing:40 armor-class:12 sleepiness:3 depth:2 rarity:4 weight:0 experience:5 blow:MOAN blow:HIT:HURT:1d2 spell-freq:25 spell-power:2 spells:SCARE flags:UNIQUE | MALE flags:DROP_1 | DROP_GOOD | ONLY_ITEM | WANDERER flags:NO_CONF | NO_SLEEP drop-base:mushroom:100:1:2 desc:He's lost his dogs. He's had his mushrooms stolen. He's not a happy hobbit! name:blubbering idiot base:townsfolk color:W speed:110 hit-points:2 hearing:6 armor-class:1 sleepiness:50 depth:0 rarity:1 weight:150 experience:0 blow:DROOL flags:MALE flags:RAND_25 | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON desc:He tends to blubber a lot. locations:Farfest name:boil-covered wretch plural:boil-covered wretches base:townsfolk color:g speed:110 hit-points:2 hearing:6 armor-class:1 sleepiness:50 depth:0 rarity:1 weight:140 experience:0 blow:DROOL flags:MALE flags:RAND_25 | OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON desc:Ugly doesn't begin to describe him. locations:Farfest name:village idiot base:townsfolk color:G speed:120 hit-points:10 hearing:6 armor-class:1 sleepiness:50 depth:0 rarity:1 weight:140 experience:0 blow:DROOL flags:MALE flags:RAND_25 | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON desc:Drooling and comical, but then, what do you expect? locations:Farfest name:pitiful-looking beggar base:townsfolk color:U speed:110 hit-points:3 hearing:10 armor-class:1 sleepiness:40 depth:0 rarity:1 weight:130 experience:0 blow:BEG flags:MALE flags:RAND_25 | OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON desc:You just can't help feeling sorry for him. locations:Farfest name:mangy-looking leper base:townsfolk color:u speed:110 hit-points:1 hearing:10 armor-class:1 sleepiness:50 depth:0 rarity:1 weight:130 experience:0 blow:BEG blow:TOUCH:DISEASE flags:MALE flags:RAND_25 | OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON desc:You feel it isn't safe to touch him. locations:Farfest name:squint-eyed rogue base:townsfolk color:b speed:110 hit-points:9 hearing:10 armor-class:9 sleepiness:99 depth:0 rarity:2 weight:120 experience:0 blow:HIT:HURT:1d6 blow:TOUCH:EAT_ITEM blow:INSULT flags:MALE | EVIL flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON desc:A hardy, street-wise crook that knows an easy catch when it sees one. locations:Farfest name:singing, happy drunk base:townsfolk color:y speed:110 hit-points:4 light:2 hearing:10 armor-class:1 sleepiness:0 depth:0 rarity:1 weight:110 experience:0 blow:BEG flags:MALE flags:DROP_40 | ONLY_GOLD flags:RAND_50 | OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON desc:He makes you glad to be sober. locations:Farfest name:aimless-looking merchant base:townsfolk color:o speed:110 hit-points:6 light:2 hearing:10 armor-class:1 sleepiness:255 depth:0 rarity:1 weight:150 experience:0 blow:HIT:HURT:1d3 flags:MALE flags:DROP_40 | ONLY_GOLD flags:RAND_50 | OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON friends:30:2d2:filthy street urchin desc:The typical ponce around town, with purse jingling, and looking for more desc: amulets of adornment to buy. locations:Farfest name:mean-looking mercenary plural:mean-looking mercenaries base:townsfolk color:r speed:110 hit-points:23 light:2 hearing:10 armor-class:24 sleepiness:250 depth:0 rarity:3 weight:170 experience:0 blow:HIT:HURT:1d10 flags:MALE | EVIL flags:DROP_40 flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:NO_FEAR | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WANDERER desc:No job is too low for him. locations:Farfest name:battle-scarred veteran base:townsfolk color:B speed:110 hit-points:32 light:2 hearing:10 armor-class:36 sleepiness:250 depth:0 rarity:3 weight:165 experience:0 blow:HIT:HURT:2d6 flags:MALE flags:DROP_40 flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:NO_FEAR | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WANDERER desc:He doesn't take to strangers kindly. locations:Farfest name:sparrow base:bird color:U speed:110 hit-points:1 hearing:30 armor-class:1 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:BITE:HURT:1d1 flags:FRIGHTENED | PWMANG_BASE flags:PASS_WALL flags:DROP_SKELETON flags:RAND_25 desc:Utterly harmless, and really cautious. locations:Farfest #### NEW PWMA name:horse base:quadruped color:y speed:110 hit-points:1 hearing:30 armor-class:1 sleepiness:150 depth:0 rarity:5 weight:0 experience:0 blow:MOAN flags:ANIMAL | FRIENDLY | PWMANG_BASE | FRIGHTENED flags:NO_PASS_TREE desc:A common horse. locations:Hunter's Valley|Farfest #had clone: name:Otho Sackville-Baggins name:Lobelia Sackville-Baggins base:humanoid color:b speed:110 hit-points:75 light:2 hearing:40 armor-class:8 sleepiness:3 depth:2 rarity:3 weight:0 experience:0 blow:BEG blow:TOUCH:EAT_GOLD blow:CRUSH:HURT:1d1 flags:UNIQUE | FEMALE | ATTR_FLICKER | WANDERER flags:PWMANG_EXTRA flags:DROP_1 | DROP_GOOD | ONLY_ITEM flags:TAKE_ITEM flags:NO_CONF | NO_SLEEP | IM_WATER desc:This greedy and ill-mannered person thinks he has been spoiled from a good desc: heritage. name:Target Dummy base:golem color:y speed:110 hit-points:1 hearing:1 armor-class:0 sleepiness:0 depth:0 rarity:1 weight:0 experience:0 flags:UNIQUE | NEVER_BLOW | NEVER_MOVE | NO_DEATH flags:PWMANG_EXTRA | PWMANG_FIXED flags:IM_FIRE | IM_ELEC | IM_POIS | UNDEAD | HURT_ROCK | IM_LIGHT | HURT_LIGHT desc:An indestructible golem used for target practice. locations:Farfest name:goldfish base:aquatic color:r speed:90 hit-points:1 hearing:30 armor-class:4 sleepiness:10 depth:0 rarity:5 weight:0 experience:0 blow:BITE:HURT:1d1 flags:FRIGHTENED | PWMANG_BASE | FRIENDLY flags:RAND_100 | COLD_BLOOD | NO_SLEEP desc:Beautiful red fish in ponds. locations:Hunter's Valley|Farfest #plotva name:roach fish base:aquatic color:r speed:95 hit-points:1 hearing:30 armor-class:4 sleepiness:10 depth:0 rarity:1 weight:0 experience:0 blow:BITE:HURT:1d1 flags:FRIGHTENED | PWMANG_BASE flags:RAND_100 | COLD_BLOOD | NO_SLEEP desc:A small fish. #ersh name:ruff fish base:aquatic color:r speed:100 hit-points:1 hearing:30 armor-class:4 sleepiness:10 depth:0 rarity:1 weight:0 experience:0 blow:BITE:HURT:1d1 flags:FRIGHTENED | PWMANG_BASE flags:RAND_100 | COLD_BLOOD | NO_SLEEP desc:A small fish. #karas name:crucian fish base:aquatic color:r speed:100 hit-points:1 hearing:30 armor-class:4 sleepiness:10 depth:0 rarity:1 weight:0 experience:0 blow:BITE:HURT:1d1 flags:FRIGHTENED | PWMANG_BASE flags:RAND_100 | COLD_BLOOD | NO_SLEEP desc:A small fish. #okun name:perch fish base:aquatic color:r speed:100 hit-points:1 hearing:30 armor-class:4 sleepiness:10 depth:0 rarity:1 weight:0 experience:0 blow:BITE:HURT:1d1 flags:FRIGHTENED | PWMANG_BASE flags:RAND_100 | COLD_BLOOD | NO_SLEEP desc:A small fish. #karp name:carp fish base:aquatic color:r speed:95 hit-points:1 hearing:30 armor-class:4 sleepiness:10 depth:0 rarity:1 weight:0 experience:0 blow:BITE:HURT:1d1 flags:FRIGHTENED | PWMANG_BASE flags:RAND_100 | COLD_BLOOD | NO_SLEEP desc:A small fish. ### Dungeon level 1 ### name:blinking dot base:lurker color:w speed:110 hit-points:2 hearing:40 armor-class:1 sleepiness:0 depth:1 rarity:4 weight:0 experience:3 blow:SPORE:CONFUSE:1d6 flags:NEVER_MOVE | STUPID | EMPTY_MIND flags:NO_CONF | NO_SLEEP | NO_FEAR flags:ATTR_MULTI spell-freq:2 spells:BLINK desc:Is it there or is it not? name:grid bug base:hybrid color:s speed:110 hit-points:5 hearing:10 armor-class:2 sleepiness:10 depth:1 rarity:2 weight:10 experience:2 blow:BITE:ELEC:1d7 flags:RAND_25 flags:STUPID | WEIRD_MIND flags:ANIMAL | IM_ELEC friends:100:1d3:Same desc:A strange electric bug. He can not fly. name:wooden barrel base:hybrid color:y speed:90 hit-points:1 hearing:1 armor-class:0 sleepiness:125 depth:1 rarity:1 weight:0 experience:0 flags:NEVER_BLOW flags:FORCE_SLEEP | NEVER_MOVE | STUPID | EMPTY_MIND | PWMANG_BASE flags:COLD_BLOOD flags:DROP_40 | ONLY_GOLD flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_DISEN | IM_NETHER flags:IM_COLD | IM_ELEC | IM_POIS | IM_WATER | NO_SLOW | IM_LIGHT spell-freq:100 spells:S_ANIMAL | S_SPIDER | S_MONSTER desc:An old barrel. When you hit it, you hear hollow sound. Is it empty? #was huorn name:elki-palki base:tree color:G speed:90 hit-points:40 light:-2 hearing:40 armor-class:30 sleepiness:20 depth:1 rarity:7 weight:0 experience:4 blow:CRUSH:HURT:1d3 blow:CRUSH:HURT:1d3 blow:CRUSH:HURT:1d3 flags:DROP_40 | NO_SLEEP | WEIRD_MIND flags:IM_COLD | NEVER_MOVE spell-freq:5 spells:BLINK desc:A very strange near-sentient tree, which has become hostile desc: to other living things. #was huorn name:lonely tree base:tree color:G speed:90 hit-points:50 light:-2 hearing:40 armor-class:30 sleepiness:20 depth:1 rarity:4 weight:0 experience:4 blow:CRUSH:HURT:1d3 blow:CRUSH:HURT:1d3 blow:CRUSH:HURT:1d3 flags:DROP_40 | NO_SLEEP | WEIRD_MIND flags:IM_COLD | NEVER_MOVE spell-freq:13 spells:BLINK desc:They say that staying near lonely tree at thunderstorm could be dangerous desc: But actually staying nearby such tree could be deadly in any weather. #was Mirkwood spider name:Weaver spider base:spider color:g speed:100 hit-points:9 hearing:15 armor-class:10 sleepiness:10 depth:1 rarity:3 weight:0 experience:3 blow:BITE:POISON:1d6 flags:EVIL | ANIMAL | WEIRD_MIND flags:IM_POIS flags:WILD_WOOD spell-freq:3 innate-freq:100 spells:WEAVE desc:Weaving it's web everywhere.. It don't need to run desc:for it's prey. Just sit quetly and wait till it get desc: there.. Then some venom - and dinner is ready... #was name:giant white louse name:giant cockroach base:ant color:w speed:120 hit-points:3 hearing:6 armor-class:6 sleepiness:50 depth:1 rarity:3 weight:0 experience:1 blow:BITE:HURT:1d1 friends:100:1d3:Same desc:It is seven inches long! Disgusting! name:grey mold base:mold color:s speed:110 hit-points:2 hearing:2 armor-class:1 sleepiness:0 depth:1 rarity:1 weight:0 experience:3 blow:SPORE:HURT:1d4 blow:SPORE:HURT:1d4 flags:EMPTY_MIND | STUPID desc:A small strange grey growth. name:grey mushroom patch plural:grey mushroom patches base:mushroom color:s speed:110 hit-points:2 hearing:2 armor-class:1 sleepiness:0 depth:1 rarity:1 weight:0 experience:1 blow:SPORE:CONFUSE:1d4 flags:IM_POIS | NEVER_MOVE desc:Yum! It looks quite tasty. name:giant yellow centipede base:centipede color:y speed:110 hit-points:7 hearing:8 smell:20 armor-class:14 sleepiness:30 depth:1 rarity:1 weight:0 experience:2 blow:BITE:HURT:1d3 blow:STING:HURT:1d3 flags:DROP_SKELETON | WILD_ALL desc:It is about four feet long and carnivorous. name:giant white centipede base:centipede color:w speed:110 hit-points:9 hearing:7 smell:20 armor-class:12 sleepiness:40 depth:1 rarity:1 weight:0 experience:2 blow:CRAWL:HURT:1d2 blow:STING:COLD:1d2 flags:RAND_50 | BASH_DOOR flags:DROP_SKELETON | WILD_ALL desc:It is about four feet long and carnivorous. name:white icky thing base:icky thing color:w speed:110 hit-points:6 hearing:12 armor-class:8 sleepiness:10 depth:1 rarity:1 weight:50 experience:1 blow:TOUCH:HURT:1d2 flags:EMPTY_MIND flags:RAND_25 flags:DROP_CORPSE desc:It is a smallish, slimy, icky creature. name:clear icky thing base:icky thing color:w speed:110 hit-points:6 hearing:12 armor-class:7 sleepiness:10 depth:1 rarity:1 weight:50 experience:2 blow:TOUCH:HURT:1d2 flags:INVISIBLE | EMPTY_MIND flags:RAND_25 flags:ATTR_CLEAR flags:DROP_CORPSE desc:It is a smallish, slimy, icky, blobby creature. name:giant white mouse plural:giant white mice base:rodent color:w speed:110 hit-points:2 hearing:8 smell:20 armor-class:4 sleepiness:20 depth:1 rarity:1 weight:0 experience:1 blow:BITE:HURT:1d2 flags:MULTIPLY flags:RAND_50 flags:DROP_SKELETON | WILD_GRASS flags:NO_PASS_TREE desc:It is about three feet long with large teeth. name:large white snake base:snake color:w speed:100 hit-points:11 hearing:4 armor-class:36 sleepiness:99 depth:1 rarity:1 weight:80 experience:2 blow:BITE:HURT:1d1 blow:CRUSH:HURT:1d1 flags:RAND_50 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:It is about eight feet long. name:small kobold base:kobold color:y speed:110 hit-points:8 hearing:20 smell:20 armor-class:24 sleepiness:70 depth:1 rarity:1 weight:80 experience:5 blow:HIT:HURT:1d5 flags:DROP_60 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:It is a squat and ugly humanoid figure with a canine face. name:white worm mass base:worm color:w speed:100 hit-points:10 hearing:7 armor-class:1 sleepiness:14 depth:1 rarity:1 weight:0 experience:2 blow:CRAWL:POISON:1d2 flags:WEIRD_MIND | MULTIPLY | STUPID flags:RAND_25 | RAND_50 flags:HURT_LIGHT | IM_POIS | NO_FEAR desc:It is a large slimy mass of worms. name:floating eye base:eye color:o speed:110 hit-points:11 hearing:2 armor-class:7 sleepiness:10 depth:1 rarity:1 weight:50 experience:1 blow:GAZE:PARALYZE flags:NEVER_MOVE flags:HURT_LIGHT | NO_FEAR flags:DROP_CORPSE desc:A disembodied eye, floating a few feet above the ground. name:rock lizard base:reptile color:U speed:110 hit-points:8 hearing:20 smell:20 armor-class:4 sleepiness:15 depth:1 rarity:1 weight:10 experience:2 blow:BITE:HURT:1d1 flags:DROP_CORPSE | WILD_MOUNTAIN desc:It is a small lizard with a hardened hide. #V name:wild dog base:canine color:U speed:110 hit-points:3 hearing:10 smell:50 armor-class:3 sleepiness:10 depth:1 rarity:1 weight:40 experience:1 blow:BITE:HURT:1d1 flags:GROUP_AI flags:DROP_CORPSE | DROP_SKELETON | WILD_GRASS | WILD_WOOD friends:100:2d7:Same desc:It is a yapping snarling dog, dangerous when in a pack. name:soldier ant base:ant color:W speed:110 hit-points:6 hearing:10 smell:20 armor-class:4 sleepiness:40 depth:1 rarity:1 weight:0 experience:3 blow:BITE:HURT:1d2 flags:DROP_SKELETON | WILD_GRASS desc:A large ant with powerful mandibles. name:fruit bat base:bat color:o speed:120 hit-points:4 hearing:20 armor-class:3 sleepiness:10 depth:1 rarity:1 weight:2 experience:1 blow:BITE:HURT:1d1 flags:DROP_CORPSE | WILD_WOOD | WILD_SWAMP | RAND_25 desc:A fast-moving pest. #towny name:chaffinch plural:chaffinches base:bird color:i speed:110 hit-points:1 hearing:30 armor-class:1 sleepiness:10 depth:0 rarity:6 weight:0 experience:0 blow:BITE:HURT:1d1 flags:RAND_25 | WILD_WOOD | WILD_GRASS | PWMANG_BASE flags:DROP_SKELETON flags:FRIENDLY | FRIGHTENED desc:Utterly harmless, except when angry. #towny name:wild rabbit base:rodent color:U speed:110 hit-points:2 hearing:30 smell:20 armor-class:1 sleepiness:10 depth:0 rarity:3 weight:10 experience:0 blow:BITE:HURT:1d1 flags:RAND_50 | WILD_GRASS | WILD_WOOD | PWMANG_BASE flags:DROP_SKELETON | DROP_CORPSE flags:FRIENDLY | FRIGHTENED desc:It is not a carnivore, but will defend itself if you stray too close. #towny name:woodsman plural:woodsmen base:townsfolk color:g speed:110 hit-points:6 hearing:10 armor-class:1 sleepiness:150 depth:0 rarity:6 weight:150 experience:0 blow:HIT:HURT:1d6 flags:MALE | WILD_ONLY | WILD_WOOD | PWMANG_BASE flags:RAND_25 | DROP_SKELETON | DROP_CORPSE flags:ONLY_GOLD | DROP_40 flags:TAKE_ITEM | OPEN_DOOR | BASH_DOOR flags:FRIENDLY desc:He has a strong axe with a sharp edge. locations:Farfest #was name:woodsman name:Mad woodsman base:person color:g speed:110 hit-points:31 light:2 hearing:10 armor-class:1 sleepiness:10 depth:1 rarity:4 weight:150 experience:5 blow:HIT:HURT:1d6 flags:MALE | UNIQUE flags:RAND_25 | DROP_SKELETON | DROP_CORPSE | WANDERER | WILD_WOOD flags:ONLY_GOLD | DROP_1 flags:TAKE_ITEM | OPEN_DOOR | BASH_DOOR desc:He has a strong axe with a sharp edge. desc:He looks pale.. and got strange crimson gleal in his eyes.. name:newt base:reptile color:Y speed:110 hit-points:7 hearing:8 smell:20 armor-class:14 sleepiness:30 depth:1 rarity:1 weight:1 experience:2 blow:BITE:HURT:1d3 blow:BITE:HURT:1d3 flags:WEIRD_MIND | PWMANG_BASE flags:DROP_CORPSE flags:WILD_SHORE | WILD_GRASS | WILD_SWAMP | WILD_WASTE | WILD_MOUNTAIN desc:A small, harmless lizard. name:insect swarm base:stinger color:u speed:120 hit-points:3 hearing:20 armor-class:5 sleepiness:10 depth:1 rarity:1 weight:0 experience:1 blow:BITE:HURT:1d1 blow:STING:HURT:1d1 flags:RAND_25 | PWMANG_BASE flags:HURT_FIRE flags:WILD_GRASS | WILD_WOOD | WILD_SWAMP desc:A lone insect may be harmless, but there is a whole swarm of them here! ### Dungeon level 2 ### name:Freesia base:feline color:u speed:120 hit-points:25 hearing:40 smell:40 armor-class:30 sleepiness:10 depth:2 rarity:2 weight:25 experience:30 blow:CLAW:HURT:1d2 blow:CLAW:HURT:1d2 flags:UNIQUE | BASH_DOOR flags:ANIMAL | NO_CONF | NO_SLEEP | WANDERER flags:DROP_CORPSE | DROP_SKELETON drop:fortune cookie:Fortune Cookie:80:1:1 desc:A striped housecat who enjoys hunting. locations:The Mountain Gorge|The Orc Cave|The Severs name:kobold base:kobold color:G speed:110 hit-points:12 hearing:20 smell:20 armor-class:24 sleepiness:70 depth:2 rarity:1 weight:90 experience:5 blow:HIT:HURT:1d8 flags:DROP_60 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:It is a small, dog-headed humanoid. name:shrieker mushroom patch plural:shrieker mushroom patches base:mushroom color:R speed:110 hit-points:1 hearing:4 armor-class:1 sleepiness:0 depth:2 rarity:1 weight:0 experience:1 flags:NEVER_BLOW | NEVER_MOVE flags:IM_POIS flags:FORCE_SLEEP flags:WILD_SWAMP spell-freq:4 innate-freq:100 spells:SHRIEK desc:Yum! It looks quite tasty. It doesn't sound so nice, though... name:blubbering icky thing base:icky thing color:W speed:110 hit-points:18 hearing:14 armor-class:4 sleepiness:10 depth:2 rarity:1 weight:40 experience:8 blow:CRAWL:POISON:1d4 blow:SWALLOW:EAT_FOOD flags:EMPTY_MIND flags:KILL_BODY | TAKE_ITEM flags:IM_POIS flags:DROP_CORPSE desc:It is a smallish, slimy, icky, hungry creature. name:metallic green centipede base:centipede color:g speed:120 hit-points:10 hearing:5 smell:20 armor-class:4 sleepiness:10 depth:2 rarity:1 weight:0 experience:3 blow:CRAWL:HURT:1d1 blow:STING:ACID:1d1 flags:RAND_50 | BASH_DOOR flags:DROP_SKELETON | WILD_ALL desc:It is about four feet long and carnivorous. name:soldier base:person color:u speed:110 hit-points:23 light:2 hearing:20 armor-class:24 sleepiness:80 depth:2 rarity:1 weight:160 experience:6 blow:HIT:HURT:1d7 blow:HIT:HURT:1d7 flags:MALE flags:DROP_60 flags:OPEN_DOOR flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL friends-base:20:1d3:person friends-base:40:1d3:person friends-base:80:1d3:person friends:50:1d2:Same desc:An inexperienced but tough warrior. name:cutpurse base:person color:b speed:110 hit-points:20 hearing:20 armor-class:18 sleepiness:10 depth:2 rarity:1 weight:140 experience:6 blow:HIT:HURT:1d6 blow:TOUCH:EAT_GOLD flags:MALE | EVIL flags:DROP_40 flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL drop-base:shadow book:5:1:1 drop:scroll:Phase Door:35:1:3 friends-base:20:1d3:person friends-base:40:1d3:person friends-base:80:1d3:person friends:50:1d2:Same desc:A rather shifty individual. name:acolyte base:person color:g speed:110 hit-points:18 light:2 hearing:20 armor-class:15 sleepiness:80 depth:2 rarity:1 weight:150 experience:6 blow:HIT:HURT:1d5 flags:MALE flags:DROP_40 flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL flags:IM_LIGHT spell-freq:12 spells:HEAL | SCARE drop-base:prayer book:5:1:1 friends-base:20:1d3:person friends-base:40:1d3:person friends-base:80:1d3:person friends:50:1d2:Same desc:He is tripping over his priestly robes. #apprentice name:novice mage base:person color:r speed:110 hit-points:15 light:2 hearing:20 armor-class:9 sleepiness:15 depth:2 rarity:1 weight:140 experience:6 blow:HIT:HURT:1d4 flags:MALE flags:DROP_40 flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL spell-freq:12 spells:BLIND | BLINK | CONF | MISSILE drop-base:magic book:5:1:1 friends-base:20:1d3:person friends-base:40:1d3:person friends-base:80:1d3:person friends:50:1d2:Same desc:He is leaving behind a trail of dropped spell components. name:yellow mushroom patch plural:yellow mushroom patches base:mushroom color:y speed:110 hit-points:1 hearing:2 armor-class:1 sleepiness:0 depth:2 rarity:1 weight:0 experience:2 blow:SPORE:TERRIFY:1d6 flags:NEVER_MOVE flags:IM_POIS flags:WILD_SWAMP desc:Yum! It looks quite tasty. name:white jelly plural:white jellies base:jelly color:w speed:120 hit-points:36 hearing:2 armor-class:1 sleepiness:99 depth:2 rarity:1 weight:0 experience:10 blow:TOUCH:POISON:1d2 flags:NEVER_MOVE flags:HURT_LIGHT | IM_POIS | HURT_COLD | NO_CONF | NO_SLEEP desc:It's a large pile of white flesh. name:giant green frog base:reptile color:g speed:110 hit-points:9 hearing:12 smell:20 armor-class:9 sleepiness:30 depth:2 rarity:1 weight:20 experience:6 blow:BITE:HURT:1d3 flags:RAND_25 | BASH_DOOR flags:DROP_CORPSE | WILD_SHORE | WILD_SWAMP desc:It is as big as a wolf. name:giant black ant base:ant color:D speed:110 hit-points:11 hearing:8 smell:20 armor-class:24 sleepiness:80 depth:2 rarity:1 weight:0 experience:8 blow:BITE:HURT:1d4 flags:RAND_25 flags:DROP_SKELETON | WILD_GRASS | WILD_WOOD desc:It is about three feet long. name:salamander base:reptile color:o speed:110 hit-points:14 hearing:8 smell:20 armor-class:24 sleepiness:80 depth:2 rarity:1 weight:10 experience:10 blow:BITE:FIRE:1d3 flags:RAND_25 flags:IM_FIRE flags:DROP_CORPSE | WILD_VOLCANO | WILD_DESERT desc:A small black and orange lizard. name:white harpy plural:white harpies base:hybrid color:w speed:110 hit-points:6 hearing:16 smell:20 armor-class:20 sleepiness:10 depth:2 rarity:1 weight:50 experience:5 blow:CLAW:HURT:1d1 blow:CLAW:HURT:1d1 blow:BITE:HURT:1d2 flags:FEMALE | EVIL | ANIMAL | LEVITATE flags:RAND_50 flags:DROP_CORPSE | WILD_MOUNTAIN | HYBRID desc:A flying, screeching bird with a woman's face. name:blue yeek base:yeek color:b speed:110 hit-points:7 hearing:18 smell:20 armor-class:16 sleepiness:10 depth:2 rarity:1 weight:70 experience:4 blow:HIT:HURT:1d5 flags:DROP_60 flags:DROP_CORPSE desc:A small humanoid figure. name:Grip, Farmer Maggot's Dog base:canine color:y speed:120 hit-points:25 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:2 rarity:1 weight:0 experience:30 blow:BITE:HURT:1d4 flags:UNIQUE flags:RAND_25 | BASH_DOOR | WANDERER flags:NO_CONF | NO_SLEEP desc:A rather vicious dog belonging to Farmer Maggot. It thinks you are stealing desc: mushrooms. name:Fang, Farmer Maggot's Dog base:canine color:y speed:120 hit-points:30 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:3 rarity:1 weight:0 experience:35 blow:BITE:HURT:1d4 flags:UNIQUE flags:RAND_25 | BASH_DOOR | WANDERER flags:NO_CONF | NO_SLEEP desc:A rather vicious dog belonging to Farmer Maggot. It thinks you are stealing desc: mushrooms. name:green worm mass base:worm color:g speed:100 hit-points:15 hearing:7 armor-class:3 sleepiness:10 depth:2 rarity:1 weight:0 experience:3 blow:CRAWL:ACID:1d3 flags:WEIRD_MIND | MULTIPLY | STUPID flags:RAND_25 | RAND_50 flags:HURT_LIGHT | IM_ACID | NO_FEAR desc:It is a large slimy mass of worms. #was name:large yellow snake / removed in V name:sleeping snake base:snake color:y speed:120 hit-points:11 hearing:5 armor-class:15 sleepiness:255 depth:2 rarity:2 weight:100 #9 experience:13 blow:BITE:HURT:1d4 blow:CRUSH:HURT:1d4 flags:RAND_25 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:It sleeps well... And it is about ten feet long. name:cave spider base:spider color:p speed:120 hit-points:7 hearing:8 armor-class:19 sleepiness:80 depth:2 rarity:1 weight:0 experience:7 blow:BITE:HURT:1d4 flags:ANIMAL | WEIRD_MIND flags:GROUP_AI flags:DROP_SKELETON friends:100:2d8:Same desc:It is a black spider that moves in fits and starts. name:wild cat base:feline color:U speed:120 hit-points:9 hearing:40 smell:30 armor-class:14 sleepiness:0 depth:2 rarity:2 weight:20 experience:8 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d3 flags:BASH_DOOR flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:A larger than normal feline, hissing loudly. Its velvet paws conceal a desc: fistful of needles. name:crow base:bird color:W speed:120 hit-points:9 hearing:40 armor-class:14 sleepiness:0 depth:2 rarity:2 weight:30 experience:8 blow:BITE:HURT:1d3 blow:BITE:HURT:1d3 flags:DROP_CORPSE | WILD_WOOD desc:It is a hooded crow, gray except for the black wings and head. name:Wolf, Farmer Maggot's Dog base:canine color:y speed:120 hit-points:40 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:4 rarity:1 weight:0 experience:40 blow:BITE:HURT:1d4 flags:UNIQUE | PWMANG_BASE | WANDERER flags:RAND_25 | BASH_DOOR flags:NO_CONF | NO_SLEEP desc:A rather vicious dog belonging to Farmer Maggot. It thinks you are stealing desc: mushrooms. name:pike base:aquatic color:s speed:110 hit-points:14 hearing:80 armor-class:35 sleepiness:0 depth:2 rarity:1 weight:0 experience:7 blow:BITE:HURT:2d3 flags:PWMANG_BASE | WILD_SHORE | WILD_OCEAN flags:COLD_BLOOD | STUPID desc:It's a common fresh-water predatory fish. ### Dungeon level 3 ### # was name:large brown snake / removed in V name:viper base:snake color:u speed:115 hit-points:14 hearing:4 armor-class:19 sleepiness:120 depth:3 rarity:3 weight:80 experience:5 blow:BITE:POISON:1d3 blow:BITE:POISON:1d3 flags:RAND_25 flags:DROP_CORPSE | DROP_SKELETON desc:It is known as poisonous snake... name:Smeagol base:humanoid color:B speed:130 hit-points:400 hearing:20 armor-class:14 sleepiness:5 depth:3 rarity:2 weight:0 experience:50 blow:TOUCH:EAT_GOLD:1d4 flags:UNIQUE | MALE | EVIL | INVISIBLE flags:DROP_1 | DROP_GOOD | DROP_GREAT flags:RAND_25 | RAND_50 | TAKE_ITEM flags:HURT_LIGHT flags:SWIM_GOOD desc:Usually known as Gollum. He's been sneaking, and he wants his 'precious.' name:green ooze base:jelly color:g speed:120 hit-points:8 hearing:8 armor-class:19 sleepiness:80 depth:3 rarity:2 weight:0 experience:4 blow:CRAWL:ACID:1d3 flags:DROP_60 flags:RAND_25 | RAND_50 flags:IM_ACID | IM_POIS | HURT_COLD | NO_CONF | NO_SLEEP desc:It's green and it's oozing. name:poltergeist base:ghost color:W speed:130 hit-points:6 hearing:8 armor-class:18 sleepiness:10 depth:3 rarity:1 weight:0 experience:8 blow:TOUCH:TERRIFY flags:DROP_40 | DROP_60 flags:RAND_25 | RAND_50 | TAKE_ITEM flags:HURT_LIGHT spell-freq:15 spells:BLINK desc:It is a ghastly, ghostly form. name:metallic blue centipede base:centipede color:b speed:120 hit-points:12 hearing:6 smell:20 armor-class:7 sleepiness:15 depth:3 rarity:1 weight:0 experience:7 blow:CRAWL:HURT:1d2 blow:STING:ELEC:1d2 flags:RAND_50 | BASH_DOOR flags:DROP_SKELETON | WILD_ALL desc:It is about four feet long and carnivorous. #was name:giant white louse name:giant head louse plural:giant head lice base:insect color:w #120 speed:100 hit-points:1 hearing:6 armor-class:6 sleepiness:10 depth:3 rarity:1 weight:0 experience:1 blow:BITE:HURT:1d1 desc:It is six inches long. name:black naga base:naga color:D speed:110 hit-points:27 hearing:16 armor-class:60 sleepiness:180 depth:3 rarity:1 weight:170 experience:20 blow:CRUSH:HURT:1d8 flags:DROP_60 flags:RAND_25 flags:DROP_CORPSE desc:A large black serpent's body with a female torso. name:spotted mushroom patch plural:spotted mushroom patches base:mushroom color:o speed:110 hit-points:1 hearing:2 armor-class:1 sleepiness:0 depth:3 rarity:1 weight:0 experience:3 blow:SPORE:POISON:2d4 flags:NEVER_MOVE flags:IM_POIS flags:WILD_SWAMP desc:Yum! It looks quite tasty. name:silver jelly plural:silver jellies base:jelly color:W speed:120 hit-points:45 hearing:2 armor-class:1 sleepiness:99 depth:3 rarity:2 weight:0 experience:12 blow:DEVOUR:EAT_LIGHT:1d3 blow:DEVOUR:EAT_LIGHT:1d3 flags:NEVER_MOVE flags:IM_POIS | HURT_COLD | NO_CONF | NO_SLEEP spell-freq:15 spells:DRAIN_MANA desc:It is a large pile of silver flesh that sucks all light from its desc: surroundings. name:yellow jelly plural:yellow jellies base:jelly color:y speed:120 hit-points:45 hearing:2 armor-class:1 sleepiness:99 depth:3 rarity:1 weight:0 experience:12 blow:TOUCH:POISON:1d3 flags:NEVER_MOVE flags:HURT_LIGHT | IM_POIS | HURT_COLD | NO_CONF | NO_SLEEP spell-freq:15 spells:DRAIN_MANA desc:It's a large pile of yellow flesh. name:scruffy looking hobbit base:humanoid color:b speed:110 hit-points:9 hearing:16 armor-class:9 sleepiness:10 depth:3 rarity:1 weight:100 experience:4 blow:HIT:HURT:1d4 blow:TOUCH:EAT_GOLD flags:MALE | EVIL flags:DROP_60 flags:TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON desc:A short little guy, in bedraggled clothes. He appears to be looking for a desc: good tavern. name:giant white ant base:ant color:w speed:110 hit-points:11 hearing:8 smell:20 armor-class:19 sleepiness:80 depth:3 rarity:1 weight:0 experience:7 blow:BITE:HURT:1d4 flags:DROP_SKELETON | WILD_GRASS friends:100:4d4:same desc:It is about two feet long and has sharp pincers. name:yellow mold base:mold color:y speed:110 hit-points:36 hearing:2 armor-class:12 sleepiness:99 depth:3 rarity:1 weight:0 experience:9 blow:SPORE:HURT:1d4 flags:EMPTY_MIND | STUPID desc:It is a strange yellow growth on the dungeon floor. name:metallic red centipede base:centipede color:r speed:120 hit-points:18 hearing:8 smell:20 armor-class:10 sleepiness:20 depth:3 rarity:1 weight:0 experience:12 blow:CRAWL:HURT:1d2 blow:STING:FIRE:1d2 flags:RAND_25 | BASH_DOOR flags:DROP_SKELETON | WILD_ALL desc:It is about four feet long and carnivorous. name:yellow worm mass base:worm color:y speed:100 hit-points:18 hearing:7 armor-class:4 sleepiness:10 depth:3 rarity:2 weight:0 experience:4 blow:CRAWL:LOSE_DEX:1d3 flags:WEIRD_MIND | MULTIPLY | STUPID flags:RAND_25 | RAND_50 flags:HURT_LIGHT | NO_FEAR desc:It is a large slimy mass of worms. name:clear worm mass base:worm color:w speed:100 hit-points:10 hearing:7 armor-class:1 sleepiness:13 depth:3 rarity:2 weight:0 experience:4 blow:CRAWL:POISON:1d2 flags:WEIRD_MIND | INVISIBLE | MULTIPLY | STUPID flags:RAND_25 | RAND_50 flags:HURT_LIGHT | IM_POIS | NO_FEAR flags:ATTR_CLEAR desc:It is a disgusting mass of poisonous worms. name:radiation eye base:eye color:R speed:110 hit-points:11 hearing:2 armor-class:7 sleepiness:10 depth:3 rarity:1 weight:50 experience:6 blow:GAZE:LOSE_STR:1d6 flags:NEVER_MOVE flags:HURT_LIGHT | NO_FEAR flags:DROP_CORPSE spell-freq:11 spells:DRAIN_MANA desc:A disembodied eye, crackling with energy. name:kobold shaman base:kobold color:r speed:110 hit-points:11 hearing:20 smell:20 armor-class:24 sleepiness:50 depth:3 rarity:1 weight:80 experience:15 blow:HIT:HURT:1d8 flags:DROP_40 flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 spells:WOUND | CONF | HEAL | MISSILE drop-base:magic book:5:1:1 drop-base:prayer book:5:1:1 friends-base:30:1d2:kobold friends-base:70:1d2:kobold desc:It is a kobold dressed in skins and gesturing wildly. ### Dungeon level 4 ### #new 'old' name:jackal base:canine color:U speed:110 hit-points:12 hearing:10 smell:50 armor-class:3 sleepiness:10 #1 depth:4 rarity:2 weight:40 experience:12 blow:BITE:HURT:1d5 flags:DROP_CORPSE | WILD_GRASS | WILD_WOOD spell-freq:10 innate-freq:100 spells:SHRIEK desc:It's growls at you. name:cave lizard base:reptile color:u speed:110 hit-points:11 hearing:8 smell:20 armor-class:19 sleepiness:80 depth:4 rarity:1 weight:10 experience:8 blow:BITE:HURT:1d5 flags:DROP_CORPSE desc:It is an armoured lizard with a powerful bite. name:scout base:person color:W speed:110 hit-points:27 light:2 hearing:20 armor-class:12 sleepiness:50 depth:4 rarity:1 weight:140 experience:18 blow:HIT:HURT:1d5 blow:HIT:HURT:1d5 flags:MALE flags:DROP_60 flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD spell-freq:6 innate-freq:75 spells:BLINK spells:ARROW drop-base:nature book:3:1:1 friends:100:1d1:wild dog:servant desc:An agile hunter, ready and relaxed. name:gallant base:person color:w speed:110 hit-points:27 light:2 hearing:20 armor-class:24 sleepiness:100 depth:4 rarity:1 weight:170 experience:18 blow:HIT:HURT:1d7 blow:HIT:HURT:1d7 flags:MALE flags:DROP_60 flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL spell-freq:9 spells:HEAL drop-base:prayer book:3:1:1 friends-base:20:1d3:person friends-base:40:1d3:person friends-base:80:1d3:person friends:50:1d2:Same desc:An adventurer both devoutly religious and skillful in combat. #how timer should look like (revamp v) name:tamer base:person color:y speed:110 hit-points:20 light:2 hearing:20 armor-class:20 sleepiness:100 depth:4 rarity:1 weight:150 experience:13 blow:HIT:HURT:1d2 blow:HIT:HURT:1d2 flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON friends:10:1d1:giant cockroach:servant friends:10:1d1:large white snake:servant friends:10:1d1:wild dog:servant friends:10:1d1:newt:servant friends:10:1d1:giant green frog:servant friends:10:1d1:salamander:servant friends:10:1d1:cave spider:servant friends:10:1d1:fruit bat:servant friends:10:1d1:wild cat:servant friends:10:1d1:crow:servant friends:10:1d1:viper:servant friends:10:1d1:jackal:servant friends:10:1d1:cave lizard:servant friends:10:1d1:magpie:servant desc:A lover of nature. #was tamer in v; new name name:volkhv base:person color:y speed:110 hit-points:20 light:2 hearing:20 armor-class:20 sleepiness:100 depth:4 rarity:1 weight:150 experience:13 blow:HIT:HURT:1d2 blow:HIT:HURT:1d2 flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:8 spells:S_ANIMAL spells:WOUND drop-base:nature book:5:1:1 desc:A lover of nature. name:healer base:person color:y speed:110 hit-points:20 light:2 hearing:20 armor-class:20 sleepiness:100 depth:4 rarity:2 weight:150 experience:13 blow:HIT:HURT:1d2 blow:HIT:HURT:1d2 flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON flags:IM_LIGHT spell-freq:8 spells:HEAL | SLOW | CONF drop-base:nature book:5:1:1 friends-base:20:1d3:person friends-base:40:1d3:person friends-base:80:1d3:person friends:50:1d2:Same desc:A healer of wounds. name:blue jelly plural:blue jellies base:jelly color:b speed:110 hit-points:54 hearing:2 armor-class:1 sleepiness:99 depth:4 rarity:1 weight:0 experience:14 blow:TOUCH:COLD:1d6 flags:COLD_BLOOD flags:NEVER_MOVE flags:HURT_LIGHT | IM_COLD | NO_CONF | NO_SLEEP desc:It's a large pile of pulsing blue flesh. name:creeping copper coins plural:piles of creeping copper coins base:creeping coins color:u speed:100 hit-points:32 hearing:3 armor-class:28 sleepiness:10 depth:4 rarity:3 weight:0 experience:9 flags:IM_LIGHT blow:HIT:HURT:1d4 blow:TOUCH:POISON:2d4 desc:It appears to be a pile of copper coins. mimic:gold:copper name:giant white rat base:rodent color:W speed:110 hit-points:3 hearing:8 smell:20 armor-class:8 sleepiness:30 depth:4 rarity:1 weight:0 experience:1 blow:BITE:POISON:1d3 flags:MULTIPLY flags:RAND_25 flags:DROP_SKELETON flags:NO_PASS_TREE desc:It is a very vicious rodent. name:blue worm mass base:worm color:b speed:100 hit-points:23 hearing:7 armor-class:14 sleepiness:10 depth:4 rarity:1 weight:0 experience:5 blow:CRAWL:COLD:1d4 flags:COLD_BLOOD | WEIRD_MIND | MULTIPLY | STUPID flags:RAND_25 | RAND_50 flags:HURT_LIGHT | IM_COLD | NO_FEAR desc:It is a large slimy mass of worms. #was name:large grey snake name:anaconda base:snake color:s speed:100 hit-points:27 hearing:6 armor-class:61 sleepiness:100 depth:4 rarity:1 weight:130 experience:14 blow:CRUSH:HURT:1d5 blow:CRUSH:HURT:1d8 flags:RAND_25 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:It is about seventeen feet long... name:kobold archer base:kobold color:W speed:110 hit-points:24 hearing:20 smell:20 armor-class:24 sleepiness:70 depth:4 rarity:1 weight:90 experience:20 blow:HIT:HURT:1d9 flags:DROP_40 flags:DROP_CORPSE | DROP_SKELETON spell-freq:3 innate-freq:100 spells:ARROW drop-base:nature book:5:1:1 friends-base:30:1d2:kobold friends-base:70:1d2:kobold desc:It is an ugly dog-headed humanoid wielding a bow. name:silver mouse plural:silver mice base:rodent color:W speed:110 hit-points:2 hearing:8 smell:20 armor-class:4 sleepiness:20 depth:4 rarity:1 weight:0 experience:1 blow:DEVOUR:EAT_LIGHT blow:BITE:HURT:1d2 flags:MULTIPLY flags:RAND_50 flags:DROP_SKELETON flags:NO_PASS_TREE desc:It is about three feet long with large teeth. As the light of your lamp desc: falls on it, it seems to grow stronger. #was name:raven / removed in v name:magpie base:bird color:D speed:120 hit-points:11 hearing:40 armor-class:14 sleepiness:0 depth:4 rarity:2 weight:50 experience:10 blow:BITE:HURT:1d4 blow:BITE:HURT:1d3 blow:TOUCH:EAT_GOLD flags:DROP_CORPSE | WILD_WOOD # | LEVITATE desc:It is gray except for the black wings and head. desc:It likes shiny items. name:yellow light base:ball color:y speed:120 hit-points:7 light:2 hearing:8 armor-class:14 sleepiness:30 depth:4 rarity:1 weight:0 experience:4 blow:ENGULF:BLIND flags:PWMANG_BASE desc:A fast moving bright light, apparently totally random in its movement. name:snotling base:orc color:M speed:110 hit-points:15 hearing:20 smell:20 armor-class:38 sleepiness:70 depth:4 rarity:1 weight:90 experience:15 blow:HIT:HURT:1d6 flags:PWMANG_BASE flags:DROP_20 | DROP_CORPSE | DROP_SKELETON flags:RAND_50 flags:HURT_LIGHT flags:WILD_WOOD friends:100:2d9:Same desc:Immature orclings, running wild and screaming all the time. name:mindbender base:person color:Y speed:110 hit-points:27 light:2 hearing:20 armor-class:12 sleepiness:20 depth:4 rarity:1 weight:90 experience:18 blow:HIT:HURT:1d6 flags:PWMANG_BASE flags:DROP_40 | DROP_CORPSE | DROP_SKELETON flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD flags:WILD_ALL spell-freq:9 spells:BLIND | CONF | SCARE | SLOW drop-base:psi book:5:1:1 friends-base:20:1d3:person friends-base:40:1d3:person friends-base:80:1d3:person friends:50:1d2:Same desc:A novice in the arts of mind over matter. name:swordfish base:aquatic color:m speed:110 hit-points:28 hearing:14 armor-class:10 sleepiness:20 depth:4 rarity:2 weight:0 experience:15 blow:HIT:HURT:1d5 blow:HIT:HURT:1d5 flags:PWMANG_BASE | WILD_SHORE | WILD_OCEAN flags:COLD_BLOOD desc:A fish with a swordlike "beak". ### Dungeon level 5 ### name:wooden crate base:hybrid color:y speed:90 hit-points:5 hearing:1 armor-class:0 sleepiness:100 depth:5 rarity:1 weight:0 experience:0 flags:NEVER_BLOW flags:FORCE_SLEEP | NEVER_MOVE | STUPID | EMPTY_MIND | PWMANG_BASE flags:COLD_BLOOD flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_DISEN | IM_NETHER flags:IM_COLD | IM_ELEC | IM_POIS | IM_WATER | NO_SLOW | IM_LIGHT flags:DROP_40 spell-freq:100 spells:S_ANIMAL | S_SPIDER | S_MONSTER desc:Crude wooden crate. Small beetle sits on it's lid. name:Baba Yaga base:humanoid color:U speed:120 hit-points:60 hearing:16 armor-class:12 sleepiness:30 depth:5 rarity:3 weight:0 experience:90 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 flags:UNIQUE | FEMALE | PWMANG_FIXED flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:IM_POIS flags:FORCE_DEPTH drop:food:Apple of Youth:100:1:1 drop:food:Apple:100:2:3 friends:100:1d3:rattlesnake:servant spell-freq:7 spells:SHAPECHANGE shape:Vasilisa the Beautiful desc:Haggard ugly dirty old woman with a huge distorted hooked nose and a desc:jutting jaw that shows off her iron teeth. desc:She is skinny, like a skeleton, with a bony leg. desc:She knows how to turn from old into young in a blink of an eye. desc: She likes her ssssnakes. locations:The Mountain Gorge name:Vasilisa the Beautiful base:humanoid color:U speed:115 hit-points:60 hearing:16 armor-class:12 sleepiness:30 depth:5 rarity:0 weight:0 experience:90 blow:HYPNOTIZE:SEDUCE:1d8 blow:HIT:HURT:1d8 flags:UNIQUE | FEMALE flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:SWIM_NORM drop:food:Apple of Youth:100:1:1 drop:food:Apple:100:2:3 desc:Beautiful girl with long hair. She give you a wink.. locations:The Mountain Gorge name:Bullroarer the Hobbit base:humanoid color:U speed:120 hit-points:80 hearing:16 armor-class:12 sleepiness:30 depth:5 rarity:3 weight:0 experience:90 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 flags:UNIQUE | MALE | WANDERER flags:DROP_2 | DROP_GOOD | ONLY_ITEM #friends:80:1d7:scruffy looking hobbit:servant desc:He is a sturdy hobbit who is renowned for his unusual strength and vigour. desc: He can prove a troublesome opponent. name:green naga base:naga color:g speed:110 hit-points:41 hearing:18 armor-class:48 sleepiness:120 depth:5 rarity:1 weight:170 experience:30 blow:CRUSH:HURT:1d8 blow:SPIT:ACID:2d6 flags:DROP_60 flags:RAND_25 | TAKE_ITEM flags:IM_ACID flags:DROP_CORPSE | WILD_SHORE desc:A large green serpent with a female's torso. Her green skin glistens with desc: acid. name:blue ooze base:jelly color:b speed:110 hit-points:8 hearing:8 armor-class:19 sleepiness:80 depth:5 rarity:1 weight:0 experience:7 blow:CRAWL:COLD:1d4 flags:DROP_40 flags:RAND_25 | RAND_50 flags:IM_COLD | NO_CONF | NO_SLEEP desc:It's blue and it's oozing. name:green glutton ghost base:ghost color:g speed:110 hit-points:8 hearing:10 armor-class:24 sleepiness:10 depth:5 rarity:2 weight:0 experience:15 blow:SWALLOW:EAT_FOOD:1d1 blow:SWALLOW:FAMINE:1d1 flags:DROP_40 | DROP_60 flags:RAND_25 | RAND_50 flags-off:IM_COLD desc:It is a very ugly green ghost with a voracious appetite. name:green jelly plural:green jellies base:jelly color:g speed:120 hit-points:99 hearing:2 armor-class:1 sleepiness:99 depth:5 rarity:1 weight:0 experience:18 blow:TOUCH:ACID:1d2 flags:NEVER_MOVE flags:HURT_LIGHT | IM_ACID | HURT_COLD | NO_CONF | NO_SLEEP desc:It is a large pile of pulsing green flesh. name:large kobold base:kobold color:b speed:110 hit-points:65 hearing:20 smell:20 armor-class:48 sleepiness:70 depth:5 rarity:1 weight:100 experience:25 blow:HIT:HURT:1d10 flags:DROP_60 flags:DROP_CORPSE | DROP_SKELETON friends-base:50:1d2:kobold friends-base:30:1d2:kobold desc:It is a man-sized figure with the all too recognizable face of a kobold. name:skeleton kobold base:skeleton color:w speed:110 hit-points:23 hearing:20 armor-class:39 sleepiness:80 depth:5 rarity:1 weight:0 experience:12 blow:HIT:HURT:1d6 flags:EMPTY_MIND flags:OPEN_DOOR | BASH_DOOR desc:It is a small animated kobold skeleton. name:grey icky thing base:icky thing color:s speed:110 hit-points:18 hearing:14 armor-class:14 sleepiness:15 depth:5 rarity:1 weight:50 experience:10 blow:TOUCH:HURT:1d5 flags:EMPTY_MIND flags:DROP_CORPSE desc:It is a smallish, slimy, icky, nasty creature. name:disenchanter eye base:eye color:v speed:100 hit-points:32 hearing:2 armor-class:7 sleepiness:10 depth:5 rarity:2 weight:50 experience:20 blow:GAZE:DISENCHANT flags:NEVER_MOVE flags:HURT_LIGHT | IM_DISEN | NO_FEAR flags:ATTR_MULTI flags:DROP_CORPSE spell-freq:9 spells:DRAIN_MANA desc:A disembodied eye, crackling with magic. name:red worm mass base:worm color:r speed:100 hit-points:23 hearing:7 armor-class:14 sleepiness:10 depth:5 rarity:1 weight:0 experience:6 blow:CRAWL:FIRE:1d6 flags:WEIRD_MIND | MULTIPLY | STUPID flags:RAND_25 | RAND_50 | BASH_DOOR flags:HURT_LIGHT | IM_FIRE | NO_FEAR desc:It is a large slimy mass of worms. name:giant leech base:worm color:u speed:120 hit-points:30 hearing:10 armor-class:20 sleepiness:50 depth:5 rarity:2 weight:30 experience:20 blow:BITE:HURT:4d1 blow:BITE:HURT:3d3 flags:ANIMAL | AQUATIC | WEIRD_MIND | RAND_25 | IM_WATER desc:Yech! The disgusting thing only wants your blood! name:copperhead snake base:snake color:o speed:110 hit-points:14 hearing:6 armor-class:30 sleepiness:10 depth:5 rarity:1 weight:20 experience:15 blow:BITE:POISON:2d4 flags:RAND_50 flags:IM_POIS flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:It has a copper head and sharp venomous fangs. name:giant white dragon fly plural:giant white dragon flies base:dragon fly color:w speed:110 hit-points:14 hearing:12 armor-class:30 sleepiness:1 depth:5 rarity:2 weight:0 experience:15 blow:BITE:COLD:1d6 flags:IM_COLD flags:WILD_WASTE | WILD_GLACIER spell-freq:10 innate-freq:100 spells:BR_COLD desc:It is a large fly that drips frost. name:giant green dragon fly plural:giant green dragon flies base:dragon fly color:g speed:110 hit-points:14 hearing:12 armor-class:30 sleepiness:1 depth:5 rarity:2 weight:0 experience:16 blow:BITE:POISON:1d6 flags:RAND_25 flags:IM_POIS flags:WILD_SWAMP spell-freq:10 innate-freq:100 spells:BR_POIS desc:A vast, foul-smelling dragonfly. name:rot jelly plural:rot jellies base:jelly color:u speed:120 hit-points:90 hearing:2 armor-class:36 sleepiness:99 depth:5 rarity:1 weight:0 experience:15 blow:SWALLOW:EAT_FOOD:2d3 blow:TOUCH:LOSE_CHR:2d3 flags:NEVER_MOVE flags:HURT_LIGHT | IM_POIS | NO_CONF | NO_SLEEP | HURT_COLD desc:It is a large pile of rotting flesh, whose touch spoils your food. The desc: terrible smell it exudes is also very hard to get rid of... name:newborn dragon base:dragon color:t speed:110 hit-points:50 hearing:20 armor-class:24 sleepiness:70 depth:5 rarity:2 weight:175 experience:15 blow:CLAW:HURT:1d3 blow:BITE:HURT:1d4 flags:DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR desc:This hatchling dragon is very soft, its eyes unaccustomed to light and its desc: scales without particular color. ### Dungeon level 6 ### name:purple mushroom patch plural:purple mushroom patches base:mushroom color:P speed:110 hit-points:1 hearing:2 armor-class:1 sleepiness:0 depth:6 rarity:2 weight:0 experience:15 blow:SPORE:LOSE_CON:1d2 blow:SPORE:LOSE_CON:1d2 blow:SPORE:LOSE_CON:1d2 flags:NEVER_MOVE desc:Yum! It looks quite tasty. name:brown mold base:mold color:u speed:110 hit-points:68 hearing:2 armor-class:14 sleepiness:99 depth:6 rarity:1 weight:0 experience:20 blow:SPORE:CONFUSE:1d4 flags:EMPTY_MIND | STUPID desc:A strange brown growth on the dungeon floor. name:giant brown bat base:bat color:u speed:130 hit-points:14 hearing:10 armor-class:18 sleepiness:30 depth:6 rarity:1 weight:60 experience:10 blow:BITE:HURT:1d3 flags:RAND_50 flags:DROP_CORPSE | WILD_WOOD | WILD_MOUNTAIN desc:It screeches as it attacks. name:creeping silver coins plural:piles of creeping silver coins base:creeping coins color:s speed:100 hit-points:54 hearing:4 armor-class:36 sleepiness:10 depth:6 rarity:3 weight:0 experience:18 flags:IM_LIGHT blow:HIT:HURT:1d6 blow:TOUCH:POISON:2d6 desc:It appears to be a pile of silver coins. mimic:gold:silver name:snaga base:orc color:U speed:110 hit-points:36 hearing:20 smell:20 armor-class:48 sleepiness:70 depth:6 rarity:1 weight:160 experience:15 blow:HIT:HURT:1d8 flags:DROP_20 flags:HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL spell-freq:15 innate-freq:100 spells:ARROW friends:30:1d3:crow friends:100:2d9:Same desc:He is one of the many weaker 'slave' orcs, often mistakenly known as a desc: goblin. name:rattlesnake base:snake color:r speed:110 hit-points:24 hearing:6 armor-class:36 sleepiness:10 depth:6 rarity:1 weight:20 experience:20 blow:BITE:POISON:2d5 flags:RAND_50 flags:IM_POIS flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:It is recognized by the hard-scaled end of its body that is often rattled desc: to frighten its prey. name:giant black dragon fly plural:giant black dragon flies base:dragon fly color:s speed:120 hit-points:14 hearing:12 armor-class:30 sleepiness:1 depth:6 rarity:2 weight:0 experience:18 flags:NEVER_BLOW | RAND_25 flags:IM_ACID flags:WILD_SWAMP spell-freq:10 innate-freq:100 spells:BR_ACID desc:The size of a large bird, this fly drips caustic acid. name:giant gold dragon fly plural:giant gold dragon flies base:dragon fly color:y speed:120 hit-points:14 hearing:12 armor-class:30 sleepiness:1 depth:6 rarity:2 weight:0 experience:18 blow:BITE:HURT:1d3 flags:RAND_25 flags:IM_FIRE | NO_STUN flags:WILD_MOUNTAIN spell-freq:10 innate-freq:100 spells:BR_SOUN desc:Large beating wings support this dazzling insect. A loud buzzing noise desc: pervades the air. name:death sword base:object mimic glyph:| color:W speed:120 hit-points:32 hearing:20 armor-class:48 sleepiness:0 depth:6 rarity:5 weight:0 experience:30 blow:HIT:HALLU:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:NONLIVING | PWMANG_BASE flags:IM_COLD | IM_FIRE | IM_ELEC | IM_POIS desc:A bloodthirsty blade lurking for prey. Beware! mimic:sword:Short Sword mimic:sword:Long Sword mimic:sword:Broad Sword mimic:sword:Bastard Sword name:giant slug base:worm color:u speed:100 hit-points:60 hearing:10 armor-class:30 sleepiness:25 depth:6 rarity:1 weight:60 experience:25 blow:BITE:ACID:2d4 blow:BITE:ACID:2d6 flags:WEIRD_MIND | PWMANG_BASE flags:DROP_CORPSE flags:KILL_ITEM | KILL_BODY flags:WILD_ALL spell-freq:10 innate-freq:100 spells:BR_ACID desc:It is slowly making its way towards you, eating everything in its path... ### Dungeon level 7 ### #v name:crow of Durthang plural:crows of Durthang base:bird color:s speed:120 hit-points:12 hearing:40 armor-class:14 sleepiness:0 depth:7 rarity:3 weight:50 experience:10 blow:BITE:HURT:1d3 blow:BITE:HURT:1d2 flags:DROP_CORPSE | WILD_WOOD spell-freq:9 spell-power:4 spells:WOUND desc:A crook-beaked bird with bedraggled black feathers. It mocks you, and you desc: realise that its scorn can kill. name:cave orc base:orc color:G speed:110 hit-points:55 hearing:20 smell:20 armor-class:48 sleepiness:70 depth:7 rarity:1 weight:190 experience:20 blow:HIT:HURT:1d8 flags:DROP_20 flags:HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON spell-freq:13 innate-freq:100 spells:ARROW friends:50:1d8:snaga friends:100:2d6:Same desc:He is often found in huge numbers in deep caves. name:wood spider base:spider color:U speed:120 hit-points:11 hearing:8 armor-class:19 sleepiness:80 depth:7 rarity:3 weight:0 experience:15 blow:BITE:HURT:1d3 blow:STING:POISON:1d4 flags:ANIMAL | WEIRD_MIND flags:IM_POIS | GROUP_AI flags:DROP_SKELETON | WILD_WOOD friends:100:2d7:Same desc:It scuttles towards you. #removed in V name:manes plural:manes base:minor demon color:u speed:110 hit-points:36 hearing:20 armor-class:48 sleepiness:80 depth:7 #2 rarity:3 weight:0 experience:16 blow:HIT:HURT:1d8 flags:OPEN_DOOR | BASH_DOOR flags:NO_FEAR friends:100:2d7:Same desc:It is a minor but aggressive demon. name:bloodshot eye base:eye color:r speed:110 hit-points:45 hearing:2 armor-class:7 sleepiness:10 depth:7 rarity:3 weight:55 experience:15 blow:GAZE:BLIND:2d6 flags:NEVER_MOVE flags:HURT_LIGHT | NO_FEAR flags:DROP_CORPSE spell-freq:7 spells:DRAIN_MANA desc:A disembodied eye, bloodshot and nasty. name:red naga base:naga color:r speed:110 hit-points:50 hearing:20 armor-class:48 sleepiness:120 depth:7 rarity:2 weight:180 experience:40 blow:CRUSH:HURT:1d10 blow:BITE:LOSE_STR:1d4 flags:DROP_60 flags:RAND_25 | TAKE_ITEM flags:DROP_CORPSE | WILD_SHORE desc:A large red snake with a woman's torso. name:red jelly plural:red jellies base:jelly color:r speed:110 hit-points:117 hearing:2 armor-class:1 sleepiness:99 depth:7 rarity:1 weight:0 experience:26 blow:TOUCH:LOSE_STR:1d5 flags:NEVER_MOVE flags:HURT_LIGHT | HURT_COLD | NO_CONF | NO_SLEEP desc:It is a large pulsating mound of red flesh. name:giant red frog base:reptile color:r speed:110 hit-points:23 hearing:12 smell:20 armor-class:19 sleepiness:50 depth:7 rarity:1 weight:20 experience:16 blow:BITE:LOSE_STR:2d4 flags:RAND_50 | BASH_DOOR flags:DROP_CORPSE | WILD_SHORE | WILD_SWAMP desc:It looks poisonous. name:green icky thing base:icky thing color:g speed:110 hit-points:23 hearing:14 armor-class:14 sleepiness:20 depth:7 rarity:2 weight:50 experience:18 blow:TOUCH:ACID:2d5 flags:EMPTY_MIND flags:IM_ACID flags:DROP_CORPSE desc:It is a smallish, slimy, icky, acidic creature. name:zombified kobold base:zombie color:s speed:110 hit-points:27 hearing:20 armor-class:21 sleepiness:100 depth:7 rarity:1 weight:0 experience:14 blow:HIT:HURT:1d2 blow:HIT:HURT:1d2 flags:EMPTY_MIND flags:NO_FEAR desc:It is an animated kobold corpse. Flesh falls off in large chunks as it desc: shambles forward. name:lost soul base:ghost color:B speed:110 hit-points:9 hearing:12 armor-class:12 sleepiness:10 depth:7 rarity:2 weight:0 experience:18 blow:HIT:HURT:2d2 blow:TOUCH:LOSE_WIS flags:DROP_40 | DROP_60 flags:RAND_50 | TAKE_ITEM spell-freq:15 spells:DRAIN_MANA | TPORT desc:It is almost insubstantial. name:dark elf plural:dark elves base:humanoid color:D speed:110 hit-points:39 hearing:20 armor-class:24 sleepiness:40 depth:7 rarity:2 weight:120 experience:25 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 flags:MALE | EVIL flags:DROP_60 flags:HURT_LIGHT flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:10 spells:CONF | DARKNESS desc:An elven figure with jet black skin and white hair, his eyes are large and desc: twisted with evil. name:night lizard base:reptile color:b speed:110 hit-points:18 hearing:20 smell:20 armor-class:19 sleepiness:30 depth:7 rarity:2 weight:40 experience:35 blow:BITE:HURT:1d6 blow:BITE:HURT:1d6 flags:DROP_CORPSE | WILD_ALL desc:It is a black lizard with overlapping scales and a powerful jaw. name:Mughash the Kobold Lord base:kobold color:v speed:110 hit-points:150 hearing:20 smell:20 armor-class:30 sleepiness:40 depth:7 rarity:3 weight:0 experience:100 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 flags:UNIQUE | MALE | MOVE_BODY flags:DROP_1 | DROP_GOOD | ONLY_ITEM friends:100:1d10:small kobold:servant friends:100:1d10:kobold:servant friends:100:1d3:kobold shaman:servant friends:100:1d5:kobold archer:servant friends:100:1d5:large kobold:bodyguard desc:Strong and powerful, for a kobold. name:crypt creep base:skeleton color:D speed:110 hit-points:27 hearing:20 armor-class:30 sleepiness:70 depth:7 rarity:2 weight:0 experience:25 blow:CLAW:HURT:1d2 blow:CLAW:HURT:1d2 blow:BITE:POISON flags:PWMANG_BASE flags:RAND_25 | OPEN_DOOR | BASH_DOOR flags:HURT_LIGHT spell-freq:10 spells:WOUND spells:S_UNDEAD friends:100:4d4:Same desc:A frightening skeletal figure in a black robe. name:Vort the Kobold Queen base:kobold color:p speed:110 hit-points:120 light:2 hearing:20 smell:20 armor-class:24 sleepiness:40 depth:7 rarity:3 weight:0 experience:100 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 flags:UNIQUE | FEMALE | PWMANG_BASE | MOVE_BODY flags:ONLY_ITEM | DROP_1 | DROP_GOOD spell-freq:6 spells:WOUND | CONF | HEAL | MISSILE friends:100:1d10:small kobold:servant friends:100:1d10:kobold:servant friends:100:1d5:kobold shaman:servant friends:100:1d3:kobold archer:servant friends:100:1d5:large kobold:bodyguard desc:Where Mughash is the strongest of his kind, his consort Vort is the wisest: desc: she is her tribe's chief shamaness. name:barracuda base:aquatic color:M speed:110 hit-points:54 hearing:20 armor-class:45 sleepiness:20 depth:7 rarity:2 weight:0 experience:30 blow:BITE:HURT:1d8 blow:BITE:HURT:1d8 flags:PWMANG_BASE | WILD_SHORE | WILD_OCEAN flags:COLD_BLOOD desc:A predatory fish with razor-sharp teeth. ### Dungeon level 8 ### name:Wormtongue, Agent of Saruman base:person color:B speed:110 hit-points:250 hearing:20 armor-class:45 sleepiness:10 depth:8 rarity:1 weight:0 experience:150 blow:HIT:HURT:1d5 blow:HIT:HURT:1d5 blow:TOUCH:EAT_GOLD blow:INSULT flags:UNIQUE | MALE | EVIL flags:DROP_1 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM flags:FORCE_SLEEP drop:food:Salted Pork from Isengard:100:1:1 spell-freq:5 spells:HEAL | SLOW | TRAPS spells:BA_POIS spells:BO_COLD desc:He's been spying for Saruman. He is a snivelling wretch with no morals and desc: disgusting habits. name:Lagduf, the Snaga base:orc color:y speed:110 hit-points:190 hearing:20 smell:20 armor-class:48 sleepiness:50 depth:8 rarity:2 weight:0 experience:80 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 blow:HIT:HURT:1d9 blow:HIT:HURT:1d9 flags:UNIQUE flags:DROP_1 | DROP_GOOD | ONLY_ITEM friends:80:2d7:wolf friends:100:5d4:snaga:servant desc:A captain of a regiment of weaker orcs, Lagduf keeps his troop in order desc: with displays of excessive violence. #v name:terrified yeek base:yeek color:u speed:110 hit-points:18 hearing:18 smell:20 armor-class:21 sleepiness:10 depth:8 rarity:1 weight:80 experience:11 flags:DROP_40 | FRIGHTENED | NEVER_BLOW flags:DROP_CORPSE spell-freq:9 innate-freq:100 spells:SHRIEK desc:It is a strange small humanoid in a constant state of extreme terror. #was name:brown yeek / removed in V name:brave yeek base:yeek color:u speed:115 hit-points:15 hearing:18 smell:20 armor-class:10 sleepiness:10 depth:8 rarity:4 weight:80 experience:15 blow:HIT:HURT:1d4 flags:DROP_40 flags:DROP_CORPSE flags:NO_FEAR spell-freq:7 spells:SCARE desc:It is a strange small humanoid. He looks hectic. desc:He scares you with his recklessness. name:giant salamander base:reptile color:y speed:110 hit-points:24 hearing:6 smell:20 armor-class:60 sleepiness:80 depth:8 rarity:1 weight:60 experience:50 blow:BITE:FIRE:3d6 flags:RAND_25 flags:IM_FIRE flags:FORCE_SLEEP flags:DROP_CORPSE | WILD_DESERT spell-freq:9 innate-freq:100 spells:BR_FIRE desc:A large black and yellow lizard. You'd better run away! name:green mold base:mold color:g speed:110 hit-points:95 hearing:2 armor-class:16 sleepiness:75 depth:8 rarity:1 weight:0 experience:28 blow:SPORE:TERRIFY:1d4 flags:EMPTY_MIND | STUPID flags:IM_ACID desc:It is a strange growth on the dungeon floor. name:skeleton orc base:skeleton color:w speed:110 hit-points:45 hearing:20 armor-class:54 sleepiness:70 depth:8 rarity:1 weight:0 experience:26 blow:HIT:HURT:2d5 flags:ORC | EMPTY_MIND flags:OPEN_DOOR | BASH_DOOR desc:It is an animated orc skeleton. name:lemure base:minor demon color:U speed:110 hit-points:65 hearing:20 armor-class:48 sleepiness:80 depth:8 rarity:3 weight:0 experience:16 blow:HIT:HURT:1d8 flags:OPEN_DOOR | BASH_DOOR flags:NO_FEAR friends:100:2d7:Same desc:It is the larval form of a major demon. desc:A minor but aggressive one... #v name:orc tracker base:orc color:u speed:110 hit-points:55 hearing:40 smell:50 armor-class:40 sleepiness:20 depth:8 rarity:1 weight:200 experience:25 blow:HIT:HURT:1d8 flags:DROP_20 flags:HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON spell-freq:12 innate-freq:100 spells:ARROW desc:A small orc with wide and snuffling nostrils. #removed in V name:hill orc base:orc color:u speed:110 hit-points:65 hearing:20 smell:20 armor-class:48 sleepiness:70 depth:8 #1 rarity:3 weight:200 experience:25 blow:HIT:HURT:1d10 flags:DROP_20 flags:DROP_CORPSE | DROP_SKELETON friends:30:1d8:crow friends:50:1d8:wolf friends:100:2d6:Same desc:He is a hardy well-weathered survivor. #v name:ruffian base:person color:s speed:110 hit-points:36 hearing:20 armor-class:28 sleepiness:10 depth:8 rarity:2 weight:150 experience:26 blow:HIT:HURT:2d4 blow:HIT:HURT:2d4 flags:MALE | EVIL flags:DROP_1 flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD spell-freq:8 innate-freq:100 spells:SHOT | WHIP drop-base:shadow book:5:1:1 desc:An uncultured brute with a club, a sling and a whip. name:bandit base:person color:b speed:110 hit-points:36 hearing:20 armor-class:28 sleepiness:10 depth:8 #2 rarity:3 weight:150 experience:26 blow:HIT:HURT:2d4 blow:TOUCH:EAT_GOLD flags:MALE | EVIL flags:DROP_1 flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD spell-freq:12 spells:BLINK drop:scroll:Phase Door:45:1:2 desc:He is after your cash! name:rotting corpse base:zombie color:R speed:110 hit-points:36 hearing:20 armor-class:30 sleepiness:90 depth:8 rarity:1 weight:0 experience:15 blow:CLAW:POISON:1d3 blow:CLAW:POISON:1d3 flags:PWMANG_BASE | EMPTY_MIND flags:NO_FEAR friends:100:4d4:Same desc:Corpses awakened from their sleep by dark sorcery. #removed in V name:nighthawk base:bird color:u speed:120 hit-points:36 hearing:30 armor-class:30 sleepiness:10 depth:8 #2 rarity:3 weight:80 experience:22 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d3 blow:BITE:HURT:1d4 flags:NO_FEAR flags:DROP_CORPSE | WILD_WOOD desc:Trained to hunt and kill without fear. name:phantom warrior base:phantom warrior color:T speed:110 hit-points:15 hearing:20 armor-class:20 sleepiness:40 depth:8 rarity:1 weight:0 experience:15 blow:HIT:HURT:1d11 blow:HIT:HURT:1d11 flags:PWMANG_BASE | EMPTY_MIND flags:NO_FEAR friends:100:2d5:Same desc:Spectral creatures that are half-real, half illusion. ### Dungeon level 9 ### #was name:giant black louse name:giant body louse plural:giant body lice base:insect color:D #120 speed:110 hit-points:2 hearing:6 armor-class:8 sleepiness:10 depth:9 rarity:1 weight:0 experience:3 blow:BITE:HURT:1d2 desc:It makes you itch just to look at it. name:yeti plural:yeti base:yeti color:w speed:110 hit-points:55 hearing:20 smell:20 armor-class:36 sleepiness:30 depth:9 rarity:3 weight:350 experience:30 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d3 blow:BITE:HURT:1d4 flags:DROP_CORPSE | DROP_SKELETON | WILD_MOUNTAIN desc:A large white figure covered in shaggy fur. name:bloodshot icky thing base:icky thing color:r speed:110 hit-points:32 hearing:14 armor-class:21 sleepiness:20 depth:9 rarity:3 weight:60 experience:24 blow:TOUCH:HURT:1d4 blow:CRAWL:ACID:2d4 flags:EMPTY_MIND flags:DROP_CORPSE spell-freq:11 spells:DRAIN_MANA desc:It is a strange, slimy, icky creature. name:giant grey rat base:rodent color:s speed:110 hit-points:4 hearing:8 smell:20 armor-class:14 sleepiness:20 depth:9 rarity:1 weight:0 experience:2 blow:BITE:POISON:1d4 flags:MULTIPLY flags:RAND_25 flags:DROP_SKELETON flags:NO_PASS_TREE desc:It is a rodent of unusual size. name:black harpy plural:black harpies base:hybrid color:D speed:120 hit-points:14 hearing:16 smell:20 armor-class:26 sleepiness:10 depth:9 rarity:1 weight:60 experience:19 blow:CLAW:HURT:1d2 blow:CLAW:HURT:1d2 blow:BITE:HURT:1d3 flags:FEMALE | EVIL | ANIMAL | LEVITATE flags:RAND_25 flags:DROP_CORPSE | WILD_MOUNTAIN | HYBRID desc:A woman's face on the body of a vicious black bird. name:orc shaman base:orc color:r speed:110 hit-points:41 hearing:20 smell:20 armor-class:22 sleepiness:50 depth:9 rarity:1 weight:160 experience:30 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 flags:DROP_60 flags:HURT_LIGHT flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:8 spells:BLINK | WOUND | MISSILE drop-base:magic book:5:1:1 drop-base:prayer book:5:1:1 desc:An orc dressed in skins who gestures wildly. name:baby blue dragon base:dragon color:b speed:110 hit-points:88 hearing:20 armor-class:36 sleepiness:70 depth:9 rarity:2 weight:400 experience:35 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d3 blow:BITE:HURT:1d5 flags:DROP_40 | DROP_1 | ONLY_GOLD flags:OPEN_DOOR | BASH_DOOR flags:IM_ELEC flags:DROP_CORPSE spell-freq:12 innate-freq:100 spells:BR_ELEC desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales a pale blue. name:baby white dragon base:dragon color:w speed:110 hit-points:88 hearing:20 armor-class:36 sleepiness:70 depth:9 rarity:2 weight:400 experience:35 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d3 blow:BITE:HURT:1d5 flags:DROP_40 | DROP_1 | ONLY_GOLD flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD flags:DROP_CORPSE | WILD_GLACIER spell-freq:12 innate-freq:100 spells:BR_COLD desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales a pale white. name:baby green dragon base:dragon color:g speed:110 hit-points:88 hearing:20 armor-class:36 sleepiness:70 depth:9 rarity:2 weight:400 experience:35 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d3 blow:BITE:HURT:1d5 flags:DROP_40 | DROP_1 | ONLY_GOLD flags:OPEN_DOOR | BASH_DOOR flags:IM_POIS flags:DROP_CORPSE spell-freq:12 innate-freq:100 spells:BR_POIS desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales a sickly green. name:giant red ant base:ant color:r speed:110 hit-points:18 hearing:12 smell:20 armor-class:40 sleepiness:60 depth:9 rarity:2 weight:0 experience:22 blow:BITE:HURT:1d4 blow:STING:LOSE_STR:1d4 flags:DROP_SKELETON | WILD_ALL desc:It is large and has venomous mandibles. name:Mutant squire base:person color:U speed:110 hit-points:110 light:2 hearing:20 armor-class:37 sleepiness:40 depth:9 rarity:7 weight:0 experience:100 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 flags:MALE flags:OPEN_DOOR desc:A nasty piece of work of unknown mage. name:Brodda, the Easterling base:person color:U speed:110 hit-points:210 light:2 hearing:20 armor-class:37 sleepiness:40 depth:9 rarity:2 weight:0 experience:100 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 flags:UNIQUE | MALE flags:DROP_1 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR desc:A nasty piece of work, Brodda picks on defenseless women and children. name:king cobra base:snake color:g speed:110 hit-points:44 hearing:8 armor-class:45 sleepiness:10 depth:9 rarity:2 weight:30 experience:28 blow:SPIT:BLIND:1d2 blow:BITE:POISON:3d4 flags:RAND_50 flags:IM_POIS flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD | WILD_SWAMP spell-freq:4 innate-freq:100 spells:SPIT desc:It is a large snake with a hooded face. name:cave bear base:quadruped color:u speed:110 hit-points:36 hearing:10 smell:20 armor-class:52 sleepiness:30 depth:9 rarity:1 weight:300 experience:25 blow:CLAW:HURT:1d6 blow:CLAW:HURT:1d6 blow:BITE:HURT:1d8 flags:ANIMAL flags:RAND_25 flags:DROP_CORPSE | WILD_WOOD | WILD_MOUNTAIN desc:A large bear appears to have made its home in this cave. It is hungry, and desc: you are trespassing in its territory. name:rock mole base:rodent color:m speed:110 hit-points:55 hearing:20 smell:20 armor-class:36 sleepiness:75 depth:9 rarity:2 weight:6 experience:25 blow:BITE:HURT:1d10 blow:BITE:HURT:1d10 flags:WEIRD_MIND | PWMANG_BASE flags:DROP_CORPSE | DROP_SKELETON flags:BASH_DOOR | KILL_WALL | KILL_ITEM desc:Despite its unimpressive size, this mole creature has fangs powerful enough desc: to bore through solid rock. name:Bloodfang, the Wolf base:canine color:R speed:120 hit-points:48 hearing:30 smell:50 armor-class:30 sleepiness:20 depth:9 rarity:4 weight:0 experience:30 blow:BITE:HURT:1d12 blow:BITE:HURT:1d12 flags:BASH_DOOR | WILD_GRASS | WILD_WOOD | PWMANG_BASE flags:UNIQUE | MALE drop:food:Scrap of Flesh:30:1:1 desc:It has been terrorizing the nearby villages. name:war bear base:quadruped color:m speed:110 hit-points:55 hearing:10 smell:20 armor-class:52 sleepiness:30 depth:9 rarity:1 weight:200 experience:25 blow:CLAW:HURT:1d4 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d6 flags:ANIMAL | WEIRD_MIND | PWMANG_BASE flags:DROP_CORPSE | DROP_SKELETON friends:100:4d4:Same desc:Bears with tusks, trained to kill. name:killer bee base:stinger color:Y speed:120 hit-points:5 hearing:12 armor-class:41 sleepiness:10 depth:9 rarity:2 weight:0 experience:22 blow:STING:POISON:1d4 blow:STING:LOSE_STR:1d4 flags:WILD_ALL | PWMANG_BASE friends:100:2d7:Same desc:It is poisonous and aggressive. name:hydra base:hydra color:s speed:110 hit-points:100 hearing:20 armor-class:80 sleepiness:90 depth:9 rarity:2 weight:350 experience:40 blow:BITE:HURT:2d6 flags:DROP_1 flags:MOVE_BODY flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP desc:A strange reptilian hybrid. ########## DUNGEON LEVELS 10-19 ########## ### Dungeon level 10 ### name:abandoned cook pot base:hybrid color:y speed:90 hit-points:1 hearing:1 armor-class:0 sleepiness:90 depth:10 rarity:1 weight:0 experience:0 flags:NEVER_BLOW flags:FORCE_SLEEP | NEVER_MOVE | STUPID | EMPTY_MIND | PWMANG_BASE flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_DISEN | IM_NETHER flags:IM_COLD | IM_ELEC | IM_POIS | IM_WATER | NO_SLOW | IM_LIGHT flags:DROP_60 spell-freq:100 spells:S_MONSTER desc:Some one made a meal there.. It's sad but pot is empty. desc: But it seems that it's owners could be nearby... name:strange dry tree base:tree color:g speed:110 hit-points:500 light:-2 hearing:40 armor-class:45 sleepiness:20 depth:10 #1 rarity:3 weight:400 experience:45 blow:CRUSH:HURT:1d6 blow:CRUSH:HURT:1d6 blow:CRUSH:HURT:1d6 flags:DROP_40 | NO_SLEEP | NO_CONF | WEIRD_MIND | HURT_FIRE | PWMANG_BASE flags:IM_WATER | IM_COLD | NEVER_MOVE spell-freq:8 innate-freq:100 spells:WHIP desc:Just an ancient dry tree.. WAIT! Its just moved! name:baby black dragon base:dragon color:s speed:110 hit-points:97 hearing:20 armor-class:36 sleepiness:70 depth:10 rarity:2 weight:400 experience:40 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d5 flags:DROP_40 | DROP_1 | ONLY_GOLD flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID flags:DROP_CORPSE spell-freq:12 innate-freq:100 spells:BR_ACID desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales a dull black. name:baby red dragon base:dragon color:r speed:110 hit-points:97 hearing:20 armor-class:36 sleepiness:70 depth:10 rarity:2 weight:400 experience:40 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d5 flags:DROP_40 | DROP_1 | ONLY_GOLD flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE flags:DROP_CORPSE | WILD_DESERT spell-freq:12 innate-freq:100 spells:BR_FIRE desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales a pale red. name:baby gold dragon base:dragon color:y speed:110 hit-points:97 hearing:20 armor-class:36 sleepiness:70 depth:10 rarity:2 weight:400 experience:40 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d5 flags:DROP_40 | DROP_1 | ONLY_GOLD flags:OPEN_DOOR | BASH_DOOR | NO_STUN flags:DROP_CORPSE flags:IM_LIGHT spell-freq:12 innate-freq:100 spells:BR_SOUN desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales a pale gold. name:giant spider base:spider color:V speed:110 hit-points:55 hearing:8 armor-class:24 sleepiness:40 depth:10 rarity:2 weight:0 experience:35 blow:BITE:HURT:1d10 blow:BITE:POISON:1d6 blow:BITE:POISON:1d6 blow:BITE:HURT:1d10 flags:ANIMAL | WEIRD_MIND flags:IM_POIS flags:DROP_SKELETON | WILD_ALL spell-freq:10 innate-freq:100 spells:WEAVE desc:It is a vast black spider whose bulbous body is bloated with poison. name:dark elven mage base:humanoid color:r speed:120 hit-points:39 hearing:20 armor-class:24 sleepiness:30 depth:10 rarity:1 weight:120 experience:50 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 flags:MALE | EVIL flags:DROP_60 | ONLY_ITEM flags:HURT_LIGHT flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 spells:BLIND | CONF | DARKNESS | MISSILE spells:BA_POIS drop-base:magic book:10:1:1 desc:A dark elven figure, dressed all in black, hurling spells at you. name:Orfax, Son of Boldor base:yeek color:B speed:120 hit-points:120 hearing:18 smell:20 armor-class:24 sleepiness:10 depth:10 rarity:3 weight:0 experience:80 blow:HIT:HURT:1d9 blow:HIT:HURT:1d8 blow:INSULT blow:INSULT flags:UNIQUE | MALE | EVIL | SMART flags:DROP_1 | DROP_GOOD | ONLY_ITEM flags:FORCE_SLEEP spell-freq:4 spells:BLINK | CONF | HEAL | SLOW | TELE_TO spells:S_MONSTER friends:50:2d5:terrified yeek:servant friends:50:1d3:brave yeek:servant friends:100:2d5:blue yeek:servant friends:50:1d3:master yeek:servant desc:He's just like his daddy! He knows mighty spells, but fortunately he is a desc: yeek. name:dark elven warrior base:humanoid color:u speed:110 hit-points:60 hearing:20 armor-class:24 sleepiness:40 depth:10 rarity:1 weight:140 experience:50 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 flags:MALE | EVIL flags:DROP_60 flags:HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON flags:SWIM_NORM desc:A dark elven figure in armour and ready with his sword. name:clear mushroom patch plural:clear mushroom patches base:mushroom color:w speed:120 hit-points:1 hearing:4 armor-class:1 sleepiness:0 depth:10 rarity:2 weight:0 experience:3 blow:SPORE:HURT:1d1 flags:COLD_BLOOD | INVISIBLE | MULTIPLY flags:NEVER_MOVE flags:ATTR_CLEAR desc:Yum! It looks quite tasty. #name:Yargash, youngest of chieftain name:Solovei the Robber base:orc color:Y speed:110 hit-points:240 hearing:20 smell:20 armor-class:90 sleepiness:40 depth:12 rarity:3 weight:0 experience:230 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 flags:UNIQUE | PWMANG_FIXED | FORCE_DEPTH | MALE flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:IM_COLD | IM_ELEC | IM_POIS drop:mushroom:Hallucination:100:7:9 friends:50:4d4:snaga:servant friends:80:2d7:warg:servant friends:100:5d4:hill orc:servant desc:A new leader of a band of raiding orcs. locations:The Orc Cave name:Grishnukh, the Hill Orc base:orc color:y speed:110 hit-points:230 hearing:20 smell:20 armor-class:30 sleepiness:50 depth:10 rarity:3 weight:0 experience:160 blow:HIT:HURT:1d12 blow:HIT:HURT:1d10 blow:HIT:HURT:1d12 blow:HIT:HURT:1d10 flags:UNIQUE flags:DROP_1 | DROP_GOOD | ONLY_ITEM drop:food:Scrap of Flesh:90:1:1 friends:50:2d5:snaga:servant friends:80:2d7:wolf friends:90:5d4:orc tracker:servant friends:10:5d4:hill orc:servant desc:He is a cunning and devious orc with a chaotic nature. name:giant white tick base:spider color:w speed:100 hit-points:54 hearing:12 armor-class:150 sleepiness:20 depth:10 rarity:2 weight:0 experience:27 blow:BITE:POISON:2d6 flags:ANIMAL | WEIRD_MIND | LEVITATE flags:IM_POIS desc:It is moving slowly towards you. name:hairy mold base:mold color:o speed:110 hit-points:68 hearing:2 armor-class:22 sleepiness:0 depth:10 rarity:1 weight:0 experience:32 blow:SPORE:POISON:1d3 flags:EMPTY_MIND | STUPID desc:It is a strange hairy growth on the dungeon floor. name:disenchanter mold base:mold color:v speed:110 hit-points:72 hearing:2 armor-class:30 sleepiness:10 depth:10 rarity:1 weight:0 experience:40 blow:SPORE:DISENCHANT:1d6 flags:EMPTY_MIND | STUPID flags:IM_DISEN flags:ATTR_MULTI spell-freq:11 spells:DRAIN_MANA desc:It is a strange glowing growth on the dungeon floor. name:tengu plural:tengu base:minor demon color:B speed:120 hit-points:80 hearing:20 armor-class:38 sleepiness:30 depth:10 rarity:1 weight:0 experience:40 blow:HIT:HURT:1d8 flags:OPEN_DOOR | BASH_DOOR flags:NO_FEAR | LEVITATE spell-freq:3 spells:BLINK | TELE_TO desc:It is a fast-moving demon that blinks quickly in and out of existence; no desc: other demon matches its teleporting mastery. name:creeping gold coins plural:piles of creeping gold coins base:creeping coins color:y speed:100 hit-points:81 hearing:5 armor-class:43 sleepiness:10 depth:10 rarity:3 weight:0 experience:32 blow:HIT:HURT:2d5 blow:TOUCH:POISON:3d5 flags:IM_ACID | IM_LIGHT desc:It appears to be a pile of gold coins, until it starts crawling towards you desc: on tiny legs. mimic:gold:gold name:wolf plural:wolves base:canine color:u speed:115 hit-points:21 hearing:30 smell:50 armor-class:45 sleepiness:10 depth:10 rarity:1 weight:60 experience:30 blow:BITE:HURT:1d6 blow:BITE:HURT:1d4 flags:RAND_25 | BASH_DOOR flags:GROUP_AI flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD | WILD_WASTE | WILD_MOUNTAIN friends:100:2d10:Same desc:It howls and snaps at you. name:giant fruit fly plural:giant fruit flies base:insect color:G speed:120 hit-points:3 hearing:8 armor-class:16 sleepiness:10 depth:10 rarity:3 weight:0 experience:4 blow:BITE:HURT:1d2 desc:A fast-breeding, annoying pest. name:panther base:feline color:u speed:120 hit-points:45 hearing:40 smell:30 armor-class:36 sleepiness:0 depth:10 rarity:2 weight:130 experience:25 blow:CLAW:HURT:1d8 blow:CLAW:HURT:1d8 flags:BASH_DOOR flags:DROP_CORPSE | DROP_SKELETON | WILD_GRASS | WILD_WOOD desc:A large black cat, stalking you with intent. It thinks you're its next desc: meal. #v name:witch plural:witches base:person color:P #110 speed:115 hit-points:41 hearing:20 armor-class:48 sleepiness:5 depth:10 rarity:2 experience:35 blow:HIT:HURT:1d6 flags:FEMALE | EVIL flags:DROP_1 flags:OPEN_DOOR | TAKE_ITEM spell-freq:8 innate-freq:25 spells:WHIP spells:WOUND | SCARE | DARKNESS #was friends... drop-base:shadow book:5:1:1 desc:She is dressed in black and smells of decay. name:brigand base:person color:b speed:110 hit-points:41 hearing:20 armor-class:48 sleepiness:5 depth:10 rarity:3 weight:170 experience:35 blow:HIT:HURT:2d4 blow:TOUCH:EAT_ITEM flags:MALE | EVIL flags:DROP_1 flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON drop-base:shadow book:10:1:1 drop:scroll:Phase Door:70:2:6 friends:50:1d2:illusionist friends:50:1d2:priest friends:40:1d2:warrior friends:10:1d1:Easterling warrior friends:50:1d2:Same desc:He is eyeing your backpack. name:owlbear base:hybrid color:Y speed:110 hit-points:78 hearing:20 smell:20 armor-class:24 sleepiness:20 depth:10 rarity:1 weight:200 experience:35 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d3 blow:CRUSH:HURT:1d10 flags:EVIL | ANIMAL | PWMANG_BASE flags:DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR desc:A bizarre bear-creature with the claws and the face of an owl. name:undead mass plural:undead masses base:jelly color:m speed:110 hit-points:36 hearing:70 armor-class:19 sleepiness:5 depth:10 rarity:2 weight:0 experience:33 blow:TOUCH:DISEASE:1d6 blow:TOUCH:LOSE_CON:1d6 flags:UNDEAD | COLD_BLOOD | EVIL | MULTIPLY | PWMANG_BASE flags:NEVER_MOVE flags:HURT_LIGHT | NO_CONF | NO_SLEEP | NO_STUN | IM_POIS | IM_COLD desc:A sickening mound of decaying flesh, bones, hands and so on. It seems to be desc: growing. name:tangleweed base:vegetal color:y speed:100 hit-points:15 hearing:5 armor-class:5 sleepiness:5 depth:10 rarity:4 weight:0 experience:10 blow:HIT:PARALYZE blow:HIT:PARALYZE flags:FORCE_SLEEP | NEVER_MOVE | STUPID | EMPTY_MIND | PWMANG_BASE flags:HURT_FIRE flags:COLD_BLOOD | WILD_WOOD | WILD_GRASS flags:NO_CONF | NO_SLEEP | NO_FEAR | DROP_40 friends:100:2d7:Same desc:A mass of vegetation. As you pass near it, it reaches out tendrils to desc: ensnare you. You can just make out skeletons of its previous victims desc: deep within the thickets. name:poison ivy plural:poison ivies base:vegetal color:Y speed:100 hit-points:15 hearing:5 armor-class:5 sleepiness:5 depth:10 rarity:4 weight:0 experience:10 blow:HIT:POISON:2d2 blow:HIT:POISON:2d2 flags:FORCE_SLEEP | NEVER_MOVE | STUPID | EMPTY_MIND | PWMANG_BASE flags:HURT_FIRE flags:COLD_BLOOD | WILD_WOOD | WILD_GRASS flags:NO_CONF | NO_SLEEP | NO_FEAR | DROP_40 friends:100:2d7:Same desc:A mass of vegetation. It seems to be growing... name:baby silver dragon base:dragon color:z speed:110 hit-points:97 hearing:20 armor-class:36 sleepiness:70 depth:10 rarity:2 weight:400 experience:40 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d5 flags:DROP_40 | DROP_1 | ONLY_GOLD | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:NO_SLEEP | IM_COLD | NO_SLOW spell-freq:12 innate-freq:100 spells:BR_COLD | BR_INER desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales a pale silver. name:dark elven necromancer base:humanoid color:m speed:120 hit-points:39 hearing:20 armor-class:24 sleepiness:30 depth:10 rarity:1 weight:120 experience:50 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 flags:MALE | EVIL | PWMANG_EXTRA flags:DROP_60 | ONLY_ITEM flags:HURT_LIGHT flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 spells:BLIND | CONF | DARKNESS | MISSILE spells:BO_COLD spells:S_UNDEAD spells:ANIM_DEAD drop-base:shadow book:5:1:1 desc:A dark elven figure, clothed in black robes. name:piranha base:aquatic color:R speed:110 hit-points:80 hearing:30 armor-class:20 sleepiness:10 depth:10 rarity:2 weight:0 experience:40 blow:BITE:HURT:1d10 blow:BITE:HURT:1d10 flags:PWMANG_BASE | WILD_SHORE | WILD_OCEAN flags:COLD_BLOOD | NO_SLEEP | STUPID desc:A very large and bloodthirsty fish. ### Dungeon level 11 ### name:hobgoblin base:orc color:U speed:110 hit-points:48 hearing:20 smell:20 armor-class:38 sleepiness:70 depth:11 rarity:7 weight:160 experience:35 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 flags:DROP_20 flags:HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL spell-freq:15 innate-freq:100 spells:BOULDER desc:An unusual breed of goblins... It's got a huge sling desc:in it's long arms that nearly reach the floor. name:hippogriff base:hybrid color:U speed:110 hit-points:100 hearing:12 smell:20 armor-class:21 sleepiness:40 depth:11 rarity:1 weight:150 experience:30 blow:HIT:HURT:2d5 blow:BITE:HURT:2d5 flags:ANIMAL | LEVITATE flags:BASH_DOOR flags:DROP_CORPSE | WILD_GRASS | WILD_MOUNTAIN desc:A strange hybrid of eagle and horse. It looks weird. name:zombified orc base:zombie color:s speed:110 hit-points:50 hearing:20 armor-class:36 sleepiness:90 depth:11 rarity:1 weight:0 experience:30 blow:HIT:HURT:1d4 blow:HIT:HURT:1d4 blow:HIT:HURT:1d4 flags:ORC | EMPTY_MIND flags:NO_FEAR desc:It is a shambling orcish corpse leaving behind a trail of flesh. name:gnome mage base:humanoid color:V speed:110 hit-points:52 hearing:18 armor-class:30 sleepiness:20 depth:11 rarity:2 weight:90 experience:48 blow:HIT:HURT:1d5 flags:MALE flags:DROP_60 flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:4 spells:BLINK | DARKNESS spells:BO_COLD spells:S_MONSTER drop-base:magic book:5:1:1 friends:100:4d4:Same desc:A mage of short stature. #v name:old forest tree base:tree color:g speed:100 hit-points:800 hearing:20 armor-class:50 sleepiness:20 depth:11 rarity:2 weight:0 experience:100 blow:CRUSH:HURT:1d20 flags:NEVER_MOVE | WEIRD_MIND flags:NO_STUN | NO_SLOW spell-freq:12 spells:CONF friends:100:2d4:same desc:An ancient tree that seems to be watching you. name:baby shadow drake base:dragon color:o speed:110 hit-points:106 light:-2 hearing:20 armor-class:36 sleepiness:70 depth:11 rarity:2 weight:400 experience:45 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d6 flags:DROP_40 | DROP_1 | ONLY_GOLD | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR spell-freq:12 innate-freq:100 spells:BR_DARK | BR_LIGHT desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales a pale orange. name:baby crystal drake base:dragon color:u speed:110 hit-points:106 hearing:20 armor-class:36 sleepiness:70 depth:11 rarity:2 weight:400 experience:45 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d6 flags:DROP_40 | DROP_1 | ONLY_GOLD | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR | NO_CUT spell-freq:12 innate-freq:100 spells:BR_SHAR desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales a pale brown. name:baby ethereal drake base:dragon color:T speed:110 hit-points:106 light:-2 hearing:20 armor-class:36 sleepiness:70 depth:11 rarity:2 weight:0 experience:45 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d6 flags:INVISIBLE flags:DROP_40 | DROP_1 | ONLY_GOLD flags:OPEN_DOOR | BASH_DOOR | PASS_WALL flags:IM_NETHER spell-freq:12 innate-freq:100 spells:BR_NETH desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales a pale green. name:baby water dragon base:dragon color:Z speed:110 hit-points:106 hearing:20 armor-class:36 sleepiness:70 depth:11 rarity:2 weight:400 experience:45 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d6 flags:DROP_40 | DROP_1 | ONLY_GOLD | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_WATER spell-freq:12 innate-freq:100 spells:BR_WATE desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales a pale watery blue. ### Dungeon level 12 ### name:black mamba base:snake color:D speed:120 hit-points:45 hearing:10 armor-class:48 sleepiness:10 depth:12 rarity:3 weight:30 experience:40 blow:BITE:POISON:4d6 flags:RAND_50 flags:IM_POIS flags:DROP_CORPSE | DROP_SKELETON | WILD_GRASS | WILD_WOOD | WILD_SWAMP spell-freq:5 innate-freq:100 spells:SPIT desc:It has glistening black skin, a sleek body and highly venomous fangs. name:white wolf plural:white wolves base:canine color:w speed:120 hit-points:28 hearing:30 smell:50 armor-class:45 sleepiness:15 depth:12 rarity:1 weight:70 experience:30 blow:BITE:HURT:1d3 blow:BITE:HURT:1d4 flags:RAND_25 | BASH_DOOR flags:IM_COLD | GROUP_AI flags:DROP_CORPSE | DROP_SKELETON | WILD_WASTE | WILD_GLACIER friends:100:2d7:Same desc:A large and muscled wolf from the northern wastes. Its breath is cold and desc: icy and its fur coated in frost. name:grape jelly plural:grape jellies base:jelly color:P speed:110 hit-points:234 light:2 hearing:2 armor-class:1 sleepiness:99 depth:12 rarity:3 weight:0 experience:60 blow:TOUCH:EXP_10 flags:NEVER_MOVE flags:HURT_LIGHT | HURT_COLD | IM_POIS | NO_CONF | NO_SLEEP spell-freq:11 spells:DRAIN_MANA desc:Yum! It looks quite tasty. It is a pulsing mound of glowing flesh. name:nether worm mass base:worm color:G speed:100 hit-points:23 hearing:10 armor-class:22 sleepiness:10 depth:12 rarity:3 weight:0 experience:6 blow:TOUCH:EXP_10 flags:WEIRD_MIND | MULTIPLY | STUPID flags:RAND_25 | RAND_50 | BASH_DOOR flags:HURT_LIGHT | NO_FEAR | IM_NETHER desc:It is a disgusting mass of dark worms, eating each other, the floor, the desc: air, you.... name:Golfimbul, the Hill Orc Chief base:orc color:Y speed:110 hit-points:240 hearing:20 smell:20 armor-class:90 sleepiness:40 depth:12 rarity:3 weight:0 experience:230 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 flags:UNIQUE flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:IM_COLD | IM_ELEC | IM_FIRE | IM_POIS friends:50:4d4:snaga:servant friends:80:2d7:warg friends:90:5d4:orc tracker:servant friends:10:5d4:hill orc:servant friends:100:1d1:Bullroarer the Hobbit friends:100:1d1:Grishnukh, the Hill Orc desc:A leader of a band of raiding orcs, he picks on hobbits. name:master yeek base:yeek color:U speed:110 hit-points:60 hearing:18 smell:20 armor-class:28 sleepiness:10 depth:12 rarity:2 weight:60 experience:28 blow:HIT:HURT:1d8 flags:EVIL flags:DROP_40 flags:FORCE_SLEEP flags:DROP_CORPSE spell-freq:4 spells:BLIND | BLINK | SLOW | TPORT spells:BA_POIS spells:S_MONSTER drop-base:magic book:5:1:1 desc:A small humanoid that radiates some power. name:priest base:person color:g speed:110 hit-points:54 light:2 hearing:20 armor-class:26 sleepiness:40 depth:12 rarity:1 weight:150 experience:36 blow:HIT:HURT:2d3 blow:HIT:HURT:2d3 flags:MALE | SMART flags:DROP_60 flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON flags:IM_LIGHT spell-freq:3 spell-power:6 spells:HEAL | SCARE | HEAL_KIN spells:BA_LIGHT | WOUND spells:S_KIN drop-base:prayer book:8:1:1 friends:50:1d2:brigand friends:50:1d2:illusionist friends:50:1d2:warrior friends:50:1d2:Same desc:A robed man, dedicated to his god. name:dark elven priest base:humanoid color:g speed:120 hit-points:39 hearing:20 armor-class:45 sleepiness:40 depth:12 rarity:1 weight:120 experience:50 blow:HIT:HURT:1d9 blow:HIT:HURT:1d10 flags:MALE | EVIL | SMART flags:DROP_1 | ONLY_ITEM flags:HURT_LIGHT flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 spells:BLIND | WOUND | CONF | DARKNESS | HEAL drop-base:prayer book:8:1:1 desc:A dark elven figure, dressed all in black, chanting curses and waiting to desc: deliver your soul to hell. name:air spirit base:elemental color:B speed:130 hit-points:36 hearing:12 armor-class:48 sleepiness:20 depth:12 rarity:2 weight:0 experience:40 blow:HIT:HURT:1d3 flags:COLD_BLOOD | INVISIBLE | LEVITATE flags:RAND_25 | RAND_50 | BASH_DOOR flags:IM_ELEC desc:A whirlwind of sentient air. name:skeleton human base:skeleton color:w speed:110 hit-points:45 hearing:20 armor-class:45 sleepiness:70 depth:12 rarity:1 weight:0 experience:38 blow:HIT:HURT:1d8 flags:EMPTY_MIND flags:OPEN_DOOR | BASH_DOOR desc:It is an animated human skeleton. name:zombified human base:zombie color:s speed:110 hit-points:54 hearing:20 armor-class:36 sleepiness:100 depth:12 rarity:1 weight:0 experience:34 blow:HIT:HURT:1d4 blow:HIT:HURT:1d4 flags:EMPTY_MIND flags:NO_FEAR desc:It is a shambling human corpse dropping chunks of flesh behind it. name:tiger base:feline color:o speed:120 hit-points:66 hearing:40 smell:30 armor-class:48 sleepiness:0 depth:12 rarity:2 weight:150 experience:40 blow:CLAW:HURT:1d8 blow:CLAW:HURT:1d8 blow:BITE:HURT:1d6 flags:BASH_DOOR flags:DROP_CORPSE | DROP_SKELETON | WILD_GRASS | WILD_WOOD | WILD_MOUNTAIN desc:One of the largest of its species, a sleek orange and black shape creeps desc: towards you, ready to pounce. name:moaning spirit base:ghost color:u speed:120 hit-points:23 hearing:14 armor-class:24 sleepiness:10 depth:12 rarity:2 weight:0 experience:44 blow:WAIL:TERRIFY blow:TOUCH:LOSE_DEX:1d8 flags:DROP_40 | DROP_60 flags:RAND_25 flags:FORCE_SLEEP spell-freq:15 spells:SCARE | TPORT desc:A ghostly apparition that shrieks horribly. #v name:warrior base:person color:u speed:110 hit-points:54 light:2 hearing:20 armor-class:51 sleepiness:70 depth:12 rarity:1 weight:180 experience:40 blow:HIT:HURT:3d5 blow:HIT:DISARM:3d5 flags:MALE flags:DROP_1 flags:OPEN_DOOR flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL spell-freq:10 innate-freq:100 spells:BOLT friends:50:1d2:brigand friends:50:1d2:priest friends:50:1d2:illusionist friends:50:1d2:Same desc:A warrior of considerable skill. #hm.. forgot the idea about this guys.. something other.... name:Easterling warrior base:person color:u speed:110 #54 hit-points:120 light:2 #20 hearing:30 #51 armor-class:71 sleepiness:70 depth:12 #1 rarity:7 weight:180 #40 experience:60 blow:HIT:HURT:3d5 blow:HIT:DISARM:3d5 flags:MALE flags:DROP_1 flags:OPEN_DOOR flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL friends:50:1d2:priest friends:50:1d2:illusionist desc:A warrior of considerable skill. name:stegocentipede base:centipede color:u speed:120 hit-points:59 hearing:12 smell:20 armor-class:36 sleepiness:30 depth:12 rarity:2 weight:0 experience:40 blow:BITE:HURT:2d4 blow:BITE:HURT:2d4 blow:STING:HURT:2d4 flags:BASH_DOOR flags:DROP_SKELETON desc:It is a vast armoured centipede with massive mandibles and a spiked tail. name:spotted jelly plural:spotted jellies base:jelly color:o speed:120 hit-points:59 hearing:12 armor-class:27 sleepiness:0 depth:12 rarity:3 weight:0 experience:33 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:2d6 blow:TOUCH:ACID:2d6 flags:COLD_BLOOD flags:NEVER_MOVE flags:HURT_LIGHT | IM_ACID | IM_POIS | HURT_COLD | NO_CONF | NO_SLEEP desc:A strange jelly thing, covered in discoloured blotches. #rename to werebear name:The wounded bear base:quadruped color:r speed:111 hit-points:150 hearing:10 smell:20 armor-class:35 sleepiness:10 depth:12 rarity:1 weight:0 experience:30 blow:CLAW:HURT:1d10 blow:CLAW:HURT:1d10 blow:BITE:HURT:1d11 flags:FORCE_SLEEP | UNIQUE | PWMANG_BASE | WANDERER flags:ANIMAL | WILD_WOOD | WILD_GRASS | WILD_MOUNTAIN drop:food:Handful of Dried Fruits:75:1:1 desc:A wounded bear, who has occasionally attacked humans. name:eagle base:bird color:m speed:120 hit-points:45 hearing:30 armor-class:25 sleepiness:10 depth:12 rarity:4 weight:60 experience:22 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d3 blow:BITE:HURT:1d6 flags:WILD_WASTE | WILD_MOUNTAIN | WILD_WOOD | PWMANG_BASE flags:DROP_CORPSE desc:A magnificent huge predatory bird. name:baby chaos drake base:dragon color:v speed:110 hit-points:114 hearing:20 armor-class:36 sleepiness:70 depth:12 rarity:2 weight:400 experience:50 blow:CLAW:HURT:1d4 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d6 flags:DROP_40 | DROP_1 | ONLY_GOLD | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | IM_DISEN | NO_CONF flags:ATTR_MULTI spell-freq:12 innate-freq:100 spells:BR_CHAO | BR_DISE desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales shimmering many colours. name:baby law drake base:dragon color:B speed:110 hit-points:114 hearing:20 armor-class:36 sleepiness:70 depth:12 rarity:2 weight:400 experience:50 blow:CLAW:HURT:1d4 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d6 flags:DROP_40 | DROP_1 | ONLY_GOLD | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | NO_STUN | NO_CUT spell-freq:12 innate-freq:100 spells:BR_SHAR | BR_SOUN desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales shimmering blue. ### Dungeon level 13 ### name:darkling base:minor demon color:u speed:111 hit-points:75 light:-2 hearing:20 armor-class:42 sleepiness:35 depth:13 rarity:4 weight:140 experience:75 blow:DEVOUR:EAT_LIGHT:1d7 blow:DEVOUR:EAT_LIGHT:1d7 flags:OPEN_DOOR | BASH_DOOR flags:DROP_40 flags:NO_FEAR spell-freq:7 spells:DARKNESS desc:Corrupted fey-demons which feed on light. name:giant gnat base:killer beetle color:u speed:120 hit-points:66 hearing:10 smell:30 armor-class:50 sleepiness:30 depth:13 rarity:7 weight:1 experience:50 blow:BITE:HURT:1d2 blow:BITE:HURT:1d2 blow:BITE:HURT:1d2 flags:HURT_FIRE | RAND_50 desc:Nasty oversized fly which moves very erratically and very quickly. name:baby multi-hued dragon base:dragon color:v speed:110 hit-points:123 hearing:20 armor-class:36 sleepiness:70 depth:13 rarity:2 weight:400 experience:55 blow:CLAW:HURT:1d4 blow:CLAW:HURT:1d5 blow:BITE:HURT:1d6 flags:DROP_40 | DROP_1 | ONLY_GOLD flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:ATTR_MULTI flags:DROP_CORPSE spell-freq:12 innate-freq:100 spells:BR_ACID | BR_COLD | BR_ELEC | BR_FIRE | BR_POIS desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales shimmering with hints of many different colours. name:drider base:spider color:b #110 speed:115 hit-points:15 hearing:8 armor-class:36 sleepiness:80 depth:13 #2 rarity:4 weight:200 experience:55 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 blow:BITE:POISON:1d6 flags:EVIL flags:IM_POIS flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:8 spell-power:13 spells:WOUND | CONF | DARKNESS desc:A dark elven torso merged with the bloated form of a giant spider. name:killer brown beetle base:killer beetle color:u speed:110 hit-points:59 hearing:10 armor-class:72 sleepiness:30 depth:13 rarity:1 weight:50 experience:45 blow:BITE:HURT:4d4 flags:DROP_CORPSE desc:It is a vicious insect with a tough carapace. name:Boldor, King of the Yeeks base:yeek color:P speed:120 hit-points:180 hearing:18 smell:20 armor-class:28 sleepiness:10 depth:13 rarity:3 weight:0 experience:200 blow:HIT:HURT:1d9 blow:HIT:HURT:1d9 blow:HIT:HURT:1d8 flags:UNIQUE | MALE | EVIL | SMART flags:DROP_60 | DROP_1 | DROP_GOOD | ONLY_ITEM flags:FORCE_SLEEP drop:fortune cookie:Fortune Cookie:50:1:1 spell-freq:3 spells:BLIND | BLINK | HEAL | SLOW | TPORT spells:S_KIN | S_MONSTER friends:50:1d3:terrified yeek:servant friends:50:1d3:brave yeek:servant friends:100:2d6:blue yeek:servant friends:100:2d3:master yeek:servant friends:100:1d1:Orfax, Son of Boldor desc:A great yeek, powerful in magic and sorcery, but a yeek all the same. name:ogre base:ogre color:U speed:110 hit-points:65 hearing:20 smell:20 armor-class:49 sleepiness:50 depth:13 rarity:2 weight:210 experience:50 blow:HIT:HURT:2d8 flags:DROP_40 flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD | WILD_MOUNTAIN friends-base:100:2d4:orc friends:100:2d4:Same desc:A hideous, smallish giant that is often found near or with orcs. name:creeping mithril coins plural:piles of creeping mithril coins base:creeping coins color:B speed:110 hit-points:90 hearing:5 armor-class:60 sleepiness:10 depth:13 rarity:3 weight:0 experience:45 blow:HIT:HURT:2d5 blow:TOUCH:POISON:3d5 flags:IM_ACID | IM_LIGHT desc:It appears to be a pile of sentient mithril coins that doesn't like being desc: picked up. mimic:gold:mithril name:illusionist base:person color:I speed:120 hit-points:54 light:2 hearing:20 armor-class:15 sleepiness:20 depth:13 rarity:2 weight:150 experience:50 blow:HIT:HURT:2d2 flags:MALE | EVIL | SMART flags:DROP_1 flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:3 spells:BLIND | BLINK | CONF | DARKNESS | HASTE | HOLD spells:SLOW | TPORT drop-base:magic book:8:1:1 friends:50:1d2:brigand friends:50:1d2:priest friends:10:1d1:Easterling warrior friends:50:1d2:warrior friends:50:1d2:Same desc:A deceptive spell caster. name:druid base:person color:y speed:110 hit-points:78 light:2 hearing:20 armor-class:15 sleepiness:20 depth:13 rarity:2 weight:140 experience:50 blow:HIT:HURT:2d4 blow:HIT:HURT:2d4 flags:MALE | SMART flags:DROP_1 flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD spell-freq:3 spells:BLIND | HASTE | HOLD | SLOW | CONF spells:BO_POIS | BO_FIRE | SHAPECHANGE spells:S_ANIMAL drop-base:nature book:8:1:1 desc:A priest devoted to Nature. #v name:orc archer base:orc color:m speed:110 hit-points:66 hearing:20 smell:20 armor-class:54 sleepiness:60 depth:13 rarity:1 weight:200 experience:45 blow:HIT:HURT:2d4 blow:HIT:HURT:2d4 flags:DROP_20 flags:HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL spell-freq:3 innate-freq:100 spell-power:16 spells:ARROW drop-base:nature book:5:1:1 friends:100:1d3:Same desc:He has a bow of horn and a quiver full of black-feathered arrows. name:black orc base:orc color:D speed:110 hit-points:77 hearing:20 smell:20 armor-class:66 sleepiness:60 depth:13 #3 rarity:4 weight:200 experience:45 blow:HIT:HURT:1d6 blow:HIT:POISON:1d6 flags:DROP_20 flags:HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL innate-freq:100 spell-freq:4 spell-power:8 spells:WHIP friends:100:1d5:Same desc:He is a large orc with powerful arms and deep black skin. desc:He wield crude crossbow. desc:Black orcs are known for poisoning their bolts.. name:ochre jelly plural:ochre jellies base:jelly color:U speed:120 hit-points:59 hearing:12 armor-class:21 sleepiness:1 depth:13 rarity:3 weight:0 experience:40 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:2d6 blow:TOUCH:ACID:2d6 flags:COLD_BLOOD flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:IM_ACID | IM_POIS | HURT_COLD | NO_CONF | NO_SLEEP desc:A fast moving highly acidic jelly thing, that is eating away the floor it desc: rests on. name:mongbat base:bat color:M speed:110 hit-points:88 hearing:20 armor-class:96 sleepiness:8 depth:13 rarity:2 weight:80 experience:65 blow:CLAW:HURT:1d4 blow:CLAW:HURT:1d4 blow:BITE:POISON:1d8 flags:EVIL | WEIRD_MIND | PWMANG_BASE flags:DROP_CORPSE flags:IM_COLD | IM_ELEC | IM_POIS friends:100:2d7:Same desc:Devil-bats, notoriously difficult to kill. name:cloaker base:object mimic glyph:( color:g speed:130 hit-points:43 hearing:20 armor-class:48 sleepiness:0 depth:13 rarity:5 weight:0 experience:30 blow:HIT:PARALYZE:5d5 blow:HIT:TERRIFY:5d5 flags:IM_COLD | IM_ELEC | IM_POIS desc:It resembles a normal cloak until some poor fool ventures too close! mimic:cloak:Cloak name:baby balance drake base:dragon color:P speed:110 hit-points:123 hearing:20 armor-class:36 sleepiness:70 depth:13 rarity:2 weight:400 experience:55 blow:CLAW:HURT:1d4 blow:CLAW:HURT:1d5 blow:BITE:HURT:1d6 flags:DROP_40 | DROP_1 | ONLY_GOLD | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | IM_FIRE | IM_DISEN | NO_STUN | NO_CONF | NO_CUT spell-freq:12 innate-freq:100 spells:BR_CHAO | BR_DISE | BR_SHAR | BR_SOUN desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales shimmering purple. name:flounder base:aquatic color:w speed:110 hit-points:80 hearing:5 armor-class:25 sleepiness:30 depth:13 rarity:1 weight:0 experience:55 blow:BITE:HURT:1d6 blow:BITE:HURT:1d6 blow:BITE:HURT:1d8 flags:PWMANG_BASE | WILD_SHORE | WILD_OCEAN flags:RAND_25 | INVISIBLE | ATTR_CLEAR desc:A flattened fish which is able to change body coloring for camouflage. ### Dungeon level 14 ### #based at name:giant black louse name:giant pubic louse plural:giant pubic lice base:insect color:D speed:120 hit-points:2 hearing:6 armor-class:8 sleepiness:10 depth:14 rarity:1 weight:0 experience:3 blow:BITE:HURT:1d2 desc:It makes you itch just to look at it. name:giant flea base:insect color:s speed:120 hit-points:3 hearing:8 armor-class:30 sleepiness:10 depth:14 rarity:3 weight:0 experience:4 blow:BITE:HURT:1d2 flags:BASH_DOOR desc:It makes you itch just to look at it. name:Ufthak of Cirith Ungol base:orc color:g speed:110 hit-points:320 hearing:20 smell:20 armor-class:75 sleepiness:40 depth:14 rarity:3 weight:0 experience:250 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 flags:UNIQUE flags:DROP_1 | DROP_GOOD | ONLY_ITEM flags:IM_COLD friends:50:2d2:orc archer friends:100:4d4:black orc friends:100:3d4:cave orc desc:A strong orc guarding the pass of Cirith Ungol. He is mortally afraid of desc: spiders. name:blue icky thing base:icky thing color:b speed:100 hit-points:35 hearing:15 armor-class:30 sleepiness:10 depth:14 rarity:4 weight:0 experience:20 blow:CRAWL:POISON:1d4 blow:SWALLOW:EAT_FOOD blow:HIT:HURT:1d4 blow:HIT:HURT:1d4 flags:EVIL | MULTIPLY flags:OPEN_DOOR | BASH_DOOR flags:IM_POIS flags:FORCE_SLEEP spell-freq:8 spells:BLIND | CONF | SCARE desc:It is a strange, slimy, icky creature, with rudimentary intelligence, but desc: evil cunning. It hungers for food, and you look tasty. name:flesh golem base:golem color:R speed:110 hit-points:54 hearing:12 armor-class:36 sleepiness:10 depth:14 rarity:2 weight:0 experience:50 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 flags:SWIM_NORM flags:BASH_DOOR desc:A shambling humanoid monster with long scars. name:warg base:canine color:s speed:120 hit-points:36 hearing:20 smell:50 armor-class:30 sleepiness:10 depth:14 rarity:2 weight:70 experience:40 blow:BITE:HURT:1d8 flags:EVIL | GROUP_AI flags:RAND_25 | BASH_DOOR flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD | WILD_MOUNTAIN friends:100:2d7:Same desc:It is a large wolf with eyes full of cunning. name:lurker base:lurker color:w speed:110 hit-points:176 hearing:30 armor-class:30 sleepiness:10 depth:14 rarity:3 weight:0 experience:80 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 desc:A strange creature that merges with the dungeon floor, trapping its victims desc: by enveloping them within its perfectly disguised form. name:gibbering mouther base:jelly color:M speed:110 hit-points:28 hearing:15 armor-class:24 sleepiness:20 depth:14 rarity:4 weight:0 experience:20 blow:CRAWL:POISON:1d4 flags:MULTIPLY | EVIL | PWMANG_BASE flags:NEVER_MOVE flags:IM_POIS spell-freq:7 innate-freq:33 spells:CONF | SCARE spells:BR_LIGHT desc:A chaotic mass of pulsating flesh, mouths and eyes. name:baby power dragon base:dragon color:I speed:110 hit-points:132 hearing:20 armor-class:36 sleepiness:70 depth:14 rarity:2 weight:400 experience:60 blow:CLAW:HURT:1d4 blow:CLAW:HURT:1d5 blow:BITE:HURT:1d7 flags:DROP_40 | DROP_1 | ONLY_GOLD | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR | NO_CUT flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW spell-freq:12 innate-freq:100 spells:BR_ACID | BR_ELEC | BR_FIRE | BR_COLD | BR_POIS | BR_NETH | BR_LIGHT spells:BR_SOUN | BR_CHAO | BR_DISE | BR_NEXU | BR_TIME | BR_INER | BR_GRAV spells:BR_SHAR | BR_PLAS | BR_WALL | BR_MANA | BR_WATE | BR_DARK desc:This hatchling dragon is still soft, its eyes unaccustomed to light and its desc: scales shimmering red. ### Dungeon level 15 ### name:dusty statue base:hybrid color:y speed:90 hit-points:75 hearing:1 armor-class:0 sleepiness:80 depth:15 rarity:1 weight:0 experience:0 flags:NEVER_BLOW flags:FORCE_SLEEP | NEVER_MOVE | STUPID | EMPTY_MIND | PWMANG_BASE flags:COLD_BLOOD flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW | IM_LIGHT flags:DROP_40 spell-freq:100 innate-freq:25 spells:S_UNDEAD | SHRIEK | DARKNESS | SCARE desc:Just a regular old statue covered in dust. Oh! Wait! Did it just move? name:Shtukensia the Rogue base:person color:b speed:110 hit-points:777 hearing:20 smell:10 armor-class:65 sleepiness:40 depth:15 rarity:3 weight:0 experience:350 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:TOUCH:EAT_GOLD flags:UNIQUE | FEMALE flags:DROP_2 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM flags:FORCE_DEPTH | PWMANG_FIXED drop:potion:Slime Mold Juice:100:3:4 friends:95:1d3:bandit:servant friends:95:1d2:Same friends:95:1d1:half-orc spell-freq:4 innate-freq:33 spells:BLINK | SHOT | TRAPS | DARKNESS desc:Beautiful tiny girls with huge... eyes. desc:She winks at you. locations:The Severs name:wererat base:rodent color:D speed:110 hit-points:90 hearing:10 smell:20 armor-class:15 sleepiness:20 depth:15 rarity:2 weight:30 experience:45 blow:CLAW:HURT:1d8 blow:CLAW:HURT:1d8 blow:BITE:HURT:2d6 flags:EVIL flags:DROP_40 | ONLY_GOLD flags:OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | HYBRID spell-freq:9 spells:BLINK | WOUND spells:BA_POIS spells:BO_COLD desc:A large rat with glowing red eyes. The wererat is a disgusting creature, desc: relishing in filth and disease. name:black ogre base:ogre color:D speed:110 hit-points:100 hearing:20 smell:20 armor-class:49 sleepiness:50 depth:15 rarity:2 weight:230 experience:75 blow:HIT:HURT:2d8 blow:HIT:HURT:2d8 flags:DROP_40 flags:RAND_25 flags:DROP_CORPSE | DROP_SKELETON | WILD_MOUNTAIN friends:60:2d4:ogre friends:100:3d4:Same desc:A massive orc-like figure with black skin and powerful arms. name:magic mushroom patch plural:magic mushroom patches base:mushroom color:B speed:140 hit-points:1 light:2 hearing:40 armor-class:12 sleepiness:0 depth:15 rarity:2 weight:0 experience:10 blow:SPORE:CONFUSE blow:SPORE:CONFUSE blow:SPORE:HALLU blow:SPORE:HALLU flags:NEVER_MOVE flags:FORCE_SLEEP spell-freq:2 spells:BLINK | DARKNESS | SCARE | SLOW desc:Yum! It looks quite tasty. It seems to glow with an unusual light. name:guardian naga base:naga color:B speed:110 hit-points:144 hearing:20 armor-class:78 sleepiness:120 depth:15 rarity:2 weight:190 experience:80 blow:CRUSH:HURT:2d8 blow:BITE:HURT:1d8 blow:BITE:HURT:1d8 flags:DROP_40 | DROP_1 flags:RAND_25 | OPEN_DOOR flags:DROP_CORPSE desc:A giant snake-like figure with a woman's torso. name:light hound base:zephyr hound color:o speed:110 hit-points:21 light:3 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:15 rarity:3 weight:60 experience:50 blow:CLAW:HURT:1d4 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d6 flags:BASH_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_LIGHT friends:100:2d7:Same desc:A brilliant canine form whose light hurts your eyes, even at this distance. name:shadow hound base:zephyr hound color:D speed:110 hit-points:21 light:-2 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:15 rarity:3 weight:60 experience:50 blow:CLAW:HURT:1d4 blow:CLAW:HURT:1d4 blow:BITE:HURT:1d6 flags:BASH_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_DARK friends:100:2d7:Same desc:A hole in the air in the shape of a huge hound. No light falls upon its desc: form. name:half-orc base:orc color:s speed:110 hit-points:88 hearing:20 smell:20 armor-class:60 sleepiness:50 depth:15 rarity:2 weight:170 experience:50 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 flags:DROP_20 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL spell-freq:10 innate-freq:100 spells:ARROW friends:50:2d4:warg friends:50:1d2:orc tracker friends:100:4d4:Same desc:He is a hideous deformed cross-breed with man and orc, combining man's desc: strength and cunning with orcish evil. The traitorous wizard Saruman is desc: generally believed to be responsible for this abomination. name:giant tarantula base:spider color:o speed:120 hit-points:80 hearing:8 armor-class:48 sleepiness:20 depth:15 rarity:3 weight:0 experience:70 blow:BITE:POISON:1d6 blow:BITE:POISON:1d6 blow:BITE:POISON:1d6 flags:ANIMAL | WEIRD_MIND flags:IM_POIS flags:DROP_SKELETON | WILD_ALL desc:A giant, fast-moving spider with hairy black and red legs. name:giant clear centipede base:centipede color:w speed:110 hit-points:23 hearing:12 smell:20 armor-class:36 sleepiness:30 depth:15 rarity:2 weight:0 experience:30 blow:BITE:HURT:2d4 blow:STING:HURT:2d4 flags:INVISIBLE flags:BASH_DOOR flags:ATTR_CLEAR flags:DROP_SKELETON | WILD_ALL desc:It is about four feet long and carnivorous. name:Womb spider base:spider color:g speed:110 hit-points:11 hearing:15 armor-class:30 sleepiness:20 depth:15 #2 rarity:9 weight:0 experience:5 blow:BITE:HURT:1d8 blow:BITE:POISON:1d6 flags:EVIL | ANIMAL | WEIRD_MIND flags:IM_POIS | GROUP_AI flags:DROP_SKELETON | WILD_WOOD | MULTIPLY spell-freq:7 innate-freq:100 spells:SPIT desc:Eight-legged-eyed creatures which multiply in eight times desc: faster then others.. name:griffon base:hybrid color:u speed:110 hit-points:135 hearing:12 smell:20 armor-class:22 sleepiness:40 depth:15 rarity:1 weight:250 experience:70 blow:HIT:HURT:3d4 blow:BITE:HURT:2d6 flags:ANIMAL | LEVITATE flags:BASH_DOOR flags:DROP_CORPSE | WILD_GRASS | WILD_WOOD | WILD_MOUNTAIN desc:It is half lion, half eagle. It flies menacingly towards you. name:homunculus plural:homunculi base:minor demon color:y speed:110 hit-points:36 hearing:20 armor-class:48 sleepiness:60 depth:15 rarity:3 weight:0 experience:40 blow:HIT:PARALYZE:1d2 blow:HIT:HURT:1d10 flags:OPEN_DOOR | BASH_DOOR flags:NO_FEAR | LEVITATE desc:It is a small demonic spirit full of malevolence. name:clear hound base:zephyr hound color:w speed:110 hit-points:21 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:15 rarity:3 weight:60 experience:50 blow:CLAW:HURT:1d6 blow:CLAW:HURT:1d6 blow:BITE:HURT:1d8 flags:INVISIBLE flags:BASH_DOOR flags:ATTR_CLEAR flags:DROP_CORPSE | DROP_SKELETON friends:100:2d7:Same desc:A completely translucent hound. name:clay golem base:golem color:U speed:110 hit-points:63 hearing:12 armor-class:36 sleepiness:10 depth:15 rarity:2 weight:0 experience:60 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 flags:COLD_BLOOD flags:BASH_DOOR flags:HURT_ROCK | IM_COLD | IM_FIRE | IM_POIS flags:NO_STUN flags:SWIM_BAD desc:It is a massive animated statue made out of hardened clay. name:giant tan bat base:bat color:U speed:130 hit-points:14 hearing:12 armor-class:30 sleepiness:10 depth:15 rarity:2 weight:60 experience:18 blow:BITE:TERRIFY:1d3 blow:CLAW:HURT:1d2 blow:CLAW:HURT:1d2 flags:RAND_25 flags:FORCE_SLEEP flags:DROP_CORPSE | WILD_WOOD | WILD_MOUNTAIN friends:100:2d6:Same desc:A giant bat, the beating of whose wings produces a strangely unnerving desc: noise. name:dark naga base:naga color:s speed:110 hit-points:132 hearing:60 armor-class:78 sleepiness:120 depth:15 rarity:2 weight:190 experience:90 blow:STING:HURT:1d10 blow:BITE:HURT:1d10 flags:EMPTY_MIND | PWMANG_BASE flags:DROP_40 | DROP_1 | DROP_CORPSE flags:RAND_25 | OPEN_DOOR flags:IM_POIS | IM_COLD | IM_WATER flags-off:HURT_COLD spell-freq:8 spells:CONF | DARKNESS | HEAL | HOLD spells:BO_COLD desc:A giant snake-like figure with a woman's torso, talented in magic. name:flying skull base:skeleton color:s speed:110 hit-points:55 hearing:30 armor-class:45 sleepiness:70 depth:15 rarity:3 weight:0 experience:50 blow:BITE:POISON:1d3 blow:BITE:LOSE_STR:1d4 flags:PWMANG_BASE | WEIRD_MIND | LEVITATE flags:DROP_40 flags:BASH_DOOR friends:100:4d4:Same desc:A pack of skulls animated by necromantic spells. name:giant Venus flytrap base:vegetal color:o speed:120 hit-points:55 hearing:20 armor-class:5 sleepiness:0 depth:15 rarity:5 weight:0 experience:30 blow:HIT:PARALYZE:3d3 blow:HIT:PARALYZE:3d3 blow:HIT:PARALYZE:3d3 flags:NEVER_MOVE | EMPTY_MIND | STUPID | PWMANG_BASE flags:WILD_WOOD | WILD_SWAMP | HURT_FIRE desc:A carnivorous plant that is difficult to detect, until it suddenly snaps desc: shut around its prey and releases paralyzing enzymes to stop its desc: struggles. name:positivist base:person color:m speed:110 hit-points:68 light:2 hearing:20 armor-class:40 sleepiness:10 depth:15 rarity:1 weight:150 experience:60 blow:HIT:HURT:4d5 blow:HIT:HURT:4d5 flags:MALE | FORCE_SLEEP | ONLY_ITEM | DROP_60 | DROP_SKELETON | DROP_CORPSE flags:SMART | OPEN_DOOR | ANTI_MAGIC | PWMANG_BASE desc:This guy tends to look at everything with suspicion. name:unmagic mushroom patch plural:unmagic mushroom patches base:mushroom color:B speed:110 hit-points:1 hearing:40 armor-class:10 sleepiness:0 depth:15 rarity:2 weight:0 experience:10 blow:SPORE:HURT:1d1 blow:SPORE:HURT:1d1 blow:SPORE:CONFUSE blow:SPORE:HALLU flags:FORCE_SLEEP | NEVER_MOVE | PWMANG_BASE flags:ANTI_MAGIC friends:100:2d7:Same desc:Yum! It looks quite tasty. It seems to glow with an unusual light. ### Dungeon level 16 ### name:umber hulk base:xorn color:U speed:110 hit-points:110 hearing:20 armor-class:75 sleepiness:30 depth:16 rarity:1 weight:0 experience:75 blow:GAZE:CONFUSE blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 blow:BITE:HURT:2d6 flags:EVIL | ANIMAL flags:BASH_DOOR | KILL_WALL flags:DROP_SKELETON desc:This bizarre creature has glaring eyes and large mandibles capable of desc: slicing through rock. name:gelatinous cube base:jelly color:G speed:110 hit-points:316 hearing:12 armor-class:21 sleepiness:1 depth:16 rarity:4 weight:0 experience:80 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 flags:COLD_BLOOD flags:DROP_4 flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:NO_CONF | NO_SLEEP flags-off:HURT_COLD desc:It is a strange, vast gelatinous structure that assumes cubic proportions desc: as it lines all four walls of the corridors it patrols. Through its desc: transparent jelly structure you can see treasures it has engulfed, and a desc: few corpses as well. #v name:rogue base:person color:b speed:115 hit-points:62 hearing:20 armor-class:48 sleepiness:5 depth:16 rarity:2 weight:170 experience:50 blow:HIT:HURT:2d4 blow:HIT:HURT:2d4 blow:TOUCH:EAT_ITEM flags:MALE | EVIL flags:DROP_1 flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON spell-freq:8 innate-freq:100 spells:SHOT drop-base:shadow book:10:1:1 drop:scroll:Phase Door:70:2:6 friends:50:1d2:illusionist friends:50:1d2:priest friends:50:1d2:warrior friends:50:1d2:Same desc:He is eyeing your backpack. #replaced in v name:hummerhorn base:insect color:y speed:120 hit-points:3 hearing:8 armor-class:16 sleepiness:10 depth:16 #4 rarity:5 weight:0 experience:4 blow:BITE:CONFUSE:2d2 desc:A giant buzzing wasp, its stinger drips venom. name:Ulfast, Son of Ulfang base:person color:U speed:110 hit-points:340 light:2 hearing:20 armor-class:48 sleepiness:40 depth:16 rarity:3 weight:0 experience:200 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:UNIQUE | MALE | EVIL flags:DROP_60 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM friends:50:1d3:warrior:servant friends:10:1d2:Easterling warrior:servant desc:A short and swarthy Easterling. #tile from name:Ulfast, Son of Ulfang name:mutant paladin base:person color:U speed:110 hit-points:80 light:2 hearing:20 armor-class:48 sleepiness:40 depth:16 rarity:7 weight:0 experience:50 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:MALE | EVIL flags:OPEN_DOOR | TAKE_ITEM flags:IM_LIGHT spell-freq:7 spells:HEAL desc:A short and swarthy mutant. He was paladin. desc:But was cursed... Still could do some holy magic. name:quasit base:minor demon color:o speed:110 hit-points:27 hearing:20 armor-class:36 sleepiness:20 depth:16 rarity:2 weight:0 experience:50 blow:BITE:LOSE_DEX:1d6 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d3 flags:INVISIBLE | SMART | LEVITATE flags:DROP_1 | ONLY_ITEM flags:RAND_25 | BASH_DOOR flags:FORCE_SLEEP spell-freq:10 spells:BLIND | BLINK | CONF | SCARE | TELE_LEVEL | TELE_TO spells:TPORT desc:A demon of small stature with an annoying bite. desc:Also the chaotic evil master's favourite pet... name:uruk base:orc color:B speed:110 hit-points:70 hearing:20 smell:20 armor-class:75 sleepiness:30 depth:16 rarity:1 weight:230 experience:60 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:DROP_20 flags:DROP_CORPSE | DROP_SKELETON spell-freq:9 innate-freq:100 spells:ARROW | WHIP drop-base:nature book:5:1:1 friends:40:1d4:half-orc friends:80:2d5:warg friends:50:1d2:orc tracker friends:50:1d2:orc archer friends:100:3d3:Same desc:A cunning orc of power, as tall as a man, and stronger. It fears little. name:grizzly bear base:quadruped color:U speed:110 hit-points:78 hearing:10 smell:20 armor-class:52 sleepiness:30 depth:16 rarity:2 weight:260 experience:55 blow:CLAW:HURT:1d8 blow:CLAW:HURT:1d8 blow:BITE:HURT:1d12 blow:CRUSH:HURT:1d10 flags:ANIMAL flags:DROP_CORPSE | WILD_WOOD | WILD_MOUNTAIN desc:A huge, beastly bear, more savage than most of its kind. name:craban plural:crebain base:bird color:D speed:120 hit-points:9 hearing:40 armor-class:14 sleepiness:0 depth:16 rarity:4 weight:50 experience:20 blow:CLAW:HURT:1d4 blow:CLAW:HURT:1d4 flags:GROUP_AI flags:DROP_CORPSE | WILD_ALL spell-freq:8 innate-freq:100 spells:SHRIEK friends:100:3d3:Same desc:A type of crow, specially bred by the forces of evil as spies; their desc: rudimentary intelligence guided by an evil mind has tracked you down, and desc: now they seek to alert other evil creatures to your presence. name:rust monster base:quadruped color:o speed:110 hit-points:160 hearing:12 smell:20 armor-class:66 sleepiness:30 depth:16 rarity:2 weight:90 experience:50 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 flags:STUPID | WEIRD_MIND | PWMANG_BASE flags:DROP_CORPSE flags:KILL_ITEM flags:IM_ACID | IM_POIS | NO_CONF desc:It is a weird, small animal with two antennae popping forth from its desc: forehead. It looks hungry. name:ogrillon base:ogre color:W speed:110 hit-points:110 light:2 hearing:20 smell:20 armor-class:49 sleepiness:50 depth:16 rarity:2 weight:240 experience:75 blow:HIT:HURT:2d10 blow:HIT:HURT:2d10 flags:ORC | PWMANG_BASE flags:DROP_CORPSE | DROP_SKELETON | DROP_20 friends:100:2d7:Same desc:An unholy hybdrid of ogre and orc. name:lizard man plural:lizard men base:humanoid color:T speed:110 hit-points:88 light:2 hearing:20 armor-class:48 sleepiness:20 depth:16 rarity:3 weight:130 experience:55 blow:HIT:HURT:4d4 blow:HIT:HURT:4d4 flags:MALE | EVIL | PWMANG_BASE flags:DROP_40 | DROP_CORPSE flags:IM_ACID | IM_WATER flags:WILD_SHORE flags:SWIM_GOOD friends:100:4d4:Same desc:Intelligent lizard being from the depths. name:shark base:aquatic color:W speed:120 hit-points:120 hearing:20 armor-class:50 sleepiness:10 depth:16 rarity:1 weight:0 experience:100 blow:BITE:HURT:3d5 blow:BITE:HURT:3d5 blow:BITE:HURT:3d5 flags:PWMANG_BASE | WILD_SHORE | WILD_OCEAN flags:COLD_BLOOD desc:A fast-moving hunter of the depths. When this creature moves, desc: everybody in the water is in danger! ### Dungeon level 17 ### name:orc necromancer base:person color:R speed:110 hit-points:146 light:2 hearing:20 armor-class:40 sleepiness:20 depth:17 rarity:3 weight:90 experience:70 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 flags:MALE | EVIL | SMART flags:DROP_1 | ONLY_ITEM flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:3 spells:WOUND | SCARE spells:ANIM_DEAD friends-base:80:1d3:skeleton desc:A cruel orc skilled in nether magic. name:imp base:minor demon color:g speed:110 hit-points:27 hearing:20 armor-class:36 sleepiness:20 depth:17 rarity:2 weight:0 experience:55 blow:HIT:HURT:3d4 blow:HIT:POISON:3d4 blow:INSULT flags:COLD_BLOOD | INVISIBLE | SMART | LEVITATE flags:DROP_1 | ONLY_ITEM flags:RAND_25 | BASH_DOOR flags:FORCE_SLEEP spell-freq:10 spells:BLIND | BLINK | CONF | SCARE | TELE_LEVEL | TELE_TO spells:TPORT desc:The narrow mug ended in a pig’s snout that constantly twitched and desc:sniffed the air; the thin brittle legs, thin tail, small goatee and desc:and tiny horns - a little mischief-maker also known as "chort". name:forest troll base:troll color:g speed:110 hit-points:110 hearing:20 smell:20 armor-class:75 sleepiness:80 depth:17 rarity:1 weight:300 experience:70 blow:HIT:HURT:1d4 blow:HIT:HURT:1d4 blow:BITE:HURT:1d6 flags:MALE flags:DROP_20 flags:HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD friends:100:4d4:Same desc:He is green skinned, ugly and stupid. name:Nar, the Dwarf base:humanoid color:y speed:110 hit-points:450 hearing:25 armor-class:84 sleepiness:25 depth:17 rarity:2 weight:0 experience:250 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:UNIQUE | MALE flags:DROP_1 | DROP_GOOD | ONLY_ITEM flags:IM_COLD | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:6 spells:BLIND | WOUND | CONF | HEAL | MIND_BLAST desc:The friend and companion of the dwarven king Thror, he went mad with grief desc: after Thror's death at the hands of Azog the Orc. With torn beard and desc: ragged clothes, he seems to have fixed on you as a convenient target to desc: vent his anger. name:2-headed hydra base:hydra color:u speed:110 hit-points:200 hearing:20 armor-class:90 sleepiness:80 depth:17 rarity:2 weight:400 experience:80 blow:BITE:HURT:2d6 blow:BITE:HURT:2d6 flags:DROP_2 flags:MOVE_BODY flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:11 spells:SCARE desc:A strange reptilian hybrid with one extra head, desc:guarding its hoard. name:water spirit base:elemental color:b speed:120 hit-points:41 hearing:12 armor-class:42 sleepiness:20 depth:17 rarity:2 weight:0 experience:58 blow:HIT:HURT:2d4 blow:HIT:HURT:2d4 flags:COLD_BLOOD | LEVITATE flags:RAND_25 | BASH_DOOR flags:IM_ACID | IM_WATER desc:A whirlpool of sentient liquid. name:giant red scorpion base:spider color:r speed:115 hit-points:50 hearing:12 armor-class:52 sleepiness:20 depth:17 rarity:1 weight:0 experience:62 blow:CLAW:HURT:2d4 blow:CLAW:HURT:2d4 blow:STING:LOSE_STR:1d7 flags:ANIMAL | WEIRD_MIND flags:IM_POIS flags:DROP_SKELETON | WILD_ALL desc:It is fast and poisonous. name:earth spirit base:elemental color:u speed:120 hit-points:59 hearing:10 armor-class:60 sleepiness:20 depth:17 rarity:2 weight:0 experience:64 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 flags:COLD_BLOOD flags:RAND_25 | PASS_WALL flags:HURT_ROCK | IM_COLD | IM_ELEC | IM_FIRE flags:SWIM_BAD desc:A whirling form of sentient rock. name:sphinx plural:sphinxes base:hybrid color:M speed:110 hit-points:180 hearing:20 smell:20 armor-class:72 sleepiness:20 depth:17 rarity:2 weight:600 experience:80 blow:CLAW:HURT:2d6 blow:CLAW:HURT:2d6 flags:ANIMAL | PWMANG_BASE | LEVITATE flags:ONLY_GOLD | DROP_1 | DROP_CORPSE | HYBRID flags:OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP flags:WILD_MOUNTAIN spell-freq:11 spells:CONF | SCARE desc:It will eat you if you cannot answer its riddle. name:freezing sphere base:ball color:w speed:120 hit-points:21 hearing:100 armor-class:36 sleepiness:0 depth:17 rarity:1 weight:0 experience:50 blow:ENGULF:COLD:8d8 flags:HURT_FIRE | IM_COLD | NO_FEAR | NO_CONF | NO_SLEEP | PWMANG_BASE flags:FORCE_SLEEP flags:WILD_GLACIER desc:A semi-sentient snowball, hurling itself at targets at random. name:jumping fireball base:ball color:r speed:120 hit-points:21 light:2 hearing:100 armor-class:36 sleepiness:0 depth:17 rarity:1 weight:0 experience:50 blow:ENGULF:FIRE:8d8 flags:HURT_COLD | IM_FIRE | NO_FEAR | NO_CONF | NO_SLEEP | PWMANG_BASE flags:FORCE_SLEEP flags:WILD_DESERT desc:A semi-sentient fireball that moves around randomly. name:ball lightning base:ball color:B speed:120 hit-points:21 light:1 hearing:100 armor-class:36 sleepiness:0 depth:17 rarity:1 weight:0 experience:50 blow:ENGULF:ELEC:8d8 flags:NO_FEAR | NO_CONF | NO_SLEEP | PWMANG_BASE flags:IM_ELEC | IM_LIGHT flags:FORCE_SLEEP desc:A crackling ball of energy, zooming about seemingly at random. name:swamp thing base:hybrid color:g speed:110 hit-points:52 hearing:20 smell:20 armor-class:72 sleepiness:30 depth:17 rarity:2 weight:0 experience:80 blow:CLAW:TERRIFY:2d5 blow:CLAW:TERRIFY:5d2 flags:PWMANG_BASE flags:OPEN_DOOR | BASH_DOOR flags:WILD_SWAMP desc:A creature that was once human, but is now as green as moss. ### Dungeon level 18 ### #v hummerhorn name:pixie base:hybrid color:y speed:120 hit-points:40 hearing:8 armor-class:16 sleepiness:10 depth:18 rarity:4 weight:0 experience:80 blow:BITE:CONFUSE:2d2 flags:SMART | LEVITATE | COLD_BLOOD flags:IM_LIGHT spell-freq:15 spells:BLINK | CONF | TELE_LEVEL spells:TPORT friends:35:1d2:grey mushroom patch friends:35:1d1:shrieker mushroom patch friends:35:1d3:yellow mushroom patch friends:35:1d2:spotted mushroom patch friends:35:1d2:purple mushroom patch friends:35:1d1:magic mushroom patch #################################################################################### desc:Barely a foot tall, mischievous and attractively childlike with pointed ears, desc:and wearing a tiny green outfit and pointed hat. It's skin, hair, and eyes come desc:in shades of greens of the leaves and grass. desc:It's buzzing something angrily at you. name:orc captain base:orc color:o speed:110 hit-points:110 hearing:20 smell:20 armor-class:88 sleepiness:30 depth:18 rarity:3 weight:200 experience:80 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:DROP_60 flags:DROP_CORPSE | DROP_SKELETON spell-freq:9 innate-freq:100 spells:ARROW drop-base:nature book:5:1:1 friends:50:1d5:wolf friends:50:1d5:warg friends:80:1d2:orc tracker:servant friends:80:1d4:orc archer:servant friends-base:50:1d5:orc:servant friends-base:50:1d5:orc:servant friends-base:50:1d5:orc:servant desc:An armoured orc with an air of authority. #v name:blackguard base:person color:s speed:115 hit-points:120 hearing:20 armor-class:85 sleepiness:30 depth:18 rarity:1 weight:240 experience:180 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:MALE | EVIL flags:DROP_1 flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:12 innate-freq:33 spells:DARKNESS | SCARE spells:BOLT drop-base:shadow book:8:1:1 friends:50:1d1:rogue friends:50:1d1:ranger friends:50:1d1:paladin desc:A hulking figure encased in deep black plate armour; he looks at you desc: menacingly. name:fire spirit base:elemental color:r speed:120 hit-points:50 light:2 hearing:16 armor-class:36 sleepiness:20 depth:18 rarity:2 weight:0 experience:75 blow:HIT:FIRE:2d6 blow:HIT:FIRE:2d6 flags:LEVITATE flags:RAND_25 | BASH_DOOR flags:IM_FIRE | HURT_COLD flags:WILD_VOLCANO | WILD_DESERT desc:A whirlwind of sentient flame. name:fire hound base:zephyr hound color:r speed:110 hit-points:35 light:2 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:18 rarity:3 weight:60 experience:70 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 blow:BITE:FIRE:2d6 flags:BASH_DOOR flags:IM_FIRE | HURT_COLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_DESERT spell-freq:10 innate-freq:100 spells:BR_FIRE friends:100:2d7:Same desc:Flames lick at its feet and its tongue is a blade of fire. You can feel a desc: furnace heat radiating from the creature. name:cold hound base:zephyr hound color:w speed:110 hit-points:35 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:18 rarity:3 weight:60 experience:70 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 blow:BITE:COLD:2d6 flags:BASH_DOOR flags:IM_COLD | HURT_FIRE flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_GLACIER spell-freq:10 innate-freq:100 spells:BR_COLD friends:100:2d7:Same desc:A hound as tall as a man, this creature appears to be composed of angular desc: planes of ice. Cold radiates from it and freezes your breath in the air. name:energy hound base:zephyr hound color:b speed:110 hit-points:35 light:1 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:18 rarity:3 weight:60 experience:70 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 blow:BITE:ELEC:2d6 flags:BASH_DOOR flags:IM_ELEC flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:10 innate-freq:100 spells:BR_ELEC friends:100:2d7:Same desc:Saint Elmo's Fire forms a ghostly halo around this hound, and sparks sting desc: your fingers as energy builds up in the air around you. name:potion mimic base:mimic glyph:! color:w speed:110 hit-points:55 hearing:25 armor-class:36 sleepiness:0 depth:18 rarity:3 weight:0 experience:60 blow:HIT:POISON:3d4 blow:HIT:HURT:2d3 blow:HIT:HURT:2d3 flags:HURT_COLD spell-freq:6 spells:BO_COLD spells:BLIND | WOUND | CONF | SCARE desc:A strange creature that disguises itself as a discarded potion bottle to desc: lure unsuspecting adventurers within reach of its venomous claws. mimic:potion:Healing mimic:potion:*Healing* mimic:potion:Life mimic:potion:Experience mimic:potion:Augmentation mimic:potion:Speed name:blink dog base:canine color:B speed:120 hit-points:36 hearing:20 smell:50 armor-class:24 sleepiness:10 depth:18 rarity:2 weight:40 experience:50 blow:BITE:HURT:1d8 flags:RAND_25 | BASH_DOOR | GROUP_AI | ATTR_FLICKER flags:DROP_CORPSE | DROP_SKELETON spell-freq:4 spells:BLINK | TELE_TO friends:100:2d7:Same desc:A strange magical member of the canine race, its form seems to shimmer and desc: fade in front of your very eyes. name:shambling mound base:mushroom color:g speed:110 hit-points:70 hearing:20 armor-class:19 sleepiness:40 depth:18 rarity:2 weight:0 experience:75 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 flags:EVIL flags:DROP_60 | ONLY_GOLD flags:OPEN_DOOR | BASH_DOOR flags:WILD_SWAMP spell-freq:4 innate-freq:100 spells:SHRIEK friends:60:1d1:giant fruit fly desc:A pile of rotting vegetation that slides towards you with a disgusting desc: stench, waking all it nears. name:evil eye base:eye color:g speed:110 hit-points:68 hearing:2 armor-class:7 sleepiness:10 depth:18 rarity:3 weight:60 experience:80 blow:GAZE:EXP_10 blow:GAZE:EXP_10 flags:EVIL flags:NEVER_MOVE flags:HURT_LIGHT | NO_FEAR flags:DROP_CORPSE spell-freq:5 spells:HOLD | TELE_TO desc:A huge disembodied eye. As you stare into the black nothingness of its desc: pupil, you feel your will and vitality draining away, and are unable to do desc: anything except approach it in horrified fascination. name:lesser mimic base:random mimic color:G speed:110 hit-points:55 hearing:30 armor-class:36 sleepiness:0 depth:18 rarity:3 weight:100 experience:50 blow:HIT:POISON:3d4 blow:HIT:HURT:2d3 blow:HIT:HURT:2d3 flags:PWMANG_BASE spell-freq:6 spells:WOUND spells:BLIND | CONF | SCARE spells:BO_COLD | BO_FIRE desc:A strange creature that disguises itself as some object to lure desc: unsuspecting adventurers within reach of its venomous claws. name:door mimic base:feature mimic glyph:+ color:U speed:110 hit-points:55 hearing:25 armor-class:36 sleepiness:0 depth:18 rarity:6 weight:0 experience:70 blow:HIT:POISON:3d4 blow:HIT:CONFUSE:2d3 blow:HIT:PARALYZE:2d3 flags:PWMANG_BASE spell-freq:6 spells:BLIND | WOUND | CONF | SCARE spells:BO_COLD desc:A strange creature that disguises itself as a door to lure unsuspecting desc: adventurers within reach of its venomous claws. name:The Rat King base:rodent color:v speed:120 hit-points:240 hearing:30 smell:20 armor-class:36 sleepiness:10 depth:18 rarity:1 weight:0 experience:32 blow:CLAW:HURT:3d2 blow:CLAW:HURT:3d2 blow:BITE:DISEASE:4d2 blow:BITE:DISEASE:4d2 flags:UNIQUE | PWMANG_BASE flags:BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD flags:DROP_3 | ONLY_GOLD friends-base:100:1d5:rodent:servant friends-base:75:1d5:rodent:servant friends-base:50:1d5:rodent:servant desc:A massive rat. He is the leader of the pack. ### Dungeon level 19 ### name:Shagrat, the Orc Captain base:orc color:g speed:110 hit-points:400 hearing:20 smell:20 armor-class:72 sleepiness:20 depth:19 rarity:2 weight:0 experience:400 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:UNIQUE flags:DROP_1 | DROP_GOOD | ONLY_ITEM friends:50:3d4:snaga:servant friends:50:1d4:black orc:servant friends:80:2d4:cave orc:servant friends:80:1d2:orc tracker:servant friends:100:1d2:orc archer:servant friends:100:1d4:uruk:servant desc:He is an orc of power and great cunning, leader of the garrison at Cirith desc: Ungol. name:Gorbag, the Orc Captain base:orc color:g speed:110 hit-points:400 hearing:20 smell:20 armor-class:72 sleepiness:20 depth:19 rarity:2 weight:0 experience:400 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:UNIQUE flags:DROP_1 | DROP_GOOD | ONLY_ITEM friends:50:3d4:snaga:servant friends:50:1d4:black orc:servant friends:80:2d4:cave orc:servant friends:80:1d2:orc tracker:servant friends:100:1d2:orc archer:servant friends:100:1d4:uruk:servant desc:He is an orc of power and great cunning, leader of the garrison at Minas desc: Morgul. name:stone golem base:golem color:W speed:100 hit-points:126 hearing:12 armor-class:90 sleepiness:10 depth:19 rarity:2 weight:0 experience:100 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 flags:COLD_BLOOD flags:BASH_DOOR flags:HURT_ROCK | IM_COLD | IM_FIRE | IM_POIS flags:NO_STUN flags:SWIM_BAD desc:It is a massive animated statue. name:red mold base:mold color:r speed:110 hit-points:77 light:2 hearing:2 armor-class:19 sleepiness:70 depth:19 rarity:1 weight:0 experience:64 blow:SPORE:FIRE:4d4 flags:EMPTY_MIND | STUPID flags:IM_FIRE flags-off:HURT_FIRE desc:It is a strange red growth on the dungeon floor; it seems to burn with desc: flame. name:neekerbreeker base:insect color:D speed:120 hit-points:5 hearing:8 armor-class:21 sleepiness:10 depth:19 #4 rarity:6 weight:0 experience:4 blow:BITE:POISON:2d2 flags:EVIL flags:WILD_SWAMP spell-freq:12 spell-power:19 innate-freq:100 spells:SHRIEK desc:Believed to be an evil relative of the cricket, this creature gets its name desc: from its incessant squeaking, which can best be described as "neek-breek, desc: neek-breek". The noise can drive people frantic, and worse still, can be desc: heard for quite some distance, alerting other monsters to your presence. #v was huorn name:young huorn base:tree color:G speed:110 hit-points:900 light:-2 hearing:40 armor-class:80 sleepiness:20 depth:19 rarity:1 weight:0 experience:120 blow:CRUSH:HURT:3d6 blow:CRUSH:HURT:3d6 blow:CRUSH:HURT:3d6 blow:CRUSH:HURT:3d6 flags:DROP_40 | NO_SLEEP | WEIRD_MIND flags:IM_COLD | NEVER_MOVE spell-freq:9 spells:BLINK | TELE_TO desc:A very strong near-sentient tree, which has become hostile to other living desc: things. ########## DUNGEON LEVELS 20-29 ########## ### Dungeon level 20 ### name:ancient obelisk base:hybrid color:y speed:90 hit-points:150 hearing:1 armor-class:0 sleepiness:100 depth:20 rarity:1 weight:0 experience:0 flags:NEVER_BLOW flags:FORCE_SLEEP | NEVER_MOVE | STUPID | EMPTY_MIND | PWMANG_BASE flags:COLD_BLOOD flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW | IM_LIGHT flags:DROP_40 flags:IM_LIGHT spell-freq:100 innate-freq:25 spells:S_ANIMAL | S_SPIDER spells:ANIM_DEAD | TRAPS | DARKNESS | HEAL_KIN | HEAL | SLOW spells:TELE_AWAY | TELE_LEVEL | SHRIEK spells:CONF | SLOW | BLIND | SCARE spells:BO_ELEC | BO_WATE | BR_ELEC | BR_GRAV | BR_DARK | BOULDER desc:It seems this obelisk stay still for centuries. desc: But silence surrounding it presence makes you uneasy. name:blood falcon base:bird color:R speed:140 hit-points:6 hearing:50 smell:20 armor-class:2 sleepiness:10 depth:20 rarity:4 weight:80 experience:50 blow:CLAW:HURT:2d10 blow:CLAW:HURT:2d10 blow:BITE:HURT:3d8 flags:NO_FEAR flags:DROP_CORPSE | WILD_WOOD | NO_PIT flags:NO_PASS_TREE desc:A blinding whirlwind of fear and feathers. Its razor sharp beak and talons desc: fill its foes with terror as it seeks to rend flesh from bone with desc: unbridled ferocity. #v moved name:Mirkwood spider base:spider color:g speed:120 hit-points:41 hearing:15 armor-class:30 sleepiness:80 depth:20 rarity:2 weight:0 experience:25 blow:BITE:HURT:1d8 blow:BITE:POISON:1d6 blow:BITE:POISON:1d6 flags:EVIL | ANIMAL | WEIRD_MIND flags:IM_POIS | GROUP_AI flags:DROP_SKELETON | WILD_WOOD spell-freq:10 innate-freq:100 spells:WEAVE friends:100:2d7:Same desc:A strong and powerful spider from Mirkwood forest. Cunning and evil, it desc: seeks to taste your juicy insides. name:Bolg, Son of Azog base:orc color:P speed:120 hit-points:500 hearing:20 smell:20 armor-class:60 sleepiness:20 depth:20 rarity:4 weight:0 experience:800 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 flags:UNIQUE | MOVE_BODY flags:DROP_2 | DROP_GOOD | ONLY_ITEM friends:50:1d4:half-orc:servant friends:50:2d4:cave orc:servant friends:80:2d7:warg friends:100:2d2:orc tracker friends:100:4d2:orc archer friends:100:4d4:uruk:bodyguard desc:A large and powerful orc, he looks just like his father. He is tall and desc: fast, but fortunately blessed with orcish brains. name:phase spider base:spider color:B speed:120 hit-points:27 hearing:15 armor-class:30 sleepiness:80 depth:20 #2 rarity:3 weight:0 experience:60 blow:BITE:HURT:1d8 blow:BITE:POISON:1d6 blow:BITE:POISON:1d6 flags:ANIMAL | WEIRD_MIND | ATTR_FLICKER flags:IM_POIS | GROUP_AI flags:DROP_SKELETON | WILD_WOOD spell-freq:5 spell-power:20 spells:BLINK | TELE_TO friends:100:2d7:Same desc:A spider that never seems quite there. Everywhere you look it is just desc: half-seen in the corner of one eye. name:3-headed hydra base:hydra color:o speed:120 hit-points:300 hearing:20 armor-class:97 sleepiness:70 depth:20 rarity:2 weight:450 experience:350 blow:BITE:HURT:2d6 blow:BITE:HURT:2d6 blow:BITE:HURT:2d6 flags:DROP_3 flags:MOVE_BODY flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:9 spells:SCARE desc:A 2-headed hydra with one extra head, opening its mighty jaws at you. name:earth hound base:zephyr hound color:u speed:110 hit-points:68 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:20 rarity:3 weight:60 experience:200 blow:BITE:HURT:1d8 blow:BITE:HURT:1d8 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 flags:BASH_DOOR flags:FORCE_SLEEP | NO_CUT flags:DROP_CORPSE | DROP_SKELETON spell-freq:10 innate-freq:100 spells:BR_SHAR friends:100:2d7:Same desc:A beautiful crystalline shape does not disguise the danger this hound desc: clearly presents. Your flesh tingles as it approaches. name:air hound base:zephyr hound color:g speed:110 hit-points:68 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:20 rarity:3 weight:60 experience:200 blow:BITE:POISON:1d8 blow:BITE:POISON:1d8 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 flags:BASH_DOOR flags:IM_POIS | LEVITATE flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:10 innate-freq:100 spells:BR_POIS friends:100:2d7:Same desc:Swirling vapours surround this beast as it floats towards you, seemingly desc: walking on air. Noxious gases sting your throat. name:sabre-tooth tiger base:feline color:y speed:120 hit-points:150 hearing:40 smell:30 armor-class:60 sleepiness:0 depth:20 rarity:2 weight:180 experience:120 blow:CLAW:HURT:1d10 blow:CLAW:HURT:1d10 blow:BITE:HURT:1d10 blow:BITE:HURT:1d10 flags:BASH_DOOR flags:DROP_CORPSE | DROP_SKELETON | WILD_GRASS | WILD_WOOD desc:A fierce and dangerous cat, its huge tusks and sharp claws would lacerate desc: even the strongest armour. name:acid hound base:zephyr hound color:s speed:110 hit-points:68 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:20 rarity:3 weight:60 experience:200 blow:BITE:ACID:1d8 blow:BITE:ACID:1d8 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 flags:BASH_DOOR flags:IM_ACID flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:10 innate-freq:100 spells:BR_ACID friends:100:2d7:Same desc:Liquid footprints follow this hound as it pads around the dungeon. An acrid desc: smell of acid rises from the dog's pelt. name:chimaera base:hybrid color:r speed:110 hit-points:160 hearing:12 smell:20 armor-class:22 sleepiness:30 depth:20 rarity:2 weight:160 experience:200 blow:BUTT:HURT:2d8 blow:BITE:HURT:2d10 blow:BITE:FIRE:2d6 flags:BASH_DOOR flags:IM_FIRE | LEVITATE flags:FORCE_SLEEP flags:DROP_CORPSE | WILD_MOUNTAIN | WILD_DESERT spell-freq:10 innate-freq:100 spells:BR_FIRE desc:It is a strange concoction of goat, lion and dragon, with the heads of all desc: three beasts. name:quylthulg base:quylthulg color:y speed:110 hit-points:27 hearing:10 armor-class:1 sleepiness:2 depth:20 rarity:1 weight:0 experience:250 spell-freq:4 spells:BLINK spells:S_MONSTER desc:It is a strange pulsing mound of flesh. name:sasquatch plural:sasquatches base:yeti color:g speed:120 hit-points:200 hearing:15 smell:20 armor-class:60 sleepiness:20 depth:20 rarity:3 weight:350 experience:180 blow:CLAW:HURT:1d10 blow:CLAW:HURT:1d10 blow:BITE:HURT:2d8 flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD | WILD_WASTE | WILD_MOUNTAIN desc:A tall shaggy, furry humanoid, it could call the yeti brother. name:werewolf plural:werewolves base:canine color:D speed:110 hit-points:230 hearing:15 smell:50 armor-class:36 sleepiness:70 depth:20 rarity:1 weight:90 experience:150 blow:CLAW:HURT:2d6 blow:CLAW:HURT:2d6 blow:BITE:HURT:2d10 flags:EVIL flags:RAND_25 | OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON | HYBRID desc:It is a huge wolf with eyes that glow with manly intelligence. name:dark elven lord base:humanoid color:s speed:120 hit-points:144 hearing:20 armor-class:48 sleepiness:30 depth:20 rarity:2 weight:140 experience:500 blow:HIT:HURT:3d8 blow:HIT:HURT:3d5 flags:MALE | EVIL flags:DROP_2 | ONLY_ITEM flags:HURT_LIGHT flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 spells:BLIND | CONF | DARKNESS | HASTE spells:BO_COLD | BO_FIRE drop-base:magic book:5:1:1 friends:80:1d3:dark elf:servant friends:70:1d2:dark elven warrior:servant friends:50:1d1:dark elven mage:servant friends:50:1d1:dark elven priest:servant desc:A dark elven figure in armour and radiating evil power. name:ranger base:person color:W speed:110 hit-points:90 light:2 hearing:20 armor-class:60 sleepiness:20 depth:20 rarity:1 weight:170 experience:55 blow:HIT:HURT:5d4 blow:HIT:HURT:5d4 flags:MALE flags:DROP_1 flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON spell-freq:4 innate-freq:20 spells:ARROW | BLINK | HASTE spells:BO_COLD spells:S_ANIMAL drop-base:nature book:5:1:1 friends:50:1d1:Easterling champion friends:40:1d1:rogue friends:10:1d1:master rogue friends:50:1d2:illusionist friends:50:1d2:priest friends:50:1d1:paladin desc:A warrior who is at one with nature. A master of both bow and sword, with desc: minor spellcasting skills, and animals come to do his bidding. name:paladin base:person color:w speed:110 hit-points:90 light:2 hearing:20 armor-class:48 sleepiness:40 depth:20 rarity:1 weight:170 experience:55 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 flags:MALE flags:DROP_1 flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON flags:IM_LIGHT spell-freq:4 spells:HEAL | SLOW drop-base:prayer book:5:1:1 friends:50:1d1:Easterling champion friends:40:1d1:rogue friends:10:1d1:master rogue friends:50:1d2:illusionist friends:50:1d2:priest friends:50:1d1:ranger desc:A warrior for a holy cause. Unfortunately, his god is not yours, and there desc: is rivalry even between the various gods of Good, so he is your enemy. name:lizard king base:humanoid color:t speed:120 hit-points:174 light:2 hearing:20 armor-class:48 sleepiness:20 depth:20 rarity:3 weight:160 experience:150 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:WAIL:TERRIFY flags:MALE | EVIL | PWMANG_BASE flags:DROP_40 | DROP_1 | DROP_CORPSE flags:IM_ACID | IM_POIS | IM_WATER flags:WILD_SHORE flags:SWIM_GOOD friends:80:1d3:lizard man:servant desc:A lizard-man leader. name:great eagle base:bird color:M speed:120 hit-points:300 hearing:20 armor-class:65 sleepiness:20 depth:20 rarity:7 weight:100 experience:150 blow:CLAW:HURT:6d3 blow:CLAW:HURT:6d3 blow:BITE:HURT:3d6 flags:PWMANG_BASE flags:WILD_MOUNTAIN | WILD_VOLCANO | WILD_WASTE | WILD_WOOD flags:WILD_DESERT | DROP_CORPSE desc:Greater and more intelligent than most of its kind, this great eagle is desc: a messenger between the forces of good. name:livingstone base:mineral color:U speed:110 hit-points:27 hearing:45 armor-class:34 sleepiness:20 depth:20 rarity:4 weight:0 experience:56 blow:HIT:HURT:2d5 blow:HIT:HURT:2d5 flags:NEVER_MOVE | PWMANG_BASE flags:IM_FIRE | HURT_ROCK flags:IM_ELEC | NO_FEAR friends:100:2d7:Same desc:A sentient section of wall. name:elite uruk base:orc color:w speed:110 hit-points:88 light:2 hearing:20 smell:20 armor-class:75 sleepiness:10 depth:20 rarity:1 weight:200 experience:70 blow:HIT:HURT:8d5 blow:HIT:HURT:8d5 flags:PWMANG_BASE flags:DROP_CORPSE | DROP_SKELETON | DROP_20 spell-freq:8 innate-freq:100 spells:ARROW | WHIP drop-base:nature book:5:1:1 friends:40:1d4:half-orc friends:80:2d5:warg friends:50:1d2:orc tracker friends:50:1d2:orc archer friends:100:3d3:Same desc:It is a cunning orc of power, taller than a man is, and stronger. It fears desc: little. name:The Icky Queen base:icky thing color:v speed:120 hit-points:400 hearing:20 armor-class:60 sleepiness:10 depth:20 rarity:5 weight:0 experience:400 blow:CRAWL:POISON:3d4 blow:SWALLOW:EAT_FOOD:3d4 blow:TOUCH:ACID:3d5 blow:HIT:HURT:3d5 flags:EVIL | WEIRD_MIND | UNIQUE | FEMALE | SMART | PWMANG_BASE flags:ONLY_ITEM | DROP_1 | DROP_GOOD flags:TAKE_ITEM | OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS spell-freq:5 spells:BLIND | CONF | DRAIN_MANA | SCARE spells:S_KIN friends-base:100:1d5:icky thing:servant friends-base:75:1d5:icky thing:servant friends-base:50:1d5:icky thing:servant desc:And you thought her offspring were icky! name:gold dragon worm base:dragon worm color:Y speed:100 hit-points:80 hearing:10 armor-class:48 sleepiness:80 depth:20 rarity:3 weight:0 experience:12 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 blow:BITE:HURT:3d5 flags:NO_STUN | PWMANG_BASE spell-freq:6 innate-freq:100 spells:BR_SOUN desc:You thought dragons used eggs, but this worm has the scales, and the bad desc: breath, and the fiery eyes, of a real dragon. You can feel the air itself desc: vibrating as you near it. name:blue dragon worm base:dragon worm color:B speed:100 hit-points:80 hearing:10 armor-class:48 sleepiness:80 depth:20 rarity:3 weight:0 experience:12 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 blow:BITE:HURT:3d5 flags:IM_ELEC | PWMANG_BASE spell-freq:6 innate-freq:100 spells:BR_ELEC desc:You thought dragons used eggs, but this worm has the scales, and the bad desc: breath, and the fiery eyes, of a real dragon. Sparks fly from its jaws. name:white dragon worm base:dragon worm color:W speed:100 hit-points:80 hearing:10 armor-class:48 sleepiness:80 depth:20 rarity:3 weight:0 experience:12 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 blow:BITE:HURT:3d5 flags:IM_COLD | PWMANG_BASE spell-freq:6 innate-freq:100 spells:BR_COLD desc:You thought dragons used eggs, but this worm has the scales, and the bad desc: breath, and the fiery eyes, of a real dragon. Its breath condenses in the desc: air. name:green dragon worm base:dragon worm color:G speed:100 hit-points:80 hearing:10 armor-class:48 sleepiness:80 depth:20 rarity:3 weight:0 experience:12 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 blow:BITE:HURT:3d5 flags:IM_POIS | PWMANG_BASE spell-freq:6 innate-freq:100 spells:BR_POIS desc:You thought dragons used eggs, but this worm has the scales, and the bad desc: breath, and the fiery eyes, of a real dragon. You can smell foul gases on desc: its breath. name:black dragon worm base:dragon worm color:s speed:100 hit-points:80 hearing:10 armor-class:48 sleepiness:80 depth:20 rarity:3 weight:0 experience:12 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 blow:BITE:HURT:3d5 flags:IM_ACID | PWMANG_BASE spell-freq:6 innate-freq:100 spells:BR_ACID desc:You thought dragons used eggs, but this worm has the scales, and the bad desc: breath, and the fiery eyes, of a real dragon. Acidic drool drips from its desc: jaws. name:red dragon worm base:dragon worm color:R speed:100 hit-points:80 hearing:10 armor-class:48 sleepiness:80 depth:20 rarity:3 weight:0 experience:12 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 blow:BITE:HURT:3d5 flags:IM_FIRE | PWMANG_BASE spell-freq:6 innate-freq:100 spells:BR_FIRE desc:You thought dragons used eggs, but this worm has the scales, and the bad desc: breath, and the fiery eyes, of a real dragon. Smoke comes from its mouth. name:unbeliever base:person color:m speed:110 hit-points:83 light:2 hearing:20 armor-class:48 sleepiness:40 depth:20 rarity:1 weight:190 experience:90 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:MALE | ANTI_MAGIC | PWMANG_BASE flags:DROP_1 | DROP_CORPSE | DROP_SKELETON flags:OPEN_DOOR friends:50:1d1:Easterling champion friends:10:1d1:master rogue friends:40:1d1:rogue desc:A scarred warrior who moves with strange confidence. name:whale base:aquatic color:G speed:110 hit-points:150 hearing:15 armor-class:50 sleepiness:70 depth:20 rarity:4 weight:0 experience:175 blow:CRUSH:HURT:1d20 blow:CRUSH:HURT:1d20 flags:PWMANG_BASE | WILD_SHORE | WILD_OCEAN flags:RAND_25 desc:Although it looks like a fish and lives in water, it is in fact desc: a mammal. And it is huge! ### Dungeon level 21 ### name:Kikimora base:person color:s speed:120 hit-points:600 hearing:20 armor-class:60 sleepiness:10 depth:20 rarity:5 weight:0 experience:750 blow:CRAWL:POISON:3d4 blow:SWALLOW:EAT_FOOD:3d4 blow:TOUCH:ACID:3d5 blow:HIT:HURT:3d5 flags:EVIL | WEIRD_MIND | UNIQUE | FEMALE | SMART | PWMANG_BASE flags:ONLY_ITEM | DROP_3 | DROP_GOOD | PWMANG_FIXED flags:TAKE_ITEM | OPEN_DOOR | BASH_DOOR | FORCE_DEPTH | LEVITATE flags:IM_ACID | IM_COLD | IM_ELEC | IM_POIS drop:food:Stolen mushroom:100:7:9 spell-freq:5 spells:BLIND | CONF | SCARE | DARKNESS | WOUND friends-base:100:1d5:dragon worm friends-base:75:1d5:dragon worm friends-base:50:1d5:dragon worm desc: An old hag living in the swamps.. She likes to eat humans... locations:Fetid Swamps name:Lugdush, the Uruk base:orc color:b speed:110 hit-points:640 hearing:20 smell:20 armor-class:108 sleepiness:20 depth:21 rarity:4 weight:0 experience:550 blow:HIT:HURT:3d7 blow:HIT:HURT:3d7 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:UNIQUE flags:DROP_1 | DROP_GOOD | ONLY_ITEM friends:50:3d4:half-orc:servant friends:80:2d7:warg friends:50:1d3:orc captain friends:100:4d4:uruk:servant desc:A large and powerful orc, captain of one of Saruman's orcish regiments. name:blue dragon bat base:bat color:b speed:130 hit-points:10 hearing:12 armor-class:39 sleepiness:10 depth:21 rarity:1 weight:10 experience:54 blow:BITE:ELEC:1d3 flags:RAND_50 | BASH_DOOR flags:IM_ELEC flags:FORCE_SLEEP flags:DROP_CORPSE spell-freq:4 innate-freq:100 spells:BR_ELEC desc:It is a glowing blue bat with a sharp tail. name:scroll mimic base:mimic glyph:? color:w speed:110 hit-points:75 hearing:30 armor-class:48 sleepiness:0 depth:21 rarity:3 weight:0 experience:70 blow:HIT:POISON:3d4 blow:HIT:POISON:3d4 blow:HIT:HURT:2d3 blow:HIT:HURT:2d3 flags:HURT_FIRE spell-freq:5 spells:BO_FIRE spells:S_MONSTER spells:BLIND | WOUND | CONF | SCARE desc:A strange creature that disguises itself as a discarded scroll to lure desc: unsuspecting adventurers within reach of its venomous claws. mimic:scroll:Banishment mimic:scroll:Mass Banishment mimic:scroll:Teleport Level mimic:scroll:Acquirement mimic:scroll:*Acquirement* mimic:scroll:*Destruction* name:fire vortex plural:fire vortices base:vortex color:r speed:110 hit-points:45 light:2 hearing:100 armor-class:36 sleepiness:0 depth:21 rarity:1 weight:0 experience:100 blow:ENGULF:FIRE:3d3 flags:IM_FIRE | HURT_COLD flags:NO_STUN | WILD_VOLCANO | WILD_DESERT spell-freq:4 innate-freq:100 spells:BR_FIRE desc:A whirling maelstrom of fire. name:water vortex plural:water vortices base:vortex color:s speed:110 hit-points:45 hearing:100 armor-class:36 sleepiness:0 depth:21 rarity:1 weight:0 experience:100 blow:ENGULF:ACID:3d3 flags:IM_ACID | IM_WATER flags:NO_STUN spell-freq:4 innate-freq:100 spells:BR_ACID desc:A caustic spinning whirlpool of water. name:cold vortex plural:cold vortices base:vortex color:w speed:110 hit-points:45 hearing:100 armor-class:36 sleepiness:0 depth:21 rarity:1 weight:0 experience:100 blow:ENGULF:COLD:3d3 flags:IM_COLD | HURT_FIRE flags:NO_STUN flags:WILD_GLACIER spell-freq:4 innate-freq:100 spells:BR_COLD desc:A twisting whirlpool of frost. name:energy vortex plural:energy vortices base:vortex color:b speed:110 hit-points:45 light:2 hearing:100 armor-class:36 sleepiness:0 depth:21 #1 rarity:2 weight:0 experience:100 blow:ENGULF:ELEC:3d3 flags:ATTR_FLICKER flags:IM_ELEC flags:NO_STUN spell-freq:6 spell-power:21 innate-freq:100 spells:BR_ELEC desc:A shimmering tornado of air, sparks crackle along its length. name:mummified orc base:zombie color:w speed:110 hit-points:86 hearing:20 armor-class:33 sleepiness:75 depth:21 rarity:1 weight:0 experience:56 blow:HIT:HURT:2d4 blow:HIT:HURT:2d4 flags:ORC | EMPTY_MIND flags:DROP_20 flags:NO_FEAR desc:It is an orcish figure covered in wrappings. name:mimic base:random mimic color:g speed:110 hit-points:80 hearing:30 armor-class:48 sleepiness:0 depth:21 rarity:3 weight:100 experience:100 blow:HIT:POISON:3d4 blow:HIT:POISON:3d4 blow:HIT:HURT:2d3 blow:HIT:HURT:2d3 flags:PWMANG_BASE spell-freq:5 spells:WOUND spells:S_MONSTER spells:BLIND | CONF | SCARE spells:BO_COLD | BO_FIRE desc:A strange creature that disguises itself as an object to lure unsuspecting desc: adventurers within reach of its venomous claws. #hill troll in pre-4.x name:troll bishop base:troll color:s speed:100 hit-points:250 hearing:20 smell:20 armor-class:40 sleepiness:40 depth:21 #1 rarity:9 weight:400 experience:75 blow:HIT:HURT:1d5 blow:HIT:HURT:1d5 blow:BITE:HURT:2d6 flags:MALE | PWMANG_BASE flags:DROP_20 | WILD_WASTE | WILD_MOUNTAIN flags:DROP_SKELETON | DROP_CORPSE flags:HURT_FIRE | REGENERATE spell-freq:8 spells:HEAL | HEAL_KIN spells:WOUND desc:A large troll with an extremely tough and warty hide. desc: He is touched by divine talent which is quire rare among it's kind. ### Dungeon level 22 ### #neekerbreeker name:crab frog base:hybrid color:U speed:120 hit-points:55 hearing:8 armor-class:81 sleepiness:10 depth:22 rarity:4 weight:0 experience:50 blow:BITE:POISON:2d2 blow:CLAW:HURT:1d4 blow:CLAW:HURT:1d4 flags:WILD_SWAMP desc:Nasty tiny crab frog mutant which lurks around extreamely fast. name:Ugluk, the Uruk base:orc color:b speed:110 hit-points:720 hearing:20 smell:20 armor-class:114 sleepiness:20 depth:22 rarity:3 weight:0 experience:600 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:UNIQUE | MOVE_BODY flags:DROP_1 | DROP_GOOD | ONLY_ITEM flags:IM_COLD | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD drop:food:Swig of Orcish Liquor:90:1:1 friends:50:2d4:half-orc:servant friends:80:2d5:warg friends:100:4d4:uruk:bodyguard friends:80:1d3:orc captain:servant friends:100:1d1:Lugdush, the Uruk:servant friends:100:1d1:Mauhur, the Orc Captain desc:A strong and cunning orc warrior, the commander of Saruman's orcish horde. name:Mauhur, the Orc Captain base:orc color:R speed:110 hit-points:500 hearing:20 smell:20 armor-class:96 sleepiness:20 depth:22 rarity:5 weight:0 experience:500 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 flags:UNIQUE | MALE drop-base:food:50:1:2 friends:100:2d4:half-orc friends:100:2d4:uruk:bodyguard desc:He will eat you alive... desc:"I'm starving. We ain't had 'nothing but maggoty bread desc: for three stinking days!" name:killer stag beetle base:killer beetle color:g speed:110 hit-points:68 hearing:12 armor-class:86 sleepiness:30 depth:22 rarity:1 weight:50 experience:80 blow:CLAW:HURT:3d6 blow:CLAW:HURT:3d6 flags:RAND_25 flags:DROP_CORPSE | WILD_ALL desc:It is a giant beetle with vicious claws. name:iron golem base:golem color:s speed:110 hit-points:520 hearing:12 armor-class:120 sleepiness:20 depth:22 rarity:2 weight:0 experience:160 blow:HIT:HURT:1d12 flags:COLD_BLOOD flags:BASH_DOOR flags:IM_COLD | IM_FIRE | IM_POIS flags:FORCE_SLEEP flags:NO_STUN flags:SWIM_BAD spell-freq:7 spells:SLOW desc:It is a massive metal statue that moves steadily towards you. name:giant yellow scorpion base:spider color:y speed:110 hit-points:54 hearing:12 armor-class:45 sleepiness:20 depth:22 rarity:1 weight:0 experience:60 blow:CLAW:HURT:1d8 blow:CLAW:HURT:1d8 blow:STING:POISON:2d5 flags:ANIMAL | WEIRD_MIND flags:IM_POIS flags:DROP_SKELETON | WILD_ALL desc:It is a giant scorpion with a sharp stinger. name:wyvern base:dragon color:g speed:120 hit-points:203 hearing:20 armor-class:79 sleepiness:60 depth:22 rarity:2 weight:450 experience:250 blow:BITE:HURT:2d6 blow:BITE:HURT:2d6 blow:STING:POISON:2d6 flags:ANIMAL flags:DROP_2 | ONLY_GOLD flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:IM_POIS flags:ATTR_FLICKER | DROP_CORPSE | DROP_SKELETON | WILD_WOOD | WILD_MOUNTAIN desc:A fast-moving and deadly draconian animal. Beware its poisonous sting! name:vampiric mist base:mist color:s speed:110 hit-points:45 hearing:12 armor-class:66 sleepiness:30 depth:22 rarity:1 weight:0 experience:40 blow:ENGULF:EXP_20:1d6 blow:ENGULF:EXP_20:1d6 flags:UNDEAD | PWMANG_BASE flags:NO_SLEEP | NO_STUN flags:WILD_SWAMP friends:100:2d7:Same desc:A cloud of evil, sentient mist. name:dark mist base:mist color:D speed:110 hit-points:45 hearing:12 armor-class:66 sleepiness:30 depth:22 rarity:1 weight:0 experience:40 blow:DEVOUR:EAT_LIGHT:1d8 blow:DEVOUR:EAT_LIGHT:1d8 flags:IM_ELEC | HURT_FIRE | IM_NETHER | PWMANG_BASE friends:100:2d7:Same desc:A pitch-dark cloud of evil, sentient mist. ### Dungeon level 23 ### #phase spider name:spectral spider base:spider color:B speed:120 hit-points:27 hearing:15 armor-class:30 sleepiness:80 depth:23 rarity:2 weight:0 experience:60 blow:BITE:HURT:1d8 blow:BITE:POISON:1d6 blow:BITE:POISON:1d6 flags:ANIMAL | WEIRD_MIND | ATTR_FLICKER flags:IM_POIS | GROUP_AI flags:DROP_SKELETON | WILD_WOOD flags:INVISIBLE spell-freq:5 spells:BLINK | TELE_TO | TELE_SELF_TO | SLOW friends:100:1d3:Same desc:A transparent spider who dwells in the between of desc: two worlds. name:black ooze base:jelly color:D speed:90 hit-points:27 hearing:10 armor-class:7 sleepiness:1 depth:23 rarity:1 weight:0 experience:7 blow:TOUCH:ACID:2d6 flags:MULTIPLY flags:DROP_40 flags:RAND_50 | OPEN_DOOR | BASH_DOOR | KILL_BODY | TAKE_ITEM flags:IM_POIS | HURT_COLD spell-freq:11 spells:DRAIN_MANA desc:It is a strangely moving puddle. name:Easterling champion base:person color:u speed:110 hit-points:90 light:2 hearing:20 armor-class:60 sleepiness:60 depth:23 rarity:1 weight:190 experience:60 blow:HIT:HURT:6d5 blow:HIT:HURT:6d5 flags:MALE | EVIL flags:DROP_1 flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON spell-freq:6 innate-freq:100 spells:BOLT friends:50:1d1:rogue friends:50:1d1:ranger friends:50:1d1:mage friends:50:1d1:paladin desc:A scarred warrior who wields an axe and moves with confidence. name:Azog, the Great Orc base:orc color:R speed:120 hit-points:900 hearing:20 smell:20 armor-class:96 sleepiness:20 depth:23 rarity:5 weight:0 experience:750 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:UNIQUE | PWMANG_FIXED | MOVE_BODY flags:DROP_2 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:FORCE_DEPTH drop:food:Maggoty bread:100:7:9 friends:10:1d4:half-orc friends:80:2d7:warg friends:100:2d2:orc tracker friends:100:4d2:orc archer friends:100:4d4:uruk:bodyguard friends:50:1d3:orc captain:servant friends:100:1d1:Bolg, Son of Azog desc:He is also known as the King of Khazad-dum, desc:the King of the Uruk-Hai and the Enemy of the Dwarves. desc:His ego is renowned to be bigger than his head. locations:The Orc Mountains name:outlaw base:person color:b speed:120 hit-points:75 hearing:20 armor-class:45 sleepiness:5 depth:23 rarity:2 weight:160 experience:110 blow:HIT:HURT:2d8 blow:HIT:HURT:2d8 blow:HIT:EAT_GOLD:4d4 blow:HIT:EAT_ITEM:4d4 flags:MALE | EVIL flags:DROP_2 flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON spell-freq:4 innate-freq:100 spells:SHOT drop-base:shadow book:5:1:1 friends:50:1d1:Easterling champion friends:50:1d1:ranger friends:50:1d1:mage friends:50:1d1:paladin desc:A thief of great power and shifty speed. name:master rogue base:person color:b speed:120 hit-points:75 hearing:20 armor-class:45 sleepiness:5 depth:23 rarity:4 weight:160 experience:110 blow:HIT:HURT:2d8 blow:HIT:HURT:2d8 blow:HIT:EAT_GOLD:4d4 flags:MALE | EVIL flags:DROP_2 flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON drop-base:shadow book:5:1:1 friends:50:1d1:Easterling champion friends:50:1d1:ranger friends:50:1d1:mage friends:50:1d1:paladin desc:A thief of great power and shifty speed. name:red dragon bat base:bat color:r speed:130 hit-points:14 light:2 hearing:12 armor-class:42 sleepiness:10 depth:23 rarity:1 weight:10 experience:60 blow:BITE:FIRE:1d3 flags:RAND_50 | BASH_DOOR flags:IM_FIRE flags:FORCE_SLEEP flags:DROP_CORPSE | WILD_DESERT spell-freq:4 innate-freq:100 spells:BR_FIRE desc:It is a sharp-tailed bat, wreathed in fire. name:magic maggot base:killer beetle color:w speed:110 hit-points:81 hearing:14 armor-class:66 sleepiness:30 depth:23 #1 rarity:4 weight:50 experience:85 blow:BITE:HURT:4d5 flags:RAND_25 flags:DROP_CORPSE | WILD_ALL spell-freq:5 spells:TELE_SELF_TO desc:It trying to get on your skin to suck your blood. name:giant silver ant base:ant color:W speed:110 hit-points:41 hearing:10 smell:20 armor-class:100 sleepiness:40 depth:23 rarity:1 weight:0 experience:80 blow:BITE:ACID:4d4 blow:BITE:ACID:4d4 flags:RAND_25 flags:DROP_SKELETON | WILD_ALL spell-freq:6 innate-freq:100 spells:SPIT desc:A giant silver ant with a caustic bite and hard scales. name:dark elven warlock base:humanoid color:i speed:120 hit-points:39 hearing:20 armor-class:24 sleepiness:20 depth:23 rarity:1 weight:170 experience:75 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 flags:EVIL | MALE | PWMANG_BASE flags:ONLY_ITEM | DROP_1 | DROP_CORPSE | DROP_SKELETON flags:HURT_LIGHT flags:FORCE_SLEEP spell-freq:5 spells:CONF | DARKNESS | MISSILE spells:BO_MANA drop-base:magic book:5:1:1 friends:100:4d4:Same desc:A dark elven mage with spells of frightening destructive power. name:ice skeleton base:skeleton color:w speed:110 hit-points:80 hearing:20 armor-class:45 sleepiness:60 depth:23 rarity:1 weight:0 experience:70 blow:CLAW:COLD:2d3 blow:CLAW:COLD:2d3 flags:EMPTY_MIND | PWMANG_BASE flags:DROP_60 | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:HURT_FIRE flags:WILD_GLACIER desc:It is a skeleton covered in frost. name:multi-hued dragon worm base:dragon worm color:v speed:100 hit-points:105 hearing:10 armor-class:48 sleepiness:80 depth:23 rarity:3 weight:0 experience:12 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 blow:BITE:HURT:3d5 flags:IM_ELEC | IM_FIRE | IM_ACID | IM_COLD | IM_POIS | PWMANG_BASE flags:ATTR_MULTI spell-freq:6 innate-freq:100 spells:BR_ACID | BR_COLD | BR_ELEC | BR_FIRE | BR_POIS desc:You thought dragons used eggs, but this worm has the scales, and the bad desc: breath, and the fiery eyes, of a real dragon. Its scales shimmer with desc: different colours as you watch. ### Dungeon level 24 ### name:It glyph:. base:hybrid color:w speed:110 hit-points:700 hearing:25 armor-class:80 sleepiness:25 depth:24 rarity:5 weight:0 experience:400 blow:GAZE:BLIND:8d8 blow:TOUCH:TERRIFY blow:GAZE:EXP_20 blow:TOUCH:EAT_ITEM flags:UNIQUE | STUPID | EVIL | LEVITATE flags:COLD_BLOOD | EMPTY_MIND | INVISIBLE | UNAWARE flags:NO_FEAR | NO_CONF | NO_SLEEP flags:ATTR_MULTI | CHAR_CLEAR flags:IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:DROP_1 | DROP_GOOD | DROP_GREAT | ONLY_ITEM spell-freq:4 spells:BLINK | DRAIN_MANA | SCARE | CONF | S_MONSTER spells:DARKNESS | S_HYDRA | FORGET | TELE_TO desc:Nobody has ever seen It. name:forest wight base:wraith color:g speed:110 hit-points:54 hearing:20 armor-class:36 sleepiness:30 depth:24 rarity:1 weight:0 experience:140 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 blow:TOUCH:EXP_20 flags:DROP_40 | DROP_60 flags:RAND_25 | OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP | LEVITATE spell-freq:10 spells:DRAIN_MANA | SCARE desc:It is a ghostly apparition with a humanoid form. name:Ibun, Son of Mim base:humanoid color:o speed:110 hit-points:820 hearing:20 armor-class:96 sleepiness:10 depth:24 rarity:2 weight:0 experience:300 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:HIT:DISENCHANT flags:UNIQUE | MALE flags:DROP_1 | DROP_GOOD | ONLY_ITEM flags:IM_COLD | IM_FIRE | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP drop:food:Petty-dwarf roots:100:1:1 spell-freq:8 spells:HEAL | SLOW spells:BO_FIRE desc:One of the last of the Petty-Dwarves. Ibun is a tricky sorcerous little desc: being, full of mischief. name:Khim, Son of Mim base:humanoid color:o speed:110 hit-points:820 hearing:20 armor-class:96 sleepiness:10 depth:24 rarity:2 weight:0 experience:300 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:HIT:DISENCHANT flags:UNIQUE | MALE flags:DROP_1 | DROP_GOOD | ONLY_ITEM flags:IM_COLD | IM_FIRE | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP drop:food:Petty-dwarf roots:100:1:1 spell-freq:8 spells:HEAL | SLOW spells:BO_FIRE desc:One of the last of the Petty-Dwarves. Khim is a tricky sorcerous little desc: being, full of mischief. name:4-headed hydra base:hydra color:y speed:120 hit-points:350 hearing:20 armor-class:105 sleepiness:60 depth:24 rarity:2 weight:500 experience:450 blow:BITE:HURT:2d6 blow:BITE:HURT:2d6 blow:BITE:HURT:2d6 blow:BITE:POISON:2d6 flags:DROP_3 flags:MOVE_BODY flags:IM_POIS flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:7 spells:SCARE desc:A 3-headed hydra with one extra head, dripping venom. name:mummified human base:zombie color:w speed:110 hit-points:105 hearing:20 armor-class:51 sleepiness:70 depth:24 rarity:1 weight:0 experience:70 blow:HIT:HURT:2d4 blow:HIT:HURT:2d4 flags:EMPTY_MIND flags:DROP_60 | ONLY_ITEM flags:NO_FEAR desc:It is a human form encased in mouldy wrappings. name:vampire bat base:bat color:D speed:120 hit-points:50 hearing:12 armor-class:60 sleepiness:10 depth:24 rarity:2 weight:0 experience:150 blow:BITE:EXP_40:1d4 blow:BITE:EXP_40:1d4 flags:UNDEAD | EVIL | COLD_BLOOD | REGENERATE flags:RAND_50 flags:IM_COLD | NO_FEAR | NO_CONF | NO_SLEEP | NO_STUN desc:A blood-sucking bat that flies at your neck hungrily. name:Sangahyando of Umbar base:person color:U speed:110 hit-points:800 light:2 hearing:25 armor-class:96 sleepiness:25 depth:24 rarity:2 weight:0 experience:400 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 flags:UNIQUE | MALE | EVIL flags:DROP_60 | DROP_1 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR flags:IM_ELEC | IM_FIRE | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:4 spells:CONF | SLOW friends:100:1d1:Angamait of Umbar desc:A Black Numenorean with a blacker heart. name:Angamait of Umbar base:person color:U speed:110 hit-points:800 light:2 hearing:25 armor-class:96 sleepiness:25 depth:24 rarity:2 weight:0 experience:400 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 flags:UNIQUE | MALE | EVIL flags:DROP_60 | DROP_1 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR flags:IM_ELEC | IM_FIRE | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:4 spells:CONF | SLOW friends:100:1d1:Sangahyando of Umbar desc:A Black Numenorean who hates the men of the west. name:banshee base:ghost color:b speed:120 hit-points:27 hearing:20 armor-class:28 sleepiness:10 depth:24 rarity:2 weight:0 experience:60 blow:WAIL:TERRIFY blow:TOUCH:EXP_20 flags:FEMALE flags:DROP_1 flags:RAND_50 | TAKE_ITEM spell-freq:15 spells:DRAIN_MANA | TPORT desc:It is a ghostly woman's form that wails mournfully. name:giant firefly plural:giant fireflies base:insect color:r speed:120 hit-points:5 light:2 hearing:8 armor-class:21 sleepiness:10 depth:24 #4 rarity:7 weight:0 experience:4 blow:BITE:BLIND:1d2 desc:Clouds of these monsters light up the dungeon - so brightly that you can desc: barely see through them. name:werebear base:quadruped color:D speed:110 hit-points:325 hearing:20 smell:20 armor-class:75 sleepiness:40 depth:24 rarity:2 weight:300 experience:200 blow:CLAW:HURT:1d10 blow:CLAW:HURT:1d10 blow:BITE:HURT:2d8 blow:CRUSH:HURT:2d6 flags:EVIL | ANIMAL flags:DROP_1 flags:OPEN_DOOR flags:DROP_CORPSE | WILD_WOOD | WILD_MOUNTAIN | HYBRID desc:In the eyes of this bear, there glimmers the faintest light of desc: intelligence. And then its form begins to change... The combination of desc: animal cunning, human intelligence and the great physical strength of the desc: bear makes for a dangerous enemy. name:mindcrafter base:person color:Y speed:110 hit-points:41 light:2 hearing:20 armor-class:36 sleepiness:20 depth:24 rarity:2 weight:170 experience:50 blow:HIT:HURT:2d4 blow:HIT:HURT:2d4 flags:MALE | EVIL | PWMANG_BASE flags:DROP_CORPSE | DROP_SKELETON | DROP_60 flags:OPEN_DOOR flags:FORCE_SLEEP flags:WILD_ALL spell-freq:3 spells:BLIND | BLINK | CONF | HOLD | MIND_BLAST | SLOW spells:S_MONSTER drop-base:psi book:10:1:1 friends:50:1d1:Easterling champion friends:10:1d1:master rogue friends:40:1d1:rogue friends:50:1d1:ranger friends:50:1d1:mage friends:50:1d1:paladin desc:A master of the mental arts, able to damage or dominate the minds of desc: others. name:phantom beast base:phantom warrior color:Z speed:110 hit-points:127 hearing:20 armor-class:48 sleepiness:40 depth:24 rarity:1 weight:0 experience:100 blow:HIT:HURT:2d33 blow:HIT:HURT:2d44 flags:EMPTY_MIND | PWMANG_BASE flags:NO_FEAR friends:50:1d3:phantom warrior desc:A creature that is half-real, half illusion. name:globefish base:aquatic color:g speed:110 hit-points:180 hearing:20 armor-class:30 sleepiness:30 depth:24 rarity:1 weight:0 experience:200 blow:BITE:POISON:4d6 blow:BITE:POISON:4d6 flags:PWMANG_BASE | WILD_SHORE | WILD_OCEAN flags:EMPTY_MIND | BASH_DOOR | POWERFUL flags:IM_POIS | NO_STUN | COLD_BLOOD spell-freq:8 innate-freq:100 spells:BR_POIS desc:This fish is among the most poisonous creatures there are. ### Dungeon level 25 ### name:statue of ancient god base:hybrid color:y speed:90 hit-points:300 hearing:1 armor-class:0 sleepiness:100 depth:25 rarity:1 weight:0 experience:0 flags:NEVER_BLOW flags:FORCE_SLEEP | NEVER_MOVE | STUPID | EMPTY_MIND | PWMANG_BASE flags:COLD_BLOOD flags:DROP_40 flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW | IM_LIGHT spell-freq:100 innate-freq:25 spells:S_MONSTER | ANIM_DEAD | TRAPS | DARKNESS | HEAL_KIN | HEAL | SLOW spells:TELE_AWAY | TELE_LEVEL | SHRIEK spells:CONF | SLOW | BLIND | SCARE spells:BO_ELEC | BO_WATE | BR_ELEC | BR_GRAV | BR_DARK | BOULDER desc:No one remember His name, but long time ago He had so much power desc: that entire nations worshipped Him and made this statues everywhere. desc: Now he is forgotten, but it doesn't mean that He is powerless. name:flamme base:minor demon color:R speed:120 hit-points:50 hearing:20 armor-class:16 sleepiness:8 depth:25 rarity:2 weight:0 experience:75 blow:HIT:FIRE:1d8 flags:FORCE_SLEEP | OPEN_DOOR flags:NO_FEAR flags:RAND_50 | ONLY_ITEM | DROP_60 innate-freq:3 spell-freq:2 spell-power:10 spells:BLINK | TELE_SELF_TO | BLIND | SLOW | WOUND spells:WHIP | BO_FIRE friends:100:2d7:Same desc:Little sparks of flame that dance around you, lashing whips and cursing desc: horribly. name:necromancer base:person color:P speed:110 hit-points:164 hearing:20 armor-class:55 sleepiness:20 depth:25 rarity:2 weight:160 experience:330 blow:HIT:HURT:2d4 blow:HIT:HURT:2d4 flags:MALE | EVIL | SMART flags:DROP_60 | ONLY_ITEM flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 spells:BLIND | WOUND | DARKNESS | SCARE spells:BO_NETH spells:S_UNDEAD spells:ANIM_DEAD drop-base:shadow book:8:1:1 friends-base:80:1d3:skeleton desc:A gaunt figure, clothed in black robes. name:hill giant base:giant color:U speed:110 hit-points:240 hearing:20 armor-class:54 sleepiness:50 depth:25 rarity:1 weight:350 experience:150 blow:HIT:HURT:4d8 blow:HIT:HURT:4d8 flags:DROP_40 flags:OPEN_DOOR flags:DROP_CORPSE | DROP_SKELETON | WILD_MOUNTAIN flags:SWIM_NORM spell-freq:10 innate-freq:100 spells:BOULDER friends:60:1d7:wolf friends:80:1d3:Same desc:A ten foot tall humanoid with powerful muscles. name:pukelman plural:pukelmen base:golem color:m speed:110 hit-points:520 hearing:12 armor-class:120 sleepiness:20 depth:25 rarity:3 weight:0 experience:600 blow:HIT:HURT:1d12 blow:HIT:HURT:3d6 flags:COLD_BLOOD flags:BASH_DOOR flags:HURT_ROCK | IM_COLD | IM_FIRE | IM_POIS flags:FORCE_SLEEP flags:NO_STUN flags:SWIM_BAD spell-freq:4 spells:CONF | SLOW spells:BO_ACID desc:A stumpy figure carved from stone, with glittering eyes, this sentinel desc: strides towards you with deadly intent. #old V dark elven druid name:satyr base:humanoid color:G speed:120 hit-points:210 hearing:15 armor-class:112 sleepiness:20 depth:25 #3 rarity:6 weight:120 experience:500 blow:HIT:HURT:1d7 blow:HIT:HURT:1d7 blow:HIT:HURT:3d8 flags:MALE flags:DROP_1 | ONLY_ITEM flags:HURT_LIGHT | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:6 spell-power:25 spells:CONF | DARKNESS | HEAL_KIN spells:S_ANIMAL | S_MONSTER | S_SPIDER drop-base:nature book:8:1:1 ################################################################################ desc:A horned stocky creature with furry legs and cloven goats hooves. desc:It appears to have mighty nature-controlling enchantments. name:stone troll base:troll color:W speed:110 hit-points:127 hearing:20 smell:20 armor-class:60 sleepiness:70 depth:25 rarity:1 weight:500 experience:85 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 blow:BITE:HURT:3d4 flags:MALE flags:DROP_20 flags:HURT_ROCK | HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON friends:50:1d5:earth hound friends:100:3d3:Same desc:He is a large, lumpish troll with scabrous black skin. name:wereworm base:worm color:p speed:110 hit-points:600 hearing:15 armor-class:105 sleepiness:40 depth:25 #3 rarity:5 weight:600 experience:300 blow:GAZE:EXP_20 blow:CRAWL:ACID:2d4 blow:BITE:HURT:1d10 blow:BITE:POISON:1d6 flags:BASH_DOOR flags:IM_ACID flags:DROP_CORPSE | WILD_SWAMP | HYBRID desc:A huge wormlike shape dripping acid, twisted by evil sorcery into a foul desc: monster that breeds on death. name:carrion crawler base:centipede color:o speed:110 hit-points:130 hearing:15 smell:20 armor-class:60 sleepiness:20 depth:25 rarity:2 weight:0 experience:60 blow:STING:PARALYZE:2d6 blow:STING:PARALYZE:2d6 flags:RAND_25 | BASH_DOOR flags:IM_POIS flags:DROP_SKELETON friends:100:2d4:Same desc:A hideous centipede covered in slime and with glowing tentacles around its desc: head. name:killer red beetle base:killer beetle color:r speed:110 hit-points:90 hearing:14 armor-class:90 sleepiness:30 depth:25 rarity:1 weight:60 experience:90 blow:BITE:LOSE_STR:4d4 blow:BITE:HURT:4d4 flags:RAND_25 flags:DROP_CORPSE | WILD_ALL desc:It is a giant beetle with poisonous mandibles. name:giant brown tick base:spider color:u speed:100 hit-points:81 hearing:12 armor-class:200 sleepiness:20 depth:25 #2 rarity:4 weight:0 experience:70 blow:BITE:POISON:2d6 blow:BITE:POISON:2d6 blow:STING:BLIND:1d1 flags:ANIMAL | WEIRD_MIND | LEVITATE flags:IM_POIS desc:It is moving slowly towards you. name:Old Man Willow base:tree color:s speed:110 hit-points:2000 light:-2 hearing:20 armor-class:100 sleepiness:20 depth:25 rarity:3 weight:0 experience:1500 blow:TOUCH:PARALYZE:1d14 blow:TOUCH:PARALYZE:1d14 blow:CRUSH:HURT:2d12 flags:NEVER_MOVE flags:UNIQUE | FORCE_SLEEP | EVIL flags:IM_POIS | IM_ACID flags:DROP_1 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:COLD_BLOOD | NO_CUT | HURT_FIRE flags:FORCE_DEPTH | PWMANG_FIXED drop:food:Draught of the Ents:100:1:1 spell-freq:3 innate-freq:25 spells:WHIP | HOLD | TELE_TO | SCARE desc:The ancient grey willow tree, ruler of the Old Forest. He despises desc: trespassers in his territory. "...a huge willow-tree, old and hoary. desc: Enormous it looked, its sprawling branches going up like racing arms with desc: many long-fingered hands, its knotted and twisted trunk gaping in wide desc: fissures that creaked faintly as the boughs moved." locations:The Old Forest name:Tom Bombadil base:person color:s speed:130 hit-points:49000 hearing:10 armor-class:250 sleepiness:20 depth:25 rarity:10 weight:0 experience:100000 flags:EMPTY_MIND | MALE | REGENERATE | RAND_50 | WANDERER flags:IM_POIS | IM_ACID | IM_FIRE | IM_COLD | IM_ELEC flags:IM_NETHER | IM_PLASMA | IM_DISEN flags:DROP_1 | DROP_GREAT | ONLY_ITEM flags:NO_FEAR | NO_SLEEP | SMART spell-freq:5 spells:BLINK | TPORT | HEAL desc:Old Tom Bombadil is a merry fellow! desc: Bright Blue his jacket is, desc: and his boots are yellow! locations:The Old Forest ### Dungeon level 26 ### name:abyss worm mass base:worm color:D speed:100 hit-points:35 light:-2 hearing:10 armor-class:25 sleepiness:10 depth:26 rarity:3 weight:0 experience:6 blow:CRAWL:EXP_10:1d5 flags:EVIL | WEIRD_MIND | MULTIPLY | STUPID flags:RAND_25 | RAND_50 | BASH_DOOR | KILL_WALL flags:HURT_LIGHT | NO_FEAR | COLD_BLOOD | INVISIBLE desc:A writhing wormlike shimmer of blackness, large as your arm. It squirms desc: through air and walls with equal facility, leaving void in its wake. #giant firefly name:fairy base:hybrid color:r speed:120 hit-points:140 light:2 hearing:8 armor-class:21 sleepiness:10 depth:26 rarity:4 weight:0 experience:70 blow:BITE:BLIND:1d2 blow:SPIT:POISON:1d2 blow:HIT:DISENCHANT flags:SMART | LEVITATE | COLD_BLOOD flags:IM_LIGHT spell-freq:12 spells:BLINK | CONF | TELE_LEVEL spells:TPORT | BLIND friends:35:1d2:shrieker mushroom patch friends:35:1d1:yellow mushroom patch friends:35:1d1:spotted mushroom patch friends:35:1d1:purple mushroom patch friends:35:1d2:unmagic mushroom patch #################################################################################### desc:Barely a foot tall, with butterfly wings and pointed ears. It's skin, hair, and eyes come in shades of greens of the leaves and grass. desc:It's buzzing something offensive at you. name:giant grey ant base:ant color:s speed:110 hit-points:86 hearing:10 smell:20 armor-class:200 sleepiness:10 depth:26 rarity:1 weight:0 experience:120 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 flags:RAND_25 | KILL_BODY flags:DROP_SKELETON desc:It is an ant encased in an impenetrable exoskeleton. name:ogre priest base:ogre color:G speed:110 hit-points:165 hearing:20 smell:20 armor-class:75 sleepiness:60 depth:26 rarity:1 weight:400 experience:120 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 blow:BITE:HURT:3d4 flags:MALE flags:DROP_60 flags:NO_CONF | NO_SLEEP flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 spell-power:26 spells:BLINK | WOUND | DARKNESS | HEAL | SCARE drop-base:prayer book:5:1:1 desc:He is a clever ogre. He found path to power. desc:Other ogres bring him food. name:Mutant fighter base:person color:U speed:110 hit-points:450 light:2 hearing:20 armor-class:48 sleepiness:40 depth:26 rarity:7 weight:0 experience:500 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 flags:MALE | EVIL flags:OPEN_DOOR | TAKE_ITEM desc:A short and swarthy mutant. name:Ulwarth, Son of Ulfang base:person color:U speed:110 hit-points:850 light:2 hearing:20 armor-class:48 sleepiness:40 depth:26 rarity:4 weight:0 experience:500 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 flags:UNIQUE | MALE | EVIL flags:DROP_60 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM friends:60:2d3:Easterling champion:servant friends:100:1d1:Ulfast, Son of Ulfang desc:A short and swarthy Easterling. name:displacer beast base:feline color:D speed:110 hit-points:138 hearing:35 smell:30 armor-class:150 sleepiness:10 depth:26 rarity:2 weight:180 experience:100 blow:BITE:HURT:2d8 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 flags:INVISIBLE flags:BASH_DOOR flags:DROP_CORPSE desc:It is a huge black panther, clubbed tentacles sprouting from its shoulders. name:giant fire tick base:spider color:R speed:110 hit-points:72 light:2 hearing:14 armor-class:120 sleepiness:20 depth:26 rarity:1 weight:0 experience:90 blow:BITE:FIRE:3d6 flags:ANIMAL | WEIRD_MIND | LEVITATE flags:RAND_25 flags:IM_FIRE flags:WILD_DESERT spell-freq:20 innate-freq:100 spells:SPIT desc:It is smoking and burning with great heat. name:cave ogre base:ogre color:u speed:110 hit-points:150 hearing:20 smell:20 armor-class:49 sleepiness:40 depth:26 rarity:2 weight:250 experience:80 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 flags:DROP_40 flags:DROP_CORPSE | DROP_SKELETON friends:50:2d4:ogre friends:50:2d4:black ogre friends:100:2d4:Same desc:A giant orc-like figure with an awesomely muscled frame. #old white wraith name:hissing wraith base:wraith color:w #110 speed:115 #68 hit-points:168 hearing:20 armor-class:48 sleepiness:10 depth:26 #1 rarity:9 weight:0 #175 experience:333 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 blow:TOUCH:EXP_20 flags:DROP_1 flags:OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP | LEVITATE spell-freq:8 spell-power:26 spells:WOUND | DARKNESS | SCARE desc:Strange ghostly form made of white hissing fog. name:disenchanter bat base:bat color:v speed:130 hit-points:27 hearing:12 armor-class:42 sleepiness:10 depth:26 rarity:4 weight:5 experience:75 blow:HIT:DISENCHANT flags:RAND_50 flags:IM_DISEN flags:ATTR_MULTI | FORCE_SLEEP flags:DROP_CORPSE desc:A giant bat which feeds on raw magical energy. name:Angel #base:angel base:ainu color:o speed:110 hit-points:450 light:2 hearing:30 armor-class:60 sleepiness:255 depth:26 rarity:4 weight:0 experience:220 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 flags:DROP_2 flags:NO_STUN | NO_CONF | LEVITATE flags:IM_ACID | IM_POIS | IM_LIGHT flags:OPEN_DOOR | BASH_DOOR | NO_SLEEP spell-freq:3 spell-power:26 spells:BLIND | CONF | SCARE | FORGET desc:Who knows why you are now facing an angel as an enemy? Is it a punishment desc:from your own god for your sins, or a test of your mettle, or has this angel desc:been sent by another god on behalf of someone who wishes to claim the glory desc:for his own god? Perhaps you will never know: but it is here, and you must desc:fight it. name:wolf chieftain base:canine color:D speed:120 hit-points:422 hearing:20 smell:50 armor-class:24 sleepiness:5 depth:26 rarity:5 weight:100 experience:120 blow:CLAW:HURT:2d6 blow:CLAW:HURT:2d6 blow:BITE:HURT:2d10 blow:WAIL:TERRIFY flags:MALE | EVIL | SMART flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | NO_FEAR flags:DROP_CORPSE | DROP_SKELETON spell-freq:8 spells:DARKNESS friends:100:2d4:wolf:servant friends:60:2d4:white wolf:servant friends:60:2d4:warg:servant friends:60:1d4:werewolf:servant desc:A great wolf-chieftain whose pack is in the service of the Dark Lord, and desc: whose howls strike fear into even the boldest heart. name:ghoul base:zombie color:U speed:110 hit-points:83 hearing:30 armor-class:36 sleepiness:20 depth:26 rarity:2 weight:0 experience:95 blow:CLAW:PARALYZE:1d4 blow:CLAW:PARALYZE:1d4 blow:BITE:DISEASE:1d6 flags:DROP_40 flags:HURT_LIGHT spell-freq:9 spells:HOLD | SCARE friends:100:4d4:Same desc:Flesh is falling off in chunks from this decaying abomination. name:Khufu, the Mummified King base:zombie color:v speed:110 hit-points:935 hearing:20 armor-class:48 sleepiness:40 depth:26 rarity:4 weight:0 experience:500 blow:GAZE:TERRIFY blow:HIT:DISEASE:6d6 blow:CLAW:LOSE_CON:4d4 blow:CLAW:LOSE_CON:4d4 flags:UNIQUE | MALE | PWMANG_BASE flags:ONLY_ITEM | DROP_60 | DROP_GOOD flags:NO_FEAR spell-freq:5 spells:WOUND | DARKNESS | SCARE | SLOW | TRAPS spells:ANIM_DEAD spells:S_KIN | S_UNDEAD friends-base:100:1d5:zombie:servant friends-base:75:1d5:zombie:servant friends-base:50:1d5:zombie:servant desc:He is out to have revenge on those who have desecrated his tomb. ### Dungeon level 27 ### name:Koschei the Deathless base:vampire color:W speed:120 hit-points:1333 hearing:20 smell:20 armor-class:67 sleepiness:30 depth:27 rarity:1 weight:0 experience:2500 blow:HIT:HURT:1d11 blow:HIT:HURT:2d3 blow:HIT:HURT:3d2 blow:BITE:EXP_20:2d6 flags:UNIQUE | MALE | EMPTY_MIND flags:DROP_GOOD | DROP_3 | ONLY_ITEM | PASS_WALL flags:FORCE_DEPTH | PWMANG_FIXED flags:RES_ELEC drop:food:Elvish wine:100:2:3 spell-freq:6 spells:WOUND | HEAL | MIND_BLAST | TELE_TO spells:DARKNESS | HOLD | SCARE desc:They say His death is in the needle inside an egg, that inside a duck, desc: that inside a hare, that nests in a hollow log, that floats in pond, desc: found on a far island.. locations:Abandoned Manor name:Mim, Betrayer of Turin base:humanoid color:I speed:120 hit-points:1100 hearing:20 armor-class:96 sleepiness:20 depth:27 rarity:4 weight:0 experience:1000 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:DISENCHANT flags:UNIQUE | MALE | EVIL flags:DROP_2 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_CONF flags:NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:IM_DISEN drop:food:Petty-dwarf roots:100:1:1 spell-freq:6 spells:HEAL | SCARE spells:BA_ACID spells:BO_ACID desc:The last of his race, Mim is a Petty-Dwarf. Petty-Dwarves are strange desc: creatures, powerful in sorcery and originating in the East. They have been desc: hunted nearly to extinction by the High Elves. name:killer fire beetle base:killer beetle color:R speed:110 hit-points:99 light:2 hearing:14 armor-class:64 sleepiness:30 depth:27 rarity:1 weight:60 experience:95 blow:BITE:FIRE:3d4 blow:SPIT:FIRE:4d5 flags:IM_FIRE flags:DROP_CORPSE | WILD_VOLCANO | WILD_DESERT spell-freq:5 innate-freq:100 spells:SPIT desc:It is a giant beetle wreathed in flames. name:creeping adamantite coins plural:piles of creeping adamantite coins base:creeping coins color:G speed:120 hit-points:260 hearing:5 armor-class:60 sleepiness:10 depth:27 rarity:3 weight:0 experience:60 blow:BITE:POISON:3d4 blow:TOUCH:POISON:3d5 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 flags:IM_ACID | IM_LIGHT desc:It appears to be a pile of coins made of precious adamant, slithering desc: toward you on lots of tiny legs. mimic:gold:adamantite #V name:troll scavenger base:troll color:o speed:110 hit-points:137 hearing:20 smell:20 armor-class:90 sleepiness:50 depth:27 rarity:1 weight:600 experience:150 blow:CLAW:POISON:3d3 blow:CLAW:POISON:3d3 blow:BITE:HURT:1d6 flags:DROP_20 flags:IM_POIS | HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD | WILD_SWAMP | WILD_MOUNTAIN friends:30:1d5:forest troll friends:100:3d3:Same desc:A powerful, man-eating troll, its claws foul with the traces of its last desc: kill. #some stuff from ZAngband Aklash name:algroth base:troll color:o speed:110 hit-points:240 hearing:20 smell:20 armor-class:90 sleepiness:50 depth:27 rarity:1 weight:600 experience:250 blow:CLAW:HURT:1d6 blow:CLAW:HURT:1d6 blow:BITE:POISON:1d20 blow:CRUSH:HURT:2d9 flags:REGENERATE flags:DROP_20 flags:IM_POIS flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD | WILD_SWAMP | WILD_MOUNTAIN friends:100:3d3:Same desc:Pale, bald, fat, hairless troll creatures. Ugly beyond description. desc:Not to mention how bad their breath smells... name:vibration hound base:zephyr hound color:y speed:110 hit-points:138 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:27 rarity:4 weight:60 experience:250 blow:BITE:HURT:2d8 blow:BITE:HURT:2d8 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 flags:BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_STUN flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_SOUN friends:100:2d7:Same desc:A blurry canine form which seems to be moving as fast as the eye can desc: follow. You can feel the earth resonating beneath your feet. name:nexus hound base:zephyr hound color:P speed:110 hit-points:138 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:27 rarity:4 weight:60 experience:250 blow:BITE:HURT:2d8 blow:BITE:HURT:2d8 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 flags:BASH_DOOR flags:IM_NEXUS | NO_CONF | NO_SLEEP flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_NEXU friends:100:2d7:Same desc:A locus of conflicting points coalesce to form the vague shape of a huge desc: hound. Or is it just your imagination? name:ogre mage base:ogre color:r speed:110 hit-points:163 hearing:20 smell:20 armor-class:60 sleepiness:40 depth:27 rarity:2 weight:240 experience:300 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 flags:DROP_1 flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:4 spell-power:27 spells:HEAL | HOLD | TRAPS spells:BA_COLD spells:S_MONSTER drop-base:magic book:5:1:1 desc:A hideous ogre wrapped in black sorcerous robes. name:vampire base:vampire color:W speed:110 hit-points:163 hearing:20 smell:20 armor-class:67 sleepiness:30 depth:27 rarity:1 weight:0 experience:175 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 blow:BITE:EXP_20:2d6 blow:BITE:EXP_20:2d6 flags:DROP_40 | DROP_1 spell-freq:9 spells:WOUND | DARKNESS | MIND_BLAST | TELE_TO spells:HOLD | SCARE desc:It is a humanoid with an aura of power. You notice a sharp set of front desc: teeth. name:gorgimaera base:hybrid color:o speed:110 hit-points:263 hearing:12 smell:20 armor-class:82 sleepiness:20 depth:27 rarity:2 weight:230 experience:400 blow:BUTT:HURT:2d10 blow:BITE:FIRE:2d10 blow:GAZE:PARALYZE:2d6 flags:BASH_DOOR flags:IM_FIRE | LEVITATE flags:FORCE_SLEEP flags:DROP_CORPSE | WILD_DESERT spell-freq:8 innate-freq:100 spells:BR_FIRE desc:The result of evil experiments, this travesty of nature should never be desc: alive. It has three heads - goat, dragon and gorgon - all attached to a desc: lion's body. #old colbran name:rusty golem base:golem color:b speed:120 hit-points:720 hearing:12 armor-class:120 sleepiness:20 depth:27 #2 rarity:9 weight:0 experience:1100 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 flags:COLD_BLOOD flags:BASH_DOOR flags:IM_POIS | IM_ACID flags:FORCE_SLEEP flags:NO_STUN flags:SWIM_BAD spell-freq:3 spell-power:27 spells:BO_ACID desc:A man-shaped form.. Hard to see it's features because of rust. name:ogre shaman base:ogre color:G speed:110 hit-points:163 hearing:20 smell:20 armor-class:82 sleepiness:40 depth:27 rarity:2 weight:240 experience:300 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 flags:DROP_60 | ONLY_ITEM flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 spells:WOUND | HOLD | SCARE | TPORT | TRAPS spells:BO_FIRE spells:S_MONSTER drop-base:prayer book:5:1:1 desc:It is an ogre wrapped in furs and covered in grotesque body paints. name:shimmering mold base:mold color:b speed:110 hit-points:144 light:1 hearing:2 armor-class:36 sleepiness:0 depth:27 rarity:1 weight:0 experience:140 blow:SPORE:ELEC:5d4 blow:SPORE:ELEC:5d4 flags:EMPTY_MIND | STUPID | ATTR_FLICKER flags:IM_ELEC desc:It is a strange growth on the dungeon floor, glowing and crackling with desc: sparks. name:hell blade base:object mimic glyph:| color:v speed:120 hit-points:149 hearing:20 armor-class:96 sleepiness:0 depth:27 rarity:2 weight:0 experience:130 blow:HIT:EXP_20:2d13 blow:HIT:EXP_20:2d13 blow:HIT:EXP_20:2d13 blow:HIT:EXP_20:2d13 flags:EVIL | NONLIVING | PWMANG_BASE flags:IM_POIS | IM_COLD flags:ATTR_MULTI desc:A deadly blade of chaos lurking for prey. Beware! mimic:sword:Blade of Chaos name:roper base:mineral color:u speed:115 hit-points:264 hearing:30 armor-class:72 sleepiness:255 depth:27 rarity:5 weight:0 experience:235 blow:CRUSH:PARALYZE:3d5 blow:CRUSH:PARALYZE:3d5 blow:CRUSH:PARALYZE:3d5 blow:CRUSH:PARALYZE:3d5 flags:EVIL | PWMANG_BASE flags:DROP_2 | ONLY_GOLD flags:NEVER_MOVE flags:IM_FIRE | NO_FEAR flags:FORCE_SLEEP spell-freq:5 innate-freq:12 spells:CONF | HASTE | HOLD | SHRIEK | TRAPS spells:BA_ELEC | BA_FIRE | BA_POIS desc:This creature looks like a pillar of rock. However, a closer inspection desc: reveals a glaring eye and powerful tentacles, which crush its prey and desc: feed it to the creature's hungry mouth. name:half-ogre base:ogre color:o speed:110 hit-points:175 light:2 hearing:20 smell:20 armor-class:49 sleepiness:30 depth:27 rarity:2 weight:270 experience:80 blow:HIT:HURT:4d8 blow:HIT:HURT:4d8 flags:SMART | PWMANG_BASE flags:DROP_CORPSE | DROP_SKELETON | DROP_40 friends:100:2d7:Same desc:A giant, brutish figure, as ugly as an orc, but with some of the desc: intelligence of his half-human ancestry. name:sandworm base:sandworm color:M speed:115 hit-points:44 hearing:10 armor-class:48 sleepiness:80 depth:27 rarity:4 weight:0 experience:6 blow:CLAW:POISON:2d3 blow:CLAW:POISON:2d3 blow:CLAW:POISON:2d3 blow:BITE:HURT:3d4 flags:MULTIPLY | PWMANG_BASE | KILL_WALL flags:RAND_25 desc:Off breed of the Sandworm Queen, they are harmless alone... locations:The Sandworm Lair name:adult sandworm base:sandworm color:o speed:115 hit-points:132 hearing:10 armor-class:48 sleepiness:80 depth:27 rarity:7 weight:0 experience:12 blow:CLAW:POISON:4d4 blow:CLAW:POISON:4d4 blow:CLAW:POISON:4d4 blow:BITE:HURT:5d5 flags:MULTIPLY | PWMANG_BASE flags:RAND_25 desc:Enormous size worms, up to 200 meters long with thick rough skin of orange desc:color covered by firm scales. Worms defend their territory of which they desc:are very protective, so if you feel rhythmic vibrations on the surface - run. ### Dungeon level 28 ### name:flying carpet base:hybrid color:r speed:120 hit-points:250 light:2 hearing:20 armor-class:48 sleepiness:10 depth:28 rarity:9 weight:150 experience:150 blow:ENGULF:HURT:1d10 blow:ENGULF:HURT:1d10 blow:ENGULF:HURT:1d10 blow:ENGULF:HURT:1d10 flags:SMART | LEVITATE flags:FORCE_SLEEP spell-freq:3 innate-freq:70 spells:WHIP | BLINK | TELE_TO desc:Beautifully colored carpet soaring in the air. You don't see it's eyes, desc: but you are sure that it looks at you narrowly. desc: "Everything is calm in Baghdad.." - such words appeared in your head. desc: You do not anderstand from where - it seems this carpet posses desc: telepathic powers. name:frost giant base:giant color:w speed:110 hit-points:256 hearing:20 armor-class:60 sleepiness:50 depth:28 rarity:1 weight:400 experience:180 blow:HIT:COLD:5d8 blow:HIT:COLD:5d8 flags:DROP_40 flags:OPEN_DOOR flags:IM_COLD flags:DROP_CORPSE | DROP_SKELETON | WILD_WASTE | WILD_MOUNTAIN | WILD_GLACIER flags:SWIM_GOOD spell-freq:10 innate-freq:100 spells:BOULDER friends:60:1d7:cold hound friends:80:1d3:Same desc:A twelve foot tall giant covered in furs. name:spirit naga base:naga color:w speed:110 hit-points:240 hearing:20 armor-class:90 sleepiness:120 depth:28 rarity:2 weight:0 experience:60 blow:CRUSH:HURT:2d8 blow:CRUSH:HURT:2d8 blow:BITE:HURT:1d8 blow:BITE:HURT:1d8 flags:INVISIBLE | LEVITATE flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP | IM_POIS flags:FORCE_SLEEP spell-freq:4 spells:BLIND | DARKNESS | HEAL | MIND_BLAST drop-base:prayer book:8:1:1 desc:A wraithly snake-like form with the torso of a beautiful woman. name:5-headed hydra base:hydra color:g speed:120 hit-points:450 hearing:20 armor-class:120 sleepiness:50 depth:28 rarity:2 weight:550 experience:650 blow:BITE:HURT:3d6 blow:BITE:HURT:3d6 blow:BITE:HURT:3d6 blow:BITE:POISON:3d6 flags:DROP_4 flags:MOVE_BODY flags:IM_POIS flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:6 innate-freq:50 spells:SCARE spells:BR_POIS desc:A 4-headed hydra with one extra head, breathing poison. name:black knight base:person color:s speed:120 hit-points:165 hearing:20 armor-class:105 sleepiness:30 depth:28 rarity:1 weight:240 experience:240 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:MALE | EVIL flags:DROP_1 flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:8 spells:BLIND | WOUND | DARKNESS | SCARE drop-base:shadow book:8:1:1 friends:10:1d1:master rogue friends:40:1d1:rogue friends:50:1d1:ranger friends:50:1d1:paladin friends:50:1d1:mage friends:50:1d1:southron assassin desc:A hulking figure encased in deep black plate armour; he looks at you desc: menacingly. #reworked tile name:Uldor the Accursed.. other mutants name:Mad King base:person color:U speed:110 hit-points:500 light:2 hearing:20 armor-class:84 sleepiness:40 depth:28 rarity:9 weight:0 experience:600 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 flags:UNIQUE | MALE | EVIL flags:DROP_1 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM flags:NO_STUN | NO_CONF | NO_SLEEP | NO_SLOW flags:IM_COLD | RES_ELEC | IM_FIRE | IM_POIS spell-freq:7 spells:BLIND | HOLD | SCARE spells:S_KIN desc:His daughter is missing. He believe she is killed. desc:He become mad because of grief. name:Uldor the Accursed base:person color:U speed:110 hit-points:1000 light:2 hearing:20 armor-class:84 sleepiness:40 depth:28 rarity:4 weight:0 experience:600 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 flags:UNIQUE | MALE | EVIL flags:DROP_1 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM spell-freq:10 spells:S_KIN desc:An evil and cunning man from the East. Having once sworn allegiance to the desc: sons of Feanor, it was Uldor's treachery that turned the tide of the desc: Battle of Unnumbered Tears in Morgoth's favour. name:mage base:person color:r speed:110 hit-points:68 light:2 hearing:20 armor-class:48 sleepiness:10 depth:28 rarity:1 weight:150 experience:150 blow:HIT:HURT:2d5 blow:HIT:HURT:2d5 flags:MALE | SMART flags:DROP_1 | ONLY_ITEM flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:3 spells:BLIND | CONF | TPORT | TELE_AWAY spells:BO_COLD | BO_ELEC | BO_FIRE spells:S_MONSTER drop-base:magic book:10:1:1 friends-base:100:1d1:golem desc:A mage of some power - you can tell by the size of his hat. name:mind flayer base:humanoid color:P speed:110 hit-points:132 hearing:20 armor-class:72 sleepiness:10 depth:28 rarity:1 weight:140 experience:200 blow:GAZE:LOSE_INT:2d6 blow:GAZE:FORGET:2d6 flags:EVIL flags:DROP_40 | DROP_1 | ONLY_ITEM flags:NO_CONF | NO_SLEEP flags:FORCE_SLEEP flags:DROP_CORPSE spell-freq:8 spells:BLIND | BRAIN_SMASH | FORGET | HOLD | MIND_BLAST | SCARE drop-base:psi book:5:1:1 desc:A humanoid form with a gruesome head, tentacular mouth, and piercing eyes. desc: Claws reach out for you and you feel a presence invade your mind. #name:Draebor, the Imp name:Draebor, the Imp base:minor demon color:v speed:120 hit-points:520 hearing:20 armor-class:75 sleepiness:10 depth:28 rarity:5 weight:0 experience:750 blow:HIT:POISON:3d4 blow:HIT:POISON:3d4 blow:HIT:HURT:3d4 blow:INSULT flags:UNIQUE | INVISIBLE | SMART flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:RAND_25 | BASH_DOOR flags:FORCE_SLEEP spell-freq:5 spells:BLIND | BLINK | CONF | SCARE | TELE_AWAY | TELE_LEVEL spells:TELE_TO | TPORT spells:S_KIN friends-base:50:1d3:minor demon:servant friends-base:50:1d3:minor demon:servant friends-base:50:1d3:minor demon:servant friends:100:2d4:imp:servant desc:An intensely irritating git of a monster. name:basilisk base:reptile color:s speed:120 hit-points:310 hearing:15 smell:20 armor-class:108 sleepiness:30 depth:28 rarity:3 weight:40 experience:300 blow:GAZE:PARALYZE blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 flags:DROP_1 | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:DROP_CORPSE | WILD_MOUNTAIN spell-freq:8 innate-freq:100 spells:BR_POIS desc:A vile reptile that preys on unsuspecting travellers. Its eyes stare deeply desc: at you and your soul starts to wilt! #V name:snow troll base:troll color:w speed:110 hit-points:132 hearing:20 smell:20 armor-class:67 sleepiness:50 depth:28 rarity:1 weight:500 experience:200 blow:CLAW:HURT:1d5 blow:CLAW:HURT:1d5 blow:BITE:COLD:2d6 blow:BITE:COLD:2d6 flags:MALE flags:DROP_20 flags:HURT_LIGHT | IM_COLD flags:DROP_CORPSE | DROP_SKELETON | WILD_WASTE | WILD_GLACIER friends:100:2d7:white wolf friends:100:4d4:Same desc:He is a white troll with shaggy fur and powerfully clawed hands. name:ice troll base:troll color:w speed:110 hit-points:88 hearing:20 smell:20 armor-class:90 sleepiness:50 depth:28 rarity:1 weight:500 experience:250 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 blow:BITE:COLD:2d7 blow:BITE:COLD:2d7 flags:MALE flags:DROP_20 flags:HURT_LIGHT | IM_COLD flags:DROP_CORPSE | DROP_SKELETON | WILD_WASTE | WILD_GLACIER friends:100:1d5:cold hound friends:100:4d4:Same desc:Ice-covered troll with powerfully clawed hands. name:bat of Gorgoroth plural:bats of Gorgoroth base:bat color:g speed:120 hit-points:110 hearing:20 armor-class:36 sleepiness:30 depth:28 rarity:3 weight:15 experience:100 blow:BITE:POISON:1d10 blow:CLAW:HURT:1d4 flags:WEIRD_MIND flags:DROP_40 flags:RAND_25 | BASH_DOOR | MOVE_BODY flags:IM_POIS flags:DROP_CORPSE spell-freq:8 innate-freq:67 spells:SCARE spells:BR_DARK | BR_POIS friends:100:2d7:Same desc:Fed with horrid meats and grown to enormous size, this slavering creature desc: seeks livelier prey. name:spectator base:eye color:B speed:110 hit-points:171 hearing:30 armor-class:1 sleepiness:30 depth:28 rarity:2 weight:160 experience:150 blow:GAZE:PARALYZE:1d4 blow:GAZE:CONFUSE:1d4 blow:BITE:HURT:1d8 flags:NO_FEAR | NO_CONF | NO_SLEEP flags:FORCE_SLEEP | SPIRIT flags:DROP_CORPSE spell-freq:6 spells:WOUND | FORGET | HOLD | SLOW desc:A lesser relative of the beholder: a globular body with a large toothy desc: mouth, a large central eye, and four smaller eyes on stalks protruding desc: from the top of its body. name:Beorn, the Shape-Changer base:person color:p speed:110 hit-points:2000 hearing:25 smell:20 armor-class:72 sleepiness:25 depth:28 rarity:3 weight:0 experience:1000 blow:PUNCH:HURT:2d8 blow:PUNCH:HURT:2d8 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 flags:UNIQUE | MALE | SMART flags:DROP_2 | DROP_GOOD | ONLY_ITEM | WANDERER flags:FORCE_SLEEP spell-freq:2 spells:SHAPECHANGE #friends:100:2d3:cave bear #friends:100:2d3:grizzly bear #friends:100:2d3:werebear shape:Beorn, the Mountain Bear desc:Beorn is only occasionally seen in human form these days, preferring to desc: appear in the shape of a giant black bear: he also prefers the company of desc: beasts to that of humans. He has never taken kindly to strangers, even in desc: human form. name:Beorn, the Mountain Bear base:quadruped color:p speed:120 hearing:25 smell:20 armor-class:72 sleepiness:25 depth:28 rarity:0 weight:0 experience:1000 blow:CLAW:HURT:2d10 blow:CLAW:HURT:2d10 blow:BITE:HURT:4d8 blow:CRUSH:HURT:3d6 flags:UNIQUE | MALE | ANIMAL | SMART | SPIRIT flags:MOVE_BODY drop:food:Honey-cake:50:1:1 desc:Beorn in his form as a great black bear of the mountains, grown to desc: giant-size in wrath. The roar of his voice is like drums, and no weapon desc: seems to bite upon him. name:clairvoyant base:person color:Y speed:120 hit-points:138 light:2 hearing:100 armor-class:60 sleepiness:10 depth:28 rarity:3 weight:160 experience:250 blow:HIT:CONFUSE:5d5 blow:HIT:TERRIFY:5d5 flags:MALE | SMART | EVIL | PWMANG_BASE flags:DROP_CORPSE | DROP_SKELETON | DROP_1 flags:OPEN_DOOR flags:FORCE_SLEEP spell-freq:8 spells:BLIND | WOUND | FORGET | HOLD | MIND_BLAST spells:S_MONSTER friends:50:1d1:Easterling champion friends:10:1d1:master rogue friends:40:1d1:rogue friends:50:1d1:mage friends:50:1d1:mindcrafter friends:10:1d1:black knight friends:40:1d1:blackguard desc:He is using his supernatural talents to bring about your destruction. name:lesser wall monster base:mineral color:W speed:110 hit-points:59 hearing:20 armor-class:90 sleepiness:40 depth:28 rarity:4 weight:0 experience:600 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 flags:NONLIVING | PWMANG_BASE flags:BASH_DOOR | KILL_WALL | RAND_50 flags:IM_FIRE | IM_ELEC | HURT_ROCK flags:FORCE_SLEEP desc:A sentient, moving section of wall. name:young blue dragon base:dragon color:b speed:110 hit-points:176 hearing:20 armor-class:60 sleepiness:70 depth:28 rarity:2 weight:2000 experience:500 blow:CLAW:HURT:2d4 blow:CLAW:HURT:2d4 blow:BITE:HURT:3d6 flags:DROP_2 flags:OPEN_DOOR | BASH_DOOR flags:IM_ELEC flags:DROP_CORPSE | WILD_WOOD | WILD_MOUNTAIN spell-freq:10 innate-freq:50 spells:SCARE spells:BR_ELEC desc:It has a form that legends are made of. Its still-tender scales are a deep desc: blue in hue. Sparks crackle along its length. name:young white dragon base:dragon color:w speed:110 hit-points:176 hearing:20 armor-class:60 sleepiness:70 depth:28 rarity:2 weight:2000 experience:500 blow:CLAW:HURT:2d4 blow:CLAW:HURT:2d4 blow:BITE:HURT:3d6 flags:DROP_2 flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD flags:DROP_CORPSE | WILD_WASTE | WILD_MOUNTAIN | WILD_GLACIER spell-freq:10 innate-freq:50 spells:SCARE spells:BR_COLD desc:It has a form that legends are made of. Its still-tender scales are a desc: frosty white in hue. Icy blasts of cold air come from it as it breathes. name:young green dragon base:dragon color:g speed:110 hit-points:176 hearing:20 armor-class:60 sleepiness:70 depth:28 rarity:2 weight:2000 experience:500 blow:CLAW:HURT:2d4 blow:CLAW:HURT:2d4 blow:BITE:HURT:3d6 flags:DROP_2 flags:OPEN_DOOR | BASH_DOOR flags:IM_POIS flags:DROP_CORPSE | WILD_SWAMP | WILD_MOUNTAIN spell-freq:10 innate-freq:50 spells:SCARE spells:BR_POIS desc:It has a form that legends are made of. Its still-tender scales are a deep desc: green in hue. Foul gas seeps through its scales. name:stairway to hell plural:stairways to hell base:feature mimic glyph:> color:w speed:120 hit-points:106 hearing:90 armor-class:48 sleepiness:0 depth:28 rarity:5 weight:0 experience:125 blow:WAIL:DISENCHANT blow:WAIL:EXP_20 blow:WAIL:TERRIFY blow:WAIL:PARALYZE flags:UNDEAD | PWMANG_EXTRA | EVIL flags:IM_FIRE | IM_ELEC | IM_POIS | IM_ACID flags:NO_SLEEP | NO_STUN spell-freq:15 spells:S_DEMON desc:Often found in graveyards. name:stairway to heaven plural:stairways to heaven base:feature mimic glyph:< color:w speed:120 hit-points:106 hearing:90 armor-class:48 sleepiness:0 depth:28 rarity:5 weight:0 experience:125 blow:WAIL:DISENCHANT blow:WAIL:EXP_20 blow:WAIL:TERRIFY blow:WAIL:PARALYZE flags:UNDEAD | PWMANG_EXTRA flags:IM_FIRE | IM_ELEC | IM_POIS | IM_ACID | IM_LIGHT flags:NO_SLEEP | NO_STUN spell-freq:15 innate-freq:100 spells:SHRIEK desc:Not all that glitters is gold... name:jellyfish base:aquatic color:P speed:110 hit-points:250 hearing:20 armor-class:30 sleepiness:75 depth:28 rarity:2 weight:0 experience:250 blow:TOUCH:PARALYZE:5d6 blow:TOUCH:PARALYZE:5d6 flags:PWMANG_BASE | WILD_SHORE | WILD_OCEAN flags:IM_POIS | COLD_BLOOD | WEIRD_MIND | STUPID desc:A strange water creature, whose touch can be deadly. ### Dungeon level 29 ### #v name:green elf archer base:humanoid color:W speed:120 hit-points:210 hearing:15 armor-class:112 sleepiness:20 depth:29 rarity:3 experience:500 blow:HIT:HURT:1d7 blow:HIT:HURT:1d7 flags:MALE | SMART flags:DROP_1 | ONLY_ITEM flags:IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:3 innate-freq:80 spells:CONF | HEAL | BLINK spells:ARROW drop-base:nature book:8:1:1 desc:An elf of the Land of the Seven Rivers, whose woodcraft was such that a desc: stranger might pass through their land from end to end and see none of desc: them. #v name:giant black scorpion base:spider color:s speed:120 hit-points:189 hearing:12 armor-class:60 sleepiness:20 depth:29 rarity:3 weight:0 experience:425 blow:CLAW:HURT:1d11 blow:CLAW:HURT:1d11 blow:STING:POISON:3d4 blow:STING:BLIND:3d4 flags:ANIMAL | WEIRD_MIND flags:IM_POIS flags:DROP_SKELETON | WILD_ALL desc:A gleaming black scorpion as large as a lion, with a pulsating stinger desc: and two great deadly claws. name:purple worm base:worm color:P speed:110 hit-points:293 hearing:14 armor-class:78 sleepiness:30 depth:29 rarity:3 weight:100 experience:400 blow:HIT:HURT:1d8 blow:BITE:ACID:2d8 blow:STING:POISON:1d8 flags:BASH_DOOR flags:IM_ACID | IM_POIS flags:DROP_CORPSE desc:It is a massive worm form, many feet in length. Its vast maw drips acid and desc: poison. name:catoblepas plural:catoblepones base:quadruped color:g speed:110 hit-points:165 hearing:15 smell:20 armor-class:66 sleepiness:40 depth:29 rarity:2 weight:0 experience:400 blow:GAZE:TERRIFY:2d4 blow:GAZE:BLIND:2d4 blow:BUTT:HURT:2d6 blow:BITE:HURT:2d12 flags:ANIMAL flags:DROP_2 | ONLY_GOLD flags:IM_POIS flags:WILD_SWAMP desc:A strange ox-like form with a huge head but a thin, weak neck, it looks desc: like the creation of some deranged alchemist. name:ring mimic base:mimic glyph:= color:w speed:120 hit-points:180 hearing:30 armor-class:72 sleepiness:0 depth:29 rarity:3 weight:0 experience:200 blow:HIT:POISON:3d4 blow:HIT:POISON:3d4 blow:HIT:POISON:3d4 blow:HIT:POISON:3d4 spell-freq:4 spells:BO_ACID | BO_COLD | BO_ELEC | BO_FIRE spells:S_MONSTER spells:BLIND | WOUND | CONF | SCARE desc:A strange creature that disguises itself as a discarded ring to lure desc: unsuspecting adventurers within reach of its venomous claws. mimic:ring:Speed mimic:ring:Slaying mimic:ring:Constitution mimic:ring:Resist Poison mimic:ring:Free Action mimic:ring:See Invisible name:greater mimic base:random mimic color:B speed:120 hit-points:180 hearing:30 armor-class:48 sleepiness:0 depth:29 rarity:3 weight:100 experience:200 blow:HIT:POISON:3d4 blow:HIT:POISON:3d4 blow:HIT:POISON:3d4 blow:HIT:POISON:3d4 flags:PWMANG_BASE spell-freq:4 spells:WOUND | FORGET spells:BO_ACID | BO_ELEC spells:S_MONSTER spells:BLIND | CONF | SCARE spells:BO_COLD | BO_FIRE desc:A strange creature that disguises itself as an object to lure unsuspecting desc: adventurers within reach of its venomous claws. name:young black dragon base:dragon color:s speed:110 hit-points:194 hearing:20 armor-class:60 sleepiness:70 depth:29 rarity:2 weight:2000 experience:550 blow:CLAW:HURT:2d5 blow:CLAW:HURT:2d5 blow:BITE:HURT:3d6 flags:DROP_2 flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID flags:DROP_CORPSE | WILD_SWAMP spell-freq:10 innate-freq:50 spells:SCARE spells:BR_ACID desc:It has a form that legends are made of. Its still-tender scales are a desc: darkest black hue. Acid drips from its body. name:young gold dragon base:dragon color:y speed:110 hit-points:194 hearing:20 armor-class:60 sleepiness:70 depth:29 rarity:2 weight:2000 experience:550 blow:CLAW:HURT:2d5 blow:CLAW:HURT:2d5 blow:BITE:HURT:3d6 flags:DROP_2 flags:OPEN_DOOR | BASH_DOOR | NO_STUN flags:DROP_CORPSE | WILD_MOUNTAIN flags:IM_LIGHT spell-freq:10 innate-freq:50 spells:SCARE spells:BR_SOUN desc:It has a form that legends are made of. Its still-tender scales are a desc: tarnished gold hue, and light is reflected from its form. name:young red dragon base:dragon color:r speed:110 hit-points:194 light:2 hearing:20 armor-class:60 sleepiness:70 depth:29 rarity:2 weight:2000 experience:550 blow:CLAW:HURT:2d5 blow:CLAW:HURT:2d5 blow:BITE:HURT:3d6 flags:DROP_2 flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE flags:DROP_CORPSE | WILD_MOUNTAIN | WILD_VOLCANO | WILD_DESERT spell-freq:10 innate-freq:50 spells:SCARE spells:BR_FIRE desc:It has a form that legends are made of. Its still-tender scales are a desc: deepest red hue. Heat radiates from its form. name:young silver dragon base:dragon color:z speed:110 hit-points:194 hearing:20 armor-class:60 sleepiness:70 depth:29 rarity:2 weight:2000 experience:550 blow:CLAW:HURT:2d5 blow:CLAW:HURT:2d5 blow:BITE:HURT:3d6 flags:DROP_2 | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:NO_SLEEP | IM_COLD | NO_SLOW spell-freq:10 innate-freq:50 spells:SCARE spells:BR_COLD | BR_INER desc:It has a form that legends are made of. Its still-tender scales are a desc: shining silvery gleam, and its shape masks its true form. name:rainbow vortex plural:rainbow vortices base:vortex color:b speed:110 hit-points:65 light:1 hearing:100 armor-class:36 sleepiness:0 depth:29 rarity:5 weight:0 experience:140 blow:ENGULF:ELEC:3d4 flags:ATTR_FLICKER flags:IM_ELEC | IM_LIGHT flags:NO_STUN spell-freq:4 innate-freq:75 spells:BR_ELEC | BE_ELEC | BR_WATE desc:A shimmering tornado of air and water, sparks crackle along its length. ########## DUNGEON LEVELS 30-39 ########## ### Dungeon level 30 ### name:shadow of nazgul base:wraith color:p speed:115 hit-points:500 light:-2 hearing:40 smell:50 armor-class:72 sleepiness:10 depth:30 rarity:6 weight:0 experience:666 blow:MOAN:TERRIFY:2d5 blow:DEVOUR:EAT_LIGHT:4d5 blow:HIT:BLACK_BREATH:3d7 flags:MALE | LEVITATE flags:DROP_1 | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:RES_LIGHT desc:Nazguls don't dissapear for ever.. They return. Always. desc:But till the moment when they will reclaim, desc:they dwell aas shadowless shapes. name:fire giant base:giant color:r speed:110 hit-points:289 light:2 hearing:20 armor-class:72 sleepiness:50 depth:30 rarity:1 weight:500 experience:220 blow:HIT:FIRE:6d8 blow:HIT:FIRE:6d8 flags:DROP_40 flags:OPEN_DOOR flags:IM_FIRE flags:DROP_CORPSE | DROP_SKELETON | WILD_VOLCANO | WILD_DESERT spell-freq:8 innate-freq:100 spells:BOULDER friends:60:1d7:fire hound friends:80:1d3:Same desc:A glowing fourteen foot tall giant. Flames drip from its red skin. name:mithril golem base:golem color:B speed:110 hit-points:640 hearing:12 armor-class:150 sleepiness:30 depth:30 rarity:4 weight:0 experience:500 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:COLD_BLOOD | METAL flags:DROP_2 | ONLY_GOLD flags:BASH_DOOR flags:IM_COLD | IM_FIRE | IM_POIS flags:NO_STUN flags:SWIM_BAD desc:It is a massive statue of purest mithril. It looks expensive! name:skeleton troll base:skeleton color:w speed:110 hit-points:110 hearing:20 armor-class:82 sleepiness:60 depth:30 rarity:1 weight:0 experience:225 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 blow:BITE:HURT:3d4 flags:TROLL | EMPTY_MIND | REGENERATE flags:OPEN_DOOR | BASH_DOOR desc:It is a troll skeleton animated by dark dweomers. name:manticore base:hybrid color:y speed:120 hit-points:220 hearing:12 smell:20 armor-class:22 sleepiness:20 depth:30 rarity:2 weight:190 experience:300 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 flags:EVIL | LEVITATE flags:BASH_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | WILD_WOOD spell-freq:5 innate-freq:100 spells:ARROW desc:It is a winged lion's body with a human torso and a tail covered in vicious desc: spikes. name:giant blue ant base:ant color:b speed:110 hit-points:36 hearing:10 smell:20 armor-class:75 sleepiness:10 depth:30 rarity:2 weight:0 experience:80 blow:BITE:ELEC:5d5 flags:RAND_25 flags:IM_ELEC | GROUP_AI flags:DROP_SKELETON | WILD_ALL spell-freq:6 innate-freq:100 spells:SPIT friends:100:4d4:Same desc:It is a giant ant that crackles with energy. name:giant army ant base:ant color:o speed:120 hit-points:67 hearing:10 smell:20 armor-class:60 sleepiness:20 depth:30 rarity:3 weight:0 experience:90 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 flags:RAND_25 | KILL_BODY | GROUP_AI flags:DROP_SKELETON friends:100:4d4:Same desc:An armoured form moving with purpose. Powerful on its own, flee when hordes desc: of them march. name:grave wight base:wraith color:b speed:110 hit-points:66 hearing:20 armor-class:60 sleepiness:30 depth:30 rarity:1 weight:0 experience:325 blow:HIT:HURT:1d7 blow:HIT:HURT:1d7 blow:TOUCH:EXP_20 flags:DROP_1 | ONLY_ITEM flags:RAND_25 | OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP | LEVITATE spell-freq:8 spells:WOUND | DARKNESS | SCARE desc:It is a ghostly form with eyes that haunt you. name:killer slicer beetle base:killer beetle color:y speed:110 hit-points:138 hearing:14 armor-class:92 sleepiness:30 depth:30 rarity:2 weight:60 experience:250 blow:BITE:HURT:7d8 blow:BITE:HURT:7d8 flags:DROP_CORPSE | WILD_GRASS desc:It is a beetle with deadly sharp cutting mandibles and a rock-hard desc: carapace. name:ogre chieftain base:ogre color:b speed:120 hit-points:240 hearing:20 smell:20 armor-class:66 sleepiness:30 depth:30 rarity:5 weight:300 experience:600 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 flags:MALE flags:DROP_60 | ONLY_ITEM flags:MOVE_BODY flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON friends:50:2d4:ogre:servant friends:100:2d4:black ogre:servant friends:100:2d4:cave ogre:servant friends:50:1d2:ogre mage:servant friends:50:1d2:ogre shaman:servant desc:This ogre is leader of his tribe. He sneers at you as he advances towards desc: you, wielding a huge club and pushing his own followers rudely aside. name:ghast base:zombie color:u speed:120 hit-points:165 hearing:30 armor-class:60 sleepiness:20 depth:30 rarity:3 weight:0 experience:130 blow:CLAW:PARALYZE:2d4 blow:CLAW:PARALYZE:2d4 blow:BITE:LOSE_CON:2d4 blow:BITE:LOSE_CHR:2d4 flags:DROP_40 flags:HURT_LIGHT spell-freq:7 spells:HOLD | SCARE friends:20:1d3:zombified kobold friends:20:1d3:zombified orc friends:20:1d3:zombified human friends:40:1d3:mummified orc friends:40:1d3:mummified human friends:40:1d3:mummified troll friends:100:4d4:ghoul desc:This vile abomination is a relative of ghouls, and often leads packs of desc: them. It smells foul, and its bite carries a rotting disease. name:Bert the Stone Troll base:troll color:s speed:120 hit-points:1100 hearing:30 smell:30 armor-class:84 sleepiness:40 depth:30 rarity:7 weight:0 experience:2000 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:BITE:HURT:3d10 flags:UNIQUE | MALE | PWMANG_FIXED flags:DROP_3 | ONLY_ITEM flags:MOVE_BODY | TAKE_ITEM flags:HURT_ROCK | HURT_LIGHT | IM_COLD flags:FORCE_DEPTH drop:food:Scrap of Flesh:100:1:1 spell-freq:4 innate-freq:100 spells:BOULDER friends:100:1d1:Tom the Stone Troll friends:100:1d1:Bill the Stone Troll desc:Big, brawny, powerful and with a taste for hobbit. He has friends called desc: Bill and Tom. locations:Ettenmoors name:Tom the Stone Troll base:troll color:s speed:120 hit-points:2200 hearing:20 smell:20 armor-class:84 sleepiness:50 depth:30 rarity:7 weight:0 experience:2000 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:BITE:HURT:3d10 flags:UNIQUE | MALE | PWMANG_FIXED flags:DROP_1 | DROP_GOOD | ONLY_ITEM flags:MOVE_BODY | TAKE_ITEM flags:HURT_ROCK | IM_COLD flags:FORCE_DEPTH drop:food:Scrap of Flesh:100:1:1 spell-freq:11 innate-freq:100 spells:BOULDER friends:100:1d1:Bert the Stone Troll friends:100:1d1:Bill the Stone Troll desc:Big, brawny, powerful and with a taste for hobbit. He has friends called desc: Bert and Bill. locations:Ettenmoors name:Bill the Stone Troll base:troll color:s speed:125 hit-points:1700 hearing:20 smell:20 armor-class:84 sleepiness:50 depth:30 rarity:7 weight:0 experience:2000 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:BITE:HURT:3d5 flags:UNIQUE | MALE | PWMANG_FIXED flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:MOVE_BODY | TAKE_ITEM flags:HURT_ROCK | HURT_LIGHT | IM_COLD flags:FORCE_DEPTH drop:food:Scrap of Flesh:100:1:1 spell-freq:7 innate-freq:100 spells:BOULDER friends:100:1d1:Bert the Stone Troll friends:100:1d1:Tom the Stone Troll desc:William Huggins, also known as Bill, is the leader of the troll-band. desc:Big, brawny, powerful and with a taste for hobbit. He has friends called desc: Bert and Tom. locations:Ettenmoors name:mountain ogre base:ogre color:s speed:110 hit-points:200 light:2 hearing:20 smell:20 armor-class:49 sleepiness:30 depth:30 rarity:2 weight:300 experience:100 blow:HIT:HURT:5d8 blow:HIT:HURT:5d8 flags:PWMANG_BASE flags:DROP_40 | DROP_CORPSE | DROP_SKELETON friends:100:2d7:Same desc:The largest breed of ogre, he is awesomely strong and awesomely ugly. name:The Sandworm Queen base:sandworm color:o speed:120 hit-points:600 hearing:10 armor-class:48 sleepiness:80 depth:30 rarity:3 weight:0 experience:5000 blow:CLAW:ACID:5d4 blow:CLAW:POISON:5d4 blow:BITE:FIRE:5d4 blow:BITE:ELEC:5d4 flags:ANIMAL | UNIQUE | FEMALE | POWERFUL | PWMANG_BASE | PWMANG_FIXED flags:DROP_1 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:NO_CONF | RES_LIGHT flags:FORCE_DEPTH drop:mushroom:Terror:100:7:9 spell-freq:2 innate-freq:50 spells:BR_POIS spells:S_KIN friends-base:100:1d5:sandworm:servant friends:5:1d1:adult sandworm:servant friends-base:75:1d5:dragon worm:servant friends-base:50:1d5:dragon worm:servant desc:Queen and Mother of the sandworms, fear her and her prolific children. locations:The Sandworm Lair name:psychedelic ball base:ball color:v speed:120 hit-points:21 light:1 hearing:100 armor-class:36 sleepiness:0 depth:30 rarity:1 weight:0 experience:50 blow:ENGULF:HALLU:6d5 flags:NO_FEAR | NO_CONF | NO_SLEEP flags:ATTR_MULTI | FORCE_SLEEP desc:A crackling ball of illusion, zooming about seemingly at random. name:young shadow drake base:dragon color:o speed:110 hit-points:211 light:-2 hearing:20 armor-class:60 sleepiness:70 depth:30 rarity:2 weight:2000 experience:600 blow:CLAW:HURT:2d5 blow:CLAW:HURT:2d5 blow:BITE:HURT:3d7 flags:DROP_CORPSE | DROP_2 flags:OPEN_DOOR | BASH_DOOR spell-freq:10 innate-freq:50 spells:SCARE spells:BR_DARK | BR_LIGHT desc:It has a form that legends are made of. Its still-tender scales are a desc: beautiful orange in hue. name:young crystal drake base:dragon color:u speed:110 hit-points:211 light:1 hearing:20 armor-class:60 sleepiness:70 depth:30 rarity:2 weight:2000 experience:600 blow:CLAW:HURT:2d5 blow:CLAW:HURT:2d5 blow:BITE:HURT:3d7 flags:DROP_CORPSE | DROP_2 flags:OPEN_DOOR | BASH_DOOR | NO_CUT spell-freq:10 innate-freq:50 spells:SCARE spells:BR_SHAR desc:It has a form that legends are made of. Its still-tender scales are a desc: crystalline brown in hue. name:young ethereal drake base:dragon color:T speed:110 hit-points:211 light:-2 hearing:20 armor-class:60 sleepiness:70 depth:30 rarity:2 weight:0 experience:600 blow:CLAW:HURT:2d5 blow:CLAW:HURT:2d5 blow:BITE:HURT:3d7 flags:INVISIBLE flags:DROP_2 flags:OPEN_DOOR | BASH_DOOR | PASS_WALL flags:IM_NETHER spell-freq:10 innate-freq:50 spells:SCARE spells:BR_NETH desc:It has a form that legends are made of. Its still-tender scales are a desc: bright green in hue. name:young water dragon base:dragon color:Z speed:110 hit-points:211 hearing:20 armor-class:60 sleepiness:70 depth:30 rarity:2 weight:2000 experience:600 blow:CLAW:HURT:2d5 blow:CLAW:HURT:2d5 blow:BITE:HURT:3d7 flags:DROP_2 flags:OPEN_DOOR | BASH_DOOR flags:IM_WATER flags:DROP_CORPSE | WILD_SHORE spell-freq:10 innate-freq:50 spells:SCARE spells:BR_WATE desc:It has a form that legends are made of. Its still-tender scales are a deep desc: watery blue in hue. ### Dungeon level 31 ### name:ghost base:ghost color:w speed:120 hit-points:59 hearing:20 armor-class:36 sleepiness:10 depth:31 rarity:1 weight:0 experience:350 blow:WAIL:TERRIFY blow:TOUCH:EXP_20 blow:CLAW:LOSE_INT:1d6 blow:CLAW:LOSE_WIS:1d6 flags:DROP_40 | DROP_1 flags:RAND_25 | TAKE_ITEM flags:FORCE_SLEEP spell-freq:15 spells:BLIND | DRAIN_MANA | HOLD desc:You don't believe in it. But it believes in you... name:death watch beetle base:killer beetle color:D speed:110 hit-points:163 hearing:16 armor-class:72 sleepiness:30 depth:31 rarity:3 weight:80 experience:300 blow:BITE:HURT:5d6 blow:BITE:HURT:5d6 blow:WAIL:TERRIFY:5d6 flags:DROP_CORPSE | WILD_ALL desc:It is a giant beetle that produces a chilling sound. name:young ent base:tree color:U speed:110 hit-points:900 hearing:40 armor-class:80 sleepiness:20 depth:31 rarity:1 weight:0 experience:360 blow:CRUSH:HURT:3d6 blow:CRUSH:HURT:3d6 blow:CRUSH:HURT:3d6 blow:CRUSH:HURT:3d6 flags:DROP_40 | NO_SLEEP | WEIRD_MIND flags:IM_COLD spell-freq:9 spells:BLINK | TELE_TO desc:Ents are not altogether on anybody's side, because nobody is altogether on desc: their side. This one does not seem to be on your side. #old name:gorgon name:iron pig base:hybrid color:b speed:110 hit-points:150 hearing:12 smell:20 armor-class:80 sleepiness:20 depth:31 rarity:3 weight:300 experience:275 blow:BITE:POISON:1d10 blow:BITE:POISON:1d10 blow:KICK:HURT:1d4 blow:BUTT:HURT:1d9 flags:ANIMAL flags:DROP_CORPSE flags:BASH_DOOR | MOVE_BODY flags:IM_POIS | RES_ACID | RES_ELEC flags:FORCE_SLEEP flags:WILD_WOOD spell-freq:8 innate-freq:100 spells:BR_POIS | SHRIEK desc:A huge creature made covered in dusky pig iron scales. desc:It squeals! name:young chaos drake base:dragon color:v speed:110 hit-points:229 hearing:20 armor-class:60 sleepiness:70 depth:31 rarity:2 weight:2000 experience:650 blow:CLAW:HURT:2d6 blow:CLAW:HURT:2d6 blow:BITE:HURT:3d7 flags:DROP_2 | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | IM_DISEN | NO_CONF flags:ATTR_MULTI spell-freq:10 innate-freq:50 spells:SCARE spells:BR_CHAO | BR_DISE desc:It has a form that legends are made of. Its still-tender scales are desc: shimmering many colours. name:young law drake base:dragon color:B speed:110 hit-points:229 hearing:20 armor-class:60 sleepiness:70 depth:31 rarity:2 weight:2000 experience:650 blow:CLAW:HURT:2d6 blow:CLAW:HURT:2d6 blow:BITE:HURT:3d7 flags:DROP_2 | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | NO_STUN | NO_CUT spell-freq:10 innate-freq:50 spells:SCARE spells:BR_SHAR | BR_SOUN desc:It has a form that legends are made of. Its still-tender scales are desc: shimmering blue. ### Dungeon level 32 ### #V name:serpent of the brownlands plural:serpents of the brownlands base:snake color:u speed:120 hit-points:150 hearing:10 armor-class:90 sleepiness:99 depth:32 rarity:2 weight:80 experience:300 blow:SPIT:BLIND:1d6 blow:BITE:ACID:2d12 blow:BITE:POISON:2d12 blow:CRUSH:HURT:4d4 flags:RAND_25 | KILL_BODY flags:DROP_CORPSE | DROP_SKELETON spell-freq:8 spells:HOLD | BLIND | CONF desc:A great serpent, with coils of steel, a lunge faster than the eye can see, desc: and fangs that drip with acidic poison. Its eyes are mesmerizing. #ogre mage name:troll mage base:troll color:r speed:115 hit-points:320 hearing:20 smell:20 armor-class:80 sleepiness:40 depth:32 rarity:2 weight:340 experience:350 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 flags:DROP_1 flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:3 spells:MISSILE | HEAL drop-base:magic book:5:1:1 desc:A hideous troll wrapped in black sorcerous robes. desc:He looks stupid, but nevertheless knows some magic. name:nexus quylthulg base:quylthulg color:P speed:110 hit-points:65 hearing:10 armor-class:1 sleepiness:1 depth:32 rarity:1 weight:0 experience:300 flags:IM_NEXUS spell-freq:1 spells:BLINK | TELE_AWAY desc:It is a very unstable, strange pulsing mound of flesh. name:southron assassin base:person color:M speed:120 hit-points:85 hearing:20 armor-class:72 sleepiness:10 depth:32 rarity:2 weight:160 experience:300 blow:HIT:POISON:3d4 blow:HIT:LOSE_STR:3d4 blow:HIT:LOSE_STR:3d4 flags:MALE | EVIL | LEVITATE flags:DROP_1 flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON friends:50:1d1:master thief friends:50:1d1:mage friends:50:1d1:blackguard desc:A man of Harad clothed in black who moves with blinding speed. name:ninja base:person color:y speed:120 hit-points:85 hearing:20 armor-class:72 sleepiness:10 depth:32 #2 rarity:9 weight:160 experience:300 blow:HIT:POISON:3d4 blow:HIT:LOSE_STR:3d4 blow:HIT:LOSE_STR:3d4 flags:MALE | EVIL | LEVITATE flags:DROP_1 flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:6 spells:TELE_TO friends:50:1d1:master thief friends:50:1d1:mage friends:50:1d1:black knight desc:A humanoid clothed in black who moves with blinding speed. name:memory moss base:mushroom color:r speed:110 hit-points:2 hearing:30 armor-class:1 sleepiness:5 depth:32 rarity:3 weight:0 experience:150 blow:HIT:CONFUSE:1d4 blow:HIT:CONFUSE:1d4 flags:NEVER_MOVE flags:FORCE_SLEEP spell-freq:6 spells:FORGET desc:A mass of green vegetation. You don't remember seeing anything like it desc: before. name:young multi-hued dragon base:dragon color:v speed:110 hit-points:246 hearing:20 armor-class:60 sleepiness:70 depth:32 rarity:2 weight:2000 experience:700 blow:CLAW:HURT:2d6 blow:CLAW:HURT:2d6 blow:BITE:HURT:3d8 flags:DROP_2 flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:ATTR_MULTI flags:DROP_CORPSE spell-freq:10 innate-freq:50 spells:SCARE spells:BR_ACID | BR_COLD | BR_ELEC | BR_FIRE | BR_POIS desc:It has a form that legends are made of. Beautiful scales of shimmering and desc: magical colours cover it. name:doombat base:bat color:R speed:130 hit-points:180 light:2 hearing:16 armor-class:112 sleepiness:20 depth:32 rarity:2 weight:15 experience:250 blow:BITE:FIRE:5d4 blow:BITE:FIRE:5d4 blow:BITE:FIRE:5d4 flags:WEIRD_MIND flags:DROP_CORPSE flags:BASH_DOOR flags:IM_FIRE flags:WILD_DESERT desc:It is a fast moving creature of chaos, a gigantic black bat surrounded by desc: flickering bright red flames. name:ghoulking base:zombie color:D speed:120 hit-points:422 hearing:20 armor-class:72 sleepiness:10 depth:32 rarity:2 weight:0 experience:340 blow:CLAW:LOSE_STR:3d4 blow:CLAW:DISEASE:3d4 blow:CLAW:DISEASE:3d4 blow:BITE:PARALYZE:3d5 flags:PWMANG_BASE flags:DROP_40 | DROP_1 flags:HURT_LIGHT flags:FORCE_SLEEP spell-freq:7 spells:DARKNESS | HOLD | SCARE spells:ANIM_DEAD spells:S_UNDEAD friends-base:30:1d5:zombie:servant friends-base:50:1d5:zombie:servant friends-base:70:1d5:zombie:servant friends:100:4d4:ghoul:servant friends:50:1d2:ghast:servant desc:Flesh is falling off in chunks from this decaying abomination. name:young balance drake base:dragon color:P speed:110 hit-points:246 hearing:20 armor-class:60 sleepiness:70 depth:32 rarity:2 weight:2000 experience:700 blow:CLAW:HURT:2d6 blow:CLAW:HURT:2d6 blow:BITE:HURT:3d8 flags:DROP_2 | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | IM_FIRE | IM_DISEN | NO_STUN | NO_CONF | NO_CUT spell-freq:10 innate-freq:50 spells:SCARE spells:BR_CHAO | BR_DISE | BR_SHAR | BR_SOUN desc:It has a form that legends are made of. Its still-tender scales are desc: shimmering purple. name:giant octopus base:aquatic color:b speed:115 hit-points:350 hearing:10 armor-class:35 sleepiness:5 depth:32 rarity:1 weight:0 experience:400 blow:SPIT:BLIND:1d4 blow:CRUSH:HURT:8d4 blow:CRUSH:HURT:8d4 blow:CRUSH:PARALYZE:8d4 flags:PWMANG_BASE | WILD_SHORE | WILD_OCEAN flags:IM_POIS | NO_CONF | NO_SLEEP | NO_FEAR | SMART | WEIRD_MIND | COLD_BLOOD spell-freq:15 spells:DARKNESS | SLOW | CONF | SCARE desc:A cunning and dangerous undersea opponent. ### Dungeon level 33 ### #v name:dark elven druid base:humanoid color:G speed:120 hit-points:240 hearing:50 armor-class:112 sleepiness:20 depth:33 rarity:3 weight:120 experience:600 blow:HIT:HURT:1d7 blow:HIT:HURT:1d7 blow:HIT:HURT:3d8 flags:MALE | SMART flags:DROP_1 | ONLY_ITEM flags:HURT_LIGHT | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:3 spells:HASTE | CONF | DARKNESS | HEAL spells:SHAPECHANGE spells:S_ANIMAL | S_MONSTER | S_SPIDER drop-base:nature book:8:1:1 desc:A powerful dark elf, with mighty nature-controlling enchantments. name:stone giant base:giant color:W speed:110 hit-points:333 hearing:20 armor-class:90 sleepiness:50 depth:33 rarity:1 weight:700 experience:250 blow:HIT:HURT:7d8 blow:HIT:HURT:7d8 flags:DROP_40 flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON | WILD_MOUNTAIN flags:SWIM_BAD spell-freq:5 innate-freq:100 spells:BOULDER friends:60:1d7:earth hound friends:80:1d3:Same desc:It is eighteen feet tall and looking at you. name:cave troll base:troll color:u speed:110 hit-points:156 hearing:20 smell:20 armor-class:60 sleepiness:50 depth:33 rarity:1 weight:600 experience:350 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:BITE:HURT:1d8 blow:BITE:HURT:1d8 flags:MALE flags:DROP_20 flags:HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON friends:30:1d5:stone troll friends:20:1d5:troll scavenger friends:100:3d3:Same friends:10:1d4:algroth desc:He is a vicious monster, feared for his ferocity. name:mystic base:person color:o speed:120 hit-points:308 hearing:30 armor-class:60 sleepiness:5 depth:33 rarity:3 weight:140 experience:500 blow:KICK:HURT:10d2 blow:KICK:HURT:10d2 blow:KICK:HURT:10d2 blow:KICK:HURT:10d2 flags:MALE | INVISIBLE flags:DROP_1 | ONLY_ITEM flags:OPEN_DOOR flags:RES_ACID | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:6 spells:HEAL spells:S_ANIMAL | S_SPIDER drop-base:nature book:10:1:1 friends-base:50:2d4:spider desc:An adept at unarmed combat, the mystic strikes with stunning power. He can desc: summon help from nature and is able to focus his power to ease any pain. name:barrow wight base:wraith color:P speed:110 hit-points:83 hearing:20 armor-class:60 sleepiness:30 depth:33 rarity:3 weight:0 experience:375 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 blow:TOUCH:EXP_40 flags:DROP_40 flags:OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP | LEVITATE spell-freq:8 spells:WOUND | DARKNESS | HOLD | SCARE friends:100:4d4:Same desc:It is a ghostly nightmare of an entity. name:skeleton ettin base:skeleton color:w speed:110 hit-points:396 hearing:20 armor-class:75 sleepiness:50 depth:33 rarity:1 weight:0 experience:325 blow:HIT:HURT:1d9 blow:HIT:HURT:1d9 blow:BITE:HURT:1d5 blow:BITE:HURT:1d5 flags:TROLL | EMPTY_MIND | REGENERATE flags:OPEN_DOOR | BASH_DOOR desc:It is the animated form of a massive two-headed troll. #based at skeleton two-headed troll and eog name:golem skeleton base:golem color:w speed:110 hit-points:600 hearing:20 armor-class:140 sleepiness:50 depth:33 rarity:4 weight:0 experience:325 blow:HIT:HURT:1d9 blow:HIT:HURT:1d9 blow:HIT:HURT:1d9 blow:HIT:HURT:1d9 flags:IM_COLD | IM_FIRE | IM_POIS flags:EMPTY_MIND | REGENERATE flags:OPEN_DOOR | BASH_DOOR flags:NO_STUN | COLD_BLOOD flags:DROP_2 | ONLY_GOLD flags:SWIM_BAD desc:It's lighter and faster than other golems. name:fire elemental base:elemental color:r speed:110 hit-points:135 light:2 hearing:12 armor-class:60 sleepiness:50 depth:33 rarity:2 weight:0 experience:350 blow:HIT:FIRE:4d6 blow:HIT:FIRE:4d6 flags:LEVITATE flags:RAND_25 | BASH_DOOR | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_ELEC | IM_FIRE | HURT_COLD flags:FORCE_SLEEP flags:WILD_VOLCANO | WILD_DESERT spell-freq:6 spells:BO_FIRE desc:It is a towering inferno of flames. name:water elemental base:elemental color:b speed:110 hit-points:113 hearing:12 armor-class:48 sleepiness:50 depth:33 rarity:2 weight:0 experience:325 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 flags:COLD_BLOOD | LEVITATE flags:RAND_25 | BASH_DOOR | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_COLD | IM_FIRE | IM_WATER flags:FORCE_SLEEP spell-freq:6 spells:BO_COLD desc:It is a towering tempest of water. name:Fasolt the Giant base:giant color:R speed:110 hit-points:1221 light:2 hearing:20 armor-class:90 sleepiness:50 depth:33 rarity:4 weight:0 experience:2000 blow:HIT:HURT:7d10 blow:HIT:HURT:7d10 blow:HIT:EAT_GOLD:2d10 flags:UNIQUE | MALE | PWMANG_BASE flags:ONLY_ITEM | DROP_2 | DROP_GOOD flags:TAKE_ITEM | OPEN_DOOR flags:IM_COLD | IM_POIS flags:SWIM_NORM spell-freq:7 innate-freq:100 spells:BOULDER friends-base:100:1d5:giant:servant friends-base:75:1d5:giant:servant friends-base:50:1d5:giant:servant desc:Big, brawny, powerful and with a greed for gold. name:young power dragon base:dragon color:I speed:110 hit-points:264 light:2 hearing:20 armor-class:60 sleepiness:70 depth:33 rarity:2 weight:2000 experience:750 blow:CLAW:HURT:2d7 blow:CLAW:HURT:2d7 blow:BITE:HURT:3d8 flags:DROP_2 | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR | NO_CUT flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW spell-freq:10 innate-freq:50 spells:SCARE spells:BR_ACID | BR_ELEC | BR_FIRE | BR_COLD | BR_POIS | BR_NETH | BR_LIGHT spells:BR_SOUN | BR_CHAO | BR_DISE | BR_NEXU | BR_TIME | BR_INER | BR_GRAV spells:BR_SHAR | BR_PLAS | BR_WALL | BR_MANA | BR_WATE | BR_DARK desc:It has a form that legends are made of. Its still-tender scales are desc: shimmering red. name:6-headed hydra base:hydra color:U speed:120 hit-points:500 hearing:20 armor-class:125 sleepiness:45 depth:33 rarity:2 weight:600 experience:1200 blow:BITE:HURT:3d6 blow:BITE:HURT:3d6 blow:BITE:POISON:3d6 blow:BITE:FIRE:4d6 flags:DROP_4 flags:MOVE_BODY flags:IM_POIS | IM_FIRE flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:5 innate-freq:50 spells:SCARE spells:BR_POIS desc:A 5-headed hydra with one extra, smouldering, head. ### Dungeon level 34 ### name:troll priest base:troll color:G speed:110 hit-points:340 hearing:20 smell:20 armor-class:75 sleepiness:60 depth:34 rarity:1 weight:400 experience:120 blow:HIT:HURT:2d5 blow:HIT:HURT:2d5 blow:BITE:HURT:3d5 blow:BITE:HURT:3d5 flags:MALE flags:DROP_60 flags:NO_CONF | NO_SLEEP flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 spells:BLINK | WOUND | DARKNESS | SCARE drop-base:prayer book:5:1:1 desc:A troll who is so bright he knows how to read. name:Maia plural:Maiar base:ainu color:o speed:110 hit-points:528 light:2 hearing:30 armor-class:81 sleepiness:255 depth:34 rarity:9 weight:0 experience:1000 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:DROP_2 spell-freq:3 spells:BLIND | CONF | HASTE | HEAL | SCARE desc:One of the first children of Eru, currently human-like in form, its body desc: shining with glorious light. Whether this being has taken allegiance to desc: Morgoth or faces you in combat for some other reason is not clear; all desc: you know is that it stands before you, its eyes ablaze as it prepares its desc: next volley of spells. name:Archangel #base:angel base:ainu color:o speed:110 hit-points:850 light:2 hearing:30 armor-class:81 sleepiness:255 depth:34 rarity:4 weight:0 experience:1000 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:DROP_2 flags:IM_ACID flags:NO_STUN | NO_CONF | LEVITATE flags:IM_POIS | IM_FIRE | IM_COLD | IM_LIGHT flags:OPEN_DOOR | BASH_DOOR | NO_SLEEP spell-freq:3 spells:BLIND | CONF | HASTE | HEAL | SCARE desc:A lesser angel protected by an aura of holiness. Its muscular form looks desc: extremely powerful next to your own frail body. name:troll blackguard base:troll color:U speed:110 hit-points:340 hearing:20 smell:20 armor-class:60 sleepiness:50 depth:34 rarity:2 weight:300 experience:400 blow:CLAW:POISON:2d5 blow:CLAW:POISON:2d5 blow:BITE:HURT:2d8 blow:BITE:HURT:2d8 flags:MALE flags:DROP_20 | ONLY_ITEM flags:DROP_CORPSE | DROP_SKELETON spell-freq:6 spells:HASTE | SCARE | DARKNESS friends-base:100:3d4:troll desc:A half-smart, vicious troll with some rudimentary magic and a love of desc: violence. name:half-troll base:troll color:U speed:115 hit-points:150 hearing:20 smell:20 armor-class:60 sleepiness:50 depth:34 rarity:3 weight:300 experience:400 blow:HIT:HURT:1d7 blow:HIT:HURT:1d7 blow:HIT:HURT:2d7 blow:HIT:HURT:2d7 flags:MALE | REGENERATE flags:DROP_20 | ONLY_ITEM flags:DROP_CORPSE | DROP_SKELETON friends:100:1d4:Same desc:A huge, ugly, half-human in search of plunder. #v name:shade base:ghost color:s speed:120 hit-points:147 light:-2 hearing:20 armor-class:36 sleepiness:10 depth:34 rarity:3 weight:0 experience:350 blow:WAIL:TERRIFY blow:TOUCH:EXP_40 blow:CLAW:LOSE_INT:1d10 flags:DROP_2 | ONLY_ITEM flags:RAND_25 | TAKE_ITEM flags:FORCE_SLEEP spell-freq:15 spells:BLIND | DRAIN_MANA | HOLD desc:A shadowy form clutches at you from the darkness. A powerful undead desc: creature with a deadly touch. #old spectre name:scarecrow ghost base:ghost color:U speed:120 hit-points:100 light:-2 hearing:20 armor-class:56 sleepiness:15 depth:34 rarity:6 weight:0 experience:350 blow:WAIL:TERRIFY blow:TOUCH:EXP_40 blow:CLAW:LOSE_WIS:5d5 flags:DROP_2 | ONLY_ITEM flags:RAND_25 | TAKE_ITEM flags:FORCE_SLEEP spell-freq:15 spell-power:34 spells:DRAIN_MANA | HOLD | BO_NETH desc:A phantasmal shrieking spirit. Its wail drives the intense cold of pure desc: evil deep within your body. name:master thief plural:master thieves base:person color:b speed:130 hit-points:99 hearing:20 armor-class:45 sleepiness:5 depth:34 rarity:2 weight:130 experience:350 blow:HIT:HURT:2d8 blow:HIT:HURT:3d4 blow:HIT:EAT_GOLD:4d4 blow:HIT:EAT_ITEM:4d5 flags:MALE | EVIL flags:DROP_2 flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON spell-freq:6 innate-freq:33 spells:SHOT | BLINK | TRAPS drop-base:shadow book:5:1:1 friends:10:1d1:black knight friends:40:1d1:blackguard friends:50:1d1:mage friends:10:1d1:ninja friends:40:1d1:southron assassin desc:Cool and confident, fast and lithe; protect your possessions quickly! name:Mutant warrior base:person color:U speed:120 hit-points:500 light:2 hearing:20 armor-class:108 sleepiness:40 depth:34 rarity:7 weight:0 experience:1200 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:MALE | EVIL flags:OPEN_DOOR | TAKE_ITEM spell-freq:10 spells:S_KIN desc:Arrgghh! Don't mess with mutants or you will die like a maggot! name:Ulfang the Black base:person color:U speed:120 hit-points:3000 light:2 hearing:20 armor-class:108 sleepiness:40 depth:34 rarity:5 weight:0 experience:7500 blow:HIT:HURT:5d6 blow:HIT:HURT:5d6 blow:HIT:HURT:5d6 blow:HIT:HURT:5d6 flags:UNIQUE | MALE | EVIL | PWMANG_FIXED flags:DROP_2 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM flags:FORCE_DEPTH flags:SRES_LIGHT drop:food:Flagon of mead:100:3:4 spell-freq:9 spells:S_KIN friends:60:1d3:mumak friends:100:3d3:Easterling champion:bodyguard friends:100:1d1:Ulfast, Son of Ulfang friends:100:1d1:Ulwarth, Son of Ulfang desc:A short and swarthy Easterling dressed in black. He and his three sons once desc: openly swore allegiance to the High Elves, but were secretly in the pay of desc: Morgoth. locations:The Land Of Rhun name:lich plural:liches base:lich color:o speed:110 hit-points:264 hearing:20 armor-class:72 sleepiness:60 depth:34 rarity:2 weight:0 experience:1000 blow:TOUCH:EXP_40 blow:TOUCH:DRAIN_CHARGES blow:TOUCH:LOSE_DEX:2d8 blow:TOUCH:LOSE_DEX:2d8 flags:DROP_1 flags:HURT_LIGHT spell-freq:4 spells:BLIND | BLINK | WOUND | DRAIN_MANA | HOLD | BRAIN_SMASH spells:SCARE | SLOW | TELE_AWAY | TELE_TO friends-base:70:1d3:skeleton desc:It is a skeletal form dressed in robes. It radiates vastly evil power. name:giant grey scorpion base:spider color:s speed:120 hit-points:189 hearing:12 armor-class:60 sleepiness:40 depth:34 rarity:4 weight:0 experience:275 blow:BITE:HURT:1d6 blow:STING:POISON:1d4 flags:ANIMAL | WEIRD_MIND flags:IM_POIS flags:DROP_SKELETON | WILD_ALL desc:It is a giant grey scorpion. It looks poisonous. name:earth elemental base:elemental color:u speed:100 hit-points:165 hearing:10 armor-class:90 sleepiness:50 depth:34 rarity:2 weight:0 experience:375 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 flags:COLD_BLOOD flags:PASS_WALL | KILL_BODY | KILL_ITEM flags:HURT_ROCK | IM_COLD | IM_ELEC | IM_FIRE flags:FORCE_SLEEP flags:SWIM_BAD spell-freq:8 spells:BO_ACID desc:It is a towering form composed of rock with fists of awesome power. name:air elemental base:elemental color:B speed:120 hit-points:90 hearing:12 armor-class:60 sleepiness:50 depth:34 rarity:2 weight:0 experience:390 blow:HIT:HURT:1d10 blow:HIT:CONFUSE:1d4 blow:HIT:HURT:1d10 flags:COLD_BLOOD | LEVITATE flags:RAND_25 | BASH_DOOR | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_COLD | IM_ELEC flags:FORCE_SLEEP spell-freq:8 spells:BO_ELEC desc:It is a towering tornado of winds. name:Eog golem base:golem color:u speed:100 hit-points:1050 hearing:12 armor-class:187 sleepiness:20 depth:34 rarity:4 weight:0 experience:1200 blow:HIT:HURT:8d6 blow:HIT:HURT:8d6 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 flags:COLD_BLOOD flags:DROP_2 | ONLY_GOLD flags:BASH_DOOR flags:IM_COLD | IM_FIRE | IM_POIS flags:NO_STUN flags:SWIM_BAD desc:It is a massive deep brown statue, striding towards you with an desc: all-too-familiar purpose. Your magic surprisingly feels much less powerful desc: now. name:mature white dragon base:dragon color:w speed:110 hit-points:440 hearing:20 armor-class:84 sleepiness:70 depth:34 rarity:2 weight:11000 experience:1200 blow:CLAW:HURT:2d8 blow:CLAW:HURT:2d8 blow:BITE:HURT:4d8 flags:DROP_4 flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | NO_CONF | NO_SLEEP flags:DROP_CORPSE | WILD_WASTE | WILD_MOUNTAIN | WILD_GLACIER spell-freq:8 spell-power:34 innate-freq:33 spells:CONF | SCARE spells:BR_COLD friends:50:1d4:baby white dragon friends:50:1d2:young white dragon desc:A large dragon, scales gleaming bright white. name:mature blue dragon base:dragon color:b speed:110 hit-points:440 hearing:20 armor-class:84 sleepiness:70 depth:34 rarity:2 weight:11000 experience:1200 blow:CLAW:HURT:2d8 blow:CLAW:HURT:2d8 blow:BITE:HURT:4d8 flags:DROP_4 flags:OPEN_DOOR | BASH_DOOR flags:IM_ELEC | NO_CONF | NO_SLEEP flags:DROP_CORPSE | WILD_WOOD | WILD_MOUNTAIN spell-freq:8 spell-power:34 innate-freq:33 spells:CONF | SCARE spells:BR_ELEC friends:50:1d4:baby blue dragon friends:50:1d2:young blue dragon desc:A large dragon, scales tinted deep blue. name:mature green dragon base:dragon color:g speed:110 hit-points:440 hearing:20 armor-class:84 sleepiness:70 depth:34 rarity:2 weight:11000 experience:1200 blow:CLAW:HURT:2d8 blow:CLAW:HURT:2d8 blow:BITE:HURT:4d8 flags:DROP_4 flags:OPEN_DOOR | BASH_DOOR flags:IM_POIS | NO_CONF | NO_SLEEP flags:DROP_CORPSE | WILD_WOOD | WILD_MOUNTAIN spell-freq:8 spell-power:34 innate-freq:33 spells:CONF | SCARE spells:BR_POIS friends:50:1d4:baby green dragon friends:50:1d2:young green dragon desc:A large dragon, scales tinted deep green. name:gas spore base:eye color:m speed:110 hit-points:138 hearing:30 armor-class:1 sleepiness:5 depth:34 rarity:4 weight:0 experience:100 blow:ENGULF:DISEASE:30d2 flags:EMPTY_MIND | STUPID | PWMANG_BASE flags:NO_CONF | NO_SLEEP | NO_FEAR flags:FORCE_SLEEP desc:From a distance, this creature is often mistaken for the much more desc: dangerous beholder. name:gargoyle base:minor demon color:s speed:110 hit-points:117 hearing:10 armor-class:60 sleepiness:15 depth:34 rarity:2 weight:0 experience:110 blow:CLAW:HURT:2d6 blow:CLAW:HURT:2d6 blow:BITE:HURT:1d6 flags:PWMANG_BASE | LEVITATE flags:DROP_40 | ONLY_GOLD flags:IM_POIS | IM_COLD | IM_ELEC | HURT_ROCK | HURT_LIGHT flags:WILD_WASTE | WILD_MOUNTAIN spell-freq:12 innate-freq:100 spells:BR_ELEC | BR_FIRE friends:100:2d7:Same desc:A weird demon creature with a stone-like skin. name:Fire Phantom base:phantom warrior color:I speed:120 hit-points:1000 light:2 hearing:20 armor-class:108 sleepiness:40 depth:34 rarity:5 weight:0 experience:1200 blow:HIT:HURT:5d5 flags:UNIQUE | MALE | REGENERATE | PWMANG_BASE flags:ONLY_ITEM | DROP_2 | DROP_GOOD flags:TAKE_ITEM flags:IM_FIRE spell-freq:6 innate-freq:20 spells:CONF | HOLD | MIND_BLAST | SCARE spells:BR_FIRE desc:He is back from the grave for vengeance on those who burnt him. He has no desc: mercy for those in his way. ### Dungeon level 35 ### #v wereworm name:acid worm base:worm color:p speed:105 hit-points:200 hearing:15 armor-class:105 sleepiness:40 depth:35 rarity:3 weight:600 experience:300 blow:GAZE:EXP_20 blow:CRAWL:ACID:2d4 blow:BITE:HURT:1d10 blow:BITE:POISON:1d6 flags:BASH_DOOR flags:IM_ACID flags:DROP_CORPSE | WILD_SWAMP desc:A huge wormlike shape dripping acid, twisted by evil sorcery into a foul desc: monster that breeds on death. name:Lokkak, the Ogre Chieftain base:ogre color:v speed:120 hit-points:1500 hearing:20 smell:20 armor-class:120 sleepiness:20 depth:35 rarity:2 weight:0 experience:1500 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 flags:UNIQUE | MALE | MOVE_BODY flags:DROP_2 | DROP_GOOD | ONLY_ITEM friends:100:3d3:ogre:servant friends:100:3d3:black ogre:servant friends:100:3d3:cave ogre:bodyguard friends:80:1d2:ogre mage:servant friends:80:1d2:ogre shaman:servant friends:50:1d2:ogre chieftain:servant desc:An ogre renowned for acts of surpassing cruelty, Lokkak quickly became the desc: leader of a large band of violent ogres. #v name:hill troll base:troll color:m speed:110 hit-points:316 hearing:20 smell:20 armor-class:60 sleepiness:50 depth:35 rarity:2 weight:400 experience:420 blow:HIT:HURT:2d9 blow:HIT:HURT:2d9 blow:BITE:HURT:2d4 blow:BITE:HURT:2d4 flags:MALE flags:DROP_20 flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP friends:100:4d4:Same desc:Clad only in close-fitting mesh of horny scales (unless that is his skin) desc: this troll strides toward you roaring like a beast, wielding a heavy desc: hammer in his knotted hand. name:water troll base:troll color:B speed:110 hit-points:316 hearing:20 smell:20 armor-class:60 sleepiness:50 depth:35 rarity:2 weight:400 experience:420 blow:HIT:HURT:1d9 blow:HIT:HURT:1d9 blow:BITE:HURT:2d2 blow:BITE:HURT:2d2 flags:MALE | REGENERATE flags:DROP_20 flags:HURT_LIGHT | IM_COLD flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP flags:SWIM_GOOD friends:50:1d5:water hound friends:100:4d4:Same desc:He is a troll that reeks of brine. name:invisible stalker base:elemental color:y speed:130 hit-points:124 hearing:20 armor-class:69 sleepiness:10 depth:35 rarity:3 weight:0 experience:300 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 flags:EVIL | COLD_BLOOD | INVISIBLE flags:RAND_50 | OPEN_DOOR | BASH_DOOR flags:IM_ELEC desc:It is impossible to define its form but its violence is legendary. name:dagashi base:person color:y speed:120 hit-points:169 light:2 hearing:20 armor-class:84 sleepiness:10 depth:35 #4 rarity:6 weight:160 experience:800 blow:HIT:POISON:3d4 blow:HIT:LOSE_STR:3d4 blow:HIT:LOSE_STR:3d4 blow:HIT:POISON:3d4 flags:MALE | EVIL | LEVITATE flags:DROP_1 flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:4 innate-freq:20 spells:ARROW | BLINK friends:80:1d2:ninja desc:A human warrior, moving with lightning speed. name:gravity hound base:zephyr hound color:W speed:110 hit-points:193 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:35 rarity:4 weight:70 experience:500 blow:CLAW:HURT:2d8 blow:CLAW:HURT:2d8 blow:BITE:HURT:2d8 blow:BITE:HURT:2d8 flags:BASH_DOOR flags:NO_CONF | NO_SLEEP | LEVITATE flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_GRAV friends:100:2d7:Same desc:Unfettered by the usual constraints of gravity, these unnatural creatures desc: are walking on the walls and even the ceiling! The earth suddenly feels desc: rather less solid as you see gravity warp all round the monsters. name:acidic cytoplasm base:jelly color:s speed:120 #352 hit-points:500 hearing:12 armor-class:21 sleepiness:1 depth:35 #5 rarity:9 weight:0 experience:280 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 flags:COLD_BLOOD flags:DROP_4 flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:NO_CONF | NO_SLEEP desc:A disgusting animated blob of destruction. Flee its gruesome hunger! name:inertia hound base:zephyr hound color:W speed:110 hit-points:193 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:35 rarity:4 weight:70 experience:500 blow:CLAW:HURT:2d8 blow:CLAW:HURT:2d8 blow:BITE:HURT:2d8 blow:BITE:HURT:2d8 flags:BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_SLOW flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_INER friends:100:2d7:Same desc:Bizarrely, this hound seems to be hardly moving at all, yet it approaches desc: you with deadly menace. It makes you tired just to look at it. name:impact hound base:zephyr hound color:u speed:110 hit-points:193 hearing:30 smell:50 armor-class:36 sleepiness:0 depth:35 rarity:4 weight:70 experience:500 blow:CLAW:HURT:2d8 blow:CLAW:HURT:2d8 blow:BITE:HURT:2d8 blow:BITE:HURT:2d8 flags:BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_STUN flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_WALL friends:100:2d7:Same desc:A deep brown shape is visible before you, its canine form strikes you with desc: an almost physical force. The dungeon floor buckles as if struck by a desc: powerful blow as it stalks towards you. #old dread name:chained ghost base:ghost color:o speed:120 hit-points:666 hearing:20 armor-class:66 sleepiness:10 depth:35 rarity:9 weight:0 experience:1000 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:LOSE_STR:3d4 flags:DROP_2 | ONLY_ITEM flags:RAND_25 | TAKE_ITEM flags:FORCE_SLEEP | PASS_WALL spell-freq:9 #low sp spell-power:20 spells:CONF | HOLD spells:S_UNDEAD desc: Tormented by bloody chains, it's doomed to wander the earth forever. name:mumak plural:mumakil base:quadruped color:s speed:110 hit-points:495 hearing:20 smell:20 armor-class:82 sleepiness:70 depth:35 rarity:2 weight:15000 experience:2100 blow:BUTT:HURT:4d6 blow:BUTT:HURT:4d6 blow:CRUSH:HURT:4d4 flags:ANIMAL flags:DROP_CORPSE friends:100:4d4:Same desc:A massive elephantine form with eyes twisted by madness. name:giant fire ant base:ant color:R speed:110 hit-points:176 light:2 hearing:14 smell:20 armor-class:58 sleepiness:40 depth:35 rarity:1 weight:0 experience:350 blow:BITE:FIRE:3d12 blow:BITE:FIRE:3d12 flags:KILL_BODY flags:IM_FIRE | GROUP_AI flags:DROP_SKELETON | WILD_DESERT spell-freq:6 innate-freq:100 spells:SPIT friends:100:4d4:Same desc:A giant ant covered in shaggy fur. Its powerful jaws glow with heat. name:chest mimic base:mimic glyph:~ color:s speed:110 hit-points:308 hearing:30 armor-class:48 sleepiness:0 depth:35 rarity:4 weight:0 experience:250 blow:BITE:POISON:4d4 blow:BITE:POISON:4d4 blow:BUTT:CONFUSE:4d4 blow:SPIT:BLIND:4d4 flags:DROP_2 spell-freq:5 spells:BA_POIS spells:S_MONSTER spells:BLIND | WOUND | CONF | SCARE desc:A strange creature that disguises itself as a chest to lure unsuspecting desc: adventurers within reach of its venomous claws. The first that most desc: adventurers realise of the deception is when the seemingly invitingly open desc: lid of the chest suddenly grows teeth and then slams shut on the desc: adventurer's hand... mimic:chest:Small wooden chest mimic:chest:Large wooden chest mimic:chest:Small iron chest mimic:chest:Large iron chest mimic:chest:Small steel chest mimic:chest:Large steel chest name:silent watcher base:golem color:r speed:110 hit-points:1040 hearing:42 armor-class:96 sleepiness:10 depth:35 rarity:3 weight:0 experience:800 blow:GAZE:TERRIFY blow:GAZE:PARALYZE blow:GAZE:LOSE_STR blow:GAZE:HALLU flags:EVIL | COLD_BLOOD flags:NEVER_MOVE flags:HURT_ROCK | HURT_LIGHT | IM_COLD | IM_FIRE | IM_POIS flags:NO_STUN flags:SWIM_BAD spell-freq:6 innate-freq:14 spells:CONF | DRAIN_MANA | HOLD | MIND_BLAST | SHRIEK spells:S_MONSTER | S_MONSTERS desc:A figure carved from stone, with three vulture faces whose eyes glow with a desc: malevolent light. name:ultimate mimic base:random mimic color:b speed:110 hit-points:308 hearing:30 armor-class:60 sleepiness:0 depth:35 rarity:4 weight:100 experience:400 blow:HIT:POISON:4d4 blow:HIT:POISON:4d4 blow:HIT:POISON:4d4 blow:HIT:POISON:4d4 flags:PWMANG_BASE spell-freq:3 spells:WOUND | FORGET spells:BA_POIS spells:BO_ACID | BO_ELEC spells:S_MONSTER spells:BLIND | CONF | SCARE spells:BO_COLD | BO_FIRE desc:A strange creature that disguises itself as an object to lure unsuspecting desc: adventurers within reach of its venomous claws. name:malicious leprechaun base:humanoid color:V speed:120 hit-points:12 hearing:8 armor-class:24 sleepiness:8 depth:35 rarity:4 weight:0 experience:85 blow:TOUCH:EAT_GOLD blow:TOUCH:EAT_ITEM flags:INVISIBLE | PWMANG_BASE | EVIL | COLD_BLOOD | MALE | MULTIPLY flags:RAND_25 | TAKE_ITEM flags:HURT_LIGHT | ATTR_FLICKER spell-freq:6 spells:BLINK | WOUND | TELE_TO | TPORT desc:This little creature has a fiendish gleam in its eyes. name:headless ghost base:phantom warrior color:m speed:120 hit-points:260 hearing:20 armor-class:36 sleepiness:10 depth:35 rarity:3 weight:0 experience:550 blow:TOUCH:TERRIFY blow:TOUCH:EXP_40 blow:CLAW:LOSE_INT:5d5 blow:CLAW:LOSE_WIS:5d5 flags:ONLY_ITEM | DROP_60 | DROP_2 | PWMANG_BASE flags:TAKE_ITEM | RAND_25 flags:IM_COLD flags:FORCE_SLEEP spell-freq:15 spells:BLIND | DRAIN_MANA | FORGET | SCARE spells:BO_COLD desc:A phantasmal apparition with no head. name:halfling slinger base:humanoid color:z speed:110 hit-points:238 light:2 hearing:20 armor-class:48 sleepiness:30 depth:35 rarity:1 weight:90 experience:330 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 flags:SMART | EVIL | PWMANG_BASE | MALE flags:DROP_CORPSE | DROP_SKELETON | DROP_60 flags:IM_POIS | IM_COLD spell-freq:4 innate-freq:100 spells:SHOT drop-base:nature book:10:1:1 friends:100:4d4:Same desc:A rebel halfling who has rejected the halfling tradition of archery. name:The Wight-King of the Barrow-downs base:wraith color:R speed:120 hit-points:2500 hearing:30 armor-class:60 sleepiness:0 depth:35 rarity:1 weight:0 experience:10000 blow:HIT:HURT:2d10 blow:WAIL:PARALYZE:2d6 blow:TOUCH:EXP_80:4d8 blow:TOUCH:EXP_80:4d8 flags:SMART | UNIQUE | PWMANG_BASE | PWMANG_FIXED | LEVITATE flags:DROP_2 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:FORCE_DEPTH flags:SRES_LIGHT spell-freq:4 spells:WOUND | HOLD | SCARE spells:BO_NETH desc:He has lived in the Barrow-Downs for centuries after his first death at the desc: hands of the Witch-King of Angmar. A once loyal captain under the desc: Witch-King's command, he now awaits a time when his undead forces shall desc: rise again to avenge their deaths. locations:The Barrow-downs name:incubus plural:incubi base:major demon color:I speed:115 hit-points:98 hearing:50 armor-class:84 sleepiness:15 depth:35 rarity:10 weight:1400 experience:500 blow:TOUCH:LOSE_WIS blow:TOUCH:FORGET:3d4 blow:HYPNOTIZE:SEDUCE flags:MALE | SMART | PWMANG_BASE flags:DROP_1 flags:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS spell-freq:9 spells:DARKNESS | FORGET | HEAL | TELE_TO | TPORT desc:A daemon with a form of handsome man, he visits you while asleep and... name:succubus plural:succubi base:major demon color:I speed:115 hit-points:98 hearing:50 armor-class:84 sleepiness:15 depth:35 rarity:9 weight:1400 experience:500 blow:TOUCH:LOSE_WIS blow:TOUCH:FORGET:3d4 blow:HYPNOTIZE:SEDUCE flags:FEMALE | SMART | PWMANG_BASE flags:DROP_1 flags:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS spell-freq:9 spells:DARKNESS | FORGET | HEAL | TELE_TO | TPORT desc:A daemon with a form of beautiful woman, she visits you while asleep and... name:mature red dragon base:dragon color:r speed:110 hit-points:485 light:2 hearing:20 armor-class:84 sleepiness:70 depth:35 rarity:2 weight:11000 experience:1300 blow:CLAW:HURT:2d8 blow:CLAW:HURT:2d8 blow:BITE:HURT:4d9 flags:DROP_4 flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | NO_CONF | NO_SLEEP flags:DROP_CORPSE | WILD_MOUNTAIN | WILD_VOLCANO | WILD_DESERT spell-freq:8 spell-power:35 innate-freq:33 spells:CONF | SCARE spells:BR_FIRE friends:50:1d4:baby red dragon friends:50:1d2:young red dragon desc:A large dragon, scales tinted deep red. name:mature gold dragon base:dragon color:y speed:110 hit-points:485 hearing:20 armor-class:84 sleepiness:70 depth:35 rarity:2 weight:11000 experience:1300 blow:CLAW:HURT:2d8 blow:CLAW:HURT:2d8 blow:BITE:HURT:4d9 flags:DROP_4 flags:OPEN_DOOR | BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_STUN flags:DROP_CORPSE | WILD_MOUNTAIN flags:IM_LIGHT spell-freq:8 spell-power:35 innate-freq:33 spells:CONF | SCARE spells:BR_SOUN friends:50:1d4:baby gold dragon friends:50:1d2:young gold dragon desc:A large dragon with scales of gleaming gold. name:mature black dragon base:dragon color:s speed:110 hit-points:485 hearing:20 armor-class:84 sleepiness:70 depth:35 rarity:2 weight:11000 experience:1300 blow:CLAW:HURT:2d8 blow:CLAW:HURT:2d8 blow:BITE:HURT:4d9 flags:DROP_4 flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID | NO_CONF | NO_SLEEP flags:DROP_CORPSE | WILD_SWAMP | WILD_MOUNTAIN spell-freq:8 spell-power:35 innate-freq:33 spells:CONF | SCARE spells:BR_ACID friends:50:1d4:baby black dragon friends:50:1d2:young black dragon desc:A large dragon, with scales of deepest black. name:mature silver dragon base:dragon color:z speed:110 hit-points:485 hearing:20 armor-class:84 sleepiness:70 depth:35 rarity:2 weight:11000 experience:1300 blow:CLAW:HURT:2d8 blow:CLAW:HURT:2d8 blow:BITE:HURT:4d9 flags:DROP_4 | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:NO_CONF | NO_SLEEP | IM_COLD | NO_SLOW spell-freq:8 spell-power:35 innate-freq:25 spells:CONF | SCARE spells:BR_COLD | BR_INER friends:50:1d4:baby silver dragon friends:50:1d2:young silver dragon desc:A large dragon with scales of radiating silver. ### Dungeon level 36 ### name:olog base:troll color:y speed:115 hit-points:440 hearing:50 smell:50 armor-class:60 sleepiness:50 depth:36 rarity:1 weight:600 experience:450 blow:CLAW:HURT:2d9 blow:CLAW:HURT:2d9 blow:BITE:HURT:2d3 blow:BITE:HURT:2d3 flags:SMART flags:DROP_20 flags:DROP_CORPSE | DROP_SKELETON friends:100:4d4:Same desc:It is a massive intelligent troll with needle-sharp fangs. #v name:colbran base:golem color:b speed:120 hit-points:520 light:1 hearing:12 armor-class:120 sleepiness:20 depth:36 rarity:2 weight:0 experience:900 blow:HIT:ELEC:3d8 blow:HIT:ELEC:3d8 flags:COLD_BLOOD | LEVITATE flags:BASH_DOOR flags:IM_POIS | IM_LIGHT flags:FORCE_SLEEP flags:NO_STUN flags:SWIM_BAD spell-freq:3 spell-power:20 spells:BO_ELEC | BE_ELEC | TELE_SELF_TO desc:A man-shaped form of living lightning. Sparks and shocks crackle all over desc: this madly capering figure, as it leaps and whirls around and about you. name:cloud giant base:giant color:b speed:110 hit-points:368 hearing:20 armor-class:90 sleepiness:40 depth:36 rarity:1 weight:900 experience:500 blow:HIT:ELEC:8d8 blow:HIT:ELEC:8d8 flags:DROP_60 flags:OPEN_DOOR | TAKE_ITEM flags:IM_ELEC flags:DROP_CORPSE | DROP_SKELETON flags:SWIM_BAD spell-freq:8 innate-freq:100 spells:BOULDER friends:60:1d7:energy hound friends:80:1d3:Same desc:It is a twenty foot tall giant wreathed in clouds. name:master vampire base:vampire color:g speed:110 hit-points:299 hearing:20 smell:20 armor-class:72 sleepiness:10 depth:36 rarity:1 weight:0 experience:750 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 blow:BITE:EXP_40:3d6 blow:BITE:EXP_40:3d6 flags:DROP_4 spell-freq:6 spells:WOUND | CONF | DARKNESS | MIND_BLAST spells:TELE_TO spells:BO_NETH spells:HOLD | SCARE desc:It is a humanoid form dressed in robes. Power emanates from its chilling desc: frame. name:ooze elemental base:elemental color:g speed:110 hit-points:72 hearing:10 armor-class:120 sleepiness:50 depth:36 rarity:3 weight:0 experience:300 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 flags:COLD_BLOOD | POWERFUL flags:BASH_DOOR | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_COLD | IM_FIRE flags:FORCE_SLEEP flags:WILD_SHORE | WILD_SWAMP flags:SWIM_NORM spell-freq:5 spells:BA_ACID spells:BO_ACID desc:It is a towering mass of filth, an eyesore of ooze. name:smoke elemental base:elemental color:D speed:120 hit-points:83 hearing:10 armor-class:120 sleepiness:50 depth:36 rarity:3 weight:0 experience:375 blow:ENGULF:HURT:2d6 blow:ENGULF:HURT:2d6 flags:BASH_DOOR | KILL_BODY | KILL_ITEM flags:IM_COLD | IM_ELEC | IM_FIRE flags:FORCE_SLEEP | LEVITATE spell-freq:5 spells:DARKNESS spells:BO_FIRE desc:It is a towering blackened form, crackling with heat. name:xorn base:xorn color:u speed:110 hit-points:140 hearing:20 armor-class:96 sleepiness:10 depth:36 rarity:2 weight:0 experience:650 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 flags:PASS_WALL | KILL_ITEM flags:IM_COLD | IM_ELEC | IM_FIRE desc:A huge creature of the element Earth. Able to merge with its element, it desc: has four huge arms protruding from its enormous torso. name:babay base:ghost color:P speed:120 hit-points:150 light:-2 hearing:30 armor-class:36 sleepiness:20 depth:36 rarity:5 weight:0 experience:700 blow:TOUCH:EXP_40 blow:TOUCH:HURT:2d6 blow:CLAW:LOSE_INT:1d10 blow:CLAW:LOSE_INT:1d10 flags:DROP_1 | ONLY_ITEM flags:FORCE_SLEEP spell-freq:5 spells:SCARE | FORGET | BO_NETH desc:An unholy creature of darkness, the aura emanating from this evil being desc: saps your very soul. name:babayka base:wraith color:s speed:110 hit-points:250 light:-2 hearing:20 armor-class:60 sleepiness:10 depth:36 rarity:5 weight:0 experience:900 blow:CLAW:LOSE_WIS:1d10 blow:CLAW:LOSE_WIS:1d10 blow:TOUCH:EXP_40 flags:DROP_40 | DROP_60 flags:OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP spell-freq:7 spells:WOUND | DARKNESS | HOLD | SLOW | TELE_TO desc:A spirit of darkness glides towards you, seeking to suck the energy desc: from your soul to feed its power. name:colossus plural:colossi base:golem color:G speed:100 hit-points:2640 hearing:12 armor-class:180 sleepiness:10 depth:36 rarity:4 weight:0 experience:850 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 flags:COLD_BLOOD flags:BASH_DOOR flags:IM_COLD | IM_FIRE | IM_POIS flags:NO_STUN flags:SWIM_BAD desc:An enormous construct resembling a titan made from stone. It strides desc: purposefully towards you, swinging its slow fists with earth-shattering desc: power. name:trapper base:lurker color:w speed:120 hit-points:528 hearing:30 armor-class:90 sleepiness:10 depth:36 rarity:3 weight:0 experience:580 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:PARALYZE:15d1 blow:HIT:PARALYZE:15d1 desc:A larger cousin of the lurker, this creature traps unsuspecting victims and desc: paralyzes them, to be slowly digested later. name:bodak base:minor demon color:r speed:110 hit-points:193 light:2 hearing:10 armor-class:81 sleepiness:90 depth:36 rarity:2 weight:0 experience:750 blow:HIT:FIRE:4d6 blow:HIT:FIRE:4d6 blow:GAZE:EXP_20 flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:IM_POIS | NO_CONF | NO_SLEEP flags:FORCE_SLEEP spell-freq:4 spells:BA_FIRE spells:BO_FIRE spells:S_DEMON desc:It is a humanoid form composed of flames and hatred. #v name:dunadan of Angmar plural:dunedain of Angmar base:person color:P speed:120 hit-points:246 hearing:20 armor-class:75 sleepiness:20 depth:36 rarity:2 weight:160 experience:630 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 flags:MALE | EVIL | SMART flags:DROP_1 | ONLY_ITEM flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:3 spells:BLIND | WOUND | DARKNESS | HOLD | SCARE spells:TPORT spells:BO_NETH spells:S_UNDEAD spells:ANIM_DEAD drop-base:shadow book:8:1:1 friends-base:80:1d3:skeleton desc:A necromancer recruited to the evil realm of Angmar during the decline of desc: the North Kingdom. name:Mutant mage base:person color:P speed:120 hit-points:900 light:2 hearing:25 armor-class:120 sleepiness:10 depth:36 rarity:7 weight:0 experience:900 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:HURT:3d8 flags:MALE | EVIL | ATTR_FLICKER flags:OPEN_DOOR | MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_CONF flags:NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:4 spells:BO_FIRE | BO_COLD | HEAL spells:S_MONSTERS desc:Magic came out control. He is a mutant now. name:Lorgan, Chief of the Easterlings base:person color:P speed:120 hit-points:1800 light:2 hearing:25 armor-class:120 sleepiness:10 depth:36 rarity:2 weight:0 experience:1200 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 flags:UNIQUE | MALE | EVIL | ATTR_FLICKER flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_CONF flags:NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:4 spells:TELE_TO spells:S_MONSTERS friends:50:1d3:mumak friends:100:2d5:Easterling champion:bodyguard desc:A mighty warrior from the east, Lorgan hates everything that he cannot desc: control. name:demonologist base:person color:R speed:120 hit-points:246 light:2 hearing:20 armor-class:75 sleepiness:20 depth:36 rarity:2 weight:110 experience:700 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 flags:MALE | EVIL | SMART flags:DROP_1 | ONLY_ITEM flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | IM_NEXUS | IM_NETHER spell-freq:2 spells:HOLD | TPORT spells:BO_FIRE spells:S_DEMON drop-base:magic book:8:1:1 friends-base:50:1d3:minor demon:servant friends:100:1d1:quasit:servant desc:A figure twisted by evil standing in robes of deepest crimson. #old name:greater mummy plural:greater mummies base:zombie color:y speed:110 #299 hit-points:444 hearing:30 armor-class:102 sleepiness:90 depth:36 #5 rarity:6 weight:0 experience:1600 blow:CLAW:DISEASE:3d6 blow:CLAW:LOSE_CON:3d6 blow:GAZE:EXP_40:3d4 blow:GAZE:TERRIFY:3d4 flags:SMART | ATTR_FLICKER flags:DROP_2 | ONLY_ITEM flags:MOVE_BODY | TAKE_ITEM flags:IM_ACID | IM_ELEC | NO_FEAR flags:FORCE_SLEEP spell-freq:3 spell-power:36 spells:BLIND | WOUND | DARKNESS | DRAIN_MANA | FORGET | HASTE spells:HEAL | MIND_BLAST | SCARE spells:BA_COLD | BA_POIS spells:BO_NETH spells:S_UNDEAD spells:ANIM_DEAD friends:100:2d3:mummified orc friends:100:2d3:mummified human friends:100:2d3:mummified troll desc:Once a powerful ruler, now an even more powerful undead menace. name:gauth base:eye color:D speed:110 hit-points:264 hearing:20 armor-class:75 sleepiness:25 depth:36 rarity:2 weight:160 experience:600 blow:GAZE:DISENCHANT:5d2 blow:GAZE:DISENCHANT:5d2 blow:GAZE:DRAIN_CHARGES:5d2 blow:GAZE:DRAIN_CHARGES:5d2 flags:EVIL | SPIRIT flags:BASH_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE spell-freq:5 spells:WOUND | DRAIN_MANA | HOLD | TELE_AWAY spells:BA_COLD spells:BO_ELEC desc:Another lesser relative of the beholder, this six-eyed creature feeds on desc: magic. name:revenant base:wraith color:u speed:110 hit-points:195 hearing:20 armor-class:60 sleepiness:10 depth:36 rarity:1 weight:0 experience:725 blow:GAZE:PARALYZE blow:CLAW:LOSE_CON:1d10 blow:CLAW:LOSE_CON:1d10 blow:GAZE:EXP_40 flags:PWMANG_BASE | REGENERATE flags:DROP_40 | DROP_60 flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:FORCE_SLEEP spell-freq:7 spells:WOUND | CONF | DARKNESS | SCARE desc:Back from the grave, to wreak vengeance upon the living. A skeletal figure desc: wearing a black robe, with eyes that burn with undying hatred. name:mature ethereal drake base:dragon color:T speed:110 hit-points:528 hearing:20 armor-class:84 sleepiness:70 depth:36 rarity:2 weight:0 experience:1400 blow:CLAW:HURT:2d9 blow:CLAW:HURT:2d9 blow:BITE:HURT:4d9 flags:INVISIBLE flags:DROP_4 flags:OPEN_DOOR | BASH_DOOR | PASS_WALL flags:NO_CONF | NO_SLEEP | IM_NETHER spell-freq:8 spell-power:36 innate-freq:33 spells:CONF | SCARE spells:BR_NETH friends:50:1d4:baby ethereal drake friends:50:1d2:young ethereal drake desc:It is a dragon-like form wrapped in shadow. Glowing red eyes shine out in desc: the dark, and it is surrounded by an aura of unearthly cold that chills desc: the soul rather than the body. name:mature shadow drake base:dragon color:o speed:110 hit-points:528 light:-2 hearing:20 armor-class:84 sleepiness:70 depth:36 rarity:2 weight:11000 experience:1400 blow:CLAW:HURT:2d9 blow:CLAW:HURT:2d9 blow:BITE:HURT:4d9 flags:DROP_4 | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:NO_CONF | NO_SLEEP spell-freq:8 spell-power:36 innate-freq:25 spells:CONF | SCARE spells:BR_DARK | BR_LIGHT friends:50:1d4:baby shadow drake friends:50:1d2:young shadow drake desc:A dragon of great power, with control over light and dark, the shadow desc: drake's eyes glare with white hatred from the shadows. name:mature crystal drake base:dragon color:u speed:110 hit-points:528 light:2 hearing:20 armor-class:84 sleepiness:70 depth:36 rarity:2 weight:11000 experience:1400 blow:CLAW:HURT:2d9 blow:CLAW:HURT:2d9 blow:BITE:HURT:4d9 flags:DROP_4 | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_CUT spell-freq:8 spell-power:36 innate-freq:33 spells:CONF | SCARE spells:BR_SHAR friends:50:1d4:baby crystal drake friends:50:1d2:young crystal drake desc:A dragon of strange crystalline form. Light shines through it, dazzling desc: your eyes with spectrums of colour. name:mature water dragon base:dragon color:Z speed:110 hit-points:528 hearing:20 armor-class:84 sleepiness:70 depth:36 rarity:2 weight:11000 experience:1400 blow:CLAW:HURT:2d9 blow:CLAW:HURT:2d9 blow:BITE:HURT:4d9 flags:DROP_4 flags:OPEN_DOOR | BASH_DOOR flags:IM_WATER | NO_CONF | NO_SLEEP flags:DROP_CORPSE | WILD_SHORE spell-freq:8 spell-power:36 innate-freq:33 spells:CONF | SCARE spells:BR_WATE friends:50:1d4:baby water dragon friends:50:1d2:young water dragon desc:A large dragon, scales tinted deep watery blue. name:mezzodaemon base:minor demon color:M speed:110 hit-points:220 hearing:10 armor-class:81 sleepiness:90 depth:36 rarity:2 weight:0 experience:750 blow:CLAW:HURT:5d6 blow:CLAW:HURT:5d6 flags:PWMANG_BASE | INVISIBLE flags:PASS_WALL flags:IM_POIS | IM_COLD | IM_ACID | NO_SLEEP | NO_CONF | NO_STUN flags:FORCE_SLEEP spell-freq:4 spells:BLINK | DARKNESS spells:S_DEMON desc:An ugly demon with insect-like extremities and large bulbous eyes. name:seahorse base:aquatic color:o speed:120 hit-points:400 hearing:20 armor-class:60 sleepiness:20 depth:36 rarity:2 weight:0 experience:500 blow:BITE:PARALYZE:4d5 blow:BITE:LOSE_DEX:4d5 blow:BITE:LOSE_CON:4d5 flags:PWMANG_BASE | WILD_SHORE | WILD_OCEAN flags:FORCE_SLEEP | IM_COLD | IM_POIS | IM_FIRE | IM_ELEC spell-freq:5 spells:BO_WATE | BO_COLD | BO_ICE | BO_MANA desc:Your mind is filled with admiration as you view this wondrous, desc: magical seahorse. ### Dungeon level 37 ### name:witcher base:person color:y speed:115 hit-points:250 light:2 hearing:20 armor-class:50 sleepiness:10 depth:37 rarity:5 weight:160 experience:800 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 flags:MALE | COLD_BLOOD | SMART flags:DROP_1 flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON innate-freq:50 spell-power:10 spell-freq:5 spells:BR_GRAV | TELE_TO desc:Warrior who uses "signs" to kill weird monsters. desc: Why is he consireding you as one of them? name:ice elemental base:elemental color:w speed:110 hit-points:193 hearing:10 armor-class:90 sleepiness:50 depth:37 rarity:3 weight:0 experience:650 blow:TOUCH:COLD:4d3 blow:HIT:HURT:4d6 blow:TOUCH:COLD:4d3 flags:COLD_BLOOD | POWERFUL flags:BASH_DOOR | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | HURT_FIRE flags:FORCE_SLEEP flags:WILD_GLACIER flags:SWIM_GOOD spell-freq:5 spells:BA_COLD spells:BO_ICE desc:It is a towering glacier of ice. name:mummified troll base:zombie color:w speed:110 hit-points:207 hearing:20 armor-class:75 sleepiness:70 depth:37 rarity:1 weight:0 experience:420 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 flags:TROLL | EMPTY_MIND flags:DROP_20 flags:NO_FEAR desc:It is a massive figure clothed in wrappings. You are wary of its massive desc: fists. #v name:spectre base:ghost color:U speed:120 hit-points:167 hearing:20 armor-class:36 sleepiness:10 depth:37 rarity:3 weight:0 experience:380 blow:WAIL:TERRIFY blow:TOUCH:EXP_40 blow:CLAW:LOSE_WIS:5d5 flags:DROP_2 | ONLY_ITEM flags:RAND_25 | TAKE_ITEM flags:FORCE_SLEEP spell-freq:15 spells:BLIND | DRAIN_MANA | HOLD desc:A phantasmal shrieking spirit. Its wail drives the intense cold of pure desc: evil deep within your body. name:magma elemental base:elemental color:o speed:110 hit-points:193 light:2 hearing:10 armor-class:105 sleepiness:50 depth:37 rarity:3 weight:0 experience:950 blow:HIT:FIRE:3d7 blow:HIT:HURT:4d6 blow:HIT:FIRE:3d7 flags:POWERFUL flags:PASS_WALL | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_ELEC | IM_FIRE | HURT_COLD flags:FORCE_SLEEP flags:WILD_VOLCANO spell-freq:7 spells:BA_FIRE spells:BO_PLAS desc:It is a towering glowing form of molten hate. name:black pudding base:jelly color:D speed:110 hit-points:352 hearing:12 armor-class:21 sleepiness:1 depth:37 rarity:5 weight:0 experience:50 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:1d10 flags:COLD_BLOOD flags:DROP_40 | DROP_60 | DROP_1 flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:NO_CONF | NO_SLEEP friends:100:2d5:Same desc:A lump of rotting black flesh that slurrrrrrrps across the dungeon floor. name:killer iridescent beetle base:killer beetle color:b speed:110 hit-points:330 hearing:16 armor-class:90 sleepiness:30 depth:37 rarity:2 weight:60 experience:850 blow:CLAW:ELEC:2d12 blow:CLAW:ELEC:2d12 blow:GAZE:PARALYZE flags:IM_ELEC flags:ATTR_FLICKER flags:DROP_CORPSE spell-freq:6 innate-freq:100 spells:SPIT desc:It is a giant beetle, whose carapace shimmers with vibrant energies. name:nexus vortex plural:nexus vortices base:vortex color:P speed:120 hit-points:176 hearing:100 armor-class:48 sleepiness:0 depth:37 rarity:1 weight:0 experience:800 blow:ENGULF:HURT:5d5 flags:RAND_25 flags:IM_NEXUS flags:NO_STUN spell-freq:4 innate-freq:100 spells:BR_NEXU desc:A maelstrom of potent magical energy. name:plasma vortex plural:plasma vortices base:vortex color:R speed:120 hit-points:176 light:2 hearing:100 armor-class:48 sleepiness:0 depth:37 rarity:1 weight:0 experience:800 blow:ENGULF:FIRE:4d8 blow:ENGULF:ELEC:4d8 flags:RAND_25 flags:IM_ELEC | IM_FIRE | IM_PLASMA flags:NO_STUN spell-freq:4 innate-freq:100 spells:BR_PLAS desc:A whirlpool of intense flame, charring the stones at your feet. #v (was named as eldrak) name:mountain troll base:troll color:r speed:110 hit-points:660 hearing:20 smell:20 armor-class:120 sleepiness:40 depth:37 rarity:3 weight:700 experience:800 blow:PUNCH:HURT:8d4 blow:PUNCH:HURT:8d4 blow:KICK:HURT:5d4 blow:KICK:HURT:5d4 flags:DROP_40 flags:TAKE_ITEM flags:NO_CONF | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_WOOD desc:A massive troll, larger and stronger than many men together. It needs no desc: weapons aside from its massive hands and feet. #old name:eldrak base:troll color:r speed:110 hit-points:1260 hearing:20 smell:20 armor-class:170 sleepiness:40 depth:37 rarity:4 weight:700 experience:1400 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 flags:DROP_40 flags:TAKE_ITEM flags:NO_CONF | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_WOOD desc:A massive troll, larger and stronger than many men together. name:shardstorm base:vortex color:u speed:120 hit-points:176 hearing:40 armor-class:14 sleepiness:0 depth:37 rarity:1 weight:0 experience:800 blow:ENGULF:HURT:6d6 flags:NO_STUN | NO_CUT spell-freq:4 innate-freq:100 spells:BR_SHAR desc:A howling blast of razor-sharp mountain fragments, kept intact by perilous desc: magics. name:crypt thing base:lich color:G speed:120 hit-points:704 hearing:20 armor-class:72 sleepiness:60 depth:37 rarity:2 weight:0 experience:1500 blow:TOUCH:EXP_40 blow:TOUCH:DRAIN_CHARGES blow:TOUCH:LOSE_DEX:2d10 blow:TOUCH:LOSE_DEX:2d10 flags:PWMANG_BASE flags:DROP_1 flags:HURT_LIGHT spell-freq:3 spells:BLINK | WOUND | DRAIN_MANA | TELE_AWAY | TELE_LEVEL | TELE_TO spells:BRAIN_SMASH friends-base:70:1d3:skeleton desc:It is a skeletal form dressed in robes. It looks evil and devious... name:mature chaos drake base:dragon color:v speed:110 hit-points:572 hearing:20 armor-class:84 sleepiness:70 depth:37 rarity:2 weight:11000 experience:1500 blow:CLAW:HURT:2d9 blow:CLAW:HURT:2d9 blow:BITE:HURT:4d10 flags:DROP_4 | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | IM_DISEN | NO_CONF | NO_SLEEP flags:ATTR_MULTI spell-freq:8 spell-power:37 innate-freq:50 spells:CONF | SCARE spells:BR_CHAO | BR_DISE friends:50:1d4:baby chaos drake friends:50:1d2:young chaos drake desc:A dragon twisted by the forces of chaos. It seems first ugly, then fair, as desc: its form shimmers and changes in front of your eyes. name:mature law drake base:dragon color:B speed:110 hit-points:572 hearing:20 armor-class:84 sleepiness:70 depth:37 rarity:2 weight:11000 experience:1500 blow:CLAW:HURT:2d9 blow:CLAW:HURT:2d9 blow:BITE:HURT:4d10 flags:DROP_4 | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | NO_CONF | NO_SLEEP | NO_STUN | NO_CUT spell-freq:8 spell-power:37 innate-freq:50 spells:CONF | SCARE spells:BR_SHAR | BR_SOUN friends:50:1d4:baby law drake friends:50:1d2:young law drake desc:This dragon is clever and cunning. It laughs at your puny efforts to desc: disturb it. name:emperor wight base:wraith color:r speed:110 hit-points:334 hearing:20 armor-class:48 sleepiness:10 depth:37 rarity:2 weight:0 experience:1600 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 blow:TOUCH:EXP_80 blow:TOUCH:EXP_80 flags:DROP_3 | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP | LEVITATE spell-freq:6 spells:WOUND | HOLD | SCARE spells:BO_NETH friends-base:50:1d3:wraith desc:Your life force is torn from your body as this powerful unearthly being desc: approaches. ### Dungeon level 38 ### name:mummified chieftain base:zombie color:y speed:115 hit-points:299 hearing:30 armor-class:102 sleepiness:90 depth:38 rarity:3 weight:0 experience:800 blow:CLAW:DISEASE:3d6 blow:CLAW:LOSE_CON:3d6 blow:GAZE:EXP_40:3d4 blow:GAZE:TERRIFY:3d4 flags:MALE | SMART | ATTR_FLICKER flags:DROP_2 | ONLY_ITEM flags:MOVE_BODY | TAKE_ITEM flags:IM_ACID | IM_ELEC | NO_FEAR flags:FORCE_SLEEP spell-freq:3 spells:BLIND | WOUND | DARKNESS | DRAIN_MANA | FORGET | HASTE spells:HEAL | MIND_BLAST | SCARE spells:BA_COLD | BA_POIS spells:BO_NETH spells:S_UNDEAD spells:ANIM_DEAD friends:100:2d3:mummified orc:servant friends:100:2d3:mummified human:servant friends:100:2d3:mummified troll:servant desc:A powerful ruler who refused the summons of Mandos on death, preferring desc: to re-occupy his now embalmed body. He commands a legion of his former desc: subjects with unearthly shrieks. name:will o' the wisp base:elemental color:W speed:130 hit-points:176 light:2 hearing:30 armor-class:180 sleepiness:0 depth:38 rarity:4 weight:0 experience:500 blow:DEVOUR:EAT_LIGHT:1d9 blow:HIT:HURT:1d9 blow:HIT:HALLU:1d9 flags:INVISIBLE | SMART flags:RAND_50 | PASS_WALL flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | RES_LIGHT flags:FORCE_SLEEP flags:WILD_SWAMP spell-freq:2 spells:BLINK | WOUND | CONF | TPORT desc:A strange ball of glowing light. It disappears and reappears and seems to desc: draw you to it. You seem somehow compelled to stand still and watch its desc: strange dancing motion. name:mature multi-hued dragon base:dragon color:v speed:110 hit-points:615 hearing:20 armor-class:84 sleepiness:70 depth:38 rarity:2 weight:11000 experience:1600 blow:CLAW:HURT:2d10 blow:CLAW:HURT:2d10 blow:BITE:HURT:4d10 flags:DROP_4 flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_CONF flags:NO_SLEEP flags:ATTR_MULTI flags:DROP_CORPSE spell-freq:8 spell-power:38 innate-freq:33 spells:CONF | SCARE spells:BR_ACID | BR_COLD | BR_ELEC | BR_FIRE | BR_POIS friends:50:1d4:baby multi-hued dragon friends:50:1d2:young multi-hued dragon desc:A large dragon, scales shimmering many colours. name:death knight base:person color:D speed:120 hit-points:528 hearing:20 armor-class:120 sleepiness:10 depth:38 rarity:1 weight:0 experience:1000 blow:HIT:HURT:6d6 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:EVIL | COLD_BLOOD | SMART flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR flags:IM_COLD flags:FORCE_SLEEP flags:IM_NETHER spell-freq:5 spells:BLIND | WOUND | SCARE spells:BO_NETH spells:S_MONSTERS drop-base:shadow book:8:1:1 friends:50:1d1:imp desc:It is a humanoid figure dressed in armour of an ancient form. From beneath desc: its helmet, eyes glow a baleful red and seem to pierce you like lances of desc: fire. name:Castamir the Usurper base:person color:V speed:120 hit-points:880 light:2 hearing:20 armor-class:108 sleepiness:40 depth:38 rarity:5 weight:0 experience:1600 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:UNIQUE | MALE | EVIL | SMART flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM flags:FORCE_SLEEP spell-freq:2 spells:HEAL | TRAPS spells:BO_COLD | BO_ELEC | BO_FIRE | BO_ICE desc:A Black Numenorean who usurped the throne of Gondor, he is treacherous and desc: evil. name:mature balance drake base:dragon color:P speed:110 hit-points:615 hearing:20 armor-class:84 sleepiness:70 depth:38 rarity:2 weight:11000 experience:1600 blow:CLAW:HURT:2d10 blow:CLAW:HURT:2d10 blow:BITE:HURT:4d10 flags:DROP_4 | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | IM_FIRE | IM_DISEN | NO_CONF | NO_SLEEP | NO_STUN | NO_CUT spell-freq:8 spell-power:38 innate-freq:70 spells:CONF | SCARE spells:BR_CHAO | BR_DISE | BR_SHAR | BR_SOUN friends:50:1d4:baby balance drake friends:50:1d2:young balance drake desc:A mighty dragon, the balance drake seeks to maintain the Cosmic Balance, desc: and despises your feeble efforts to destroy evil. name:time vortex plural:time vortices base:vortex color:B speed:130 hit-points:176 hearing:100 armor-class:48 sleepiness:0 depth:38 rarity:4 weight:0 experience:800 blow:ENGULF:TIME:5d5 flags:RAND_25 flags:NO_STUN spell-freq:4 innate-freq:100 spells:BR_TIME desc:You haven't seen it yet. name:aranea base:spider color:R speed:110 hit-points:264 hearing:20 armor-class:54 sleepiness:50 depth:38 rarity:3 weight:0 experience:250 blow:CLAW:POISON:2d8 blow:CLAW:POISON:2d8 blow:BITE:POISON:2d6 blow:BITE:POISON:2d6 flags:EVIL | ANIMAL | SMART | SPIRIT flags:OPEN_DOOR | GROUP_AI flags:HURT_LIGHT | IM_POIS flags:FORCE_SLEEP flags:DROP_SKELETON spell-freq:6 spell-power:38 spells:WOUND | HOLD | MISSILE | SLOW spells:BO_FIRE friends:50:2d3:Mirkwood spider friends:100:3d3:Same desc:An intelligent arachnid whose hairy legs weave spells in the air. name:shimmering vortex plural:shimmering vortices base:vortex color:o speed:140 hit-points:176 light:3 hearing:100 armor-class:48 sleepiness:0 depth:38 rarity:4 weight:0 experience:800 blow:ENGULF:BLIND:4d4 blow:ENGULF:BLIND:4d4 flags:ATTR_FLICKER flags:RAND_25 flags:NO_STUN spell-freq:4 innate-freq:100 spells:SHRIEK spells:BR_LIGHT desc:A strange pillar of shining light that hurts your eyes. Its shape changes desc: constantly as it cuts through the air towards you. It is like a beacon, desc: waking monsters from their slumber. #old black wraith name:wisp base:elemental color:D speed:120 hit-points:150 hearing:20 armor-class:66 sleepiness:10 depth:38 rarity:2 weight:0 experience:1700 blow:DEVOUR:EAT_LIGHT:1d9 blow:HIT:HALLU:1d9 blow:HIT:HALLU:1d9 blow:HIT:HALLU:1d9 flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP | LEVITATE | SMART flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | RES_LIGHT spell-freq:7 spell-power:38 spells:BLINK | WOUND | HOLD | TELE_AWAY | TELE_LEVEL | TELE_TO desc:It's a strange bright glowing sphere formed of living light. desc:There are rumours that following a wisp will lead you to a treasure. #v name:white wraith base:wraith color:w speed:120 hit-points:450 hearing:20 armor-class:48 sleepiness:10 depth:38 rarity:1 weight:0 experience:355 blow:HIT:HURT:1d9 blow:HIT:HURT:1d9 blow:TOUCH:EXP_20 blow:TOUCH:EXP_20 flags:DROP_1 flags:OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP | LEVITATE spell-freq:8 spells:WOUND | DARKNESS | SCARE desc:It is a tangible but ghostly form made of white fog. name:erinyes plural:erinyes base:major demon color:u speed:110 hit-points:210 hearing:20 armor-class:75 sleepiness:70 depth:38 rarity:2 weight:0 experience:1000 blow:HIT:HURT:3d4 blow:TOUCH:LOSE_STR:1d5 flags:FEMALE flags:DROP_40 flags:IM_FIRE | IM_POIS spell-freq:7 spell-power:38 spells:BLIND | CONF spells:BO_FIRE desc:It is a lesser demon of female form; however, she takes little time to show desc: her true colours. #v two-headed troll name:ettin base:troll color:b speed:110 hit-points:1320 hearing:20 smell:20 armor-class:120 sleepiness:30 depth:38 rarity:3 weight:800 experience:1000 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 flags:DROP_1 | ONLY_ITEM flags:NO_CONF | NO_SLEEP flags:DROP_CORPSE | WILD_WOOD | WILD_SWAMP | WILD_MOUNTAIN desc:A massive troll of huge strength, stupid but violent. desc: They are also living proof that two heads are not more intelligent than desc: one... name:ettin zombie base:zombie color:b speed:115 hit-points:1666 hearing:20 smell:15 armor-class:140 sleepiness:60 depth:38 #3 rarity:5 weight:800 experience:1500 blow:HIT:HURT:5d6 blow:HIT:HURT:5d6 blow:HIT:HURT:5d6 blow:HIT:HURT:5d6 flags:DROP_1 | ONLY_ITEM | NO_FEAR flags:NO_CONF | NO_SLEEP | EMPTY_MIND flags:WILD_WOOD | WILD_SWAMP | WILD_MOUNTAIN desc:A massive two-headed troll of huge strength, ettins are stupid but violent. desc: They are also living proof that two heads are not more intelligent than desc: one... Especially when they are dead. #v name:abyss spider base:spider color:G speed:120 hit-points:264 hearing:20 armor-class:54 sleepiness:50 depth:38 rarity:3 weight:0 experience:250 blow:CLAW:HURT:2d8 blow:STING:POISON:2d6 blow:STING:POISON:2d6 blow:BITE:CONFUSE:1d3 flags:EVIL | ANIMAL flags:WEIRD_MIND | HURT_LIGHT | IM_POIS flags:DROP_SKELETON spell-freq:5 innate-freq:50 spells:WEAVE | CONF | SLOW | BLIND spells:BR_POIS | BR_DARK spell-power:10 desc:A massive spider, heaving the bloated bag of its body between great desc: spined legs. ### Dungeon level 39 ### name:Cherub #base:angel base:ainu color:G speed:120 hit-points:1300 hearing:30 armor-class:70 sleepiness:155 depth:39 rarity:4 weight:0 experience:2500 blow:HIT:HURT:4d3 blow:HIT:HURT:3d8 blow:HIT:HURT:4d3 blow:HIT:HURT:3d8 flags:SMART flags:DROP_2 flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | RES_LIGHT flags:NO_STUN | NO_CONF | LEVITATE flags:IM_POIS flags:OPEN_DOOR | BASH_DOOR | NO_SLEEP spell-freq:3 spell-power:39 spells:BLIND | HASTE | HEAL | MIND_BLAST | SCARE spells:BO_FIRE spells:S_MONSTERS desc:It is an angel moving very quickly, wielding a holy war hammer and casting desc:a volley of powerful spells in your direction. #v name:southron archer base:person color:M speed:120 hit-points:209 hearing:20 armor-class:114 sleepiness:10 depth:39 rarity:4 weight:160 experience:700 blow:HIT:POISON:3d4 blow:HIT:LOSE_STR:3d4 blow:HIT:LOSE_STR:3d4 blow:HIT:POISON:3d4 flags:MALE | EVIL | LEVITATE flags:DROP_1 flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:2 innate-freq:100 spells:ARROW friends:80:1d4:southron assassin desc:A man of Harad clad in black and red and carrying a longbow. His quiver is desc: full of red feathered arrows, and carries an insignia of a black serpent. #old name:nether wraith name:little girl horror base:wraith color:G speed:120 hit-points:420 hearing:20 armor-class:66 sleepiness:80 depth:39 rarity:2 weight:0 experience:1700 blow:HIT:HURT:1d12 blow:HIT:HALLU:1d12 blow:HIT:LOSE_CON:1d12 blow:HIT:HURT:1d12 flags:DROP_3 | ONLY_ITEM flags:PASS_WALL flags:FORCE_SLEEP spell-freq:6 innate-freq:33 spells:SHRIEK | MIND_BLAST | SCARE desc:Do you fear me? I know, you are. I will come for you while you asleep. name:7-headed hydra base:hydra color:G speed:120 hit-points:550 light:2 hearing:20 armor-class:135 sleepiness:35 depth:39 rarity:2 weight:700 experience:2000 blow:BITE:HURT:4d6 blow:BITE:HURT:4d6 blow:BITE:POISON:4d6 blow:BITE:FIRE:4d6 flags:DROP_4 flags:MOVE_BODY flags:IM_POIS | IM_FIRE flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:5 innate-freq:67 spells:SCARE spells:BR_POIS | BR_FIRE desc:A 6-headed hydra with one extra head, breathing fire. name:night mare base:quadruped color:G speed:120 hit-points:1320 hearing:30 smell:20 armor-class:102 sleepiness:0 depth:39 rarity:3 weight:0 experience:2900 blow:BITE:EXP_80:2d6 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:CONFUSE:6d6 flags:UNDEAD | EVIL | COLD_BLOOD | LEVITATE flags:DROP_2 | ONLY_GOLD flags:OPEN_DOOR flags:IM_COLD | IM_POIS | NO_CONF | NO_SLEEP | NO_STUN desc:A fearsome skeletal horse with glowing eyes, that watch you with little desc: more than a hatred of all that lives. name:mature power dragon base:dragon color:I speed:110 hit-points:660 light:2 hearing:20 armor-class:84 sleepiness:70 depth:39 rarity:2 weight:11000 experience:1700 blow:CLAW:HURT:2d10 blow:CLAW:HURT:2d10 blow:BITE:HURT:4d11 flags:DROP_4 | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR | NO_CUT flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW spell-freq:8 spell-power:39 innate-freq:10 spells:CONF | SCARE spells:BR_ACID | BR_ELEC | BR_FIRE | BR_COLD | BR_POIS | BR_NETH | BR_LIGHT spells:BR_SOUN | BR_CHAO | BR_DISE | BR_NEXU | BR_TIME | BR_INER | BR_GRAV spells:BR_SHAR | BR_PLAS | BR_WALL | BR_MANA | BR_WATE | BR_DARK friends:50:1d4:baby power dragon friends:50:1d2:young power dragon desc:A large dragon, scales shimmering red. name:monastic lich plural:monastic liches base:lich color:u speed:120 hit-points:1056 hearing:30 armor-class:96 sleepiness:30 depth:39 rarity:2 weight:0 experience:3000 blow:KICK:HURT:24d1 blow:KICK:HURT:24d1 blow:CLAW:EXP_80:4d2 blow:CLAW:LOSE_DEX:4d2 flags:PWMANG_BASE flags:ONLY_ITEM | DROP_4 spell-freq:3 spells:BLIND | BLINK | WOUND | CONF | BRAIN_SMASH spells:DRAIN_MANA | HOLD | SCARE | TELE_TO spells:ANIM_DEAD friends-base:70:1d3:skeleton desc:A skeletal form wrapped in priestly robes. Before its un-death, it was a desc: monk in an evil order. ########## DUNGEON LEVELS 40-49 ########## ### Dungeon level 40 ### name:flaming skull base:skeleton color:s speed:120 hit-points:133 light:2 hearing:30 armor-class:45 sleepiness:70 depth:40 rarity:5 weight:0 experience:50 blow:CRUSH:HURT:4d6 blow:BITE:FIRE:6d6 blow:BITE:LOSE_INT:4d6 flags:WEIRD_MIND | LEVITATE flags:DROP_40 flags:BASH_DOOR friends:100:3d5:Same desc:A pack of hellish skulls cursed with an insatiable hunger. name:huorn base:tree color:G speed:120 hit-points:1500 light:-2 hearing:40 armor-class:150 sleepiness:20 depth:40 rarity:5 weight:0 experience:800 blow:CRUSH:HURT:5d8 blow:CRUSH:HURT:5d8 blow:CRUSH:HURT:5d8 blow:CRUSH:HURT:5d8 flags:DROP_40 | NO_SLEEP | WEIRD_MIND flags:IM_COLD | NEVER_MOVE spell-freq:9 spells:BLINK | TELE_TO | SLOW desc:A very strong near-sentient tree, which has become hostile to other living desc: things. #old storm giant / ADD NEW TILE ! name:sand giant base:giant color:B speed:120 hit-points:700 light:2 hearing:20 armor-class:90 sleepiness:30 depth:40 rarity:4 weight:1300 experience:1000 blow:HIT:ELEC:10d8 blow:HIT:ELEC:10d8 flags:DROP_1 flags:OPEN_DOOR | TAKE_ITEM flags:IM_COLD | IM_ELEC flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_MOUNTAIN spell-freq:8 spell-power:40 innate-freq:33 spells:BLINK | CONF | SCARE | TELE_TO spells:BOULDER | BR_SHAR friends:60:1d7:earth hound friends:80:1d3:Same desc:It is a twenty-five foot tall sand giant. name:ancient blue dragon base:ancient dragon color:b speed:120 hit-points:1056 hearing:20 armor-class:120 sleepiness:80 depth:40 rarity:2 weight:17000 experience:5000 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d8 flags:OPEN_DOOR | BASH_DOOR flags:IM_ELEC flags:DROP_CORPSE spell-freq:6 spell-power:40 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_ELEC desc:A huge draconic form. Lightning crackles along its length. name:beholder base:eye color:U speed:120 hit-points:1400 hearing:30 armor-class:96 sleepiness:10 depth:40 rarity:3 weight:160 experience:6000 blow:GAZE:EXP_20:2d6 blow:GAZE:DRAIN_CHARGES:2d6 blow:GAZE:FORGET:2d6 blow:BITE:HURT:6d6 flags:EVIL | SPIRIT flags:BASH_DOOR flags:NO_CONF | NO_SLEEP flags:FORCE_SLEEP flags:DROP_CORPSE spell-freq:2 spells:BLIND | CONF | DARKNESS | DRAIN_MANA | FORGET | MIND_BLAST spells:SCARE | SLOW spells:BO_ACID | BO_COLD | BO_ELEC | BO_FIRE desc:A vile creature with one huge central eye, twelve smaller eyes on stalks, desc: and a huge mouth filled with sharp teeth. name:ancient white dragon base:ancient dragon color:w speed:120 hit-points:1056 hearing:20 armor-class:120 sleepiness:80 depth:40 rarity:2 weight:17000 experience:5000 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d8 flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD flags:DROP_CORPSE spell-freq:6 spell-power:40 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_COLD desc:A huge draconic form. Frost covers it from head to tail. name:ancient green dragon base:ancient dragon color:g speed:120 hit-points:1056 hearing:20 armor-class:120 sleepiness:80 depth:40 rarity:2 weight:17000 experience:5000 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d8 flags:OPEN_DOOR | BASH_DOOR flags:IM_POIS flags:DROP_CORPSE spell-freq:6 spell-power:40 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_POIS desc:A huge draconic form enveloped in clouds of poisonous vapour. name:disenchanter worm mass base:worm color:v speed:100 hit-points:45 hearing:7 armor-class:6 sleepiness:10 depth:40 rarity:3 weight:0 experience:30 blow:CRAWL:DISENCHANT:1d4 flags:WEIRD_MIND | MULTIPLY | STUPID flags:RAND_50 | BASH_DOOR flags:HURT_LIGHT | IM_DISEN | NO_FEAR flags:ATTR_MULTI desc:It is a strange mass of squirming worms. Magical energy crackles around its desc: disgusting form. name:spirit troll base:ghost color:G speed:110 hit-points:880 hearing:20 armor-class:108 sleepiness:5 depth:40 rarity:3 weight:0 experience:900 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 flags:TROLL | REGENERATE flags:DROP_60 flags:IM_ELEC desc:A weird ghostly troll-like being. #v name:phantom base:ghost color:P speed:120 hit-points:260 hearing:30 armor-class:36 sleepiness:20 depth:40 rarity:3 weight:0 experience:400 blow:TOUCH:EXP_80 blow:TOUCH:EXP_40 blow:CLAW:LOSE_INT:2d8 blow:CLAW:LOSE_WIS:2d8 flags:DROP_1 | ONLY_ITEM flags:FORCE_SLEEP spell-freq:5 spells:FORGET desc:An unholy creature of darkness, the aura emanating from this evil being desc: saps your very soul. #old 9-headed hydra name:Chudo Yudo base:dragon color:r speed:120 #650 hit-points:1350 hearing:20 armor-class:114 sleepiness:20 depth:40 #2 rarity:5 #800 weight:1300 experience:3000 blow:BITE:HURT:3d10 blow:BITE:HURT:3d10 blow:BITE:HURT:3d10 blow:BITE:HURT:3d10 flags:DROP_4 flags:OPEN_DOOR | MOVE_BODY flags:IM_WATER flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:4 innate-freq:50 spells:HEAL | BR_WATE desc:A strange reptilian creature with smouldering heads. desc:They say that it could heal it's heads... name:enchantress base:person color:R speed:130 hit-points:457 light:2 hearing:20 armor-class:72 sleepiness:10 depth:40 rarity:4 weight:170 experience:2100 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 blow:HIT:HURT:2d8 flags:FEMALE | EVIL flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:2 spells:BLIND spells:SHAPECHANGE | S_DRAGON drop-base:magic book:8:1:1 friends-base:30:1d1:dragon:servant friends-base:60:1d1:dragon:servant shape:ancient dragon desc:This elusive female spellcaster has a special affinity for dragons, whom desc: she rarely fights without. name:sorcerer base:person color:R speed:130 hit-points:457 light:2 hearing:20 armor-class:72 sleepiness:10 depth:40 rarity:2 weight:170 experience:2150 blow:HIT:HURT:2d8 blow:HIT:HURT:2d8 blow:HIT:HURT:2d8 flags:MALE | EVIL flags:DROP_3 | ONLY_ITEM flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:2 spells:BLIND | BLINK | WOUND | CONF | TELE_TO | TRAPS spells:BA_COLD | BA_FIRE spells:BO_ACID spells:S_DRAGON | S_MONSTER | S_UNDEAD drop-base:magic book:10:1:1 friends:30:1d1:master thief friends:30:1d1:ranger chieftain friends:30:1d1:patriarch friends:30:1d1:knight Templar friends:30:1d1:berserker desc:A human figure in robes, he moves with magically improved speed, and his desc: hands are ablur with spell casting. name:xaren base:xorn color:s speed:120 hit-points:280 hearing:20 armor-class:96 sleepiness:10 depth:40 rarity:1 weight:0 experience:1200 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 flags:DROP_2 | ONLY_GOLD flags:PASS_WALL | KILL_ITEM flags:IM_COLD | IM_ELEC | IM_FIRE desc:It is a tougher relative of the Xorn. Its hide glitters with metal ores. name:giant roc base:bird color:u speed:110 hit-points:560 hearing:20 armor-class:84 sleepiness:10 depth:40 rarity:3 weight:600 experience:1000 blow:CRUSH:HURT:8d12 blow:CRUSH:HURT:8d12 blow:HIT:ELEC:12d12 flags:BASH_DOOR flags:IM_ELEC flags:DROP_CORPSE | WILD_WOOD | WILD_MOUNTAIN desc:A vast legendary bird, its iron talons rake the most impenetrable of desc: surfaces and its screech echoes through the many winding dungeon desc: corridors. name:Uvatha the Horseman base:wraith color:p speed:120 hit-points:1800 hearing:90 smell:50 armor-class:72 sleepiness:10 depth:40 rarity:3 weight:0 experience:10000 blow:HIT:HURT:6d6 blow:HIT:BLACK_BREATH:6d6 blow:HIT:EXP_80:4d6 blow:HIT:EXP_80:4d6 flags:UNIQUE | MALE | LEVITATE flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:RES_LIGHT drop:ring:Black Ring of Power:100:1:1 desc:A tall black cloaked Ringwraith, he is a master of horsemanship. He longs desc: to taste your blood. name:minotaur base:hybrid color:s speed:130 hit-points:550 hearing:13 smell:20 armor-class:30 sleepiness:10 depth:40 rarity:2 weight:1500 experience:2100 blow:BUTT:HURT:4d6 blow:BUTT:HURT:4d6 blow:BUTT:HURT:2d6 blow:BUTT:HURT:2d6 flags:EVIL flags:BASH_DOOR flags:DROP_CORPSE | DROP_SKELETON | HYBRID desc:It is a cross between a human and a bull. name:Medusa, the Gorgon base:naga color:v speed:120 hit-points:2400 hearing:30 armor-class:120 sleepiness:5 depth:40 rarity:3 weight:0 experience:9000 blow:GAZE:EXP_80 blow:GAZE:PARALYZE blow:HIT:HURT:8d6 blow:HIT:HURT:8d6 flags:UNIQUE | SMART flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR flags:IM_ACID | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags-off:HURT_COLD drop:fortune cookie:Fortune Cookie:50:1:1 spell-freq:2 spell-power:40 spells:WOUND | HOLD | SCARE spells:BA_ACID spells:BO_FIRE | BO_PLAS spells:S_HYDRA | S_KIN desc:One of the original three ugly sisters. Her face could sink a thousand desc: ships. Her scales rattle as she slithers towards you, venom dripping from desc: her ghastly mouth. name:vrock base:major demon color:s speed:110 hit-points:352 hearing:20 armor-class:75 sleepiness:70 depth:40 rarity:2 weight:0 experience:2000 blow:HIT:HURT:3d4 blow:CRUSH:HURT:8d12 blow:CRUSH:HURT:8d12 flags:DROP_40 flags:IM_FIRE spell-freq:8 spells:BLIND | CONF friends:100:4d4:Same desc:It is a demon with a long neck and raking claws. name:death quasit base:minor demon color:D speed:130 hit-points:387 hearing:20 armor-class:96 sleepiness:0 depth:40 rarity:3 weight:0 experience:1000 blow:BITE:LOSE_DEX:3d6 blow:CLAW:HURT:3d3 blow:CLAW:HURT:3d3 flags:INVISIBLE | SMART flags:DROP_3 | ONLY_ITEM flags:PASS_WALL flags:IM_POIS | NO_FEAR | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:10 spells:BLIND | WOUND | CONF | SCARE spells:S_DEMON desc:It is a demon of small stature, but its armoured frame moves with lightning desc: speed and its powers make it a tornado of death and destruction. #v name:patriarch base:person color:G speed:120 hit-points:457 light:2 hearing:20 armor-class:90 sleepiness:20 depth:40 rarity:2 weight:180 experience:1800 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d5 flags:MALE | SMART flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON flags:IM_LIGHT spell-freq:2 spells:BLIND | HEAL | HEAL_KIN | MIND_BLAST spells:BA_LIGHT | BA_ELEC | BA_HOLY spells:S_KIN drop-base:prayer book:10:1:1 friends:30:1d1:master thief friends:30:1d1:ranger chieftain friends:30:1d1:sorcerer friends:30:1d1:berserker desc:A priest of great power, he is convinced of the righteousness of his desc: beliefs. Stand in his way at your peril. #was patriarch name:matriarch base:person color:G #120 speed:125 #457 hit-points:357 light:2 hearing:20 armor-class:90 sleepiness:20 depth:40 #2 rarity:4 weight:180 experience:2000 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d5 flags:FEMALE | EVIL | SMART flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:2 spell-power:40 spells:BLIND | WOUND | MISSILE | HEAL | HOLD | HEAL_KIN spells:S_MONSTER | S_UNDEAD spells:ANIM_DEAD drop-base:prayer book:10:1:1 friends:30:1d1:master thief friends:30:1d1:ranger chieftain friends:30:1d1:sorcerer friends:30:1d1:knight Templar friends:30:1d1:berserker desc:An evil priest, dressed all in black. Deadly spells hit you at an alarming desc: rate as her black spiked mace rains down blow after blow on your pitiful desc: frame. name:troll chieftain base:troll color:P speed:120 hit-points:792 hearing:30 smell:20 armor-class:60 sleepiness:20 depth:40 rarity:5 weight:500 experience:3000 blow:HIT:HURT:2d12 blow:HIT:HURT:2d12 blow:BITE:HURT:3d6 blow:BITE:HURT:3d6 flags:SMART flags:DROP_1 flags:MOVE_BODY | TAKE_ITEM flags:NO_FEAR flags:DROP_CORPSE | DROP_SKELETON friends:60:2d3:forest troll:servant friends:60:2d3:stone troll:servant friends:30:2d3:snow troll:servant friends:30:2d3:hill troll:servant friends:30:2d3:ice troll:servant friends:30:2d3:water troll:servant friends:30:2d3:half-troll:servant friends:60:2d3:cave troll:servant friends:60:2d3:olog:servant desc:This troll's great strength and size have won it the place of chieftain of desc: its tribe. It fears nothing. name:oriental vampire base:vampire color:s speed:110 hit-points:1056 hearing:20 smell:20 armor-class:72 sleepiness:10 depth:40 rarity:5 weight:0 experience:750 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:BITE:EXP_40:3d6 blow:BITE:EXP_40:3d6 flags:PWMANG_BASE | INVISIBLE flags:DROP_4 flags:PASS_WALL spell-freq:6 spells:WOUND | CONF | DARKNESS | FORGET | MIND_BLAST | TELE_TO spells:BO_NETH spells:HOLD | SCARE desc:The oriental vampire can transform into a mist at will. name:Shadowfax, steed of Gandalf base:quadruped color:v speed:130 hit-points:3000 hearing:20 smell:20 armor-class:120 sleepiness:50 depth:40 rarity:3 weight:0 experience:2000 blow:KICK:HURT:5d5 blow:KICK:HURT:5d5 blow:BITE:HURT:6d6 flags:REGENERATE | UNIQUE | ANIMAL | PWMANG_BASE | WANDERER flags:IM_POIS | NO_CONF | NO_SLEEP | NO_FEAR | IM_FIRE | IM_COLD | IM_ELEC flags:NO_HOLD drop-base:crop:100:1:3 desc:Shadowfax is the chief of the "Mearas", the greatest of all horses that are desc: bred in the fields of Rohan. Although the Mearas should technically be desc: only ridden by the royal family of Rohan, only Gandalf the Wizard has ever desc: succeeded in taming Shadowfax: and even then, Shadowfax will not be desc: subjected to a bridle or saddle, but must be ridden bareback. name:war troll base:troll color:Z speed:120 hit-points:440 hearing:20 smell:20 armor-class:120 sleepiness:20 depth:40 rarity:3 weight:650 experience:800 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:BITE:HURT:3d5 blow:BITE:HURT:3d5 flags:PWMANG_BASE flags:DROP_CORPSE | DROP_SKELETON | DROP_20 flags:NO_CONF | NO_SLEEP | NO_FEAR friends:100:4d4:Same desc:A massive troll, equipped with a scimitar and heavy armour. name:master mindcrafter base:person color:Y speed:120 hit-points:704 light:2 hearing:20 armor-class:72 sleepiness:10 depth:40 rarity:2 weight:170 experience:2600 blow:HIT:HURT:4d5 blow:HIT:HURT:4d5 blow:HIT:HURT:4d5 flags:EVIL | SMART | MALE | PWMANG_BASE flags:DROP_CORPSE | DROP_SKELETON | ONLY_ITEM | DROP_4 flags:TAKE_ITEM | MOVE_BODY flags:IM_FIRE | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP | NO_FEAR | NO_STUN flags:FORCE_SLEEP | NO_HOLD spell-freq:2 spells:BLIND | BLINK | BRAIN_SMASH | CONF | HEAL | HOLD | MIND_BLAST | SCARE spells:TELE_AWAY | TPORT spells:BA_COLD | BA_FIRE spells:BO_NETH spells:S_MONSTERS drop-base:psi book:10:1:1 friends:30:1d1:swordsmaster friends:30:1d1:master thief friends:30:1d1:sorcerer friends:30:1d1:patriarch desc:A mindcrafter of the highest order. Powerful and evil, and a dangerous desc: enemy: a master of mind over matter, of his own mind, and of the minds of desc: others, who slavishly follow him into battle when he calls them. name:The Minotaur of the Labyrinth base:hybrid color:W speed:130 hit-points:1500 hearing:13 smell:20 armor-class:30 sleepiness:10 depth:40 rarity:2 weight:0 experience:13000 blow:BUTT:HURT:4d6 blow:BUTT:HURT:4d6 blow:BUTT:HURT:3d6 blow:BUTT:HURT:3d6 flags:EVIL | UNIQUE | PWMANG_BASE | PWMANG_FIXED flags:DROP_1 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:BASH_DOOR | HYBRID flags:RES_LIGHT flags:FORCE_DEPTH drop:food:Strip of Beef Jerky:100:1:1 desc:It is a cross between a human and a bull. locations:The Maze name:Emperor Mimic base:random mimic color:v speed:120 hit-points:2500 hearing:30 armor-class:72 sleepiness:0 depth:40 rarity:3 weight:0 experience:2000 blow:HIT:POISON:5d5 blow:HIT:POISON:5d5 blow:HIT:POISON:5d5 blow:HIT:POISON:5d5 flags:UNIQUE | PWMANG_BASE flags:IM_ACID | IM_FIRE | IM_ELEC | IM_COLD flags:IM_POIS drop-base:chest:30:1:1 spell-freq:2 innate-freq:6 spells:BRAIN_SMASH | WOUND | FORGET | SHRIEK spells:TRAPS spells:BA_ACID | BA_COLD | BA_ELEC | BA_FIRE spells:S_KIN | S_MONSTER spells:BLIND | CONF | SCARE spells:BO_COLD | BO_FIRE desc:A strange creature that disguises itself as an object to lure unsuspecting desc: adventurers within reach of its venomous claws. name:swordsmaster base:person color:u speed:120 hit-points:615 light:2 hearing:30 armor-class:90 sleepiness:10 depth:40 rarity:1 weight:170 experience:1000 blow:HIT:HURT:6d8 blow:HIT:HURT:6d8 blow:HIT:DISARM:6d8 flags:MALE | PWMANG_BASE flags:DROP_2 | DROP_CORPSE | DROP_SKELETON flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP | IM_FIRE | IM_COLD | IM_ELEC friends:30:1d1:master thief friends:30:1d1:ranger chieftain friends:30:1d1:patriarch friends:30:1d1:knight Templar friends:30:1d1:sorcerer desc:A warrior of considerable skill. name:8-headed hydra base:hydra color:b speed:120 hit-points:600 light:2 hearing:20 armor-class:125 sleepiness:25 depth:40 rarity:2 weight:750 experience:2500 blow:BITE:HURT:4d6 blow:BITE:POISON:4d6 blow:BITE:FIRE:4d6 blow:BITE:ACID:5d6 flags:DROP_4 flags:MOVE_BODY flags:IM_POIS | IM_FIRE | IM_ACID flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:4 innate-freq:67 spells:SCARE spells:BR_POIS | BR_FIRE desc:A 7-headed hydra with one extra head, steaming with acidic vapor. name:green Thunderlord base:bird color:g speed:120 hit-points:1275 light:2 hearing:20 armor-class:100 sleepiness:50 depth:40 rarity:4 weight:3000 experience:6000 blow:HIT:HURT:8d6 blow:HIT:HURT:8d6 flags:FEMALE | DROP_SKELETON | DROP_CORPSE | PWMANG_BASE | SPIRIT flags:ONLY_ITEM | DROP_1 | DROP_GOOD flags:IM_FIRE | REGENERATE | OPEN_DOOR | BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD | ATTR_FLICKER spell-freq:4 innate-freq:33 spells:BR_FIRE | BLINK | TELE_AWAY desc:A Thunderlord. Among the weaker breeds, but still dangerous. name:giant squid base:aquatic color:U speed:120 hit-points:750 hearing:8 armor-class:80 sleepiness:80 depth:40 rarity:3 weight:0 experience:1500 blow:CRUSH:HURT:8d8 blow:CRUSH:HURT:8d8 blow:CRUSH:HURT:8d8 flags:PWMANG_BASE | WILD_SHORE | WILD_OCEAN flags:IM_ACID | IM_COLD | MOVE_BODY | COLD_BLOOD spell-freq:8 innate-freq:100 spells:BR_ELEC | BR_ACID | BR_POIS desc:Besides being capable of dragging whole ships underwater, desc: this creature can also harm you with ranged attacks. ### Dungeon level 41 ### #v name:9-headed hydra base:hydra color:r speed:120 hit-points:650 light:2 hearing:20 armor-class:114 sleepiness:20 depth:41 rarity:2 weight:800 experience:3000 blow:BITE:HURT:5d6 blow:BITE:POISON:5d6 blow:BITE:FIRE:5d6 blow:BITE:ACID:5d6 flags:DROP_4 flags:MOVE_BODY flags:IM_POIS | IM_FIRE | IM_ACID flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:4 innate-freq:75 spells:SCARE spells:BR_POIS | BR_FIRE | BR_ACID desc:A 8-headed hydra with one extra head, breathing acid. name:ancient black dragon base:ancient dragon color:s speed:120 hit-points:1164 hearing:20 armor-class:120 sleepiness:80 depth:41 rarity:2 weight:17000 experience:6000 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d9 flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID flags:DROP_CORPSE spell-freq:6 spell-power:41 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_ACID desc:A huge draconic form. Pools of acid melt the floor around it. name:ancient red dragon base:ancient dragon color:r speed:120 hit-points:1164 light:2 hearing:20 armor-class:120 sleepiness:80 depth:41 rarity:2 weight:17000 experience:6000 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d9 flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE flags:DROP_CORPSE spell-freq:6 spell-power:41 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_FIRE desc:A huge draconic form. Wisps of smoke steam from its nostrils and the desc: extreme heat surrounding it makes you gasp for breath. name:ancient gold dragon base:ancient dragon color:y speed:120 hit-points:1164 hearing:20 armor-class:120 sleepiness:80 depth:41 rarity:2 weight:17000 experience:6000 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d9 flags:OPEN_DOOR | BASH_DOOR | NO_STUN flags:DROP_CORPSE flags:IM_LIGHT spell-freq:6 spell-power:41 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_SOUN desc:A huge draconic form wreathed in a nimbus of light. Its roar stuns and desc: deafens you. name:dark elven sorcerer base:humanoid color:R speed:130 hit-points:700 hearing:20 armor-class:84 sleepiness:10 depth:41 rarity:2 weight:130 experience:3000 blow:HIT:HURT:2d8 blow:HIT:HURT:2d8 blow:HIT:HURT:2d8 flags:MALE | EVIL | SMART flags:DROP_3 | ONLY_ITEM flags:HURT_LIGHT | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:2 spells:BLIND | BLINK | WOUND | CONF | DARKNESS | HEAL spells:TELE_TO spells:BA_COLD | BA_FIRE spells:BO_ACID spells:S_DEMON | S_MONSTER | S_UNDEAD spells:ANIM_DEAD drop-base:magic book:8:1:1 drop-base:shadow book:8:1:1 desc:A dark elven figure, dressed in deepest black. Power seems to crackle from desc: his slender frame. name:master lich plural:master liches base:lich color:r speed:120 hit-points:1584 hearing:20 armor-class:96 sleepiness:50 depth:41 rarity:2 weight:0 experience:10000 blow:TOUCH:EXP_80 blow:TOUCH:DRAIN_CHARGES blow:TOUCH:LOSE_DEX:2d12 blow:TOUCH:LOSE_DEX:2d12 flags:DROP_4 | ONLY_ITEM spell-freq:3 spells:BLIND | BLINK | WOUND | CONF | BRAIN_SMASH spells:DRAIN_MANA | HOLD | SCARE | TELE_TO spells:S_UNDEAD friends-base:80:1d3:zombie:servant friends-base:80:1d3:skeleton:servant desc:A skeletal form wrapped in robes. Powerful magic crackles along its bony desc: fingers. #was old hezrou name:chert base:major demon color:g #110 speed:115 #457 hit-points:666 hearing:20 #60 armor-class:44 sleepiness:70 depth:41 #3 rarity:6 weight:0 #2.5 experience:3000 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 flags:DROP_1 flags:IM_FIRE spell-freq:9 spell-power:41 spells:BO_FIRE spells:S_DEMON friends:100:1d4:Same desc:It is a demon of crude human form with cruel-looking horns. name:Gorlim, Betrayer of Barahir base:person color:z speed:120 hit-points:1600 light:2 hearing:20 armor-class:144 sleepiness:40 depth:41 rarity:3 weight:0 experience:7000 blow:HIT:HURT:8d6 blow:HIT:HURT:8d6 blow:HIT:DISENCHANT:6d8 blow:HIT:DISENCHANT:6d8 flags:UNIQUE | MALE | SMART flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:2 spells:WOUND spells:BO_MANA | BO_WATE desc:This sad creature - once a mighty warrior - betrayed his former friends to desc: Morgoth's army in return for, he thought, safety for himself and his wife. desc: And so he fell under Morgoth's power and became little more than a desc: mindless servant of evil, even though the other side of his "bargain" was desc: not kept. name:ranger chieftain base:person color:W speed:120 hit-points:880 hearing:20 armor-class:72 sleepiness:10 depth:41 rarity:2 weight:180 experience:1600 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:MALE | INVISIBLE flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM flags:IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:DROP_CORPSE | DROP_SKELETON spell-freq:3 innate-freq:17 spells:ARROW | BLINK | HASTE | HEAL spells:BA_COLD spells:S_ANIMAL drop-base:nature book:8:1:1 friends:30:1d1:master thief friends:30:1d1:sorcerer friends:30:1d1:patriarch friends:30:1d1:knight Templar friends:30:1d1:berserker desc:A chieftain among the Rangers. His understanding of nature gives him desc: powerful elemental spells to use against you, in addition to his skills as desc: an archer and a warrior. Furthermore, he is a master of camouflage, so you desc: will need magically enhanced seeing to spot him. name:ancient silver dragon base:ancient dragon color:z speed:120 hit-points:1164 hearing:20 armor-class:120 sleepiness:80 depth:41 rarity:2 weight:17000 experience:6000 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d9 flags:DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | NO_SLOW spell-freq:6 spell-power:41 innate-freq:40 spells:BLIND | CONF | SCARE spells:BR_COLD | BR_INER desc:A huge draconic form wreathed in a radiance of silver. Its roar stuns and desc: deafens you. name:Kavlax the Many-Headed base:dragon color:D speed:120 hit-points:1300 hearing:20 armor-class:102 sleepiness:30 depth:41 rarity:3 weight:0 experience:3000 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 flags:UNIQUE | MALE | POWERFUL flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_NEXUS | NO_CONF | NO_CUT flags:NO_SLEEP | NO_STUN | NO_HOLD spell-freq:4 innate-freq:100 spells:BR_ACID | BR_COLD | BR_CHAO | BR_ELEC | BR_FIRE | BR_GRAV spells:BR_NEXU | BR_SHAR | BR_SOUN desc:A large dragon with a selection of heads, all shouting and arguing as they desc: look for prey, but each with its own deadly breath weapon. ### Dungeon level 42 ### name:hellhound base:canine color:r speed:120 hit-points:352 light:2 hearing:25 smell:50 armor-class:120 sleepiness:10 depth:42 rarity:2 weight:60 experience:600 blow:BITE:FIRE:3d12 blow:BITE:FIRE:3d12 blow:BITE:FIRE:3d12 flags:EVIL flags:RAND_25 | BASH_DOOR | MOVE_BODY flags:IM_FIRE | GROUP_AI flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_FIRE friends:100:2d5:Same desc:It is a giant wolf that glows with heat. Flames pour from its nostrils. name:The Queen Ant base:ant color:v speed:120 hit-points:1500 hearing:30 smell:20 armor-class:120 sleepiness:10 depth:42 rarity:2 weight:0 experience:2000 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 blow:BITE:HURT:2d8 blow:BITE:HURT:2d8 flags:UNIQUE | FEMALE | LEVITATE flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | GROUP_AI flags:NO_CONF | NO_SLEEP flags:FORCE_SLEEP spell-freq:2 spells:S_KIN friends:100:2d6:soldier ant:servant friends:60:2d3:giant silver ant:servant friends:60:2d3:giant grey ant:servant friends:60:2d3:giant blue ant:servant friends:60:2d3:giant fire ant:servant friends:100:3d3:giant army ant:bodyguard desc:She's upset because you hurt her children. name:Rogrog the Black Troll base:troll color:D speed:120 hit-points:2000 hearing:20 smell:20 armor-class:105 sleepiness:30 depth:42 rarity:3 weight:0 experience:5000 blow:HIT:HURT:6d7 blow:HIT:HURT:6d7 blow:BITE:HURT:4d10 blow:SPIT:ACID:4d8 flags:UNIQUE | MALE | REGENERATE flags:DROP_3 | DROP_GOOD | ONLY_ITEM flags:MOVE_BODY | TAKE_ITEM flags:IM_COLD spell-freq:7 innate-freq:100 spells:BOULDER friends:30:2d3:troll scavenger:servant friends:30:1d3:half-troll:servant friends:60:2d3:cave troll:servant friends:30:1d1:eldrak:servant friends:30:2d4:water troll:servant friends:40:2d3:hill troll:servant friends:30:1d2:mountain troll:servant friends:40:2d3:olog:servant desc:A massive and cruel troll of great power, drool slides caustically down his desc: muscular frame. Despite his bulk, he strikes with stunning speed. name:iron lich plural:iron liches base:lich color:s speed:120 hit-points:1936 hearing:30 armor-class:120 sleepiness:10 depth:42 rarity:4 weight:0 experience:6000 blow:BUTT:COLD:3d6 blow:BUTT:FIRE:3d6 blow:BUTT:ELEC:3d6 flags:POWERFUL | PWMANG_BASE | LEVITATE flags:ONLY_ITEM | DROP_40 flags:IM_FIRE | IM_ELEC spell-freq:2 spells:WOUND | DRAIN_MANA | BRAIN_SMASH spells:BA_COLD | BA_ELEC | BA_FIRE | BA_WATE spells:BO_ICE spells:S_UNDEAD friends-base:80:1d3:zombie friends-base:80:1d3:skeleton desc:It is a huge, twisted grey skull floating through the air. Its cold eyes desc: burn with hatred towards all who live. name:great ethereal drake base:ancient dragon color:T speed:120 hit-points:1266 hearing:20 armor-class:120 sleepiness:80 depth:42 rarity:2 weight:0 experience:7000 blow:CLAW:HURT:4d9 blow:CLAW:HURT:4d9 blow:BITE:HURT:7d9 flags:INVISIBLE flags:OPEN_DOOR | BASH_DOOR | PASS_WALL flags:IM_NETHER spell-freq:6 spell-power:42 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_NETH desc:It is a dragon-like form wrapped in darkness. You cannot make out its true desc: form but you sense its evil. name:great crystal drake base:ancient dragon color:u speed:120 hit-points:1266 light:2 hearing:20 armor-class:120 sleepiness:80 depth:42 rarity:2 weight:17000 experience:7000 blow:CLAW:HURT:4d9 blow:CLAW:HURT:4d9 blow:BITE:HURT:7d9 flags:DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR | NO_CUT spell-freq:6 spell-power:42 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_SHAR desc:A huge crystalline dragon. Its claws could cut you to shreds and its teeth desc: are razor sharp. Strange colours ripple through it as it moves in the desc: light. name:great shadow drake base:ancient dragon color:o speed:120 hit-points:1266 light:-2 hearing:20 armor-class:120 sleepiness:80 depth:42 rarity:2 weight:17000 experience:7000 blow:CLAW:HURT:4d9 blow:CLAW:HURT:4d9 blow:BITE:HURT:7d9 flags:DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR spell-freq:6 spell-power:42 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_DARK | BR_LIGHT desc:A huge dragon emanating from the shadow plane, this terrible dragon is a desc: master of light and dark. Its form disappears from sight as it cloaks desc: itself in unearthly shadows. name:ancient water dragon base:ancient dragon color:Z speed:120 hit-points:1266 hearing:20 armor-class:120 sleepiness:80 depth:42 rarity:2 weight:17000 experience:7000 blow:CLAW:HURT:4d9 blow:CLAW:HURT:4d9 blow:BITE:HURT:7d9 flags:OPEN_DOOR | BASH_DOOR flags:IM_WATER flags:DROP_CORPSE spell-freq:6 spell-power:42 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_WATE desc:A huge draconic form. Water drips from its scales. name:10-headed hydra base:hydra color:I speed:120 hit-points:800 light:2 hearing:20 armor-class:117 sleepiness:20 depth:42 rarity:2 weight:825 experience:4500 blow:BITE:POISON:5d6 blow:BITE:FIRE:5d6 blow:BITE:ACID:5d6 blow:BITE:BLIND:6d6 flags:DROP_4 flags:MOVE_BODY flags:IM_POIS | IM_FIRE | IM_ACID flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:4 innate-freq:75 spells:SCARE spells:BR_POIS | BR_FIRE | BR_ACID desc:A 9-headed hydra which seems to have an extra head, if you could just see desc: it properly. ### Dungeon level 43 ### name:mermaid base:aquatic color:U speed:120 hit-points:750 hearing:8 armor-class:80 sleepiness:80 depth:43 rarity:3 weight:0 experience:1500 blow:CRUSH:HURT:8d8 blow:CRUSH:HURT:8d8 blow:CRUSH:HURT:8d8 flags:FEMALE | SMART flags:WILD_SHORE | WILD_OCEAN flags:IM_ACID | IM_COLD | MOVE_BODY | COLD_BLOOD spell-freq:8 innate-freq:100 spells:HOLD | CONF | FORGET | BO_WATE desc:She sign a beautiful song which drift your mind away.. #v was name:Maia of Nienna name:Fey base:ainu color:W speed:120 hit-points:1250 light:2 hearing:30 armor-class:81 sleepiness:255 depth:43 rarity:4 weight:0 experience:1900 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 flags:FEMALE | INVISIBLE flags:DROP_2 flags:IM_LIGHT spell-freq:3 spells:BLIND | HASTE | HEAL | SCARE spells:BO_MANA spells:SHAPECHANGE shape:air elemental shape:nexus vortex desc:Tiny and beautiful fey with glowing wings. #v was name:Maia of Mandos / jinn name:Boggart base:ainu color:s speed:120 hit-points:1250 hearing:30 armor-class:81 sleepiness:255 depth:43 rarity:4 weight:0 experience:1900 blow:HIT:HURT:4d5 blow:HIT:HURT:4d5 blow:HIT:HURT:4d5 blow:HIT:HURT:4d5 flags:MALE | INVISIBLE flags:DROP_2 spell-freq:3 spells:BLIND | HASTE | HOLD | CONF spells:SHAPECHANGE shape:will o' the wisp shape:time vortex desc:His appearence makes you jump! name:Vargo, Tyrant of Fire base:elemental color:R speed:120 hit-points:2400 light:2 hearing:12 armor-class:75 sleepiness:30 depth:43 rarity:3 weight:0 experience:4000 blow:HIT:FIRE:4d6 blow:HIT:FIRE:4d6 blow:HIT:FIRE:4d6 blow:HIT:FIRE:4d6 flags:UNIQUE | POWERFUL flags:RAND_25 | BASH_DOOR | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_ELEC | IM_FIRE | HURT_COLD flags:FORCE_SLEEP drop-base:chest:10:1:1 spell-freq:4 spells:BA_FIRE spells:BO_PLAS desc:A towering fire elemental, Vargo burns everything beyond recognition. name:Waldern, King of Water base:elemental color:V speed:120 hit-points:2500 hearing:12 armor-class:120 sleepiness:30 depth:43 rarity:3 weight:0 experience:4250 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:UNIQUE | COLD_BLOOD | POWERFUL flags:RAND_25 | BASH_DOOR | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_COLD | IM_FIRE | IM_WATER flags:FORCE_SLEEP drop-base:chest:10:1:1 spell-freq:4 spells:BA_COLD | BA_WATE spells:BO_ICE | BO_WATE desc:A towering water elemental, Waldern is master of all things liquid. Wave desc: after wave drowns your frail body. name:Adunaphel the Quiet base:wraith color:p speed:120 hit-points:2100 hearing:90 smell:50 armor-class:72 sleepiness:10 depth:43 rarity:3 weight:0 experience:13000 blow:HIT:HURT:6d6 blow:HIT:BLACK_BREATH:6d6 blow:TOUCH:EXP_80:5d6 blow:TOUCH:EXP_80:5d6 flags:UNIQUE | FEMALE | INVISIBLE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:PASS_WALL | MOVE_BODY flags:FORCE_SLEEP flags:RES_LIGHT spell-freq:3 spell-power:43 spells:BLIND | WOUND | FORGET | HOLD | SCARE spells:BO_ACID | BO_COLD | BO_FIRE | BO_NETH spells:S_MONSTER drop:ring:Black Ring of Power:100:1:1 desc:A sorceress in life, Adunaphel quickly fell under Sauron's sway and the desc: power of the rings. name:glabrezu plural:glabrezu base:major demon color:U speed:110 hit-points:616 hearing:20 armor-class:60 sleepiness:70 depth:43 rarity:2 weight:0 experience:3000 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 flags:DROP_60 flags:IM_FIRE spell-freq:9 spells:BO_FIRE spells:S_DEMON desc:It is demon with arms and pincers, its form a true mockery of life. name:Quaker, Master of Earth base:elemental color:U speed:110 hit-points:2800 hearing:10 armor-class:145 sleepiness:50 depth:43 rarity:3 weight:0 experience:4500 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:SHATTER:10d10 flags:UNIQUE | MALE | COLD_BLOOD | POWERFUL flags:PASS_WALL | KILL_BODY | KILL_ITEM flags:HURT_ROCK | IM_COLD | IM_ELEC | IM_FIRE flags:FORCE_SLEEP drop-base:chest:10:1:1 spell-freq:6 spells:BA_ACID | BA_SHAR spells:BO_ACID desc:A towering stone elemental stands before you. The walls and ceiling are desc: reduced to rubble as Quaker advances. name:Ariel, Queen of Air base:elemental color:Z speed:130 hit-points:2700 hearing:12 armor-class:75 sleepiness:30 depth:43 rarity:3 weight:0 experience:4750 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:CONFUSE:4d4 blow:HIT:CONFUSE:4d4 flags:UNIQUE | FEMALE | COLD_BLOOD | POWERFUL | LEVITATE flags:RAND_25 | BASH_DOOR | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_COLD | IM_ELEC flags:FORCE_SLEEP drop-base:chest:10:1:1 spell-freq:5 spells:BA_COLD | BA_ELEC spells:BO_ELEC desc:A towering air elemental, Ariel, the sorceress, avoids your blows with her desc: extreme speed. name:multi-hued hound base:zephyr hound color:v speed:110 hit-points:220 hearing:25 smell:50 armor-class:48 sleepiness:0 depth:43 rarity:6 weight:60 experience:600 blow:CLAW:HURT:2d8 blow:CLAW:HURT:2d8 blow:BITE:HURT:4d4 blow:BITE:HURT:4d4 flags:BASH_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_CONF flags:NO_SLEEP flags:ATTR_MULTI | FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_ACID | BR_COLD | BR_ELEC | BR_FIRE | BR_POIS friends:100:2d7:Same desc:Shimmering in rainbow hues, this hound is beautiful and deadly. name:water hound base:zephyr hound color:Z speed:110 hit-points:248 hearing:30 smell:50 armor-class:48 sleepiness:0 depth:43 rarity:4 weight:60 experience:1000 blow:BITE:CONFUSE:2d10 blow:BITE:HURT:2d10 blow:CLAW:HURT:2d10 blow:CLAW:HURT:2d10 flags:PWMANG_BASE flags:DROP_CORPSE | DROP_SKELETON flags:BASH_DOOR flags:IM_COLD | IM_WATER flags:FORCE_SLEEP spell-freq:5 innate-freq:100 spells:BR_WATE friends:100:2d7:Same desc:The sound of a hundred waterfalls rushes through your ears as a huge wave desc: of water, vaguely hound-shaped, rushes towards you. name:great chaos drake base:ancient dragon color:v speed:120 hit-points:1374 hearing:20 armor-class:120 sleepiness:80 depth:43 rarity:2 weight:17000 experience:8000 blow:CLAW:HURT:4d9 blow:CLAW:HURT:4d9 blow:BITE:HURT:7d10 flags:DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | IM_DISEN flags:ATTR_MULTI spell-freq:6 spell-power:43 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_CHAO | BR_DISE desc:A huge draconic form. Its scales are shimmering many colours. name:great law drake base:ancient dragon color:B speed:120 hit-points:1374 hearing:20 armor-class:120 sleepiness:80 depth:43 rarity:2 weight:17000 experience:8000 blow:CLAW:HURT:4d9 blow:CLAW:HURT:4d9 blow:BITE:HURT:7d10 flags:DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | NO_STUN | NO_CUT spell-freq:6 spell-power:43 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_SHAR | BR_SOUN desc:A huge draconic form. Its scales are shimmering blue. ### Dungeon level 44 ### name:unicorn base:quadruped color:v speed:125 hit-points:1777 hearing:20 smell:20 armor-class:120 sleepiness:200 depth:44 rarity:8 weight:0 experience:666 blow:KICK:HURT:4d4 blow:BITE:HURT:4d4 blow:TOUCH:LOSE_ALL:4d4 blow:TOUCH:DRAIN_CHARGES flags:SMART flags:REGENERATE | ANIMAL flags:NO_CONF | NO_SLEEP | NO_FEAR | IM_FIRE | IM_COLD flags:IM_ACID | IM_ELEC | IM_POIS | RES_LIGHT spell-freq:4 spell-power:44 spells:DRAIN_MANA | HEAL | WOUND | TELE_AWAY desc:Innocent holy beast in blinding white color with silky flowing manes, desc: sapphire blue eyes and horn which sparks with magic, walking with desc: dignified grace. Their neighing is like bells on the wind, sparkling like desc: a warm stream. name:ancient multi-hued dragon base:ancient dragon color:v speed:120 hit-points:1476 hearing:20 armor-class:120 sleepiness:80 depth:44 rarity:2 weight:17000 experience:9000 blow:CLAW:HURT:4d10 blow:CLAW:HURT:4d10 blow:BITE:HURT:7d10 flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:ATTR_MULTI flags:DROP_CORPSE spell-freq:6 spell-power:44 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_ACID | BR_COLD | BR_ELEC | BR_FIRE | BR_POIS desc:A huge draconic form. Many colours ripple down its massive frame. Few live desc: to see another. name:knight Templar plural:knights Templar base:person color:w speed:120 hit-points:1056 hearing:20 armor-class:72 sleepiness:10 depth:44 rarity:2 weight:180 experience:2000 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:MALE | SMART flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM flags:NO_FEAR | NO_CONF | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON | IM_NEXUS | IM_DISEN | IM_NETHER | NO_STUN flags:IM_LIGHT spell-freq:4 spell-power:44 spells:BLIND | WOUND | MISSILE | HASTE | HEAL | SCARE drop-base:prayer book:10:1:1 friends:30:1d1:master thief friends:30:1d1:ranger chieftain friends:30:1d1:patriarch friends:30:1d1:sorcerer friends:30:1d1:berserker desc:It seems that the more devout the person, the more likely they are to cross desc: the boundary between piety and sanctimoniousness. And such is the case desc: with the Order of the Knights Templar; they are among the most pious and desc: powerful of the religious knightly orders, but noted for their desc: intolerance. Thus it is Morgoth's will that is unwittingly done, as the desc: forces of good are set against each other. name:11-headed hydra base:hydra color:R speed:120 hit-points:950 light:2 hearing:20 armor-class:120 sleepiness:20 depth:44 rarity:2 weight:850 experience:6000 blow:BITE:POISON:6d6 blow:BITE:FIRE:6d6 blow:BITE:ACID:6d6 blow:BITE:BLIND:6d6 flags:DROP_4 flags:MOVE_BODY flags:IM_POIS | IM_FIRE | IM_ACID flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:4 innate-freq:60 spells:SCARE | BLIND spells:BR_POIS | BR_FIRE | BR_ACID desc:A 10-headed hydra with one extra head, setting off blinding flashes. #old name:drolem name:fire golem base:golem color:g speed:120 hit-points:3000 light:2 hearing:25 armor-class:195 sleepiness:80 depth:44 rarity:3 weight:0 experience:12000 blow:CLAW:HURT:3d10 blow:CLAW:HURT:3d10 blow:BITE:FIRE:6d10 blow:BITE:FIRE:6d10 flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | IM_POIS | RES_LIGHT flags:NO_STUN flags:FORCE_SLEEP spell-freq:5 spell-power:44 innate-freq:20 spells:BR_FIRE | BA_FIRE | BO_FIRE | BO_PLAS | BR_PLAS desc:Golem consisted entirely from living flame... summoned by desc:accelerating particles of the air at an ever increasing pace desc: till the will ignite and the Golem crackles to the world of living to BURN.. #v name:dread base:ghost color:o speed:120 hit-points:263 hearing:20 armor-class:36 sleepiness:10 depth:44 rarity:2 weight:0 experience:600 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:LOSE_STR:3d4 flags:DROP_2 | ONLY_ITEM flags:RAND_25 | TAKE_ITEM flags:FORCE_SLEEP spell-freq:15 spells:BLIND | CONF | DRAIN_MANA | HOLD spells:BO_NETH friends:100:2d5:Same desc:It is a form that screams its presence against the eye. Death incarnate, desc: its hideous black body seems to struggle against reality as the universe desc: itself struggles to banish it. #was dreadmaster name:prizrak base:ghost color:y speed:125 hit-points:1056 hearing:20 armor-class:120 sleepiness:10 depth:44 rarity:9 weight:0 experience:12000 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:LOSE_STR:3d4 blow:HIT:LOSE_STR:3d4 flags:SMART flags:DROP_4 | ONLY_ITEM flags:RAND_25 | TAKE_ITEM flags:FORCE_SLEEP spell-freq:9 spell-power:44 spells:BLIND | WOUND | CONF | DRAIN_MANA | HOLD | TELE_LEVEL spells:BO_NETH spells:S_UNDEAD desc:Strange ghost which looms afar... name:greater wall monster base:mineral color:w speed:120 hit-points:308 hearing:20 armor-class:96 sleepiness:20 depth:44 rarity:4 weight:0 experience:900 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 flags:NONLIVING | PWMANG_BASE flags:PASS_WALL | RAND_50 flags:IM_FIRE | IM_ELEC | HURT_ROCK flags:FORCE_SLEEP desc:A sentient, moving section of wall. name:great balance drake base:ancient dragon color:P speed:120 hit-points:1476 hearing:20 armor-class:120 sleepiness:80 depth:44 rarity:2 weight:17000 experience:9000 blow:CLAW:HURT:4d10 blow:CLAW:HURT:4d10 blow:BITE:HURT:7d10 flags:DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | IM_FIRE | IM_DISEN | NO_STUN | NO_CUT spell-freq:6 spell-power:44 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_CHAO | BR_DISE | BR_SHAR | BR_SOUN desc:A huge draconic form. Its scales are shimmering purple. ### Dungeon level 45 ### name:The Stormbringer base:hybrid glyph:| color:v light:1 speed:120 # was hit-points:1500 before KO nerf hit-points:2500 hearing:0 #armor-class:99 armor-class:150 sleepiness:20 depth:45 rarity:3 weight:0 experience:13000 blow:WAIL:TERRIFY # prevent insta KO #blow:HIT:EXP_80:64d1 #blow:HIT:EXP_80:64d1 #blow:HIT:EXP_80:8d8 blow:HIT:EXP_80:32d1 blow:HIT:EXP_80:32d1 flags:UNIQUE | EVIL | NONLIVING | LEVITATE flags:COLD_BLOOD | EMPTY_MIND | UNAWARE flags:BASH_DOOR flags:ATTR_MULTI flags:FORCE_SLEEP flags:NO_FEAR | NO_CONF | NO_SLEEP | NO_STUN | NO_CUT flags:IM_POIS | IM_COLD | IM_FIRE | IM_DISEN | RES_LIGHT flags:IM_NETHER desc:A deadly blade of chaos lurking for prey. Beware! drop:sword:'Stormbringer':100:1:1 mimic:sword:Blade of Chaos name:Mutant's leader base:person color:t speed:120 hit-points:1240 light:2 hearing:20 armor-class:110 sleepiness:50 depth:45 rarity:8 weight:0 experience:1200 blow:BITE:HURT:5d5 blow:TOUCH:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:EVIL flags:MOVE_BODY | OPEN_DOOR | LEVITATE flags:IM_FIRE | IM_PLASMA | IM_NETHER | NO_CONF | NO_SLEEP | NO_FEAR | IM_COLD flags:IM_POIS | NO_STUN | NO_HOLD desc:He is working undercover in the Resistance, to protect mutant's desc:right for living. You uncovered his identity. He doesn't have desc:choice but to kill you! #v name:killer white beetle base:killer beetle color:w speed:120 hit-points:800 hearing:14 armor-class:106 sleepiness:30 depth:45 rarity:2 weight:50 experience:850 blow:BITE:COLD:8d5 blow:BITE:HURT:8d5 blow:SPIT:COLD:8d5 flags:IM_COLD flags:DROP_CORPSE | WILD_ALL spell-freq:4 innate-freq:100 spells:SPIT desc:A giant beetle with a gleaming white carapace. The air condenses around desc: its mandibles as it scuttles toward you. name:Seraph #base:angel base:ainu color:b speed:120 hit-points:1800 light:2 hearing:30 armor-class:68 sleepiness:255 depth:45 rarity:6 weight:0 experience:3000 blow:HIT:HURT:4d6 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:4d6 flags:SMART flags:DROP_2 flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | NO_FEAR | SMART flags:NO_STUN | NO_CONF | LEVITATE | IM_LIGHT spell-freq:9 spell-power:45 spells:CONF | HASTE | HEAL | TELE_AWAY spells:BO_MANA | BO_PLAS #spells:S_ANGEL spells:S_AINU spells:S_MONSTERS desc:It is an angel, fast and strong. You are stunned by its extreme holiness desc:and try to resist all desires to obey it. #old V, now removed name:Wizard base:ainu color:b speed:120 hit-points:1320 light:2 hearing:30 armor-class:68 sleepiness:255 depth:45 rarity:8 weight:0 experience:5000 blow:HIT:HURT:4d6 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:4d6 flags:SMART flags:DROP_2 flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | NO_FEAR | SMART flags:NO_STUN spell-freq:6 spell-power:45 spells:CONF | HASTE | HEAL | TELE_AWAY spells:BO_MANA | BO_PLAS spells:S_AINU | S_MONSTERS desc:Members of a society of wizards founded by Alatar and Pallandro, desc: the wizards command powerful magics and make formidable opponents. name:rotting quylthulg base:quylthulg color:u speed:120 hit-points:420 hearing:20 armor-class:1 sleepiness:0 depth:45 rarity:1 weight:0 experience:3000 spell-freq:2 spells:BLINK | TPORT spells:S_UNDEAD desc:It is a pulsing flesh mound that reeks of death and putrefaction. name:Akhorahil the Blind base:wraith color:p speed:120 hit-points:2400 hearing:90 smell:50 armor-class:84 sleepiness:10 depth:45 rarity:3 weight:0 experience:15000 blow:HIT:HURT:7d6 blow:HIT:BLACK_BREATH:7d6 blow:GAZE:EXP_80:6d6 blow:WAIL:TERRIFY:6d6 flags:UNIQUE | MALE | LEVITATE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:FORCE_SLEEP flags:RES_LIGHT spell-freq:3 spell-power:45 spells:BLIND | WOUND | DARKNESS | HOLD | SCARE spells:BO_COLD | BO_FIRE | BO_NETH spells:S_MONSTERS drop:ring:Black Ring of Power:100:1:1 desc:A mighty sorcerer King, Akhorahil was blind in life. With powerful desc: enchantments, he created jewelled eyes that enabled him to see better than desc: any ordinary man ever could. name:nalfeshnee base:major demon color:r speed:110 hit-points:792 light:2 hearing:20 armor-class:60 sleepiness:80 depth:45 rarity:2 weight:0 experience:5000 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 flags:POWERFUL flags:DROP_1 flags:IM_FIRE spell-freq:9 innate-freq:25 spells:BLIND | CONF spells:BR_FIRE spells:S_DEMON desc:It is a large demon with the head of a giant boar. Flames run up and down desc: its length. name:undead beholder base:eye color:u speed:120 hit-points:2376 hearing:30 armor-class:120 sleepiness:10 depth:45 rarity:3 weight:0 experience:8000 blow:GAZE:EXP_40:3d6 blow:GAZE:DRAIN_CHARGES:3d6 blow:GAZE:FORGET:3d6 blow:BITE:EXP_40:7d6 flags:UNDEAD | EVIL | COLD_BLOOD | SPIRIT flags:BASH_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_CONF flags:NO_SLEEP | NO_STUN flags:FORCE_SLEEP spell-freq:2 spells:BRAIN_SMASH | WOUND | CONF | DRAIN_MANA | FORGET | MIND_BLAST spells:SLOW spells:BA_COLD | BA_FIRE spells:BO_ACID | BO_MANA | BO_NETH spells:ANIM_DEAD spells:S_UNDEAD desc:A beholder which has cheated death. Black nether storms rage around the desc: bloodshot pupil of its central giant eye, and light seems to bend as it desc: sucks its power from the very air around it. Your soul chills as it drains desc: your vitality for its evil enchantments. name:demonic quylthulg base:quylthulg color:r speed:120 hit-points:420 hearing:20 armor-class:1 sleepiness:0 depth:45 rarity:1 weight:0 experience:3000 spell-freq:2 spells:BLINK | TPORT spells:S_DEMON desc:A pile of pulsing flesh that glows with an inner hellish fire. The world desc: itself seems to cry out against it. name:draconic quylthulg base:quylthulg color:g speed:120 hit-points:420 hearing:20 armor-class:1 sleepiness:0 depth:45 rarity:1 weight:0 experience:3000 spell-freq:2 spells:BLINK | TPORT spells:S_DRAGON desc:It looks like it was once a dragon corpse, now deeply infected with magical desc: bacteria that make it pulse in a foul and degrading way. #BUFF name:greater basilisk base:reptile color:D speed:120 hit-points:1010 hearing:25 smell:20 armor-class:120 sleepiness:15 depth:45 rarity:2 weight:300 experience:10000 blow:GAZE:PARALYZE:3d12 blow:GAZE:PARALYZE:3d12 blow:BITE:POISON:2d12 blow:BITE:POISON:2d12 flags:EVIL | POWERFUL | ATTR_FLICKER flags:DROP_1 | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_POIS | IM_NEXUS | NO_CONF | NO_SLEEP | NO_HOLD flags:DROP_CORPSE spell-freq:8 innate-freq:100 spells:BR_DARK | BR_NEXU | BR_POIS desc:A large basilisk, whose shape resembles that of a great wyrm. name:berserker base:person color:u speed:120 hit-points:1320 light:2 hearing:20 armor-class:96 sleepiness:10 depth:45 rarity:2 weight:230 experience:2500 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 flags:MALE flags:DROP_2 | ONLY_ITEM flags:KILL_BODY flags:NO_FEAR | NO_CONF | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON | NO_STUN spell-freq:4 spells:HASTE | SCARE friends:30:1d1:master thief friends:30:1d1:ranger chieftain friends:30:1d1:patriarch friends:30:1d1:knight Templar friends:30:1d1:sorcerer desc:Even the strongest of normal human warriors fears the Berserker - the one desc: who can drive himself into such a terrible battle-frenzy that he can desc: survive blows which should kill him, and still apparently feel no pain. He desc: tramples weaker creatures underfoot in his eagerness to get to his real desc: enemy, and his battle-cry strikes terror into his foes. name:cyclops plural:cyclopes base:giant color:u speed:120 hit-points:1050 hearing:20 armor-class:144 sleepiness:20 depth:45 rarity:2 weight:350 experience:1500 blow:HIT:HURT:9d9 blow:HIT:HURT:9d9 flags:DROP_1 flags:OPEN_DOOR | MOVE_BODY | TAKE_ITEM flags:IM_ACID | IM_COLD | IM_FIRE flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_MOUNTAIN flags:SWIM_BAD spell-freq:8 innate-freq:100 spells:BOULDER desc:A gigantic ugly humanoid with but one eye and very thick skin. #v name:grey wraith base:wraith color:s speed:120 hit-points:650 hearing:20 armor-class:60 sleepiness:10 depth:45 rarity:1 weight:0 experience:1700 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 blow:TOUCH:EXP_40 flags:DROP_40 | DROP_60 flags:OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP spell-freq:7 spells:WOUND | DARKNESS | HOLD | SCARE spells:BO_COLD desc:A tangible but ghostly form, made of grey fog. The air around it feels desc: deathly cold. name:The Watcher in the Water base:aquatic color:v speed:120 hit-points:3500 hearing:30 armor-class:100 sleepiness:80 depth:45 rarity:3 weight:0 experience:17000 blow:CRUSH:ACID:8d8 blow:CRUSH:POISON:8d8 blow:CRUSH:PARALYZE:8d8 flags:UNIQUE | EVIL | COLD_BLOOD | PWMANG_BASE | PWMANG_FIXED flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:IM_ACID | IM_COLD | IM_POIS flags:NO_CONF | NO_FEAR flags:FORCE_DEPTH | FORCE_SLEEP drop:food:Large Trout:100:3:5 spell-freq:3 spells:BO_WATE | BO_ICE spells:HOLD | TELE_TO desc:A vile creature which seems to consist mostly of tentacles, it seeks to desc: drag people to their doom in the water. Few have ever escaped its grasp. locations:The Small Watery Cave name:lesser black reaver base:lich color:D speed:120 hit-points:2200 hearing:20 armor-class:144 sleepiness:50 depth:45 rarity:3 weight:0 experience:7000 blow:HIT:DISENCHANT:4d8 blow:HIT:DISENCHANT:4d8 blow:HIT:LOSE_STR:4d6 blow:HIT:LOSE_STR:4d6 flags:PWMANG_BASE flags:ONLY_ITEM | DROP_2 flags:KILL_WALL flags:NO_FEAR spell-freq:3 spells:BLIND | WOUND | CONF | DRAIN_MANA | HOLD | MIND_BLAST | TELE_TO spells:BA_NETH | BRAIN_SMASH spells:ANIM_DEAD desc:A humanoid form, black as night, advancing steadily and unstoppably. name:Golgarach, the Living Rock base:mineral color:v speed:120 hit-points:4500 hearing:20 armor-class:120 sleepiness:40 depth:45 rarity:2 weight:0 experience:22500 blow:HIT:HURT:5d6 blow:HIT:HURT:5d6 blow:HIT:HURT:5d6 flags:UNIQUE | NONLIVING | PWMANG_BASE | PWMANG_FIXED flags:DROP_1 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:PASS_WALL | KILL_BODY flags:FORCE_DEPTH | FORCE_SLEEP flags:IM_ELEC | RES_LIGHT | HURT_ROCK drop:food:Slime Mold:100:2:3 spell-freq:7 spells:BA_FIRE spells:BO_ACID spells:S_KIN friends-base:100:1d5:mineral friends-base:75:1d5:mineral friends-base:50:1d5:mineral desc:Deep in the heart of the earth, even the rock itself is sentient and has desc: learned to despise intruders. locations:The Heart of the Earth name:master unbeliever base:person color:m speed:120 hit-points:968 light:2 hearing:30 armor-class:90 sleepiness:5 depth:45 rarity:3 weight:160 experience:3800 blow:HIT:HURT:10d2 blow:KICK:HURT:10d2 blow:HIT:POISON:20d1 blow:HIT:PARALYZE:15d1 flags:INVISIBLE | MALE | ANTI_MAGIC | PWMANG_BASE flags:ONLY_ITEM | DROP_2 | DROP_CORPSE | DROP_SKELETON flags:OPEN_DOOR flags:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP flags:FORCE_SLEEP friends:30:1d1:berserker friends:30:1d1:master thief desc:A scarred warrior who moves with strange confidence... fast. name:ancient power dragon base:ancient dragon color:I speed:120 hit-points:1584 light:2 hearing:20 armor-class:120 sleepiness:80 depth:45 rarity:2 weight:17000 experience:10000 blow:CLAW:HURT:4d10 blow:CLAW:HURT:4d10 blow:BITE:HURT:7d11 flags:DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR | NO_CUT flags:NO_STUN | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW spell-freq:6 spell-power:45 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_ACID | BR_ELEC | BR_FIRE | BR_COLD | BR_POIS | BR_NETH | BR_LIGHT spells:BR_SOUN | BR_CHAO | BR_DISE | BR_NEXU | BR_TIME | BR_INER | BR_GRAV spells:BR_SHAR | BR_PLAS | BR_WALL | BR_MANA | BR_WATE | BR_DARK desc:A huge draconic form. Its scales are shimmering red. name:blue Thunderlord base:bird color:b speed:120 hit-points:1830 light:2 hearing:20 armor-class:100 sleepiness:50 depth:45 rarity:4 weight:3000 experience:8000 blow:HIT:HURT:8d7 blow:HIT:HURT:8d7 flags:MALE | SMART | DROP_SKELETON | DROP_CORPSE | PWMANG_BASE | SPIRIT flags:ONLY_ITEM | DROP_1 | DROP_GOOD flags:IM_FIRE | REGENERATE | OPEN_DOOR | BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD | ATTR_FLICKER spell-freq:4 innate-freq:33 spells:BR_FIRE | TPORT | BLINK desc:A Thunderlord. Among the weaker breeds, but still dangerous. ### Dungeon level 46 ### #v was name:lord of Carn Dum name:Shadow priest base:person color:i speed:120 hit-points:557 hearing:20 armor-class:90 sleepiness:20 depth:46 rarity:2 weight:180 experience:2100 blow:HIT:HURT:5d4 blow:HIT:HURT:5d4 blow:HIT:HURT:3d5 flags:MALE | EVIL | SMART flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE spell-freq:2 spells:BLIND | WOUND | HEAL | HOLD spells:S_MONSTER | S_UNDEAD drop-base:shadow book:10:1:1 friends:30:1d1:master thief friends:30:1d1:ranger chieftain friends:30:1d1:sorcerer friends:30:1d1:berserker desc:An evil priest, dressed all in black. Deadly spells hit you at an alarming desc: rate as his black spiked mace rains down blow after blow on your pitiful desc: frame. #v name:vampire lord base:vampire color:b speed:120 hit-points:1400 hearing:20 smell:20 armor-class:84 sleepiness:10 depth:46 rarity:1 weight:0 experience:1800 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:BITE:EXP_80:4d6 blow:BITE:EXP_80:4d6 flags:DROP_4 spell-freq:7 spells:BLIND | BRAIN_SMASH | WOUND | DARKNESS | DRAIN_MANA spells:BO_NETH spells:HOLD | SCARE friends:40:1d4:vampire:servant desc:A foul wind chills your bones as this ghastly figure approaches. name:grand master thief plural:grand master thieves base:person color:b speed:130 hit-points:758 hearing:50 armor-class:90 sleepiness:5 depth:46 rarity:2 weight:0 experience:2500 blow:HIT:EAT_ITEM:5d5 blow:HIT:EAT_ITEM:5d5 blow:HIT:EAT_GOLD:5d5 blow:HIT:EAT_GOLD:5d5 flags:MALE | EVIL | PWMANG_BASE flags:DROP_2 flags:TAKE_ITEM | OPEN_DOOR spell-freq:4 innate-freq:17 spells:SHOT | BLINK | CONF | TELE_TO | TPORT | TRAPS drop-base:shadow book:10:1:1 desc:A class of its own: you are already too late to protect your possessions - desc: and he seems to have studied magic too, and is a master of setting traps. ### Dungeon level 47 ### name:marilith base:major demon color:y speed:120 hit-points:1232 hearing:20 armor-class:112 sleepiness:60 depth:47 rarity:2 weight:0 experience:7000 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 flags:FEMALE flags:DROP_1 flags:IM_FIRE spell-freq:9 spells:BLIND | WOUND spells:S_DEMON desc:She is a demon of female form with many arms, each bearing deadly weapons. name:death mold base:mold color:D speed:140 hit-points:1050 hearing:200 armor-class:72 sleepiness:0 depth:47 rarity:1 weight:0 experience:1000 blow:SPORE:DISENCHANT:7d7 blow:SPORE:DISENCHANT:7d7 blow:SPORE:DISENCHANT:7d7 blow:SPORE:EXP_80:5d5 flags:EVIL flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE flags:FORCE_SLEEP | ATTR_FLICKER flags-off:HURT_FIRE desc:It is the epitome of all that is evil, in a mold. Its lifeless form draws desc: power from sucking the souls of those that approach it, a nimbus of pure desc: evil surrounds it. Luckily for you, it can't move. name:12-headed hydra base:hydra color:t speed:120 hit-points:1150 light:2 hearing:20 armor-class:130 sleepiness:20 depth:47 rarity:2 weight:900 experience:8000 blow:BITE:FIRE:6d6 blow:BITE:ACID:6d6 blow:BITE:BLIND:6d6 blow:BITE:CONFUSE:7d6 flags:DROP_4 flags:MOVE_BODY flags:IM_POIS | IM_FIRE | IM_ACID | NO_CONF flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:4 innate-freq:60 spells:SCARE | BLIND spells:BR_POIS | BR_FIRE | BR_ACID desc:A 11-headed hydra with one extra head, waving mesmerisingly at you. ### Dungeon level 48 ### name:Ren the Unclean base:wraith color:p speed:120 hit-points:2700 hearing:90 smell:50 armor-class:84 sleepiness:10 depth:48 rarity:3 weight:0 experience:18000 blow:HIT:HURT:7d7 blow:HIT:BLACK_BREATH:7d7 blow:TOUCH:EXP_80:6d7 blow:WAIL:TERRIFY:6d7 flags:UNIQUE | MALE | INVISIBLE | LEVITATE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:IM_FIRE | RES_LIGHT flags:FORCE_SLEEP spell-freq:3 spell-power:48 spells:BLIND | WOUND | HOLD | SCARE spells:BA_FIRE spells:BO_FIRE | BO_NETH spells:S_MONSTER drop:ring:Black Ring of Power:100:1:1 desc:Ren was an insane eastern king who believed himself to be the son of a desc: volcano god. At an early age his sanity was destroyed by a plague that desc: wiped out his family, and he never recovered. #v name:Ancient spider base:spider color:r speed:120 hit-points:1050 hearing:20 armor-class:78 sleepiness:50 depth:48 rarity:5 weight:0 experience:2500 blow:CLAW:POISON:5d8 blow:CLAW:POISON:5d8 blow:BITE:HALLU:5d6 blow:DEVOUR:EAT_LIGHT:5d6 flags:EVIL | ANIMAL | SMART | SPIRIT flags:OPEN_DOOR flags:HURT_LIGHT | IM_POIS flags:FORCE_SLEEP flags:DROP_SKELETON spell-freq:6 innate-freq:13 spells:WOUND | DRAIN_MANA | HEAL | HOLD | SLOW spells:BR_DARK spells:S_KIN | S_SPIDER friends:100:4d4:spider desc:A foul creature of spider form, older even than the pits of Angband. name:elder aranea base:spider color:r speed:125 hit-points:1050 hearing:20 armor-class:78 sleepiness:50 depth:48 #5 rarity:8 weight:0 #2.5 experience:3000 blow:CLAW:POISON:5d8 blow:CLAW:POISON:5d8 blow:BITE:HALLU:5d6 blow:DEVOUR:EAT_LIGHT:5d6 flags:EVIL | ANIMAL | SMART | SPIRIT flags:OPEN_DOOR flags:HURT_LIGHT | IM_FIRE | IM_POIS flags:FORCE_SLEEP flags:DROP_SKELETON spell-freq:6 spell-power:48 spells:WOUND | DRAIN_MANA | HEAL | HOLD | MIND_BLAST | SLOW spells:BA_FIRE spells:BO_FIRE spells:S_KIN | S_SPIDER friends:50:3d3:Mirkwood spider friends:100:4d4:aranea desc:A vast, bloated arachnid, master of its brood: among the more terrible of desc: Ungoliant's descendants, this is a monster such as those who haunted the desc: dread valley of Nan Dungortheb long ago. name:winged horror base:bird color:p speed:120 hit-points:1013 hearing:30 armor-class:96 sleepiness:5 depth:48 rarity:3 weight:0 experience:4000 blow:CLAW:HURT:3d8 blow:CLAW:HURT:3d8 blow:BITE:EXP_40:4d6 blow:BITE:EXP_40:4d6 flags:IM_COLD | IM_POIS | IM_NETHER flags:WILD_WOOD | WILD_SWAMP | WILD_WASTE spell-freq:6 innate-freq:100 spells:BR_DARK | BR_NETH | BR_POIS desc:A terrifying sight: a winged creature greater than any bird you have ever desc: seen, and with no feathers on its horrid black leathery wings. Descended desc: from a creature of an older world perhaps, bred by Sauron to be a winged desc: steed for his Ringwraiths. #v name:gorgon base:naga color:G speed:120 hit-points:1500 hearing:30 armor-class:120 sleepiness:5 depth:48 rarity:2 weight:200 experience:6000 blow:GAZE:EXP_80 blow:GAZE:PARALYZE blow:HIT:HURT:8d6 blow:BITE:POISON:8d6 flags:SMART flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR flags:IM_ACID | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags-off:HURT_COLD spell-freq:4 spells:WOUND | HOLD | SCARE spells:BA_ACID spells:BO_FIRE | BO_PLAS spells:S_HYDRA | S_KIN desc:This creature of legend has not just a serpent's body, but snakes for desc: hair. Her scales rattle as she slithers towards you, eyes blazing, desc: venom dripping from her ghastly mouth. ### Dungeon level 49 ### #v name:storm giant base:giant color:B speed:120 hit-points:1200 light:1 hearing:20 armor-class:110 sleepiness:30 depth:49 rarity:1 weight:1300 experience:1400 blow:HIT:ELEC:10d8 blow:HIT:ELEC:10d8 blow:HIT:HURT:10d8 flags:DROP_1 flags:OPEN_DOOR | TAKE_ITEM flags:IM_COLD | IM_ELEC flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_MOUNTAIN flags:SWIM_BAD spell-freq:8 innate-freq:14 spells:BLINK | CONF | SCARE | TELE_TO spells:BA_ELEC | BO_ELEC | STORM | BOULDER friends:60:1d7:energy hound friends:80:1d3:Same desc:It is a twenty-five foot tall giant wreathed in lightning. name:lesser Balrog base:major demon color:p speed:120 hit-points:1760 light:2 hearing:20 armor-class:75 sleepiness:50 depth:49 rarity:2 weight:0 experience:10000 blow:HIT:FIRE:4d12 blow:HIT:FIRE:4d12 blow:CRUSH:HURT:3d12 blow:TOUCH:DRAIN_CHARGES flags:POWERFUL flags:DROP_2 flags:MOVE_BODY flags:IM_FIRE spell-freq:4 innate-freq:25 spells:BLIND | CONF spells:BR_FIRE spells:S_DEMON desc:It is a massive humanoid demon wreathed in flames. #v name:black wraith base:wraith color:D speed:120 hit-points:840 hearing:20 armor-class:66 sleepiness:10 depth:49 rarity:2 weight:0 experience:2700 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 blow:TOUCH:EXP_40 blow:TOUCH:EXP_40 flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP | LEVITATE spell-freq:7 spells:BLIND | WOUND | HOLD | SCARE spells:BO_NETH desc:A figure that seems made of void, its strangely human shape is cloaked in desc: shadow. It reaches out at you. name:Eol, the Dark Elf base:humanoid color:v speed:130 hit-points:2400 hearing:20 armor-class:150 sleepiness:40 depth:49 rarity:2 weight:0 experience:25000 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 flags:UNIQUE | MALE | EVIL | SMART flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:HURT_LIGHT | IM_COLD | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP #drop:food:Lembas:50:1:1 spell-freq:2 spells:BLIND | BLINK | WOUND | CONF | DARKNESS | HEAL spells:TELE_TO spells:BA_ACID | BA_COLD | BA_ELEC | BA_FIRE | BA_NETH spells:BO_MANA spells:S_DEMON | S_DRAGON | S_MONSTERS | S_UNDEAD desc:A lord of the Teleri, Eol is a mighty metalsmith, the only one to ever desc: forge weapons of meteorite iron. The mortal enemy of the Eldar, he is desc: currently fleeing their wrath, following the murder of Princess Aredhel of desc: Gondolin. #v name:fallen Maia plural:fallen Maiar base:ainu color:m speed:120 hit-points:1300 light:1 hearing:30 armor-class:108 sleepiness:50 depth:49 rarity:9 weight:0 experience:4000 blow:GAZE:EXP_40:4d4 blow:GAZE:EXP_40:4d4 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 flags:PWMANG_BASE | EVIL flags:DROP_3 flags:MOVE_BODY flags:IM_ACID | IM_ELEC | IM_NETHER | NO_FEAR flags-off:TAKE_ITEM spell-freq:3 innate-freq:50 spells:WOUND | WHIP desc:A Maia spirit, which was mighty once, but dared defy its Creator. name:fallen angel plural:angel base:ainu color:m speed:120 hit-points:1300 light:2 hearing:30 armor-class:90 sleepiness:255 depth:49 rarity:6 weight:0 experience:4000 blow:GAZE:EXP_40:4d4 blow:GAZE:EXP_40:4d4 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 flags:SMART | EVIL flags:DROP_3 flags:MOVE_BODY flags:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_NETHER | NO_FEAR flags:NO_STUN | NO_CONF | LEVITATE flags-off:TAKE_ITEM spell-freq:3 spell-power:49 spells:BLIND | WOUND | MISSILE | SCARE | TELE_TO spells:BO_NETH spells:S_DEMON desc:An angelic being, who was mighty once, but dared defy its Creator. ########## DUNGEON LEVELS 50-59 ########## ### Dungeon level 50 ### name:The Evil Iggy base:person color:b speed:130 hit-points:1666 hearing:60 armor-class:80 sleepiness:10 depth:50 rarity:7 weight:0 experience:23000 blow:TOUCH:EAT_GOLD:4d6 blow:TOUCH:EAT_GOLD:4d6 blow:HIT:POISON:4d6 blow:INSULT:EAT_ITEM:4d6 flags:MALE | EVIL | PWMANG_BASE | UNIQUE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:TAKE_ITEM | OPEN_DOOR flags:INVISIBLE | NO_SLEEP | NO_CONF | NO_HOLD spell-freq:3 spells:BLINK | WOUND | HOLD | BLIND | SCARE | S_UNDEAD | SLOW | DRAIN_MANA desc:The Evil Iggy does a lurid dance at you! name:master mystic base:person color:o speed:130 hit-points:968 hearing:30 armor-class:72 sleepiness:5 depth:50 rarity:3 weight:160 experience:6000 blow:KICK:HURT:10d2 blow:KICK:HURT:10d2 blow:HIT:PARALYZE:20d1 blow:HIT:PARALYZE:15d1 flags:MALE | INVISIBLE | ATTR_FLICKER flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_CONF flags:NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | NO_STUN spell-freq:3 spells:HEAL spells:S_ANIMAL drop-base:nature book:8:1:1 friends-base:50:2d4:spider desc:A lord of all that is natural, skilled in the mystic ways. He is a master desc: of martial arts and is at one with nature, able to summon help from the desc: wild if need be. #v name:shadow base:ghost color:D speed:120 hit-points:175 light:-2 hearing:30 armor-class:36 sleepiness:20 depth:50 rarity:3 weight:0 experience:800 blow:TOUCH:EXP_80 blow:TOUCH:EXP_40 blow:CLAW:LOSE_INT:3d10 blow:CLAW:LOSE_WIS:3d10 flags:DROP_1 | ONLY_ITEM flags:FORCE_SLEEP spell-freq:8 spells:SLOW | TELE_TO spells:BO_NETH desc:A mighty spirit of darkness of vaguely humanoid form. Razor-edged claws desc: reach out to end your life as it glides towards you, seeking to suck the desc: energy from your soul to feed its power. name:The Balrog of Moria base:major demon color:v speed:130 hit-points:7000 light:2 hearing:20 armor-class:150 sleepiness:20 depth:50 rarity:3 weight:0 experience:25000 blow:HIT:FIRE:6d12 blow:HIT:FIRE:6d12 blow:CRUSH:HURT:5d12 blow:TOUCH:DRAIN_CHARGES flags:UNIQUE | MALE | POWERFUL | PWMANG_FIXED flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:MOVE_BODY flags:IM_FIRE flags:FORCE_DEPTH spell-freq:4 spells:CONF | SCARE spells:BA_FIRE spells:S_DEMON | S_UNDEAD friends:100:4d4:cave orc:servant friends:100:2d2:cave troll:servant desc:A huge Balrog surrounded by raging pillars of fire, this is indeed a desc: terrible opponent. Wielding a great whip of fire and a blazing sword, his desc: fury blisters your skin and melts your flesh! locations:The Mines of Moria name:The White Balrog base:major demon color:w speed:120 hit-points:6000 light:2 hearing:20 armor-class:144 sleepiness:40 depth:50 rarity:3 weight:0 experience:30000 blow:HIT:COLD:4d12 blow:HIT:COLD:4d12 blow:CRUSH:HURT:3d12 blow:TOUCH:DRAIN_CHARGES flags:UNIQUE | PWMANG_BASE | POWERFUL | SMART | PWMANG_FIXED flags:DROP_2 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:MOVE_BODY | KILL_WALL | LEVITATE flags:IM_COLD | IM_POIS flags:ATTR_MULTI flags:FORCE_DEPTH spell-freq:4 spells:BLIND | BRAIN_SMASH | CONF spells:BA_NETH spells:BO_COLD spells:S_UNDEAD | S_DEMON desc:It is a massive humanoid demon wreathed in frost, wielding a cruel looking desc: pike in its hands. locations:The Helcaraxe name:13-headed hydra base:hydra color:W speed:120 hit-points:1350 light:2 hearing:20 armor-class:140 sleepiness:20 depth:50 rarity:2 weight:950 experience:10000 blow:BITE:FIRE:7d6 blow:BITE:ACID:7d6 blow:BITE:BLIND:7d6 blow:BITE:CONFUSE:7d6 flags:DROP_4 flags:MOVE_BODY flags:IM_POIS | IM_FIRE | IM_ACID | NO_CONF flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:4 innate-freq:50 spells:SCARE | BLIND | CONF spells:BR_POIS | BR_FIRE | BR_ACID desc:A 12-headed hydra with one extra head, conjuring up weird things. name:brown Thunderlord base:bird color:u speed:130 hit-points:2485 light:2 hearing:30 armor-class:100 sleepiness:50 depth:50 rarity:4 weight:3000 experience:10000 blow:HIT:HURT:8d9 blow:HIT:HURT:8d9 flags:MALE | SMART | DROP_SKELETON | DROP_CORPSE | PWMANG_BASE | SPIRIT flags:ONLY_ITEM | DROP_2 | DROP_GOOD flags:IM_FIRE | REGENERATE | OPEN_DOOR | BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD | ATTR_FLICKER spell-freq:4 innate-freq:33 spells:BR_FIRE | TPORT | BLINK desc:A Thunderlord. Beware its flame. name:kraken base:aquatic color:y speed:120 hit-points:2000 hearing:30 armor-class:145 sleepiness:80 depth:50 rarity:2 weight:0 experience:10000 blow:CRUSH:HURT:9d9 blow:CRUSH:HURT:9d9 blow:CRUSH:HURT:9d9 blow:CRUSH:HURT:9d9 flags:PWMANG_BASE | WILD_OCEAN flags:FORCE_SLEEP | BASH_DOOR | POWERFUL | MOVE_BODY | SMART flags:EVIL | IM_ELEC | NO_CONF | NO_SLEEP | IM_POIS | IM_COLD spell-freq:6 innate-freq:36 spells:BR_WATE | BR_DARK | BR_ACID | BR_POIS spells:BLIND | CONF | SCARE | WOUND | TELE_TO | TELE_AWAY | DARKNESS desc:An enormously fearsome and powerful inhabitant of the depths. It desc: resembles a gargantuan octopus and its evil is almost tangible. ### Dungeon level 51 ### name:troll cannibal base:troll color:D speed:120 hit-points:2000 hearing:20 smell:50 armor-class:50 sleepiness:30 depth:51 rarity:8 weight:0 experience:5000 blow:HIT:HURT:1d50 blow:HIT:HURT:1d50 blow:HIT:HURT:1d50 blow:HIT:HURT:1d50 flags:MALE | REGENERATE flags:DROP_3 | DROP_GOOD | ONLY_ITEM flags:MOVE_BODY | TAKE_ITEM flags:IM_COLD desc:Huge mad troll of enormous strenght, wiedling heavy crude club. name:nether hound base:zephyr hound color:G speed:120 hit-points:330 hearing:30 smell:50 armor-class:120 sleepiness:0 depth:51 rarity:4 weight:80 experience:5000 blow:CLAW:HURT:2d12 blow:CLAW:HURT:2d12 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 flags:OPEN_DOOR | BASH_DOOR flags:NO_CONF | NO_SLEEP | IM_NETHER flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_NETH friends:100:2d7:Same desc:You feel a soul-tearing chill upon viewing this beast, a ghostly form of desc: darkness in the shape of a large dog. name:time hound base:zephyr hound color:B speed:130 hit-points:330 hearing:30 smell:50 armor-class:120 sleepiness:0 depth:51 rarity:4 weight:80 experience:5000 blow:CLAW:HURT:2d12 blow:CLAW:HURT:2d12 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 flags:ATTR_FLICKER flags:OPEN_DOOR | BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_TIME friends:100:2d7:Same desc:You get a terrible sense of deja vu, or is it a premonition? All at once desc: you see a little puppy and a toothless old dog. Perhaps you should give up desc: and go to bed. name:plasma hound base:zephyr hound color:R speed:120 hit-points:330 light:2 hearing:30 smell:50 armor-class:120 sleepiness:0 depth:51 rarity:4 weight:80 experience:5000 blow:CLAW:HURT:2d12 blow:CLAW:HURT:2d12 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 flags:ATTR_FLICKER flags:OPEN_DOOR | BASH_DOOR flags:IM_ELEC | IM_FIRE | IM_PLASMA | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | NO_STUN spell-freq:5 innate-freq:100 spells:BR_PLAS friends:100:2d7:Same desc:The very air warps as pure elemental energy stalks towards you in the shape desc: of a giant hound. Your hair stands on end and your palms itch as you sense desc: trouble. name:Harowen the Black Hand base:person color:Z speed:135 hit-points:2500 hearing:40 armor-class:108 sleepiness:0 depth:51 rarity:3 weight:0 experience:20000 blow:TOUCH:EAT_GOLD:5d5 blow:TOUCH:EAT_ITEM:5d5 blow:HIT:BLIND:10d5 blow:HIT:POISON:8d5 flags:UNIQUE | MALE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM flags:IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:4 spells:TELE_TO | TELE_SELF_TO | BLINK | TRAPS | DARKNESS | BLIND | HOLD desc:He is a master of disguise, an expert of stealth, a genius at traps, and desc: moves with blinding speed. Check your pockets! name:nycadaemon base:major demon color:M speed:120 hit-points:2526 hearing:20 armor-class:144 sleepiness:40 depth:51 rarity:3 weight:0 experience:10000 blow:TOUCH:TERRIFY blow:CLAW:HURT:6d6 blow:CLAW:HURT:6d6 blow:CLAW:HURT:6d6 flags:INVISIBLE | REGENERATE | PWMANG_BASE | LEVITATE flags:DROP_1 flags:KILL_WALL flags:IM_ACID | IM_COLD | IM_FIRE | IM_POIS | IM_NETHER | NO_STUN spell-freq:4 innate-freq:17 spells:BLINK | BRAIN_SMASH | CONF | HOLD spells:BR_NETH spells:S_DEMON desc:A loathsome, sturdy, winged, horned demon, with talons that could tear a desc: stonewall down. #name:Moltor, the Dwarven Archer name:Robin, the Archer base:humanoid color:Y speed:120 hit-points:2500 hearing:40 armor-class:108 sleepiness:0 depth:51 rarity:3 weight:0 experience:20000 flags:MALE | PWMANG_EXTRA | UNIQUE flags:DROP_4 | DROP_GOOD | ONLY_ITEM | DROP_GREAT flags:NEVER_BLOW flags:TAKE_ITEM flags:NO_CONF | NO_SLEEP | NO_FEAR | IM_FIRE | IM_ELEC | IM_COLD | IM_POIS flags:NO_HOLD | WANDERER spell-freq:1 innate-freq:33 spells:ARROW | BLINK | HASTE desc:His skill with a bow is unsurpassed. He has been exploring the dungeon for desc: many years, killing everything that crossed his path. ### Dungeon level 52 ### #v name:Maia of Orome name:Doppleganger base:person color:w speed:120 hit-points:1500 light:2 hearing:30 armor-class:96 sleepiness:255 depth:52 rarity:4 weight:0 experience:2500 blow:HIT:HURT:4d6 blow:HIT:HURT:6d5 blow:HIT:HURT:4d6 blow:HIT:HURT:6d5 flags:MALE flags:DROP_2 spell-freq:9 innate-freq:33 spells:SHAPECHANGE shape:ranger chieftain shape:old sorcerer shape:patriarch shape:master mindcrafter shape:swordsmaster shape:knight Templar shape:berserker shape:grand master thief shape:master unbeliever shape:master mystic desc:He knows everything about you. name:Itangast the Fire Drake base:ancient dragon color:R speed:120 hit-points:2200 light:2 hearing:30 armor-class:144 sleepiness:70 depth:52 rarity:2 weight:0 experience:20000 blow:CLAW:HURT:4d11 blow:CLAW:HURT:4d11 blow:BITE:FIRE:4d15 blow:BITE:FIRE:4d15 flags:UNIQUE | MALE flags:DROP_GOOD | ONLY_ITEM flags:BASH_DOOR flags:IM_FIRE spell-freq:4 innate-freq:33 spells:WOUND | CONF spells:BR_FIRE desc:A mighty ancient dragon, Itangast's form scorches your flesh. Wisps of desc: smoke curl up from his nostrils as he regards you with disdain. name:Ji Indur Dawndeath base:wraith color:p speed:120 hit-points:3200 hearing:90 smell:50 armor-class:84 sleepiness:10 depth:52 rarity:3 weight:0 experience:22000 blow:HIT:HURT:8d7 blow:HIT:BLACK_BREATH:8d7 blow:TOUCH:EXP_40:6d7 blow:TOUCH:EXP_40:6d7 flags:UNIQUE | MALE | INVISIBLE | LEVITATE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:IM_FIRE | RES_LIGHT flags:FORCE_SLEEP spell-freq:3 spell-power:52 spells:BLIND | WOUND | HOLD | SCARE spells:BA_ACID | BA_COLD | BA_ELEC | BA_FIRE | BA_NETH spells:S_UNDEAD drop:ring:Black Ring of Power:100:1:1 desc:This Ringwraith was a weak-minded sorcerer-king who fell easily under desc: Sauron's power. name:hell knight base:person color:D speed:120 hit-points:1320 light:2 hearing:20 armor-class:120 sleepiness:10 depth:52 rarity:1 weight:0 experience:10000 blow:HIT:HURT:10d5 blow:HIT:HURT:10d5 blow:HIT:EXP_80:10d5 blow:HIT:EXP_80:10d5 flags:COLD_BLOOD | EVIL | PWMANG_BASE | SMART flags:ONLY_ITEM | DROP_2 flags:OPEN_DOOR flags:IM_NEXUS | IM_PLASMA | IM_NETHER | IM_FIRE | IM_COLD | IM_POIS flags:FORCE_SLEEP spell-freq:5 spells:BLIND | WOUND | SCARE spells:BA_FIRE | BA_NETH spells:BO_PLAS spells:S_MONSTERS | S_DEMON friends:50:1d1:imp desc:It is a humanoid form dressed in armour of ancient style. From beneath its desc: helmet, eyes glow with hellfire. name:The Glass Golem base:mineral color:B speed:130 hit-points:5000 hearing:200 armor-class:204 sleepiness:10 depth:52 rarity:4 weight:0 experience:33000 blow:HIT:FORGET:4d6 blow:HIT:FORGET:3d6 blow:HIT:FORGET:4d6 blow:HIT:FORGET:3d6 flags:POWERFUL | UNIQUE | NONLIVING | PWMANG_BASE | PWMANG_FIXED | LEVITATE flags:DROP_1 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:BASH_DOOR | KILL_WALL flags:IM_FIRE | IM_ELEC | NO_STUN flags:FORCE_DEPTH spell-freq:4 innate-freq:22 spells:SHRIEK | TELE_LEVEL spells:BOULDER | BA_SHAR | BA_LIGHT spells:S_KIN friends-base:100:1d5:mineral friends-base:75:1d5:mineral friends-base:50:1d5:mineral desc:One of the last creations of the petty dwarves of Ludarin, its existence desc: explains their destruction. A creation of finest glass, the body of this desc: creature bends and amplifies light in a way that makes you unsure of its desc: position. You feel somewhat dizzy as the radiant light reflects off the desc: walls, the ceiling and your gear. locations:The Illusory Castle ### Dungeon level 53 ### #v (old become chert) name:hezrou base:major demon color:g speed:100 hit-points:1850 hearing:20 armor-class:60 sleepiness:70 depth:53 rarity:3 weight:0 experience:7000 blow:CLAW:HURT:3d4 blow:BITE:ACID:3d10 blow:BITE:BLIND:3d10 flags:SMART | DROP_1 flags:IM_FIRE | IM_ACID | NO_FEAR spell-freq:3 innate-freq:40 spells:BO_FIRE | BO_ACID spells:BR_FIRE | BR_ACID spells:S_DEMON friends:100:1d2:Same desc:A sluggish demon of lizard form, firing powerful missiles. From the desc: terribly oversized jaws to the stumpy lashing tail, pools of burning desc: acid froth and sizzle. name:chaos vortex plural:chaos vortices base:vortex color:v speed:120 hit-points:315 hearing:100 armor-class:96 sleepiness:0 depth:53 rarity:3 weight:0 experience:4000 blow:ENGULF:CONFUSE:5d5 blow:ENGULF:CONFUSE:5d5 blow:ENGULF:CONFUSE:5d5 blow:ENGULF:HALLU:5d5 flags:RAND_25 flags:ATTR_MULTI flags:NO_STUN spell-freq:4 innate-freq:100 spells:BR_CHAO desc:Void, nothingness, spinning destructively. name:Scatha the Worm base:ancient dragon color:W speed:120 hit-points:2500 hearing:30 armor-class:156 sleepiness:70 depth:53 rarity:2 weight:0 experience:18000 blow:CLAW:HURT:4d11 blow:CLAW:HURT:4d11 blow:CLAW:COLD:4d15 blow:BITE:COLD:4d15 flags:UNIQUE | MALE flags:DROP_GOOD | ONLY_ITEM flags:BASH_DOOR flags:IM_COLD spell-freq:4 innate-freq:33 spells:WOUND | CONF spells:BR_COLD desc:An ancient and wise Dragon. Scatha has grown clever over the long years. desc: His scales are covered with frost, and his breath sends a shower of ice desc: into the air. #old name:storm of Unmagic name:inquisitor base:person color:v speed:120 hit-points:999 hearing:50 armor-class:100 sleepiness:0 depth:53 rarity:3 weight:0 experience:8000 blow:HIT:DRAIN_CHARGES:5d5 blow:HIT:DISENCHANT:5d5 blow:HIT:HURT:5d5 blow:HIT:HALLU:5d5 flags:MALE | REGENERATE flags:ONLY_ITEM | DROP_4 | DROP_CORPSE | DROP_SKELETON flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_DISEN | IM_LIGHT flags:OPEN_DOOR flags:ONLY_ITEM | DROP_4 flags:ANTI_MAGIC | NO_STUN desc:'Holy' warriors in grim orders... His goal is desc:to bring judgement, be it through absolution or through death. desc:He will torment you in the ways you do not want to know... name:14-headed hydra base:hydra color:B speed:120 hit-points:1550 light:2 hearing:20 armor-class:150 sleepiness:20 depth:53 rarity:2 weight:1000 experience:12000 blow:BITE:ACID:8d6 blow:BITE:BLIND:8d6 blow:BITE:CONFUSE:8d6 blow:BITE:EXP_10:8d6 flags:DROP_4 flags:MOVE_BODY flags:IM_POIS | IM_FIRE | IM_ACID | NO_CONF flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:4 innate-freq:50 spells:SCARE | BLIND | CONF spells:BR_POIS | BR_FIRE | BR_ACID desc:A 13-headed hydra with one extra head which reeks of death. ### Dungeon level 54 ### name:mutant telepath base:person color:Y speed:125 hit-points:1500 light:2 hearing:20 armor-class:85 sleepiness:10 depth:54 rarity:4 weight:170 experience:7000 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:EVIL | SMART | MALE flags:DROP_CORPSE | DROP_SKELETON | ONLY_ITEM | DROP_3 flags:TAKE_ITEM | MOVE_BODY flags:IM_FIRE | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP | NO_FEAR | NO_STUN flags:FORCE_SLEEP | NO_HOLD spell-freq:2 spells:BLINK | BRAIN_SMASH | HEAL | MIND_BLAST | DRAIN_MANA | SCARE spells:TPORT spells:BA_COLD | BA_FIRE spells:BO_NETH spells:S_MONSTERS drop-base:psi book:7:1:1 desc:A poor soul who get in a wrong place in a wrong time and partially desc: become an abomination. But maybe he deserved it as in 'previous' life desc: he was a mischievous evil man: a master of mind manipulation, he subdued desc: others, so they will follow him slavishly into the battle. name:ent base:tree color:U speed:120 hit-points:5000 hearing:40 armor-class:180 sleepiness:20 depth:54 rarity:4 weight:5000 experience:5000 blow:CRUSH:HURT:8d8 blow:CRUSH:HURT:8d8 blow:HIT:SHATTER:4d8 blow:HIT:SHATTER:4d8 flags:DROP_40 | WEIRD_MIND flags:IM_ACID | IM_COLD | IM_ELEC | IM_POIS | IM_DISEN | IM_NETHER flags:IM_NEXUS | NO_CONF | NO_SLEEP | NO_HOLD | NO_SLOW | NO_STUN spell-freq:9 innate-freq:10 spells:DRAIN_MANA | FORGET | HEAL | HOLD spells:TPORT | SLOW | TELE_TO | BOULDER desc:Ents are not altogether on anybody's side, because nobody is altogether on desc: their side. This one does not seem to be on your side. name:entwife base:tree color:U speed:125 hit-points:3500 hearing:40 armor-class:160 sleepiness:20 depth:54 rarity:9 weight:3500 experience:7500 blow:CRUSH:HURT:8d8 blow:CRUSH:HURT:8d8 blow:HIT:SHATTER:4d8 blow:HIT:SHATTER:4d8 flags:DROP_40 | WEIRD_MIND | SMART flags:IM_ACID | IM_COLD | IM_ELEC | IM_POIS | IM_DISEN | IM_NETHER flags:IM_NEXUS | NO_CONF | NO_SLEEP | NO_HOLD | NO_SLOW | NO_STUN spell-freq:9 spells:DRAIN_MANA | FORGET | HEAL spells:TPORT | SLOW | WOUND | BA_LIGHT desc:Hair parched by the sun to the hue of ripe corn and their cheeks like desc: red apples. Yet their eyes were still the eyes of ents. name:The Phoenix base:bird color:r speed:120 hit-points:3600 light:2 hearing:60 armor-class:156 sleepiness:0 depth:54 rarity:3 weight:0 experience:40000 blow:BITE:FIRE:12d6 blow:BITE:FIRE:12d6 blow:HIT:FIRE:9d12 blow:HIT:FIRE:9d12 flags:UNIQUE flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_ELEC | IM_FIRE | IM_POIS | IM_PLASMA | NO_CONF flags:NO_SLEEP | NO_HOLD | WANDERER flags:FORCE_SLEEP spell-freq:3 innate-freq:43 spells:BA_FIRE spells:BO_FIRE | BO_PLAS spells:BR_FIRE | BR_LIGHT | BR_PLAS spells:S_KIN desc:A massive glowing eagle bathed in flames. The searing heat chars your skin desc: and melts your armour. #v name:drolem base:golem color:g speed:120 hit-points:2200 hearing:25 armor-class:195 sleepiness:80 depth:54 rarity:3 weight:0 experience:12000 blow:CLAW:HURT:3d10 blow:CLAW:HURT:3d10 blow:BITE:POISON:5d10 blow:BITE:POISON:5d10 flags:DRAGON | COLD_BLOOD flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | IM_FIRE | IM_POIS flags:NO_STUN flags:FORCE_SLEEP flags:SWIM_BAD spell-freq:5 innate-freq:40 spells:ARROW | BLIND | CONF | SLOW spells:BR_POIS desc:A constructed dragon, the drolem has massive strength. Powerful spells desc: weaved during its creation make it a fearsome adversary. Its eyes show desc: little intelligence, but it has been instructed to destroy all it meets. name:demilich plural:demiliches base:lich color:U speed:120 hit-points:2816 hearing:20 armor-class:150 sleepiness:40 depth:54 rarity:2 weight:0 experience:12500 blow:TOUCH:EXP_80 blow:TOUCH:DRAIN_CHARGES blow:TOUCH:LOSE_DEX:4d12 blow:TOUCH:LOSE_DEX:4d12 flags:DROP_3 | ONLY_ITEM | LEVITATE spell-freq:3 spells:BLIND | BLINK | WOUND | CONF | BRAIN_SMASH spells:DRAIN_MANA | FORGET | HEAL | HOLD | SCARE | TELE_TO spells:TPORT spells:S_DEMON | S_UNDEAD spells:ANIM_DEAD desc:A lich who is partially immaterial, on its way to a new, ethereal form. #v become prizrak name:dreadmaster base:ghost color:y speed:120 hit-points:1056 hearing:20 armor-class:120 sleepiness:10 depth:54 rarity:2 weight:0 experience:8000 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:LOSE_STR:3d4 blow:HIT:LOSE_STR:3d4 flags:SMART flags:DROP_4 | ONLY_ITEM flags:RAND_25 | TAKE_ITEM flags:FORCE_SLEEP spell-freq:9 spells:BLIND | WOUND | CONF | DRAIN_MANA | HOLD | TELE_LEVEL spells:BO_NETH spells:S_UNDEAD desc:It is an unlife of power almost unequaled. An affront to existence, its desc: very touch abuses and disrupts the flow of life, and its unearthly limbs, desc: of purest black, crush rock and flesh with ease. # old name:elder vampire name:vampire mistress base:vampire color:r speed:120 hit-points:2640 hearing:20 smell:20 armor-class:108 sleepiness:10 depth:54 rarity:3 weight:0 experience:7777 blow:HYPNOTIZE:SEDUCE:4d6 blow:HIT:HURT:4d6 blow:BITE:HALLU:5d6 blow:BITE:FORGET:5d6 flags:FEMALE | SMART | INVISIBLE flags:DROP_4 flags:IM_COLD | IM_ELEC | IM_POIS spell-freq:5 spell-power:54 spells:BRAIN_SMASH | WOUND | MISSILE | DARKNESS | DRAIN_MANA spells:BO_NETH | TELE_TO | TPORT | HEAL spells:S_UNDEAD spells:HOLD | SCARE desc:A terrible beautiful figure, she existed in many centuries by stealing the #life of others. And they enjoyed it at the end... #v name:nether wraith base:wraith color:G speed:120 hit-points:1000 hearing:20 armor-class:66 sleepiness:10 depth:54 rarity:2 weight:0 experience:3900 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 blow:TOUCH:EXP_80 blow:TOUCH:EXP_80 flags:INVISIBLE flags:DROP_3 | ONLY_ITEM flags:PASS_WALL flags:FORCE_SLEEP spell-freq:6 spells:BLIND | WOUND | DARKNESS | MIND_BLAST | SCARE spells:BO_NETH | BE_NETH desc:A form that hurts the eye, death permeates the air around it. As it nears desc: you, a coldness saps your soul. name:maulotaur base:hybrid color:m speed:130 hit-points:2860 hearing:13 smell:20 armor-class:60 sleepiness:10 depth:54 rarity:2 weight:4000 experience:4500 blow:HIT:SHATTER:8d8 blow:HIT:SHATTER:8d8 blow:BUTT:HURT:4d6 blow:BUTT:HURT:4d6 flags:EVIL | PWMANG_BASE | STUPID flags:ONLY_ITEM | DROP_40 | DROP_CORPSE | DROP_SKELETON flags:BASH_DOOR | HYBRID flags:IM_FIRE flags:FORCE_SLEEP spell-freq:5 spells:BA_FIRE spells:BO_PLAS desc:It is a belligerent minotaur with a destructive magical arsenal, armed with desc: a hammer. name:old sorcerer base:person color:R speed:130 hit-points:1144 light:2 hearing:20 armor-class:72 sleepiness:10 depth:54 rarity:2 weight:0 experience:5000 blow:HIT:HURT:6d8 blow:HIT:HURT:6d8 blow:HIT:HURT:6d8 flags:EVIL | MALE | PWMANG_BASE | SMART flags:ONLY_ITEM | DROP_4 flags:OPEN_DOOR | TAKE_ITEM flags:NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:2 spells:BLIND | BLINK | WOUND | CONF | TELE_TO | TRAPS spells:BA_COLD | BA_FIRE | BA_POIS spells:BO_ACID spells:S_DEMON | S_HI_DRAGON | S_MONSTER | S_UNDEAD drop-base:magic book:12:1:1 desc:A human figure in robes, he moves with magically improved speed, and his desc: hands are ablur with spell casting. You stagger at the mighty sound of his desc: spells as they echo hollowly through the dungeon. ### Dungeon level 55 ### name:quivering blob base:jelly color:s speed:90 hit-points:10000 hearing:12 armor-class:200 sleepiness:1 depth:55 #5 rarity:10 weight:0 experience:1 blow:TOUCH:ACID:5d10 blow:TOUCH:ACID:5d10 blow:TOUCH:ACID:5d10 blow:TOUCH:ACID:5d10 flags:COLD_BLOOD flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:NO_CONF | NO_SLEEP | flags:NEVER_MOVE | MULTIPLY spell-freq:2 spells:BLINK desc:A huge amoeboid substance which is grow, desc:terrible and unstoppable. name:Shelob, Spider of Darkness base:spider color:D speed:120 hit-points:3500 light:-3 hearing:30 armor-class:180 sleepiness:20 depth:55 rarity:3 weight:0 experience:35000 blow:CLAW:POISON:5d6 blow:CLAW:POISON:5d6 blow:BITE:PARALYZE:5d10 blow:STING:LOSE_STR:5d4 flags:UNIQUE | FEMALE | EVIL | ANIMAL | SMART | SPIRIT | PWMANG_FIXED flags:DROP_2 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:HURT_LIGHT | IM_ACID | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_DEPTH | FORCE_SLEEP spell-freq:4 innate-freq:30 spells:BLIND | WOUND | CONF | HEAL | SCARE spells:SLOW | WEAVE spells:BR_DARK | BR_POIS spells:S_KIN friends:80:4d4:black orc friends:100:3d7:Mirkwood spider desc:Shelob is an enormous bloated spider, the last daughter of Ungoliant the desc: Unlight. Her poison is legendary, as is her ego. She normally guards the desc: pass through Cirith Ungol, but occasionally goes out foraging for food to desc: feed her voracious appetite. locations:Cirith Ungol #was name:Istar , removed in V name:Archon #base:angel base:ainu color:y speed:130 hit-points:1800 light:2 hearing:30 armor-class:140 sleepiness:255 depth:55 rarity:5 weight:0 experience:10000 blow:GAZE:TERRIFY:4d4 blow:GAZE:TERRIFY:4d4 blow:HIT:HURT:8d6 blow:HIT:HURT:8d6 flags:SMART | ATTR_FLICKER flags:DROP_4 flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | NO_FEAR | SMART flags:NO_STUN | NO_CONF | LEVITATE | IM_LIGHT spell-freq:3 spell-power:55 spells:BLIND | WOUND | BA_LIGHT | SCARE | TELE_TO | HEAL | MISSILE spells:BO_MANA #spells:S_ANGEL spells:S_AINU desc:Never a more heavenly being have you seen. The very holiness of its desc:presence makes you deeply respect it. Few creatures can match the powers desc:of an Archon; fewer still live to tell the tale after attacking one. name:dracolich plural:dracoliches base:ancient dragon color:G speed:120 hit-points:3080 hearing:25 armor-class:144 sleepiness:80 depth:55 rarity:2 weight:0 experience:18000 blow:CLAW:HURT:6d12 blow:CLAW:HURT:6d12 blow:BITE:EXP_80:7d14 flags:UNDEAD | COLD_BLOOD flags:ONLY_ITEM flags:BASH_DOOR | TAKE_ITEM flags:IM_COLD | IM_POIS | NO_STUN | IM_NETHER spell-freq:6 innate-freq:50 spells:CONF | SCARE spells:BR_COLD | BR_NETH desc:The skeletal form of a once-great dragon, enchanted by magic most perilous. desc: Its animated form strikes with speed and drains life from its prey to desc: satisfy its hunger. name:dracolisk base:ancient dragon color:i speed:120 hit-points:3080 hearing:25 armor-class:144 sleepiness:80 depth:55 rarity:2 weight:18000 experience:18000 blow:BITE:HURT:6d12 blow:BITE:HURT:6d12 blow:BITE:FIRE:7d14 blow:GAZE:PARALYZE flags:ANIMAL flags:ONLY_ITEM flags:BASH_DOOR flags:IM_ACID | IM_FIRE | IM_NEXUS flags:DROP_CORPSE spell-freq:6 innate-freq:50 spells:HOLD | SCARE spells:BR_FIRE | BR_NEXU desc:A mixture of dragon and basilisk, the dracolisk stares at you with deep desc: piercing eyes, its evil breath burning the ground where it stands. name:Ar-Pharazon the Golden base:person color:y speed:130 hit-points:4000 light:2 hearing:30 armor-class:54 sleepiness:255 depth:55 rarity:1 weight:0 experience:37000 blow:HIT:HURT:8d8 blow:HIT:HURT:8d8 blow:HIT:HURT:8d8 blow:HIT:HURT:8d8 flags:UNIQUE | MALE | EVIL | SMART | ATTR_FLICKER | PWMANG_FIXED flags:DROP_3 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:OPEN_DOOR | MOVE_BODY | TAKE_ITEM flags:IM_ELEC | IM_FIRE | IM_POIS flags:FORCE_DEPTH | FORCE_SLEEP | LEVITATE drop:food:Ration of Food:100:1:1 spell-freq:6 spells:HEAL | TELE_AWAY spells:S_KIN | S_MONSTERS desc:Last and proudest king of ancient Numenor. Corrupted by power and avarice, desc: he fell victim to Sauron's wiles, tried to fight the Valar themselves, and desc: condemned Numenor to oblivion. locations:Numenor name:barbazu plural:barbazu base:major demon color:G speed:120 hit-points:700 hearing:25 armor-class:90 sleepiness:70 depth:55 rarity:4 weight:0 experience:3000 blow:HIT:HURT:4d10 blow:HIT:HURT:4d10 blow:HIT:LOSE_CON:10d2 blow:STING:POISON:5d5 flags:DROP_1 flags:IM_POIS spell-freq:10 spells:SCARE spells:S_DEMON friends:100:4d4:Same desc:A foul, humanoid creature with a long tail, clawed hands and feet, and a desc: disgusting, wiry, snaky beard. They are the elite shock troops of the desc: hells, capable of a terrifying berserk fury. ### Dungeon level 56 ### name:glaz base:eye color:r speed:130 hit-points:2000 hearing:30 armor-class:96 sleepiness:10 depth:56 rarity:4 weight:0 experience:10000 blow:GAZE:EXP_20:6d6 blow:GAZE:DRAIN_CHARGES:6d6 blow:GAZE:FORGET:6d6 blow:GAZE:PARALYZE:6d6 flags:EVIL | SPIRIT flags:BASH_DOOR flags:NO_CONF | NO_SLEEP flags:FORCE_SLEEP flags:DROP_CORPSE spell-freq:3 innate-freq:10 spells:SPIT spells:BLIND | DARKNESS | MIND_BLAST | SLOW spells:S_MONSTERS desc:A weird bloodshot disembodied eye, floating a few feet above the ground. desc:It blinks slowly and menacily. name:lesser titan base:giant color:y speed:120 hit-points:2100 hearing:30 armor-class:96 sleepiness:15 depth:56 rarity:3 weight:3000 experience:6000 blow:HIT:CONFUSE:9d9 blow:HIT:CONFUSE:9d9 blow:HIT:CONFUSE:9d9 blow:HIT:CONFUSE:9d9 flags:SMART | ATTR_FLICKER flags:DROP_4 | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON flags:SWIM_NORM spell-freq:3 innate-freq:25 spells:HEAL | TELE_TO | BOULDER spells:S_MONSTERS desc:It is a humanoid figure thirty feet tall that gives off an aura of power desc: and hate. name:Dwar, Dog Lord of Waw base:wraith color:p speed:120 hit-points:4000 hearing:90 smell:50 armor-class:108 sleepiness:10 depth:56 rarity:3 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:HIT:BLACK_BREATH:8d8 blow:BITE:EXP_40:6d7 blow:WAIL:TERRIFY:6d7 flags:UNIQUE | MALE | SMART | LEVITATE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:FORCE_SLEEP | RES_LIGHT spell-freq:3 spell-power:56 spells:BLIND | WOUND | HOLD | SCARE spells:BA_FIRE | BA_NETH spells:S_HOUND | S_MONSTERS | S_UNDEAD drop:ring:Black Ring of Power:100:1:1 desc:Dwar had a special affinity for dogs in life, and can still command them at desc: will. He howls maniacally as he reaches out to destroy you. ### Dungeon level 57 ### name:grand master mystic base:person color:o speed:130 hit-points:1936 hearing:30 armor-class:96 sleepiness:5 depth:57 rarity:3 weight:180 experience:15000 blow:KICK:HURT:20d2 blow:KICK:HURT:10d2 blow:HIT:PARALYZE:20d1 blow:HIT:PARALYZE:15d1 flags:MALE | INVISIBLE | ATTR_FLICKER flags:DROP_4 | ONLY_ITEM flags:OPEN_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_CONF flags:NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | NO_STUN spell-freq:3 spells:HEAL | MIND_BLAST spells:S_ANIMAL | S_HOUND | S_SPIDER drop-base:nature book:15:1:1 friends-base:80:3d5:spider desc:He is one of the few true masters of the art, being extremely skillful in desc: all forms of unarmed combat and controlling the world's natural creatures desc: with disdainful ease. name:hand druj base:skeleton color:y speed:130 hit-points:528 hearing:20 armor-class:132 sleepiness:10 depth:57 rarity:2 weight:0 experience:12000 flags:SMART | ATTR_FLICKER | SPIRIT flags:NEVER_BLOW | NEVER_MOVE flags:FORCE_SLEEP spell-freq:1 spells:BLIND | WOUND | CONF | DARKNESS | FORGET | SCARE spells:TELE_AWAY spells:BO_ACID | BO_COLD | BO_ELEC | BO_FIRE desc:A skeletal hand floating in the air, motionless except for its flexing desc: fingers. name:The Lernaean Hydra base:hydra color:P speed:120 hit-points:4500 light:2 hearing:20 armor-class:168 sleepiness:20 depth:57 rarity:2 weight:0 experience:20000 blow:BITE:ACID:10d6 blow:BITE:BLIND:10d6 blow:BITE:CONFUSE:10d6 blow:BITE:EXP_10:10d6 flags:UNIQUE | SMART | POWERFUL | REGENERATE flags:DROP_4 flags:KILL_BODY flags:IM_FIRE | IM_POIS | IM_ACID | NO_CONF | NO_SLEEP | NO_HOLD flags-off:HURT_COLD spell-freq:3 innate-freq:44 spells:SCARE | BLIND | CONF spells:BR_POIS | BR_FIRE | BR_ACID | BR_NETH spells:S_HYDRA | S_KIN desc:A massive legendary hydra with fifteen powerful heads. Its many eyes desc: stare at you as clouds of vapour rise from its seething form. And it desc: grows new heads as fast as you chop them off. name:true believer base:person color:m speed:130 hit-points:2640 light:2 hearing:30 armor-class:120 sleepiness:5 depth:57 rarity:3 weight:180 experience:8000 blow:HIT:HURT:10d5 blow:KICK:HURT:20d2 blow:HIT:CONFUSE:10d4 blow:HIT:PARALYZE:10d4 flags:INVISIBLE | MALE | REGENERATE | ANTI_MAGIC | PWMANG_BASE flags:ONLY_ITEM | DROP_4 | DROP_CORPSE | DROP_SKELETON flags:OPEN_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:NO_CONF | NO_SLEEP flags:FORCE_SLEEP desc:True master of unbelievers, genuine master of weaponry with his Dark Sword, desc: no one dares utter a so-called 'mystic' word in front of him. ### Dungeon level 58 ### name:Baphomet the Minotaur Lord base:hybrid color:v speed:130 hit-points:4700 hearing:30 smell:20 armor-class:144 sleepiness:30 depth:58 rarity:4 weight:0 experience:24000 blow:BUTT:HURT:12d13 blow:BUTT:HURT:12d13 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 flags:UNIQUE | MALE | EVIL flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:BASH_DOOR | HYBRID flags:IM_FIRE | NO_CONF | NO_SLEEP | NO_HOLD | NO_STUN flags:FORCE_SLEEP spell-freq:6 innate-freq:33 spells:ARROW | SLOW spells:BA_ELEC spells:BO_MANA | BO_PLAS spells:BR_WALL desc:A fearsome bull-headed monster, Baphomet swings a mighty axe as he curses desc: all that defy him. #was name:eye druj name:black hand base:skeleton color:r speed:125 hit-points:880 hearing:20 armor-class:108 sleepiness:10 depth:58 #2 rarity:7 weight:0 experience:15000 flags:SMART | ATTR_FLICKER | SPIRIT flags:NEVER_BLOW flags:IM_FIRE flags:FORCE_SLEEP spell-freq:1 spell-power:58 spells:BRAIN_SMASH spells:BA_NETH spells:BO_MANA | BO_NETH spells:S_UNDEAD desc:A pitch black hand floating in the air. desc:It's looking for you. She knows where you are. desc:You can't hide from it. ### Dungeon level 59 ### #removed in V name:ethereal hound base:zephyr hound color:G speed:120 hit-points:480 hearing:30 smell:50 armor-class:120 sleepiness:0 depth:59 rarity:5 weight:0 experience:7000 blow:CLAW:HURT:2d12 blow:CLAW:HURT:2d12 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 flags:INVISIBLE flags:PASS_WALL flags:NO_CONF | NO_SLEEP | NO_HOLD | IM_NETHER flags:FORCE_SLEEP spell-freq:5 spell-power:59 innate-freq:100 spells:BR_NETH friends:100:2d7:Same desc:A pale green hound. Pulsing red lines and strange fluorescent light hints desc: at internal organs best left to the imagination. name:elder vampire base:vampire color:r speed:120 hit-points:2640 hearing:20 smell:20 armor-class:108 sleepiness:10 depth:59 rarity:3 weight:0 experience:4500 blow:HIT:HURT:4d6 blow:HIT:HURT:4d6 blow:BITE:EXP_80:5d6 blow:BITE:EXP_80:5d6 flags:INVISIBLE flags:DROP_4 flags:PASS_WALL spell-freq:5 spells:BRAIN_SMASH | WOUND | DARKNESS | DRAIN_MANA spells:BO_NETH spells:S_UNDEAD spells:HOLD | SCARE friends-base:30:1d3:ghost desc:A terrible robed undead figure, this creature has existed in its unlife for desc: many centuries by stealing the life of others. It can summon the very desc: shades of its victims from beyond the grave to come enslaved to its aid. #old name:skull druj name:flying coffin base:skeleton color:o #130 speed:120 #1 hit-points:3232 hearing:20 armor-class:144 sleepiness:10 depth:59 rarity:5 weight:0 experience:18000 flags:SMART | ATTR_FLICKER | SPIRIT flags:NEVER_BLOW | NEVER_MOVE flags:IM_FIRE flags:FORCE_SLEEP spell-freq:1 spell-power:59 spells:BRAIN_SMASH | WOUND | MIND_BLAST | SLOW | TRAPS spells:BA_WATE spells:BO_NETH | BO_PLAS spells:S_UNDEAD desc:A glowing with deadly white light it's possessed by sorcerous power. desc:It need not move, but merely blast you with mighty magic as it hisses desc:the words of power. desc:It's lid creaks. name:Fundin Bluecloak base:humanoid color:Z speed:130 hit-points:5000 hearing:25 armor-class:234 sleepiness:10 depth:59 rarity:2 weight:0 experience:20000 blow:HIT:HURT:8d8 blow:HIT:HURT:8d8 blow:HIT:HURT:8d8 blow:HIT:HURT:8d8 flags:UNIQUE | MALE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_CONF flags:NO_SLEEP | NO_HOLD | WANDERER flags:FORCE_SLEEP spell-freq:4 spells:BLIND | BRAIN_SMASH | WOUND | CONF | HEAL spells:SCARE spells:S_ANIMAL | S_MONSTERS desc:He is one of the greatest dwarven priests to walk the earth. Fundin has desc: earned a high position in the church, and his skill with both weapon and desc: spell only justify his position further. His combination of both dwarven desc: strength and priestly wisdom are a true match for any adventurer. ########## DUNGEON LEVELS 60-69 ########## ### Dungeon level 60 ### name:black unicorn base:quadruped color:v speed:120 hit-points:4000 hearing:20 smell:20 armor-class:150 sleepiness:100 depth:60 rarity:10 weight:0 experience:5000 blow:KICK:HALLU:7d8 blow:BITE:HURT:7d8 blow:TOUCH:LOSE_ALL:7d8 blow:TOUCH:DRAIN_CHARGES:7d8 flags:SMART flags:REGENERATE | ANIMAL flags:NO_CONF | NO_SLEEP | NO_FEAR flags:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS flags:IM_NETHER | NO_STUN spell-freq:3 innate-freq:15 spells:TELE_TO | DRAIN_MANA spells:WOUND | DARKNESS| BO_MANA | BR_DARK desc:Thouse say that once per 100 years black unicorn appears.. desc: They are aggressive and dwell to protect the Good creatures. desc: It seems it consider you as not good enough. #was name:Gilim, the Giant of Eruman name:Moroz base:ainu color:s speed:120 hit-points:4000 hearing:30 armor-class:96 sleepiness:15 depth:60 rarity:6 weight:0 experience:6000 blow:HIT:COLD:9d10 blow:HIT:COLD:9d10 blow:HIT:HURT:10d9 blow:HIT:CONFUSE:10d9 flags:UNIQUE | MALE | SMART | ATTR_FLICKER flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | TAKE_ITEM | IM_COLD flags:FORCE_SLEEP spell-freq:3 innate-freq:25 spells:BOULDER spells:BO_ICE | STORM spells:S_MONSTERS desc:Known as the giant of winter and the northern reaches, desc: he is tall even among giants, and his name is cursed in many lands. #was name:Maia of Yavanna name:Ancient witch base:ainu color:g speed:120 hit-points:2000 light:2 hearing:30 armor-class:90 sleepiness:255 depth:60 rarity:4 weight:0 experience:3600 blow:HIT:HURT:4d6 blow:HIT:HURT:6d5 blow:HIT:HURT:4d6 blow:HIT:HURT:6d5 flags:FEMALE flags:DROP_3 flags:IM_ACID spell-freq:10 spells:BO_MANA | BO_WATE spells:S_AINU | S_ANIMAL spells:SHAPECHANGE shape:Young witch desc:Haggard ugly dirty old woman with a huge distorted hooked nose and a desc:jutting jaw that shows off her iron teeth. desc:She is skinny, like a skeleton, with a bony leg. desc:She knows how to turn from old into young in a blink of an eye. #Ancient witch sexy form name:Young witch base:ainu color:g speed:130 hit-points:1500 light:2 hearing:30 armor-class:90 sleepiness:255 depth:60 rarity:9 weight:0 experience:3600 blow:HYPNOTIZE:SEDUCE:4d5 blow:HIT:CONFUSE:4d6 blow:BITE:HALLU:5d6 blow:BITE:FORGET:6d5 flags:FEMALE flags:DROP_3 flags:IM_ACID spell-freq:3 spells:BO_MANA | BO_WATE spells:S_AINU | S_ANIMAL desc:Beautiful girl with blonde hair. She give you a wink.. #was name:Maia of Aule name:Djinn base:ainu color:U speed:120 hit-points:3500 hearing:30 armor-class:120 sleepiness:255 depth:60 rarity:4 weight:0 experience:3600 blow:HYPNOTIZE:SEDUCE:6d6 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:SHATTER:10d10 flags:MALE | PASS_WALL flags:DROP_3 flags:IM_ELEC spell-freq:5 innate-freq:50 spells:BOULDER spells:SHAPECHANGE shape:shardstorm shape:great earth elemental desc:Dweller of the elemental planes, he was summoned to do the bidding. desc:But something went wrong... and now it's FREE! desc:RUN! #v name:great earth elemental base:elemental color:u speed:120 hearing:10 armor-class:145 sleepiness:50 depth:60 rarity:9 weight:0 experience:2500 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:SHATTER:10d10 flags:COLD_BLOOD | POWERFUL flags:PASS_WALL | KILL_BODY | KILL_ITEM flags:HURT_ROCK | IM_ELEC spell-freq:6 innate-freq:67 spells:BOULDER | BR_SHAR | BA_SHAR desc:Appearing as a giant of stone, this mighty elemental seems to draw its desc: power from the very fabric of the dungeon. name:aether vortex plural:aether vortices base:vortex color:v speed:130 hit-points:420 hearing:100 armor-class:48 sleepiness:0 depth:60 rarity:4 weight:0 experience:5000 blow:ENGULF:ELEC:5d5 blow:ENGULF:FIRE:5d5 blow:ENGULF:ACID:5d5 blow:ENGULF:COLD:5d5 flags:RAND_25 flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_NEXUS | IM_NETHER flags:IM_PLASMA | NO_SLOW | NO_STUN | NO_CUT flags:ATTR_MULTI flags:IM_DISEN spell-freq:4 innate-freq:100 spells:BR_ACID | BR_CHAO | BR_COLD | BR_DARK | BR_ELEC spells:BR_FIRE | BR_GRAV | BR_INER | BR_LIGHT | BR_NETH | BR_NEXU spells:BR_PLAS | BR_POIS | BR_SHAR | BR_SOUN | BR_TIME | BR_WALL desc:An awesome vortex of pure magic, power radiates from its frame. name:Saruman of Many Colours base:ainu color:v speed:120 hit-points:5000 light:2 hearing:100 armor-class:120 sleepiness:0 depth:60 rarity:1 weight:0 experience:35000 blow:HIT:DISENCHANT:6d8 blow:HIT:DISENCHANT:6d8 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:UNIQUE | MALE | EVIL flags:DROP_4 | DROP_GOOD | DROP_GREAT flags:IM_ELEC flags:ATTR_MULTI drop:food:Pipe-weed:100:3:4 spell-freq:2 spells:BLIND | WOUND | FORGET | HASTE | HEAL | MIND_BLAST spells:SCARE | TELE_AWAY | TPORT | TRAPS spells:BA_ACID | BA_COLD | BA_FIRE | BA_WATE spells:BO_ICE spells:S_ANIMAL | S_DEMON | S_HI_DRAGON | S_MONSTERS | S_UNDEAD spells:ANIM_DEAD friends:100:1d1:Wormtongue, Agent of Saruman:servant desc:Originally known as the White, Saruman fell prey to Sauron's wiles. He desc: seeks to emulate him and breeds orcs and trolls to fight for him. He desc: searches forever for the One Ring, to become a mighty Sorcerer-King of the desc: world. name:grand swordsmaster base:person color:u speed:130 hit-points:2200 light:2 hearing:40 armor-class:120 sleepiness:5 depth:60 rarity:3 weight:170 experience:8000 blow:HIT:HURT:10d8 blow:HIT:HURT:10d8 blow:HIT:DISARM:10d8 blow:HIT:DISARM:10d8 flags:INVISIBLE | MALE | PWMANG_BASE flags:ONLY_ITEM | DROP_2 | DROP_CORPSE | DROP_SKELETON flags:OPEN_DOOR flags:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP desc:A warrior of considerable skill. Really considerable. name:bronze Thunderlord base:bird color:U speed:130 hit-points:3240 light:2 hearing:30 armor-class:100 sleepiness:50 depth:60 rarity:5 weight:3000 experience:15000 blow:HIT:HURT:10d9 blow:HIT:HURT:10d9 flags:MALE | SMART | DROP_SKELETON | DROP_CORPSE | PWMANG_BASE | SPIRIT flags:ONLY_ITEM | DROP_2 | DROP_GOOD flags:IM_FIRE | REGENERATE | OPEN_DOOR | BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD | ATTR_FLICKER spell-freq:4 innate-freq:50 spells:BR_FIRE | BR_TIME | TPORT | BLINK desc:A Thunderlord, mightiest among the males. name:leviathan base:aquatic color:o speed:120 hit-points:3000 hearing:40 armor-class:180 sleepiness:30 depth:60 rarity:3 weight:0 experience:25000 blow:BITE:FIRE:5d12 blow:BITE:FIRE:5d12 blow:CRUSH:HURT:6d15 blow:CRUSH:HURT:6d15 flags:PWMANG_BASE | WILD_OCEAN flags:FORCE_SLEEP flags:IM_FIRE | IM_ACID | IM_COLD | IM_POIS | NO_CONF | NO_SLEEP | NO_FEAR spell-freq:4 innate-freq:63 spells:BR_FIRE | BR_ACID | BR_DARK | BR_POIS | BR_WATE spells:HEAL | CONF | DARKNESS desc:An enormous, terrible sea-monster, the true master of the ocean. ### Dungeon level 61 ### name:nightwing base:wraith color:V speed:120 hit-points:1300 hearing:20 armor-class:144 sleepiness:10 depth:61 rarity:3 weight:0 experience:10000 blow:TOUCH:POISON:6d5 blow:TOUCH:POISON:6d5 blow:HIT:DISENCHANT:6d8 blow:HIT:DISENCHANT:6d8 flags:SMART | ATTR_FLICKER | LEVITATE flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP spell-freq:4 spells:BLIND | BRAIN_SMASH | WOUND | SCARE spells:BA_NETH spells:BO_MANA | BO_NETH spells:S_UNDEAD desc:Everywhere colours seem paler and the air chillier. At the centre of the desc: cold stands a mighty figure. Its wings envelop you in the chill of death desc: as the nightwing reaches out to draw you into oblivion. Your muscles sag desc: and your mind loses all will to fight as you stand in awe of this mighty desc: being. name:Uriel, Angel of Fire #base:angel base:ainu color:R speed:130 hit-points:5500 light:2 hearing:40 armor-class:192 sleepiness:10 depth:61 rarity:3 weight:0 experience:25000 blow:HIT:FIRE:4d12 blow:HIT:FIRE:4d12 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 flags:UNIQUE | MALE | SMART | ATTR_FLICKER flags:DROP_3 | DROP_GOOD flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_PLASMA flags:NO_STUN | RES_LIGHT spell-freq:2 innate-freq:15 spells:BLIND | TELE_TO spells:BA_FIRE spells:BO_FIRE | BO_MANA | BO_PLAS spells:BR_FIRE | BR_PLAS #spells:S_ANGEL spells:S_AINU desc:A creature of godly appearance, you dare not challenge Uriel's supremacy. desc:Those who stood against him before are but a memory, cremated by his desc:mastery of elemental fire. #was v name:Arien, Maia of the Sun name:Svarog, Spirit of the Sun base:ainu color:R speed:130 hit-points:5500 light:2 hearing:40 armor-class:192 sleepiness:10 depth:61 rarity:9 weight:0 experience:25000 blow:HIT:FIRE:4d12 blow:HIT:FIRE:4d12 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 flags:UNIQUE | MALE | SMART flags:DROP_3 | DROP_GOOD flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_PLASMA flags:NO_STUN spell-freq:2 spell-power:61 innate-freq:15 spells:BLIND | WHIP spells:BA_FIRE spells:BO_FIRE | BO_MANA | BO_PLAS spells:BR_FIRE | BR_PLAS friends:100:2d1:great fire elemental:servant desc:The one who sails the Sun across the sky has descended into Angband to desc: kill you. He wears no mortal shell; his body is made of fiery golden desc: light, painfully bright even when you close your eyes, and hot enough to desc: melt armor and flesh alike. name:great fire elemental base:elemental color:r speed:120 hit-points:3333 light:2 hearing:12 armor-class:110 sleepiness:50 depth:61 rarity:9 weight:0 experience:3500 blow:HIT:FIRE:6d9 blow:HIT:FIRE:6d9 blow:HIT:FIRE:6d9 blow:HIT:FIRE:6d9 flags:LEVITATE | POWERFUL flags:RAND_25 | BASH_DOOR | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_ELEC | IM_FIRE | HURT_COLD flags:FORCE_SLEEP flags:WILD_VOLCANO | WILD_DESERT spell-freq:5 innate-freq:33 spells:BA_FIRE | BO_PLAS spells:WHIP | BR_FIRE | BR_PLAS desc:It is a towering inferno of flames. desc:It can smelt stone. name:bile demon base:major demon color:R speed:120 hit-points:2464 hearing:40 armor-class:135 sleepiness:40 depth:61 rarity:2 weight:0 experience:12000 blow:HIT:HURT:8d8 blow:HIT:HURT:8d8 blow:CRUSH:ACID:9d9 flags:POWERFUL flags:DROP_3 flags:IM_ACID | IM_POIS spell-freq:6 innate-freq:50 spells:ARROW | BLIND | CONF spells:BR_ACID | BR_POIS spells:S_DEMON desc:It's big. It's fat. It's red. It's ugly. It's got a severe attack of desc: highly poisonous flatulence. And its insides are corrosive. All of which desc: go together to make the single most repulsive sight - and smell - you have desc: ever experienced. name:Ulik the Troll base:troll color:R speed:130 hit-points:3500 hearing:30 smell:20 armor-class:144 sleepiness:30 depth:61 rarity:4 weight:0 experience:18000 blow:HIT:SHATTER:20d12 blow:HIT:SHATTER:20d12 blow:BITE:POISON:6d14 flags:REGENERATE | UNIQUE | MALE | PWMANG_BASE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:KILL_WALL | KILL_BODY flags:IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD | IM_ELEC | IM_COLD | IM_FIRE flags:FORCE_SLEEP desc:Ulik is the strongest troll who has ever lived. He could challenge the desc: immortals and pound them to dust with his great strength. ### Dungeon level 62 ### name:mutant unbeliever base:person color:m speed:130 hit-points:3000 light:2 hearing:30 armor-class:125 sleepiness:5 depth:62 rarity:5 weight:180 experience:9000 blow:HIT:DISENCHANT:10d5 blow:KICK:HURT:20d2 blow:HIT:CONFUSE:10d5 blow:HIT:PARALYZE:10d5 flags:MALE | REGENERATE | ANTI_MAGIC flags:ONLY_ITEM | DROP_3 | DROP_CORPSE | DROP_SKELETON flags:OPEN_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:NO_CONF | NO_SLEEP flags:FORCE_SLEEP spell-freq:5 innate-freq:100 spells:BR_CHAO desc:Cursed freak unbeliever who disbelieve in magic, but know that its exists, desc: as he is felt it's influence on his abominated body. desc: Unbelievable, but actually occasionally he creates magical chaos desc: disturbance himself, even disbelieving in it. name:Azriel, Angel of Death #base:angel base:ainu color:w speed:130 hit-points:6000 hearing:40 armor-class:204 sleepiness:10 depth:62 rarity:3 weight:0 experience:30000 blow:HIT:EXP_80:10d5 blow:HIT:EXP_80:10d5 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 flags:UNIQUE | MALE | SMART flags:DROP_4 | DROP_GOOD flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_WATER flags:NO_STUN | IM_NETHER spell-freq:2 spell-power:62 spells:BLIND | TELE_TO spells:BLINK | BRAIN_SMASH | CONF | DRAIN_MANA spells:BA_NETH spells:ANIM_DEAD spells:S_AINU desc:Encrusted with barnacles, slimy and dripping, the Giant of the untamed desc: waters has dragged himself down into the dungeon to send you desc: to a watery grave. desc:He is the most powerful and heartless of servants of nature and embodies desc: the untamed power of the ocean. Terror grows in your heart with each desc: squelching step of his approach. #was name:Osse, Herald of Ulmo name:Triton base:ainu color:w speed:130 hit-points:6000 hearing:40 armor-class:204 sleepiness:10 depth:62 rarity:9 weight:0 experience:30000 blow:HIT:EXP_80:10d5 blow:HIT:EXP_80:10d5 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 flags:UNIQUE | MALE | SMART flags:DROP_4 | DROP_GOOD flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_WATER flags:NO_STUN | IM_NETHER spell-freq:2 spell-power:62 innate-freq:15 spells:BLIND | TELE_TO spells:BA_WATE spells:BO_MANA | BO_WATE spells:BR_WATE friends:100:2d1:great water elemental:servant desc:Encrusted with barnacles, slimy and dripping, the Giant of the untamed desc: waters has dragged himself down into the dungeon to send you desc: to a watery grave. desc:He is the most powerful and heartless of servants of nature and embodies desc: the untamed power of the ocean. Terror grows in your heart with each desc: squelching step of his approach. name:dreadlord base:ghost color:r speed:120 hit-points:2640 hearing:20 armor-class:180 sleepiness:10 depth:62 rarity:2 weight:0 experience:20000 blow:HIT:EXP_40:6d6 blow:HIT:EXP_40:6d6 blow:HIT:LOSE_STR:4d6 blow:HIT:LOSE_STR:4d6 flags:ATTR_FLICKER flags:DROP_4 | ONLY_ITEM flags:TAKE_ITEM flags:FORCE_SLEEP spell-freq:4 spells:BLIND | BLINK | BRAIN_SMASH | CONF | DRAIN_MANA | HOLD spells:TELE_TO | TPORT spells:BA_NETH spells:S_UNDEAD spells:ANIM_DEAD friends:50:2d3:dread:servant desc:It is a massive form of animated death, its colour deeper than black. It desc: drinks in light, and space around it is twisted and torn by the weight of desc: its evil. It is unlife and it knows nothing but the stealing of souls and desc: the stench of death. Flee its hunger! name:Smaug the Golden base:ancient dragon color:R speed:120 hit-points:4200 light:2 hearing:30 armor-class:195 sleepiness:120 depth:62 rarity:2 weight:0 experience:30000 blow:CLAW:HURT:6d12 blow:CLAW:HURT:6d12 blow:BITE:FIRE:7d14 blow:BITE:FIRE:7d14 flags:UNIQUE | MALE flags:DROP_1 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:BASH_DOOR flags:IM_FIRE spell-freq:4 innate-freq:33 spells:WOUND | CONF spells:BR_FIRE desc:Smaug is one of the Urul'ki that still survive, a fire-drake of immense desc: cunning and intelligence. His speed through air is matched by few other desc: dragons and his dragonfire is what legends are made of; he is believed to desc: be the greatest dragon still surviving into the Third Age. ### Dungeon level 63 ### #v name:werewolf of Sauron name:volkodlak base:canine color:G speed:120 hit-points:2200 hearing:30 smell:50 armor-class:88 sleepiness:5 depth:63 rarity:2 weight:60 experience:4000 blow:BITE:EXP_20:2d4 blow:CLAW:POISON:4d10 blow:CLAW:POISON:4d10 flags:FORCE_SLEEP | SMART | EVIL flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:IM_POIS | IM_COLD | IM_FIRE | IM_NETHER flags:NO_FEAR | NO_CONF | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON | HYBRID spell-freq:7 innate-freq:67 spells:BR_NETH | BR_DARK spells:S_HOUND friends:50:2d4:warg:servant friends:50:2d3:hellhound:servant friends:100:2d3:werewolf:servant desc:A massive wolf, appearing like a mighty shadow. Its glowing red eyes desc: glare malevolently. #v name:spider of Gorgoroth name:frogger base:spider color:P speed:120 hit-points:4000 light:-3 hearing:30 armor-class:180 sleepiness:20 depth:63 rarity:3 weight:0 experience:30000 blow:CLAW:POISON:6d6 blow:CLAW:POISON:6d6 blow:BITE:PARALYZE:5d10 blow:STING:LOSE_STR:5d4 flags:FEMALE | EVIL | ANIMAL | SMART | SPIRIT flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:HURT_LIGHT | IM_ACID | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_SKELETON spell-freq:5 innate-freq:30 spells:BLIND | WOUND | CONF | HEAL_KIN | SCARE spells:SLOW | WEAVE spells:BR_DARK | BR_POIS spells:S_KIN friends:100:2d4:spider desc:One of the hideous brood of chaos, spawned in the endless shadow of desc: spider's caverns of the Damnstruck mountains. name:great storm wyrm base:ancient dragon color:b speed:120 hit-points:3168 light:2 hearing:30 armor-class:180 sleepiness:30 depth:63 rarity:2 weight:19000 experience:20000 blow:CLAW:HURT:4d12 blow:CLAW:HURT:4d12 blow:BITE:HURT:6d14 blow:BITE:HURT:6d14 flags:ATTR_FLICKER flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_ELEC flags:DROP_CORPSE spell-freq:4 spell-power:63 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_ELEC spells:S_DRAGON color-cycle:fancy:storm desc:A vast dragon of power. Storms and lightning crash around its titanic form. desc: Deep blue scales reflect the flashes and highlight the creature's great desc: muscles. It regards you with contempt. name:great ice wyrm base:ancient dragon color:w speed:120 hit-points:3168 hearing:30 armor-class:180 sleepiness:30 depth:63 rarity:2 weight:19000 experience:20000 blow:CLAW:HURT:4d12 blow:CLAW:HURT:4d12 blow:BITE:HURT:6d14 blow:BITE:HURT:6d14 flags:ATTR_FLICKER flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD flags:DROP_CORPSE spell-freq:4 spell-power:63 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_COLD spells:S_DRAGON color-cycle:fancy:ice desc:An immense dragon capable of awesome destruction. You have never felt such desc: extreme cold, or witnessed such an icy stare. Begone quickly or feel its desc: wrath! name:great swamp wyrm base:ancient dragon color:g speed:120 hit-points:3168 hearing:30 armor-class:180 sleepiness:30 depth:63 rarity:2 weight:19000 experience:20000 blow:CLAW:HURT:4d12 blow:CLAW:HURT:4d12 blow:BITE:HURT:6d14 blow:BITE:HURT:6d14 flags:ATTR_FLICKER flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_POIS flags:DROP_CORPSE innate-freq:20 spell-freq:4 spell-power:63 spells:BLIND | CONF | SCARE spells:BR_POIS spells:S_DRAGON color-cycle:fancy:swamp desc:A truly enormous dragon with great powers. The foul gases issuing from the desc: beast nearly make you vomit; and while you may try to hold your breath as desc: you fight it, it sees no reason to do likewise. ### Dungeon level 64 ### name:Hoarmurath of Dir base:wraith color:p speed:120 hit-points:4500 hearing:90 smell:50 armor-class:120 sleepiness:10 depth:64 rarity:3 weight:0 experience:30000 blow:HIT:HURT:9d9 blow:HIT:BLACK_BREATH:9d9 blow:TOUCH:EXP_80:6d7 blow:WAIL:TERRIFY:6d7 flags:UNIQUE | MALE | SMART | LEVITATE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:FORCE_SLEEP | RES_LIGHT spell-freq:3 spell-power:64 spells:BLIND | WOUND | MISSILE | HOLD | MIND_BLAST | SCARE spells:BA_COLD | BA_NETH spells:BO_COLD spells:S_UNDEAD drop:ring:Black Ring of Power:100:1:1 desc:A Ringwraith powerful in fell sorcery, he yearns for the life he has lost desc: for an unlife of everlasting torment. name:Gabriel, the Messenger #base:angel base:ainu color:u speed:130 hit-points:7500 light:2 hearing:40 armor-class:216 sleepiness:10 depth:64 rarity:3 weight:0 experience:35000 blow:HIT:DISENCHANT:6d8 blow:HIT:FIRE:6d8 blow:HIT:BLIND:10d10 blow:HIT:BLIND:10d10 flags:UNIQUE | MALE | SMART flags:DROP_2 | DROP_GOOD | ONLY_ITEM | LEVITATE flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_LIGHT flags:NO_STUN spell-freq:2 spells:BLIND | TELE_TO spells:BO_MANA | BO_WATE | BO_FIRE | BO_ICE #spells:S_ANGEL spells:S_AINU friends:50:1d3:Angel friends:50:1d3:Archangel friends:50:1d3:Cherub friends:50:1d3:Seraph friends:50:1d3:Fallen angel friends:50:1d3:Archon desc:A stocky, smiling man in brown robes, holding in his right hand a desc: gnarled walking stick. Sent to Middle-Earth by Yavanna, Radagast desc: has studied the plants and animals of Middle-Earth for many years desc: and considers himself their defender. His humble robes and demeanor desc: belie his inner strength. name:Radagast the Brown base:ainu color:u speed:130 hit-points:8500 light:2 hearing:40 armor-class:216 sleepiness:10 depth:64 rarity:3 weight:0 experience:45000 blow:HIT:DISENCHANT:6d8 blow:HIT:FIRE:6d8 blow:HIT:BLIND:10d10 blow:HIT:BLIND:10d10 flags:UNIQUE | MALE | SMART flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM | PWMANG_FIXED flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | WANDERER flags:NO_STUN flags:FORCE_DEPTH drop:food:Handful of Dried Fruits:100:3:5 spell-freq:2 spells:BLIND | TELE_TO spells:BO_MANA | BO_WATE | BO_FIRE | BO_ICE spells:S_AINU | S_ANIMAL | S_SPIDER | S_HOUND #friends:60:2d3:Maia #friends:60:2d3:Wizard desc:A stocky, smiling man in brown robes, holding in his right hand a desc: gnarled walking stick. Sent to Middle-Earth by Yavanna, Radagast desc: has studied the plants and animals of Middle-Earth for many years desc: and considers himself their defender. His humble robes and demeanor desc: belie his inner strength. locations:Mirkwood name:chaos hound base:zephyr hound color:v speed:120 hit-points:930 hearing:30 smell:50 armor-class:120 sleepiness:0 depth:64 rarity:4 weight:90 experience:10000 blow:CLAW:HURT:2d12 blow:CLAW:HURT:2d12 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 flags:BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD flags:ATTR_MULTI | FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_CHAO friends:100:2d7:Same desc:A constantly changing canine form, this hound rushes towards you as if desc: expecting mayhem and chaos ahead. It appears to have an almost kamikaze desc: relish for combat. You suspect all may not be as it seems. name:archlich plural:archliches base:lich color:B speed:120 hit-points:3520 hearing:20 armor-class:180 sleepiness:40 depth:64 rarity:2 weight:0 experience:20000 blow:TOUCH:EXP_80 blow:TOUCH:DRAIN_CHARGES blow:TOUCH:LOSE_DEX:8d12 blow:TOUCH:LOSE_DEX:8d12 flags:DROP_4 | ONLY_ITEM flags:PASS_WALL spell-freq:3 spells:BLINK | WOUND | DRAIN_MANA | FORGET | HEAL | BRAIN_SMASH spells:HOLD | SCARE | TELE_TO | TPORT spells:BA_NETH spells:S_DEMON | S_HI_UNDEAD spells:ANIM_DEAD desc:A lich who has reached its ultimate evolutionary stage: a completely desc: immaterial state. ### Dungeon level 65 ### #was name:Maia of Ulmo name:Vodyanoy base:ainu color:b speed:120 hit-points:4700 hearing:30 armor-class:90 sleepiness:255 depth:65 rarity:4 weight:0 experience:5000 blow:TOUCH:TERRIFY:6d5 blow:TOUCH:PARALYZE:6d5 blow:ENGULF:ACID:6d10 blow:ENGULF:ACID:6d10 flags:MALE flags:DROP_4 flags:IM_ACID | IM_ELEC | IM_WATER spell-freq:3 innate-freq:50 spells:BA_WATE spells:BO_MANA | BO_WATE spells:S_AINU spells:SHAPECHANGE shape:great water elemental shape:water vortex shape:cold vortex desc:A servant of The Lord of Waters, who speaks to those who dwell in desc: Middle-earth with voices that are heard only as the music of water. #v name:great water elemental base:elemental color:b speed:120 hearing:12 armor-class:120 sleepiness:30 depth:65 rarity:9 weight:0 experience:3500 blow:ENGULF:TERRIFY:6d5 blow:ENGULF:PARALYZE:6d5 blow:ENGULF:ACID:6d10 blow:ENGULF:ACID:6d10 flags:COLD_BLOOD | POWERFUL | LEVITATE flags:BASH_DOOR | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_WATER | IM_COLD spell-freq:5 innate-freq:33 spells:BA_WATE | BO_WATE spells:BR_COLD desc:A mighty column of water, terrible as a mounting wave that strides to the desc: land. name:The Mouth of Sauron base:person color:v speed:130 hit-points:7000 hearing:60 armor-class:120 sleepiness:10 depth:65 rarity:3 weight:0 experience:47000 blow:HIT:DISENCHANT:6d8 blow:HIT:DISENCHANT:6d8 blow:HIT:DRAIN_CHARGES:5d5 blow:HIT:DRAIN_CHARGES:5d5 flags:UNIQUE | MALE | EVIL | INVISIBLE | SMART | PWMANG_FIXED flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:OPEN_DOOR flags:IM_COLD | IM_ELEC | IM_FIRE | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_DEPTH | FORCE_SLEEP drop:food:One Ring Cake:100:1:1 spell-freq:2 spells:WOUND | HOLD | TELE_TO | TRAPS spells:BA_DARK | BA_FIRE | BA_MANA | BA_NETH | BA_WATE spells:BO_PLAS spells:S_HI_DEMON | S_HI_UNDEAD spells:ANIM_DEAD desc:The Mouth of Sauron is a mighty spell caster. So old that even he cannot desc: remember his own name, his power and evil are undeniable. He believes desc: unshakably that he is unbeatable and laughs as he weaves his awesome desc: spells. locations:Mordor name:osyluth base:major demon color:W speed:130 hit-points:2288 hearing:20 armor-class:112 sleepiness:30 depth:65 rarity:2 weight:0 experience:13000 blow:HIT:LOSE_CHR:6d6 blow:HIT:LOSE_CHR:6d6 blow:BITE:POISON:8d8 blow:STING:LOSE_STR:5d5 flags:INVISIBLE | POWERFUL flags:DROP_3 flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS spell-freq:6 spells:SCARE spells:BA_COLD | BA_ELEC spells:BO_ICE spells:S_DEMON desc:It is a demon made almost entirely out of bones. It is humanoid, but with a desc: large tail similar to that of a giant scorpion, and emits a foul smell of desc: decay and rot. They are despised even in the hells. #v name:Feanorian raider name:One of Forty Thieves base:humanoid color:M speed:120 hit-points:1200 hearing:20 armor-class:110 sleepiness:30 depth:65 rarity:2 experience:11000 blow:HIT:HURT:7d12 blow:HIT:HURT:7d12 blow:HIT:HURT:7d12 blow:HIT:HURT:7d12 flags:MALE | FORCE_SLEEP flags:ONLY_ITEM | DROP_3 flags:MOVE_BODY flags:NO_FEAR | IM_ACID | IM_ELEC spell-freq:3 innate-freq:100 spells:BOLT desc:A veteran of the battles waged by Nightingale the Robber in pursuit of the desc: treasures, he attacks you with agility, power and cruelty. ### Dungeon level 66 ### name:eye druj base:skeleton color:r speed:130 hit-points:1080 hearing:20 armor-class:108 sleepiness:10 depth:66 rarity:2 weight:0 experience:18000 flags:SMART | ATTR_FLICKER | SPIRIT flags:NEVER_BLOW | NEVER_MOVE flags:IM_FIRE flags:FORCE_SLEEP spell-freq:1 spells:BRAIN_SMASH spells:BA_NETH spells:BO_MANA | BO_NETH spells:S_UNDEAD desc:A bloodshot eyeball floating in the air, you'd be forgiven for assuming it desc: harmless. name:greater titan base:giant color:o speed:120 hit-points:3344 hearing:30 armor-class:150 sleepiness:15 depth:66 rarity:3 weight:5000 experience:23500 blow:HIT:CONFUSE:12d12 blow:HIT:CONFUSE:12d12 blow:HIT:CONFUSE:12d12 blow:HIT:CONFUSE:12d12 flags:SMART | ATTR_FLICKER flags:DROP_4 | ONLY_ITEM flags:TAKE_ITEM flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON flags:SWIM_NORM spell-freq:3 innate-freq:25 spells:HEAL | TELE_TO | BOULDER spells:S_MONSTERS desc:A forty foot tall humanoid that shakes the ground as it walks. The power desc: radiating from its frame shakes your courage, its hatred inspired by your desc: defiance. name:The Cat Lord base:feline color:v speed:130 hit-points:4800 hearing:100 smell:30 armor-class:240 sleepiness:10 depth:66 rarity:3 weight:0 experience:30000 blow:CLAW:CONFUSE:12d12 blow:CLAW:LOSE_DEX:2d12 blow:CLAW:BLIND:10d5 blow:BITE:PARALYZE:15d1 flags:UNIQUE | MALE | INVISIBLE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | IM_FIRE | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:3 spells:TELE_TO spells:S_KIN friends:100:2d4:tiger:servant friends:100:2d4:sabre-tooth tiger:servant friends:100:2d4:displacer beast:servant desc:Master of all things feline, the Cat Lord moves with unsurpassed stealth. desc: He delights in small torments and cunning stratagems, and laughs merrily desc: as he bats you about. ### Dungeon level 67 ### name:Thuringwethil, the Vampire Messenger base:vampire color:v speed:130 hit-points:5000 hearing:20 smell:20 armor-class:174 sleepiness:10 depth:67 rarity:4 weight:0 experience:23000 blow:BITE:EXP_80:6d6 blow:BITE:EXP_80:6d6 blow:HIT:CONFUSE:6d6 blow:HIT:CONFUSE:6d6 flags:UNIQUE | FEMALE | SMART flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags-off:HURT_FIRE spell-freq:3 spells:BLIND | BRAIN_SMASH | WOUND | DRAIN_MANA spells:BA_NETH spells:S_HI_UNDEAD | S_KIN spells:HOLD | SCARE desc:Chief messenger between Sauron and Morgoth, she is surely the most deadly desc: of her vampire race. At first she is charming to meet, but her wings and desc: eyes give away her true form. name:great hell wyrm base:ancient dragon color:r speed:120 hit-points:3492 light:2 hearing:30 armor-class:180 sleepiness:30 depth:67 rarity:2 weight:19000 experience:22000 blow:CLAW:HURT:4d12 blow:CLAW:HURT:5d12 blow:BITE:HURT:6d14 blow:BITE:HURT:6d14 flags:ATTR_FLICKER flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE flags:DROP_CORPSE spell-freq:4 spell-power:67 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_FIRE spells:S_DRAGON color-cycle:fancy:hell desc:A vast dragon of immense power. Fire leaps continuously from its huge form. desc: The air around it scalds you. Its slightest glance burns you, and you desc: truly realize how insignificant you are. name:beholder hive-mother base:eye color:b speed:120 hit-points:3080 hearing:30 armor-class:96 sleepiness:10 depth:67 rarity:3 weight:260 experience:17000 blow:BITE:EXP_80:6d6 blow:GAZE:PARALYZE:5d5 blow:GAZE:FORGET:5d5 blow:GAZE:DRAIN_CHARGES:5d5 flags:FEMALE | EVIL | SMART | SPIRIT flags:BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:DROP_CORPSE spell-freq:2 spells:BLIND | BRAIN_SMASH | CONF | DRAIN_MANA | FORGET | SCARE spells:BA_ACID | BA_COLD | BA_DARK | BA_FIRE spells:BO_MANA | BO_NETH spells:S_KIN desc:A hive mother of the race of beholders, she can summon her brood to her aid desc: whenever she wishes. name:great bile wyrm base:ancient dragon color:s speed:120 hit-points:3492 hearing:30 armor-class:180 sleepiness:30 depth:67 rarity:2 weight:19000 experience:22000 blow:CLAW:HURT:4d12 blow:CLAW:HURT:5d12 blow:BITE:HURT:6d14 blow:BITE:HURT:6d14 flags:ATTR_FLICKER flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID flags:DROP_CORPSE spell-freq:4 spell-power:67 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_ACID spells:S_DRAGON color-cycle:fancy:bile desc:A huge and very powerful dragon. Great steaming pools of acid drip from its desc: form onto the ground. You shudder when you see the acid eating away the desc: very stones of the dungeon - what could it do to you? name:Great Wyrm of Thunder plural:Great Wyrms of Thunder base:ancient dragon color:y speed:120 hit-points:3492 hearing:30 armor-class:180 sleepiness:30 depth:67 rarity:2 weight:19000 experience:22000 blow:CLAW:HURT:4d12 blow:CLAW:HURT:5d12 blow:BITE:HURT:6d14 blow:BITE:HURT:6d14 flags:ATTR_FLICKER flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:DROP_CORPSE | NO_STUN spell-freq:4 spell-power:67 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_SOUN spells:S_DRAGON color-cycle:fancy:thunder desc:A dragon of gigantic proportions, with destructive abilities to match. The desc: sheer loudness of its roar leaves you stunned and unable to think clearly desc: enough to defend yourself adequately. name:Great Wyrm of Radiance plural:Great Wyrms of Radiance base:ancient dragon color:z speed:120 hit-points:3492 hearing:30 armor-class:180 sleepiness:30 depth:67 rarity:2 weight:19000 experience:22000 blow:CLAW:HURT:4d12 blow:CLAW:HURT:5d12 blow:BITE:HURT:6d14 blow:BITE:HURT:6d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | NO_SLOW spell-freq:4 spell-power:67 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_COLD | BR_INER spells:S_DRAGON desc:A dragon of great size and power. Its polished silver scales reflect the desc: light in blinding brightness, and you find it hard to keep your mind on desc: the job of fighting for your life. ### Dungeon level 68 ### name:jabberwock base:hybrid color:v speed:130 hit-points:2816 hearing:35 smell:20 armor-class:187 sleepiness:100 depth:68 rarity:3 weight:230 experience:19000 blow:CLAW:HURT:10d10 blow:CLAW:HURT:10d10 blow:BITE:HURT:10d10 blow:BITE:HURT:10d10 flags:ANIMAL | LEVITATE flags:DROP_40 | DROP_60 | ONLY_ITEM flags:BASH_DOOR flags:ATTR_MULTI | FORCE_SLEEP | NO_CONF flags:DROP_CORPSE flags:IM_LIGHT spell-freq:5 innate-freq:50 spells:WOUND spells:BR_CHAO desc:"Beware the Jabberwock, my son! The jaws that bite, the claws that catch!" desc: Run and run quickly, for death incarnate chases behind you! name:Tselakus, the Dreadlord base:ghost color:R speed:130 hit-points:6500 hearing:20 armor-class:180 sleepiness:10 depth:68 rarity:2 weight:0 experience:35000 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 blow:HIT:LOSE_STR:4d6 blow:HIT:LOSE_STR:4d6 flags:UNIQUE | MALE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:FORCE_SLEEP spell-freq:3 spells:BLIND | CONF | HOLD spells:BA_DARK | BA_NETH spells:S_HI_UNDEAD | S_KIN desc:This huge affront to existence twists and tears at the fabric of space. A desc: master of mighty magic, Tselakus hungers for your tender flesh. Darkness desc: itself recoils from the touch of Tselakus as he leaves a trail of death desc: and destruction. Tselakus is a being of sneering contempt, laughing at desc: your pitiful efforts to defy him. Mighty claws rend reality as he desc: annihilates all in his path to your soul! name:bone golem base:golem color:D speed:120 hit-points:3080 hearing:20 armor-class:255 sleepiness:20 depth:68 rarity:3 weight:0 experience:23000 blow:HIT:DISENCHANT:8d8 blow:HIT:DISENCHANT:8d8 blow:HIT:LOSE_STR:6d6 blow:HIT:LOSE_STR:6d6 flags:UNDEAD | COLD_BLOOD flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | IM_FIRE | IM_POIS | NO_STUN flags:FORCE_SLEEP flags:SWIM_BAD spell-freq:8 spells:BRAIN_SMASH | WOUND | DRAIN_MANA | TELE_TO spells:BA_NETH spells:S_UNDEAD desc:A skeletal form, black as night, constructed from the bones of its previous desc: victims. ### Dungeon level 69 ### #v name:hound of Tindalos plural:hounds of Tindalos base:zephyr hound color:t speed:130 hit-points:480 hearing:30 smell:50 armor-class:120 sleepiness:0 depth:69 rarity:5 weight:0 experience:7000 blow:CLAW:HURT:2d12 blow:CLAW:HURT:2d12 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 flags:INVISIBLE flags:PASS_WALL flags:NO_CONF | NO_SLEEP | NO_HOLD | IM_NETHER | IM_DISEN flags:FORCE_SLEEP spell-freq:5 innate-freq:100 spells:BR_NETH | BR_DISE | BR_TIME friends:100:2d7:Same desc:Bodies of death, receptacles of all foulness, they emerge like smoke from desc: the angles of time, ravenous and snarling and unsatisfied. #v was name:Nan, the Giant name:Nan, the Djinn base:giant color:o speed:120 hit-points:3344 hearing:30 armor-class:150 sleepiness:15 depth:69 rarity:3 weight:0 experience:23500 blow:HIT:HURT:12d12 blow:HIT:HURT:12d12 blow:HIT:CONFUSE:12d12 blow:HIT:CONFUSE:12d12 flags:UNIQUE | MALE | SMART | ATTR_FLICKER | LEVITATE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:TAKE_ITEM | IM_FIRE flags:FORCE_SLEEP spell-freq:4 innate-freq:25 spell-power:85 spells:BOULDER spells:BO_PLAS | BA_FIRE spells:S_MONSTERS desc:Known as the giant of summer and the south, he towers above you desc: like a great elm. In his right hand, he holds the longest desc: sword you have ever beheld. name:nightcrawler base:snake color:D speed:120 hit-points:2440 hearing:20 armor-class:192 sleepiness:10 depth:69 rarity:3 weight:0 experience:15000 blow:STING:LOSE_CON:8d8 blow:STING:LOSE_CON:8d8 blow:BITE:ACID:10d10 blow:BITE:ACID:10d10 flags:SMART | ATTR_FLICKER flags:DROP_2 | ONLY_ITEM flags:OPEN_DOOR flags:UNDEAD | EVIL | COLD_BLOOD | SPIRIT flags:HURT_LIGHT | NO_CONF | NO_SLEEP | NO_STUN | NO_HOLD flags:IM_FIRE | IM_COLD | IM_POIS | IM_NETHER flags:FORCE_SLEEP flags-off:HURT_COLD spell-freq:4 innate-freq:13 spells:BLIND | BRAIN_SMASH | SCARE spells:BA_NETH spells:BO_MANA | BO_NETH spells:BR_NETH spells:S_UNDEAD desc:This intensely evil creature bears the form of a gargantuan black worm. Its desc: gaping maw is a void of blackness, acid drips from its steely hide. It is desc: like nothing you have ever seen before, and a terrible chill runs down desc: your spine as you face it. name:Polyphemus, the Blind Cyclops base:giant color:g speed:130 hit-points:5300 hearing:40 armor-class:210 sleepiness:20 depth:69 rarity:3 weight:0 experience:29000 blow:HIT:HURT:11d10 blow:HIT:HURT:11d10 blow:HIT:SHATTER:11d10 flags:UNIQUE | MALE flags:DROP_3 | DROP_GOOD | ONLY_ITEM flags:RAND_25 | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_COLD | IM_FIRE | IM_WATER flags:FORCE_SLEEP spell-freq:5 innate-freq:20 spells:BA_ACID | BA_WATE spells:BO_ICE | BO_WATE spells:BOULDER desc:No ordinary cyclops, but the son of a sea-god: he wields the powers of desc: elemental water as well as the considerable strength of a cyclops. His one desc: eye was blinded long ago by the warrior Ulysses, but he has trained desc: himself to hear so well that it nearly makes up for his disability. name:gelugon base:major demon color:w speed:130 hit-points:3080 hearing:20 armor-class:150 sleepiness:30 depth:69 rarity:3 weight:0 experience:14000 blow:CLAW:COLD:6d8 blow:CLAW:COLD:6d8 blow:BITE:COLD:9d9 blow:HIT:PARALYZE:5d5 flags:POWERFUL | REGENERATE | LEVITATE flags:DROP_4 flags:IM_COLD | NO_CUT spell-freq:6 innate-freq:25 spells:HOLD | SCARE | SLOW spells:BA_COLD spells:BO_ICE spells:BR_COLD | BR_SHAR spells:S_HI_DEMON desc:This demon from the icy regions is a truly terrifying sight. It has an desc: extremely large, insect-like body towering a full twelve feet tall, with desc: great claws on its hands and pincers on its mouth, and its head bulges desc: with great multi-faceted eyes. Its tail is covered with razor-sharp desc: spikes. ########## DUNGEON LEVELS 70-79 ########## ### Dungeon level 70 ### name:mutated slime mold base:jelly color:s speed:90 hit-points:15000 hearing:12 armor-class:200 sleepiness:150 depth:70 rarity:8 weight:0 experience:10000 blow:TOUCH:ACID:10d10 blow:TOUCH:ACID:10d10 blow:TOUCH:ACID:10d10 blow:TOUCH:ACID:10d10 flags:COLD_BLOOD flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:NO_CONF | NO_SLEEP | NEVER_MOVE spell-freq:50 spells:SHAPECHANGE shape:ectoplasma desc:An enormous amoeboid substance colony which slowly quivering. desc: Its defencing mechanisms are quite amazing... name:ectoplasma base:jelly color:s speed:100 hit-points:10000 hearing:12 armor-class:200 sleepiness:1 depth:70 rarity:8 weight:0 experience:10000 blow:TOUCH:FIRE:10d10 blow:TOUCH:COLD:10d10 blow:TOUCH:ELEC:10d10 blow:TOUCH:ACID:10d10 flags:COLD_BLOOD flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:NO_CONF | NO_SLEEP | RAND_50 spell-freq:30 spells:MIND_BLAST | BRAIN_SMASH | DRAIN_MANA | ANIM_DEAD | DARKNESS | HEAL desc:Strange greenish liquid which floats in the air in one big blog, that desc: burl from inside. It's moving in chaotic manner and slowly drifting desc: somewhat randomly.. but eventually crawling a bit closer to you. desc: You do not know what to expect from it, but it won't be anything good for sure. name:ectoplasm base:jelly color:s speed:100 hit-points:10000 hearing:12 armor-class:200 sleepiness:1 depth:70 rarity:8 weight:0 experience:10000 blow:TOUCH:FIRE:10d10 blow:TOUCH:COLD:10d10 blow:TOUCH:ELEC:10d10 blow:TOUCH:ACID:10d10 flags:COLD_BLOOD | KILL_BODY | KILL_ITEM | flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:NO_CONF | NO_SLEEP | NEVER_MOVE spell-freq:25 spells:SHAPECHANGE shape:slimer desc:Strange greenish liquid which floats in the air in one big blog, that desc: burl from inside. It's moving in chaotic manner and slowly drifting desc: somewhat randomly.. but eventually crawling a bit closer to you. desc: You do not know what to expect from it, but it won't be anything good for sure. name:slimer base:jelly color:s speed:125 hit-points:1500 hearing:12 armor-class:100 sleepiness:1 depth:70 rarity:8 weight:0 experience:10000 blow:INSULT:HURT:1d20 blow:TOUCH:EAT_GOLD:5d10 blow:TOUCH:EAT_ITEM:5d10 blow:SWALLOW:EAT_FOOD:5d10 flags:COLD_BLOOD flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM | PASS_WALL flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:NO_CONF | NO_SLEEP spell-freq:25 desc:Incredibly foul-smelling potato-shape ghost with gigantic appetite, desc: he eats anything on it's way. When he passes through solid objects, desc: he leaves behind a nasty bright-green slime. name:ethereal mist base:mist color:s speed:110 hit-points:5000 hearing:12 armor-class:66 sleepiness:30 depth:70 rarity:9 weight:0 experience:10000 blow:ENGULF:POISON:10d10 blow:ENGULF:POISON:10d10 blow:ENGULF:POISON:10d10 blow:ENGULF:POISON:10d10 flags:COLD_BLOOD flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_NETHER flags:NO_CONF | NO_SLEEP | NEVER_MOVE spell-freq:10 innate-freq:33 spells:BR_TIME | SLOW | S_HI_UNDEAD desc:Slowly quivering at the one place, it makes you sleepy... #was old name:Glaurung, Father of the Dragons name:Zmei Gorynich base:ancient dragon color:v speed:130 hit-points:7500 light:2 hearing:30 armor-class:210 sleepiness:20 depth:70 rarity:3 weight:0 experience:50000 blow:CLAW:HURT:5d12 blow:CLAW:HURT:5d12 blow:BITE:POISON:8d14 blow:BITE:FIRE:8d14 flags:UNIQUE | MALE flags:DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:BASH_DOOR flags:IM_FIRE | IM_POIS flags:NO_STUN spell-freq:3 spell-power:70 innate-freq:20 spells:HEAL spells:BR_PLAS | BR_GRAV | BR_WALL desc:Gorynich is the ancient tree headed dragon.. desc:He's heads like to speak to each other, discussing desc:how better to cook you for a delicious feast.. desc:Gorynich got amazing healing powers. name:gold Thunderlord base:bird color:y speed:130 hit-points:4095 light:2 hearing:30 armor-class:100 sleepiness:50 depth:70 rarity:5 weight:3000 experience:20000 blow:HIT:HURT:10d9 blow:HIT:HURT:10d9 blow:HIT:HURT:10d9 blow:HIT:HURT:10d9 flags:FEMALE | SMART | DROP_SKELETON | DROP_CORPSE | PWMANG_BASE | SPIRIT flags:ONLY_ITEM | DROP_2 | DROP_GOOD flags:IM_FIRE | REGENERATE | OPEN_DOOR | BASH_DOOR flags:NO_CONF | NO_SLEEP | NO_HOLD | ATTR_FLICKER spell-freq:4 innate-freq:29 spells:BR_FIRE | BR_TIME | TPORT | BLINK | TELE_TO | TELE_AWAY | S_KIN desc:A Thunderlord, among the queens of their kind. ### Dungeon level 71 ### #v name:Maia of Manwe name:Efreet base:ainu color:B speed:130 hit-points:5000 light:2 hearing:30 armor-class:120 sleepiness:255 depth:71 rarity:4 weight:0 experience:7000 blow:HIT:ELEC:10d12 blow:HIT:ELEC:10d12 blow:HYPNOTIZE:SEDUCE:8d10 blow:ENGULF:CONFUSE:8d10 flags:MALE flags:DROP_4 flags:IM_ACID | IM_ELEC | IM_WATER spell-freq:3 spells:STORM | BA_ELEC spells:S_AINU spells:SHAPECHANGE shape:elemental shape:vortex desc:He was a servant of Gods util he breaks his freedom desc:to find his destiny in mortal world. #v name:Maia of Varda // female djinn name:Jinni base:ainu color:y speed:130 hit-points:5000 light:3 hearing:30 armor-class:110 sleepiness:255 depth:71 rarity:4 weight:0 experience:12000 blow:TOUCH:TERRIFY:6d5 blow:TOUCH:PARALYZE:6d5 blow:ENGULF:ACID:6d10 blow:ENGULF:ACID:6d10 flags:FEMALE flags:DROP_4 flags:IM_ACID | IM_ELEC spell-freq:3 spells:BA_LIGHT spells:BO_MANA spells:S_AINU spells:SHAPECHANGE shape:elemental shape:vortex desc:She was a servant of Gods util she breaks her freedom desc:to find her destiny in mortal world. name:greater demonic quylthulg base:quylthulg color:R speed:120 hit-points:1320 hearing:20 armor-class:1 sleepiness:0 depth:71 rarity:2 weight:0 experience:10500 flags:ATTR_FLICKER spell-freq:2 spells:BLINK | TELE_TO spells:S_HI_DEMON desc:A massive pulsating mound of flesh, glowing with a hellish light. name:greater draconic quylthulg base:quylthulg color:G speed:120 hit-points:1320 hearing:20 armor-class:1 sleepiness:0 depth:71 rarity:2 weight:0 experience:10500 flags:ATTR_FLICKER spell-freq:2 spells:BLINK | TELE_TO spells:S_HI_DRAGON desc:A massive mound of scaled flesh, throbbing and pulsating with multi-hued desc: light. name:great ethereal wyrm base:ancient dragon color:T speed:120 hit-points:3798 hearing:30 armor-class:180 sleepiness:30 depth:71 rarity:2 weight:0 experience:24000 blow:CLAW:HURT:5d12 blow:CLAW:HURT:5d12 blow:BITE:HURT:6d14 blow:BITE:HURT:6d14 flags:INVISIBLE | ATTR_FLICKER flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | PASS_WALL flags:IM_NETHER spell-freq:4 spell-power:71 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_NETH spells:S_DRAGON desc:A vast dragon of power with bright green scales. name:great crystal wyrm base:ancient dragon color:u speed:120 hit-points:3798 light:2 hearing:30 armor-class:180 sleepiness:30 depth:71 rarity:2 weight:19000 experience:24000 blow:CLAW:HURT:5d12 blow:CLAW:HURT:5d12 blow:BITE:HURT:6d14 blow:BITE:HURT:6d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR | NO_CUT spell-freq:4 spell-power:71 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_SHAR spells:S_DRAGON color-cycle:fancy:crystal desc:A vast dragon of power with crystalline brown scales. name:great shadow wyrm base:ancient dragon color:o speed:120 hit-points:3798 light:-2 hearing:30 armor-class:180 sleepiness:30 depth:71 rarity:2 weight:19000 experience:24000 blow:CLAW:HURT:5d12 blow:CLAW:HURT:5d12 blow:BITE:HURT:6d14 blow:BITE:HURT:6d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR spell-freq:4 spell-power:71 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_DARK | BR_LIGHT spells:S_DRAGON desc:A vast dragon of power with beautiful orange scales. name:Great Wyrm of the Deep plural:Great Wyrms of the Deep base:ancient dragon color:Z speed:120 hit-points:3798 hearing:30 armor-class:180 sleepiness:30 depth:71 rarity:2 weight:19000 experience:24000 blow:CLAW:HURT:5d12 blow:CLAW:HURT:5d12 blow:BITE:HURT:6d14 blow:BITE:HURT:6d14 flags:ATTR_FLICKER flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_WATER flags:DROP_CORPSE spell-freq:4 spell-power:71 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_WATE spells:S_DRAGON desc:A vast dragon of power with deep watery scales. name:greater rotting quylthulg base:quylthulg color:U speed:120 hit-points:1320 hearing:20 armor-class:1 sleepiness:0 depth:71 rarity:2 weight:0 experience:10500 flags:ATTR_FLICKER spell-freq:2 spells:BLINK | TELE_TO spells:S_HI_UNDEAD desc:A massive pile of rotting flesh. A disgusting stench fills the air as it desc: throbs and writhes. ### Dungeon level 72 ### name:Null, the Living Void glyph:. base:hybrid color:d speed:110 hit-points:2500 hearing:20 armor-class:100 sleepiness:30 depth:72 rarity:3 weight:0 experience:30000 blow:TOUCH:LOSE_ALL:6d16 blow:TOUCH:DRAIN_CHARGES:6d16 blow:TOUCH:EXP_80:6d16 flags:UNIQUE | NONLIVING | LEVITATE | PASS_WALL flags:EMPTY_MIND | INVISIBLE | SMART | REGENERATE flags:NO_FEAR | NO_CONF | NO_SLEEP flags:IM_POIS | IM_COLD | IM_ACID flags:IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:DROP_4 | DROP_GOOD | ONLY_ITEM spell-freq:5 innate-freq:15 spells:BR_NETH | DRAIN_MANA | SCARE | BRAIN_SMASH | S_UNDEAD spells:S_HI_UNDEAD | HEAL | ANIM_DEAD desc:A black hole in the fabric of reality. It simply is not there. name:Xakaze, Father of Abominations base:person color:p speed:120 hit-points:4500 hearing:90 smell:50 armor-class:120 sleepiness:10 depth:72 rarity:9 weight:0 experience:20000 blow:HIT:HURT:9d10 blow:HIT:HURT:9d10 blow:HIT:HURT:9d10 blow:HIT:HURT:9d10 flags:UNIQUE | MALE | SMART | LEVITATE flags:DROP_2 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:IM_ACID | IM_FIRE flags:FORCE_SLEEP spell-freq:5 innate-freq:15 spells:BLIND | WOUND | MISSILE | HOLD | SCARE | TELE_LEVEL spells:BR_CHAO spells:S_MONSTER desc:He was powerful sorceror, master of body manipulations. desc: Once human, he is now more like a tangle of human (and desc: non-human) body parts, always looking for one more arm, leg or head to add desc: to his body. He has bred new kinds of mutants, and never fight without desc: their help. name:Khamul, the Black Easterling base:wraith color:p speed:120 hit-points:5000 hearing:90 smell:50 armor-class:120 sleepiness:10 depth:72 rarity:3 weight:0 experience:40000 blow:HIT:HURT:9d10 blow:HIT:BLACK_BREATH:9d10 blow:TOUCH:EXP_40:7d7 blow:TOUCH:EXP_40:7d7 flags:UNIQUE | MALE | SMART | LEVITATE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:IM_ACID | IM_FIRE | RES_LIGHT flags:FORCE_SLEEP spell-freq:2 spell-power:72 spells:BLIND | WOUND | MISSILE | HOLD | SCARE | TELE_LEVEL spells:BA_COLD | BA_FIRE | BA_NETH spells:BO_MANA spells:S_HI_UNDEAD spells:ANIM_DEAD drop:ring:Black Ring of Power:100:1:1 desc:A warrior-king of the East. Khamul is a powerful opponent, his skill in desc: combat awesome and his form twisted by evil cunning. name:horned reaper base:major demon color:B speed:130 hit-points:3344 hearing:40 armor-class:180 sleepiness:20 depth:72 rarity:3 weight:0 experience:18000 blow:HIT:HURT:11d11 blow:HIT:HURT:11d11 blow:HIT:HURT:11d11 blow:HIT:HURT:11d11 flags:REGENERATE | LEVITATE flags:DROP_4 flags:KILL_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS spell-freq:5 spells:HASTE | SCARE | SLOW spells:S_HI_DEMON desc:A giant humanoid demon wielding a massive, heavy and sharp scythe. Feared desc: by foes and friends alike when it flies into one of its berserk rages, the desc: Horned Reaper will cut down anything in its path between it and you - even desc: the minions it has just summoned. #V name:Osse, Herald of Ulmo name:Poseidon base:ainu color:Z speed:130 hit-points:6000 hearing:40 armor-class:204 sleepiness:10 depth:72 rarity:3 weight:0 experience:30000 blow:HIT:DISENCHANT:10d5 blow:HIT:DISENCHANT:10d5 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 flags:UNIQUE | MALE flags:DROP_4 | DROP_GOOD flags:MOVE_BODY flags:IM_ACID | IM_ELEC | IM_WATER spell-freq:2 innate-freq:30 spells:BLIND | TELE_TO | WHIP spells:BA_WATE | STORM spells:BO_MANA | BO_WATE spells:BR_WATE | BR_DISE spells:S_AINU desc:Encrusted with barnacles, slimy and dripping, the spirit of the untamed desc: sea has dragged himself down into Angband to send you to a watery grave. desc: Poseidon is the most powerful and heartless of gods servants and embodies desc: the untamed power of the ocean. Terror grows in your heart with each desc: squelching step of his approach. name:Trone, the Rebel Thunderlord base:bird color:D speed:130 hit-points:8000 light:2 hearing:20 armor-class:120 sleepiness:80 depth:72 rarity:2 weight:0 experience:50000 blow:HIT:HURT:12d10 blow:HIT:HURT:12d10 blow:CRUSH:HURT:10d10 blow:CRUSH:HURT:10d10 flags:SMART | UNIQUE | MALE | EVIL | PWMANG_BASE | ATTR_FLICKER flags:REGENERATE | PWMANG_FIXED | SPIRIT flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | IM_COLD | IM_POIS flags:NO_CONF | NO_SLEEP | NO_HOLD | NO_FEAR flags:FORCE_DEPTH drop:food:Cold chicken:100:2:2 spell-freq:4 innate-freq:33 spells:TELE_TO | SCARE | BR_TIME | BR_FIRE spells:BO_MANA | S_KIN desc:As the Thunderlords came from afar to help the elves, Trone and his rebel desc: wing came to defend Morgoth! He is an evil and powerful Thunderlord. locations:The Sacred Land Of Mountains name:mandragora base:mushroom color:V speed:110 hit-points:420 light:1 hearing:60 armor-class:132 sleepiness:10 depth:72 rarity:8 weight:0 experience:5000 blow:SPORE:CONFUSE blow:SPORE:HALLU blow:SPORE:LOSE_CON blow:SPORE:PARALYZE flags:EVIL | PWMANG_BASE flags:NEVER_MOVE flags:IM_COLD | IM_POIS | IM_FIRE | IM_NETHER flags-off:HURT_FIRE spell-freq:8 innate-freq:100 spells:SHRIEK desc:A poisonous plant like a branched carrot, but it has a face similar to man desc: and it screams a deadly scream when one tries to pull it out. ### Dungeon level 73 ### name:nightwalker base:wraith color:v speed:130 hit-points:1400 hearing:20 armor-class:170 sleepiness:10 depth:73 rarity:3 weight:0 experience:20000 blow:HIT:DISENCHANT:10d10 blow:HIT:DISENCHANT:10d10 blow:HIT:DISENCHANT:8d8 blow:HIT:DISENCHANT:8d8 flags:SMART | ATTR_FLICKER flags:DROP_4 | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_ELEC | IM_FIRE flags:FORCE_SLEEP spell-freq:4 spells:BLIND | BRAIN_SMASH | SCARE spells:BA_NETH spells:BO_MANA | BO_NETH spells:S_UNDEAD desc:A huge giant garbed in black, more massive than a titan and stronger than a desc: dragon. With terrible blows, it breaks your armour from your back, leaving desc: you defenseless against its evil wrath. It can smell your fear, and you in desc: turn smell the awful stench of death as this ghastly figure strides desc: towards you menacingly. name:Omarax, the Eye Tyrant base:eye color:v speed:130 hit-points:6500 hearing:30 armor-class:96 sleepiness:10 depth:73 rarity:3 weight:0 experience:25000 blow:GAZE:DISENCHANT:6d6 blow:GAZE:DRAIN_CHARGES:6d6 blow:GAZE:FORGET:6d6 blow:BITE:EXP_80:8d8 flags:UNIQUE | MALE | EVIL | SMART flags:BASH_DOOR flags:IM_ACID | IM_COLD | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP drop:fortune cookie:Fortune Cookie:90:1:1 spell-freq:2 spells:BLIND | BRAIN_SMASH | CONF | DRAIN_MANA | FORGET | SCARE spells:BA_ACID | BA_COLD | BA_DARK | BA_FIRE | BA_NETH spells:BO_MANA spells:S_KIN desc:A beholder of great size and age, floating in the air. His gaze seems to desc: shred your soul and his spells crush your will. He is ancient, his history desc: steeped in forgotten evils, his atrocities numerous and sickening. ### Dungeon level 74 ### name:Fangorn, Oldest of the Ents base:tree color:U speed:130 hit-points:8000 hearing:40 armor-class:200 sleepiness:20 depth:74 rarity:4 weight:5000 experience:30000 blow:CRUSH:HURT:9d9 blow:CRUSH:HURT:9d9 blow:HIT:SHATTER:9d9 blow:HIT:SHATTER:9d9 flags:UNIQUE | MALE | WANDERER flags:DROP_GOOD | ONLY_ITEM flags:WEIRD_MIND flags:IM_ACID | IM_COLD | IM_ELEC | IM_POIS | IM_DISEN | IM_NETHER flags:IM_NEXUS | NO_CONF | NO_SLEEP | NO_HOLD | NO_SLOW | NO_STUN drop:food:Draught of the Ents:60:1:1 spell-freq:3 innate-freq:50 spells:S_KIN spells:BOULDER desc:Fourteen foot high, very sturdy, with a tall head, and hardly any neck. desc: Clad in green and grey bark. The arms, at a short distance from the desc: trunk, were not wrinkled, but covered with a brown smooth skin. desc: The large feet had seven toes each. The lower part of the long face desc: covered with a sweeping grey beard, bushy, almost twiggy at the roots, desc: thin and mossy at the ends. desc: His deep eyes are brown, shot with a green light. #v name:skull druj base:skeleton color:o speed:130 hit-points:1540 hearing:20 armor-class:144 sleepiness:10 depth:74 rarity:2 weight:0 experience:23000 flags:SMART | ATTR_FLICKER | SPIRIT flags:NEVER_BLOW | NEVER_MOVE flags:IM_FIRE flags:FORCE_SLEEP spell-freq:1 spells:BRAIN_SMASH | WOUND | TRAPS spells:BA_WATE spells:BO_NETH | BO_PLAS spells:S_UNDEAD desc:A glowing skull possessed by sorcerous power. It need not move, but merely desc: blast you with mighty magic as it speaks the words of power. name:black reaver base:lich color:D speed:120 hit-points:3960 hearing:20 armor-class:255 sleepiness:40 depth:74 rarity:3 weight:0 experience:23000 blow:HIT:DISENCHANT:6d8 blow:HIT:DISENCHANT:6d8 blow:HIT:LOSE_STR:4d6 blow:HIT:LOSE_STR:4d6 flags:ATTR_FLICKER flags:DROP_2 | ONLY_ITEM flags:KILL_WALL spell-freq:3 spells:BLIND | WOUND | CONF | DRAIN_MANA | BRAIN_SMASH spells:HOLD | TELE_TO spells:BA_MANA | BA_NETH spells:S_UNDEAD desc:A humanoid form, black as night, advancing steadily and unstoppably, even desc: the very rock of the dungeon cannot prevent it reaching you. name:aether hound base:zephyr hound color:v speed:130 hit-points:1230 hearing:30 smell:50 armor-class:120 sleepiness:0 depth:74 rarity:5 weight:100 experience:10000 blow:CLAW:HURT:3d12 blow:CLAW:HURT:3d12 blow:BITE:HURT:3d12 blow:BITE:HURT:3d12 flags:BASH_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_DISEN | IM_NETHER flags:IM_NEXUS | IM_PLASMA | NO_CONF | NO_SLEEP | NO_HOLD | NO_SLOW | NO_STUN flags:ATTR_MULTI | FORCE_SLEEP | NO_CUT | LEVITATE flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 innate-freq:100 spells:BR_ACID | BR_CHAO | BR_COLD | BR_DARK | BR_DISE spells:BR_ELEC | BR_FIRE | BR_GRAV | BR_INER | BR_LIGHT | BR_NETH spells:BR_NEXU | BR_PLAS | BR_POIS | BR_SHAR | BR_SOUN | BR_TIME spells:BR_WALL friends:100:2d7:Same desc:A shifting, swirling form. It seems to be all colours and sizes and shapes, desc: though the dominant form is that of a huge dog. You feel very uncertain desc: all of a sudden. ### Dungeon level 75 ### name:Likho base:hybrid color:P speed:120 hit-points:4444 light:2 hearing:20 armor-class:168 sleepiness:100 depth:75 rarity:7 weight:9000 experience:20000 blow:TOUCH:PARALYZE:10d5 blow:TOUCH:BLIND:10d5 blow:TOUCH:CONFUSE:10d5 blow:TOUCH:EXP_10:10d5 flags:SMART | REGENERATE flags:DROP_4 flags:KILL_BODY flags:IM_FIRE | IM_POIS | IM_ACID | NO_CONF | NO_SLEEP | NO_HOLD flags-off:HURT_COLD spell-freq:3 spells:TELE_TO spells:S_HI_DRAGON | S_HI_UNDEAD spells:S_HYDRA | S_MONSTERS desc:Strange black mass-like creature with turquoise bubble on it (is it eyes?).. desc: It seems it's sleeping. At least this awful sound seems to be snoring desc: and walls tremble because of it. desc: Maybe it's good idea to do not wake trouble while it's still.. name:Great Wyrm of Chaos plural:Great Wyrms of Chaos base:ancient dragon color:v speed:120 hit-points:4122 hearing:30 armor-class:180 sleepiness:30 depth:75 rarity:2 weight:19000 experience:26000 blow:CLAW:HURT:5d12 blow:CLAW:HURT:5d12 blow:BITE:HURT:6d14 blow:BITE:HURT:7d14 flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | IM_DISEN flags:ATTR_MULTI flags:DROP_CORPSE spell-freq:4 spell-power:75 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_CHAO | BR_DISE spells:S_DRAGON desc:A massive dragon of changing form. As you watch, it appears first fair and desc: then foul. Its body is twisted by chaotic forces as it strives to stay desc: real. Its very existence distorts the universe around it. name:Great Wyrm of Law plural:Great Wyrms of Law base:ancient dragon color:B speed:120 hit-points:4122 hearing:30 armor-class:180 sleepiness:30 depth:75 rarity:2 weight:19000 experience:26000 blow:CLAW:HURT:5d12 blow:CLAW:HURT:5d12 blow:BITE:HURT:6d14 blow:BITE:HURT:7d14 flags:ATTR_FLICKER flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | NO_STUN | NO_CUT flags:DROP_CORPSE spell-freq:4 spell-power:75 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_SHAR | BR_SOUN spells:S_DRAGON color-cycle:fancy:law desc:A massive dragon of powerful intellect. It seeks to dominate the universe desc: and despises all other life. It sees all who do not obey it as mere desc: insects to be crushed underfoot. name:Ungoliant, the Unlight base:spider color:D speed:130 hit-points:13000 light:-4 hearing:40 armor-class:240 sleepiness:10 depth:75 rarity:1 weight:0 experience:35000 blow:DEVOUR:EAT_LIGHT:8d6 blow:CLAW:POISON:8d6 blow:BITE:PARALYZE:8d10 blow:STING:LOSE_STR:8d4 flags:UNIQUE | FEMALE | EVIL | ANIMAL | SMART | SPIRIT flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:HURT_LIGHT | IM_ACID | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:3 innate-freq:33 spells:BLIND | CONF | HEAL | SCARE | WEAVE spells:BA_DARK spells:BR_DARK | BR_POIS spells:S_KIN desc:This enormous, hideous spirit of void is in the form of a spider of immense desc: proportions. She is surrounded by a cloud of Unlight as she sucks in all desc: living light into her bloated body, and breathes out the blackest of desc: darkness. She is always ravenously hungry and would even eat herself to desc: avoid starvation. name:bronze golem base:golem color:o speed:120 hit-points:3520 light:2 hearing:20 armor-class:255 sleepiness:20 depth:75 rarity:3 weight:0 experience:26000 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 flags:DEMON | COLD_BLOOD flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_FIRE | IM_POIS | RES_LIGHT flags:FORCE_SLEEP flags:NO_STUN flags:SWIM_BAD spell-freq:8 innate-freq:17 spells:TELE_TO spells:BA_ELEC | BA_FIRE spells:BO_PLAS spells:BR_FIRE spells:S_DEMON desc:A gigantic four-armed animated bronze statue of demonic shape, glowing with desc: great heat. #v name:Glaurung, Father of the Dragons base:ancient dragon color:v speed:130 hit-points:7500 light:2 hearing:30 armor-class:210 sleepiness:20 depth:75 rarity:3 weight:0 experience:53000 blow:CLAW:HURT:6d12 blow:CLAW:HURT:6d12 blow:BITE:POISON:8d14 blow:BITE:FIRE:8d14 flags:UNIQUE | MALE | PWMANG_FIXED flags:DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:BASH_DOOR flags:IM_FIRE | IM_POIS flags:NO_STUN flags:FORCE_DEPTH drop:food:Cram Bread:100:1:2 spell-freq:3 innate-freq:33 spells:BLIND | CONF | SCARE spells:BR_FIRE | BR_POIS spells:S_HI_DRAGON desc:Glaurung is the father of all dragons, and was for a long time the most desc: powerful. Though this is no longer so, he still has full command over his desc: brood and can command them to appear whenever he so wishes. He is the desc: definition of dragonfire. locations:Erebor name:The Necromancer of Dol Guldur base:person color:v speed:130 hit-points:8200 hearing:60 armor-class:120 sleepiness:10 depth:75 rarity:3 weight:0 experience:57000 blow:HIT:DISENCHANT:6d8 blow:HIT:DRAIN_CHARGES:6d8 blow:HIT:BLIND:6d8 blow:HIT:CONFUSE:6d8 flags:EVIL | INVISIBLE | UNIQUE | MALE | POWERFUL | SMART | PWMANG_BASE flags:DROP_1 | DROP_GOOD | DROP_GREAT | ONLY_ITEM | PWMANG_FIXED flags:OPEN_DOOR flags:IM_FIRE | IM_COLD | IM_ELEC | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_DEPTH | FORCE_SLEEP drop:food:Swig of Orcish Liquor:100:6:8 spell-freq:2 spells:WOUND | DRAIN_MANA | HOLD | TELE_TO | TRAPS spells:BA_DARK | BA_FIRE | BA_MANA | BA_NETH | BA_WATE spells:BO_PLAS spells:ANIM_DEAD spells:S_HI_UNDEAD desc:The dark master of the terrible fortress of southern Mirkwood. It is desc: rumoured that this is in fact none other than Sauron in disguise: although desc: if this is so, he has yet to reveal his full power - and perhaps will not desc: do so while his deception lasts, in the hope of keeping it going. locations:Dol Guldur ### Dungeon level 76 ### name:master quylthulg base:quylthulg color:B speed:120 hit-points:2640 hearing:30 armor-class:1 sleepiness:0 depth:76 rarity:2 weight:0 experience:15000 flags:ATTR_FLICKER spell-freq:1 spells:BLINK | TELE_TO spells:S_ANIMAL | S_HI_DEMON | S_HI_DRAGON | S_HI_UNDEAD | S_MONSTERS desc:A giant seething mass of flesh, overwhelming you with monster after desc: monster. #v name:Makar, the Warrior / djinn name:Khattabych, the Djinn base:ainu color:R speed:120 hit-points:7777 hearing:30 armor-class:192 sleepiness:15 depth:76 rarity:7 weight:0 experience:37000 blow:HIT:SHATTER:13d13 blow:HIT:CONFUSE:13d13 blow:HIT:SHATTER:13d13 blow:HIT:CONFUSE:13d13 flags:UNIQUE | MALE flags:DROP_4 | DROP_GOOD flags:IM_ACID | IM_ELEC spell-freq:4 innate-freq:33 spells:BLINK | BOULDER | TELE_TO desc:A battle-hungry spirit from amongst the djins, who built a grim hall in desc: the early days of Arda to host endless battles. When not at home, he desc: and his sister Gyulchatai hunt and seek out the turmoils caused by Enemy. #oldies, but goldies name:Atlas, the Titan base:giant color:s speed:120 hit-points:6000 hearing:30 armor-class:192 sleepiness:15 depth:76 rarity:3 weight:0 experience:37000 blow:HIT:SHATTER:13d13 blow:HIT:CONFUSE:13d13 blow:HIT:SHATTER:13d13 blow:HIT:CONFUSE:13d13 flags:UNIQUE | MALE | SMART flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | KILL_WALL | KILL_BODY | TAKE_ITEM flags:HURT_ROCK | IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:FORCE_SLEEP flags:NO_STUN flags:SWIM_NORM spell-freq:5 spell-power:76 innate-freq:100 spells:BOULDER desc:The strongest of all the Titans. Legend has it that he used to hold the sky desc: on his shoulders; and the mountain range that now does so is named after desc: him. ### Dungeon level 77 ### name:The Unicorn of Order base:quadruped color:v speed:130 hit-points:5777 hearing:20 smell:20 armor-class:120 sleepiness:40 depth:77 rarity:9 weight:0 experience:7777 blow:KICK:HURT:7d11 blow:BITE:EXP_80:7d11 blow:TOUCH:LOSE_ALL:7d11 blow:TOUCH:DRAIN_CHARGES:7d11 flags:UNIQUE | SMART | WANDERER flags:REGENERATE | ANIMAL flags:NO_CONF | NO_SLEEP | NO_FEAR flags:IM_FIRE | IM_COLD | IM_ELEC | IM_ACID | IM_POIS flags:NO_STUN | IM_PLASMA | IM_DISEN | RES_LIGHT drop-base:rod:50:1:2 spell-freq:4 innate-freq:15 spells:DRAIN_MANA | HEAL | WOUND | TELE_AWAY | BR_LIGHT | BR_MANA spells:S_AINU desc:There is always a certain disbalance in the world. When it come to the desc: crucial point - Universe give a birth to The Unicorn of Order, which goal desc: is to remove disbalancing factor... you. name:Feagwath, the Undead Sorcerer base:lich color:v speed:130 hit-points:5000 hearing:20 armor-class:127 sleepiness:10 depth:77 rarity:2 weight:0 experience:65000 blow:TOUCH:EXP_80:6d12 blow:TOUCH:DRAIN_CHARGES:6d12 blow:TOUCH:LOSE_DEX:6d12 blow:TOUCH:LOSE_DEX:6d12 flags:UNIQUE | MALE | PWMANG_FIXED flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:FORCE_DEPTH drop:mushroom:Terror:100:6:8 spell-freq:2 spells:BLIND | BLINK | WOUND | HOLD | SCARE | BRAIN_SMASH spells:TELE_TO | TRAPS spells:BA_MANA | BA_NETH spells:BO_MANA spells:S_KIN | S_MONSTERS | S_UNDEAD spells:ANIM_DEAD friends:100:2d4:dread:servant friends:40:1d2:dreadmaster:servant friends:10:1d2:dreadlord:servant friends:100:1d4:lich:servant friends:40:1d2:master lich:servant friends:10:1d2:archlich:servant desc:A stench of corruption and decay surrounds this sorcerer, who has clearly desc: risen from the dead to continue his foul plots and schemes. locations:The Paths of the Dead name:pit fiend base:major demon color:o speed:130 hit-points:3520 hearing:30 armor-class:180 sleepiness:20 depth:77 rarity:3 weight:0 experience:22000 blow:CLAW:FIRE:6d10 blow:CLAW:FIRE:6d10 blow:BITE:POISON:5d10 blow:BITE:LOSE_CON:5d10 flags:POWERFUL | REGENERATE | LEVITATE flags:DROP_4 flags:MOVE_BODY flags:IM_FIRE | IM_POIS spell-freq:5 innate-freq:38 spells:WOUND | SCARE spells:BA_FIRE spells:BR_CHAO | BR_FIRE | BR_POIS spells:S_HI_DEMON | S_HI_DRAGON desc:Appearing as a giant, clawed and winged humanoid with a scaly red body and desc: massive fangs dripping a foul green liquid, the pit fiend is a dreadful desc: enemy from the lowest depths of the hells. They are often the commanders desc: of vast demon armies. ### Dungeon level 78 ### #v name:serpent of chaos plural:serpents of chaos base:snake color:y speed:130 hit-points:900 hearing:5 armor-class:145 sleepiness:30 depth:78 rarity:3 weight:100 experience:17000 blow:CRUSH:HURT:15d10 blow:CRUSH:CONFUSE:15d10 flags:ATTR_MULTI | RAND_25 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL spell-freq:6 innate-freq:33 spells:BLINK | TELE_TO spells:BR_CHAO desc:Writhing coil upon coil, this mighty spawn of chaos constantly desc: disintegrates and reforms before your dazzled eyes. It seeks to desc: obliterate you utterly; beware! name:greater hellhound base:canine color:r speed:120 hit-points:1440 light:2 hearing:25 smell:50 armor-class:80 sleepiness:30 depth:78 rarity:2 weight:60 experience:600 blow:BITE:FIRE:5d12 blow:BITE:FIRE:5d12 blow:BITE:FIRE:5d12 flags:EVIL flags:RAND_25 | BASH_DOOR | MOVE_BODY flags:IM_FIRE | GROUP_AI flags:FORCE_SLEEP flags:DROP_CORPSE spell-freq:5 innate-freq:100 spells:BR_FIRE friends:100:2d5:Same desc:It is a giant dog that glows with heat. Flames pour from its nostrils. ### Dungeon level 79 ### name:Qlzqqlzuup, the Emperor Quylthulg base:quylthulg color:v speed:130 hit-points:5000 hearing:30 armor-class:1 sleepiness:0 depth:79 rarity:3 weight:0 experience:20000 flags:UNIQUE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:ATTR_MULTI spell-freq:1 spells:S_AINU | S_ANIMAL | S_HI_DEMON | S_HI_DRAGON | S_HI_UNDEAD | S_HOUND spells:S_HYDRA | S_KIN | S_MONSTERS | S_SPIDER | S_UNIQUE desc:A gigantic seething mass of flesh, Qlzqqlzuup changes colours in front of desc: your eyes. Pulsating first one colour then the next, it knows only it must desc: bring help to protect itself. name:Great Wyrm of Balance plural:Great Wyrms of Balance base:ancient dragon color:P speed:120 hit-points:4428 hearing:30 armor-class:180 sleepiness:30 depth:79 rarity:2 weight:19000 experience:28000 blow:CLAW:HURT:5d12 blow:CLAW:HURT:5d12 blow:BITE:HURT:7d14 blow:BITE:HURT:7d14 flags:ATTR_FLICKER flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | IM_FIRE | IM_DISEN | NO_STUN | NO_CUT flags:DROP_CORPSE spell-freq:4 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_CHAO | BR_DISE | BR_SHAR | BR_SOUN spells:S_DRAGON color-cycle:fancy:balance desc:A massive dragon, one of the mightiest of dragonkind. It is thousands of desc: years old and seeks to maintain the Cosmic Balance. It sees you as an desc: upstart troublemaker without the wisdom to control your actions. It will desc: destroy you. name:Great Wyrm of Many Colours plural:Great Wyrms of Many Colours base:ancient dragon color:v speed:120 hit-points:4428 hearing:30 armor-class:180 sleepiness:30 depth:79 rarity:2 weight:19000 experience:28000 blow:CLAW:HURT:5d12 blow:CLAW:HURT:5d12 blow:BITE:HURT:7d14 blow:BITE:HURT:7d14 flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS flags:ATTR_MULTI flags:DROP_CORPSE spell-freq:4 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_ACID | BR_COLD | BR_ELEC | BR_FIRE | BR_POIS spells:S_DRAGON desc:A gigantic dragon whose scales shimmer in myriad hues. #old greater Balrog name:Diablo base:major demon color:P speed:130 #4400 hit-points:2500 light:2 hearing:40 armor-class:180 sleepiness:20 depth:79 #3 rarity:5 weight:0 experience:25000 blow:HIT:FIRE:8d12 blow:HIT:FIRE:8d12 blow:CRUSH:HURT:7d12 blow:TOUCH:DRAIN_CHARGES flags:POWERFUL | ATTR_FLICKER | LEVITATE flags:DROP_4 flags:MOVE_BODY flags:IM_ELEC | IM_FIRE | IM_POIS | IM_PLASMA flags:IM_NETHER | SMART spell-freq:3 innate-freq:20 spells:CONF | SCARE | TELE_TO spells:BA_FIRE spells:BO_PLAS spells:BR_FIRE | BR_PLAS spells:S_DEMON | S_HI_DEMON desc:Demon from the bottom of hell. The Lord of Terror. ########## DUNGEON LEVELS 80-89 ########## ### Dungeon level 80 ### #v name:fury plural:furies base:major demon color:t speed:130 hit-points:4000 hearing:30 armor-class:120 sleepiness:20 depth:80 rarity:2 weight:0 experience:23000 blow:CLAW:HURT:6d8 blow:CLAW:HURT:6d8 blow:BITE:CONFUSE:5d10 blow:ENGULF:HALLU:4d10 flags:FEMALE flags:DROP_4 | PASS_WALL flags:IM_FIRE | IM_POIS | IM_COLD spell-freq:4 spells:WOUND | SCARE | BRAIN_SMASH spells:BLINK | TELE_SELF_TO spells:S_HI_DEMON desc:A female embodiment of rage, intent on tearing your mind and body apart. #v name:Wiruin, the Maelstrom base:vortex color:z speed:140 hit-points:3500 hearing:50 armor-class:10 sleepiness:10 depth:80 rarity:2 weight:0 experience:18000 blow:ENGULF:COLD:3d6 blow:ENGULF:CONFUSE:3d6 blow:ENGULF:HURT:3d6 flags:UNIQUE | NEVER_MOVE flags:IM_COLD | IM_FIRE | IM_ACID flags-off:RAND_50 | BASH_DOOR | CLEAR_WEB drop-base:chest:10:1:1 spell-freq:5 innate-freq:67 spells:BR_COLD | BR_SOUN spells:S_KIN desc:A violent icy whirlpool, brought from the frozen wastes of the Helcaraxe desc: by Morgoth as guard and entertainment. Smaller vortices arise on its desc: edges, and you feel as if you will never be free of its deafening roar. name:The Witch-King of Angmar base:wraith color:p speed:130 hit-points:6000 hearing:90 smell:50 armor-class:144 sleepiness:10 depth:80 rarity:3 weight:0 experience:60000 blow:HIT:HURT:10d10 blow:HIT:BLACK_BREATH:10d10 blow:HIT:EXP_80:7d7 blow:HIT:EXP_80:7d7 flags:UNIQUE | MALE | SMART | LEVITATE flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:FORCE_SLEEP | RES_LIGHT spell-freq:2 spell-power:80 spells:BLIND | BRAIN_SMASH | WOUND | HOLD | SCARE | TELE_AWAY spells:BA_NETH spells:BO_MANA spells:S_HI_DEMON | S_HI_DRAGON | S_HI_UNDEAD | S_KIN | S_MONSTERS | S_WRAITH spells:ANIM_DEAD drop:ring:Black Ring of Power:100:1:1 friends:50:1d1:winged horror desc:The Chief of the Ringwraiths. A fell being of devastating power. His spells desc: are lethal and his combat blows crushingly hard. He moves at speed, and desc: commands legions of evil to do his bidding. It is said that he is fated desc: never to die by the hand of mortal man. ### Dungeon level 81 ### name:oprichnik base:person color:D speed:130 hit-points:4500 hearing:30 armor-class:140 sleepiness:10 depth:81 rarity:9 weight:0 experience:25000 blow:HIT:HURT:13d5 blow:HIT:HURT:13d5 blow:HIT:EXP_80:13d5 blow:HIT:EXP_80:13d5 flags:COLD_BLOOD | EVIL | SMART flags:ONLY_ITEM | DROP_2 flags:OPEN_DOOR flags:IM_NEXUS | IM_PLASMA | IM_NETHER | IM_FIRE | IM_COLD | IM_POIS flags:FORCE_SLEEP | IM_ACID spell-freq:5 innate-freq:10 spells:BLIND | WOUND | SCARE | WHIP spells:BA_FIRE | BO_NETH spells:BO_PLAS spells:S_MONSTERS | S_DEMON desc:Silent warriors from the depths of hell. desc: They will curse your soul into oblivion. ### Dungeon level 82 ### name:Pazuzu, Lord of Air base:major demon color:Z speed:140 hit-points:5500 hearing:40 armor-class:150 sleepiness:10 depth:82 rarity:2 weight:0 experience:30000 blow:HIT:ELEC:12d12 blow:HIT:ELEC:12d12 blow:HIT:ELEC:12d12 blow:HIT:ELEC:12d12 flags:UNIQUE | MALE | INVISIBLE | LEVITATE flags:DROP_4 | DROP_GOOD flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS spell-freq:3 spells:MIND_BLAST spells:BA_ELEC spells:BO_ELEC | BO_MANA spells:S_HI_DEMON friends:100:2d3:giant roc:servant desc:A winged humanoid demon from the Planes of Hell, Pazuzu grins inhumanely at desc: you as he decides your fate. name:Ithaqua the Windwalker base:yeti color:B speed:140 hit-points:5500 hearing:40 smell:20 armor-class:150 sleepiness:10 depth:82 rarity:2 weight:0 experience:32500 blow:CLAW:COLD:12d12 blow:CLAW:COLD:12d12 blow:CRUSH:ELEC:12d12 blow:CRUSH:ELEC:12d12 flags:EVIL | INVISIBLE | UNIQUE | PWMANG_BASE | LEVITATE flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:IM_ACID | IM_FIRE | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP spell-freq:3 innate-freq:9 spells:WOUND | MIND_BLAST | SCARE spells:BA_ELEC | BA_WATE spells:BO_ELEC | BO_MANA spells:BR_COLD spells:S_DEMON | S_HI_UNDEAD | S_KIN friends-base:100:1d5:yeti friends-base:75:1d5:yeti friends-base:50:1d5:yeti desc:The Wendigo, moving so fast that you can see little except two glowing eyes desc: burning with hatred. ### Dungeon level 83 ### name:Draugluin, Sire of All Werewolves base:canine color:m speed:130 hit-points:7000 hearing:80 smell:50 armor-class:135 sleepiness:10 depth:83 rarity:2 weight:0 experience:40000 blow:CLAW:HURT:6d8 blow:CLAW:HURT:6d8 blow:BITE:POISON:6d6 blow:BITE:POISON:6d6 flags:UNIQUE | MALE | EVIL flags:DROP_1 | DROP_GOOD | ONLY_ITEM flags:RAND_25 | OPEN_DOOR | BASH_DOOR | MOVE_BODY | TAKE_ITEM flags:IM_POIS flags:FORCE_SLEEP spell-freq:3 spells:SCARE spells:S_HOUND | S_MONSTERS friends:100:3d5:werewolf:servant friends:100:2d4:wolf chieftain:servant desc:Draugluin provides Sauron with a fearsome personal guard. He is an enormous desc: wolf inhabited with a human spirit. He is chief of all his kind. ### Dungeon level 84 ### name:Great Wyrm of Power plural:Great Wyrms of Power base:ancient dragon color:I speed:120 hit-points:5200 light:2 hearing:30 armor-class:180 sleepiness:30 depth:84 rarity:2 weight:19000 experience:34000 blow:CLAW:HURT:6d12 blow:CLAW:HURT:7d12 blow:BITE:HURT:7d14 blow:BITE:HURT:7d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:NO_STUN | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER | NO_CUT flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW spell-freq:4 innate-freq:20 spells:BLIND | CONF | SCARE spells:BR_ACID | BR_ELEC | BR_FIRE | BR_COLD | BR_POIS | BR_NETH | BR_LIGHT spells:BR_SOUN | BR_CHAO | BR_DISE | BR_NEXU | BR_TIME | BR_INER | BR_GRAV spells:BR_SHAR | BR_PLAS | BR_WALL | BR_MANA | BR_WATE | BR_DARK spells:S_DRAGON desc:One of the mightiest of the dragon kind, a Great Wyrm of Power is seldom desc: encountered in our world. It can crush stars with its might. name:Cantoras, the Skeletal Lord base:skeleton color:W speed:140 hit-points:7500 hearing:20 armor-class:180 sleepiness:40 depth:84 rarity:2 weight:0 experience:45000 blow:GAZE:EXP_80:5d5 blow:GAZE:EXP_80:5d5 blow:TOUCH:POISON:5d5 blow:TOUCH:POISON:5d5 flags:UNIQUE | MALE | SMART | SPIRIT | ATTR_FLICKER flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE flags:FORCE_SLEEP spell-freq:2 spells:BRAIN_SMASH | WOUND | SCARE | TELE_TO spells:BA_NETH | BA_WATE spells:BO_ICE | BO_MANA spells:S_HI_UNDEAD spells:ANIM_DEAD desc:A legion of evil undead druj animating the skeleton of a once mighty desc: sorcerer. His power is devastating and his speed unmatched in the desc: underworld. Flee his wrath! ### Dungeon level 85 ### name:kolobok base:eye color:o speed:130 hit-points:1666 hearing:2 armor-class:166 sleepiness:10 depth:85 rarity:6 weight:0 experience:10000 blow:GAZE:HURT:10d10 blow:SWALLOW:EAT_FOOD:10d10 blow:SWALLOW:FAMINE:10d10 blow:BITE:POISON:10d10 flags:NEVER_MOVE flags:IM_ELEC | IM_FIRE | IM_POIS | IM_PLASMA flags:HURT_LIGHT | NO_FEAR flags:DROP_CORPSE drop:food:Hard Biscuit:100:1:1 spell-freq:3 spells:BLINK | TPORT | TELE_AWAY | TELE_TO spells:BRAIN_SMASH | MIND_BLAST | S_MONSTERS desc:Deliccciouusss... #v name:greater Balrog base:major demon color:P speed:130 hit-points:4500 light:2 hearing:40 armor-class:210 sleepiness:20 depth:85 rarity:3 weight:0 experience:25000 blow:HIT:FIRE:8d12 blow:HIT:FIRE:8d12 blow:CRUSH:HURT:9d12 blow:TOUCH:DRAIN_CHARGES flags:POWERFUL | ATTR_FLICKER | LEVITATE flags:DROP_4 flags:MOVE_BODY | KILL_WALL flags:IM_ELEC | IM_FIRE | IM_POIS | IM_PLASMA flags:IM_NETHER spell-freq:4 innate-freq:33 spells:CONF | BA_FIRE | BO_PLAS | BA_DARK spells:WHIP | BR_FIRE | BR_PLAS spells:S_HI_DEMON | S_UNDEAD desc:Originally of the semi-divine Maiar, this evil spirit swore allegiance to desc: Morgoth at the beginning of time and is now one of his most terrible desc: demonic servants. With its flaming whip and sword it seeks to destroy you. name:Ancalagon the Black base:ancient dragon color:D speed:130 hit-points:10000 hearing:40 armor-class:255 sleepiness:20 depth:85 rarity:3 weight:0 experience:45000 blow:CLAW:HURT:8d12 blow:CLAW:HURT:8d12 blow:BITE:HURT:10d14 blow:BITE:HURT:10d14 flags:UNIQUE | MALE flags:DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:BASH_DOOR flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS spell-freq:3 innate-freq:71 spells:BR_ACID | BR_COLD | BR_ELEC | BR_FIRE | BR_POIS spells:S_HI_DRAGON | S_KIN friends:100:1d1:Kavlax the Many-Headed friends:100:1d1:Scatha the Worm friends:100:1d1:Itangast the Fire Drake friends:100:1d1:Smaug the Golden friends:100:1d1:Glaurung, Father of the Dragons desc:"Rushing Jaws" is his name, and death is his game; the greatest and most desc: terrible of all dragonkind, his power dismayed even the Valar for a time. name:Tiamat, Celestial Dragon of Evil base:ancient dragon color:D speed:130 hit-points:11500 hearing:20 armor-class:180 sleepiness:20 depth:85 rarity:4 weight:0 experience:45000 blow:CLAW:HURT:6d14 blow:CLAW:HURT:8d14 blow:CLAW:HURT:8d14 blow:BITE:HURT:10d16 flags:UNIQUE | FEMALE | PWMANG_BASE flags:DROP_GOOD | ONLY_ITEM | DROP_GREAT flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS flags:ATTR_FLICKER spell-freq:2 innate-freq:56 spells:BLIND | CONF | SCARE spells:BR_ACID | BR_COLD | BR_ELEC | BR_FIRE | BR_POIS spells:S_HI_DRAGON friends-base:100:1d5:ancient dragon:servant friends-base:75:1d5:ancient dragon:servant friends-base:50:1d5:ancient dragon:servant desc:Usually found guarding the first plane of Hell, Tiamat is a formidable desc: opponent, her five heads breathing death to all who stand against her. ### Dungeon level 86 ### name:The Tarrasque base:reptile color:v speed:130 hit-points:8500 hearing:50 smell:20 armor-class:222 sleepiness:20 depth:86 rarity:2 weight:0 experience:35000 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 blow:TOUCH:DRAIN_CHARGES blow:TOUCH:DRAIN_CHARGES flags:UNIQUE | POWERFUL flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:IM_COLD | IM_FIRE | IM_DISEN | NO_CONF | NO_SLEEP | NO_HOLD flags:ATTR_MULTI | FORCE_SLEEP flags-off:HURT_COLD spell-freq:2 innate-freq:100 spells:BR_COLD | BR_DISE | BR_FIRE desc:The Tarrasque is a massive reptile of legend, rumoured to be unkillable and desc: immune to magic. Fear its anger, for its devastation is unmatched! ### Dungeon level 87 ### name:Kronos, Lord of the Titans base:giant color:v speed:120 hit-points:7000 hearing:30 armor-class:180 sleepiness:15 depth:87 rarity:3 weight:0 experience:42000 blow:HIT:CONFUSE:12d12 blow:HIT:CONFUSE:12d12 blow:HIT:CONFUSE:12d12 blow:HIT:CONFUSE:12d12 flags:UNIQUE | MALE | SMART flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:MOVE_BODY | TAKE_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_STUN | NO_CUT flags:FORCE_SLEEP flags:SWIM_NORM spell-freq:3 spell-power:87 innate-freq:35 spells:HEAL | TELE_TO | BOULDER spells:BR_COLD | BR_FIRE | BR_SHAR | BR_SOUN spells:S_KIN | S_MONSTERS friends:50:1d4:cloud giant friends:50:1d4:storm giant friends:50:1d3:lesser titan friends:50:1d2:greater titan friends:100:1d1:Polyphemus, the Blind Cyclops friends:100:1d1:Atlas, the Titan desc:The lord of the Titans, he has broken loose from his confinement in the desc: nether hells to seek revenge on the world. #v name:Measse, the Bloody / djinn-like name:Gyulchatai, the Jinni base:ainu color:r speed:120 hit-points:7000 hearing:30 armor-class:180 sleepiness:15 depth:87 rarity:3 weight:0 experience:42000 blow:HIT:CONFUSE:12d12 blow:HIT:CONFUSE:12d12 blow:HIT:CONFUSE:12d12 blow:HIT:CONFUSE:12d12 flags:UNIQUE | FEMALE flags:DROP_4 | DROP_GOOD flags:MOVE_BODY flags:IM_ACID | IM_ELEC | NO_CUT spell-freq:5 innate-freq:29 innate-freq:30 spells:HEAL | HEAL_KIN spells:BOULDER spells:BA_SHAR | BR_SOUN spells:S_KIN | S_MONSTERS friends:50:1d4:Doppleganger:servant friends:50:1d4:Djinn:servant friends:50:1d3:lesser titan:servant friends:50:1d2:greater titan:servant friends:100:1d1:Khattabych, the Djinn desc:Sister of Khattabych, the Djinn, she would shout encouragement to the desc: warriors of their hall and heal their wounds so they could battle on, desc: until her arms were reddened to the elbow. She is delighted by desc: all violence, and recruits any beings of like abilities to her service. name:Maeglin, the Traitor of Gondolin base:humanoid color:p speed:130 hit-points:7000 hearing:70 armor-class:165 sleepiness:20 depth:87 rarity:2 weight:0 experience:40000 blow:HIT:HURT:9d9 blow:HIT:HURT:9d9 blow:HIT:HURT:9d9 blow:HIT:HURT:9d9 flags:UNIQUE | MALE | EVIL flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:KILL_WALL | MOVE_BODY flags:IM_COLD | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP flags:FORCE_DEPTH | PWMANG_FIXED drop:food:Elvish water:100:6:9 spell-freq:5 spells:S_ANIMAL | S_HI_DEMON | S_HI_DRAGON | S_HI_UNDEAD | S_MONSTERS | S_UNIQUE desc:The son of Eol the Dark Elf, Maeglin is every bit as evil as his father and desc: more. His greed for gold led him to betray the Hidden Kingdom of Gondolin desc: to Morgoth's forces. He is a mighty warrior himself, and some of Morgoth's desc: greatest servants answer to his call. locations:Fallen Gondolin name:ancient storm wyrm base:ancient dragon color:b speed:130 hit-points:5280 light:2 hearing:30 armor-class:225 sleepiness:20 depth:87 rarity:5 weight:22000 experience:38000 blow:CLAW:HURT:7d12 blow:CRUSH:HURT:7d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:9d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_ELEC spell-freq:3 spell-power:87 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_ELEC spells:S_DRAGON | S_HI_DRAGON color-cycle:fancy:storm desc:An ancient dragon of power. Storms and lightning crash around its titanic desc: form. Deep blue scales reflect the flashes and highlight the creature's desc: great muscles. It regards you with contempt. name:ancient ice wyrm base:ancient dragon color:w speed:130 hit-points:5280 hearing:30 armor-class:225 sleepiness:20 depth:87 rarity:5 weight:22000 experience:38000 blow:CLAW:HURT:7d12 blow:CRUSH:HURT:7d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:9d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD spell-freq:3 spell-power:87 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_COLD spells:S_DRAGON | S_HI_DRAGON color-cycle:fancy:ice desc:An ancient dragon capable of awesome destruction. You have never felt such desc: extreme cold, or witnessed such an icy stare. Begone quickly or feel its desc: wrath! name:ancient swamp wyrm base:ancient dragon color:g speed:130 hit-points:5280 hearing:30 armor-class:225 sleepiness:20 depth:87 rarity:5 weight:22000 experience:38000 blow:CLAW:HURT:7d12 blow:CRUSH:HURT:7d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:9d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_POIS spell-freq:3 spell-power:87 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_POIS spells:S_DRAGON | S_HI_DRAGON color-cycle:fancy:swamp desc:A truly enormous ancient dragon with great powers. The foul gases issuing desc: from the beast nearly make you vomit; and while you may try to hold your desc: breath as you fight it, it sees no reason to do likewise. ### Dungeon level 88 ### name:Lungorthin, the Balrog of White Fire base:major demon color:v speed:130 hit-points:7000 light:2 hearing:20 armor-class:187 sleepiness:10 depth:88 rarity:2 weight:0 experience:37000 blow:HIT:FIRE:8d12 blow:HIT:FIRE:8d12 blow:CRUSH:HURT:8d12 blow:TOUCH:DRAIN_CHARGES flags:UNIQUE | MALE | POWERFUL | LEVITATE flags:DROP_4 | DROP_GOOD flags:MOVE_BODY | KILL_WALL flags:IM_FIRE | IM_PLASMA spell-freq:4 innate-freq:29 spells:BLIND | CONF | SCARE spells:BR_FIRE | BR_PLAS spells:S_HI_DEMON | S_UNDEAD friends:100:1d3:lesser Balrog:servant friends:50:1d2:greater Balrog:servant desc:A massive form cloaked in flame. Lungorthin stares balefully at you with desc: eyes that smoulder red. The dungeon floor where he stands is scorched by desc: the heat of his body. name:sky drake base:ancient dragon color:Y speed:140 hit-points:5280 light:2 hearing:40 armor-class:240 sleepiness:20 depth:88 rarity:3 weight:22000 experience:40000 blow:CLAW:HURT:6d12 blow:CLAW:HURT:6d12 blow:BITE:ELEC:8d14 blow:BITE:ELEC:8d14 flags:PWMANG_BASE flags:ONLY_ITEM | DROP_CORPSE flags:BASH_DOOR flags:IM_COLD | IM_ELEC | NO_STUN spell-freq:4 spell-power:88 innate-freq:43 spells:BLIND | SCARE spells:BR_ELEC | BR_GRAV | BR_LIGHT spells:S_DRAGON | S_HI_DRAGON desc:The mightiest elemental dragon of air, it can destroy you with ease. ### Dungeon level 89 ### name:ancient hell wyrm base:ancient dragon color:r speed:130 hit-points:5820 light:2 hearing:30 armor-class:225 sleepiness:20 depth:89 rarity:5 weight:22000 experience:40000 blow:CLAW:HURT:7d12 blow:CRUSH:HURT:8d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:9d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE spell-freq:3 spell-power:89 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_FIRE spells:S_DRAGON | S_HI_DRAGON color-cycle:fancy:hell desc:An ancient dragon of immense power. Fire leaps continuously from its huge desc: form. The air around it scalds you. Its slightest glance burns you, and desc: you truly realize how insignificant you are. name:ancient bile wyrm base:ancient dragon color:s speed:130 hit-points:5820 hearing:30 armor-class:225 sleepiness:20 depth:89 rarity:5 weight:22000 experience:40000 blow:CLAW:HURT:7d12 blow:CRUSH:HURT:8d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:9d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID spell-freq:3 spell-power:89 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_ACID spells:S_DRAGON | S_HI_DRAGON color-cycle:fancy:bile desc:A huge and very powerful ancient dragon. Great steaming pools of acid drip desc: from its form onto the ground. You shudder when you see the acid eating desc: away the very stones of the dungeon - what could it do to you? name:Ancient Wyrm of Thunder plural:Ancient Wyrms of Thunder base:ancient dragon color:y speed:130 hit-points:5820 hearing:30 armor-class:225 sleepiness:20 depth:89 rarity:5 weight:22000 experience:40000 blow:CLAW:HURT:7d12 blow:CRUSH:HURT:8d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:9d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:NO_STUN spell-freq:3 spell-power:89 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_SOUN spells:S_DRAGON | S_HI_DRAGON color-cycle:fancy:thunder desc:An ancient dragon of gigantic proportions, with destructive abilities to desc: match. The sheer loudness of its roar leaves you stunned and unable to desc: think clearly enough to defend yourself adequately. name:Ancient Wyrm of Radiance plural:Ancient Wyrms of Radiance base:ancient dragon color:z speed:130 hit-points:5820 hearing:30 armor-class:225 sleepiness:20 depth:89 rarity:5 weight:22000 experience:40000 blow:CLAW:HURT:7d12 blow:CRUSH:HURT:8d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:9d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | NO_SLOW spell-freq:3 spell-power:89 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_COLD | BR_INER spells:S_DRAGON | S_HI_DRAGON desc:An ancient dragon of great size and power. Its polished silver scales desc: reflect the light in blinding brightness, and you find it hard to keep desc: your mind on the job of fighting for your life. ########## DUNGEON LEVELS 90-100 ########## ### Dungeon level 90 ### name:Huan, Wolfhound of the Valar base:canine color:W speed:130 hit-points:8000 hearing:50 smell:50 armor-class:192 sleepiness:10 depth:90 rarity:1 weight:0 experience:40000 blow:CLAW:COLD:9d12 blow:CLAW:COLD:9d12 blow:BITE:COLD:9d12 blow:BITE:COLD:9d12 flags:UNIQUE | MALE | SMART | ATTR_FLICKER flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | KILL_BODY flags:IM_ACID | IM_COLD | IM_ELEC | NO_FEAR | NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_SLEEP | NO_STUN | NO_CUT spell-freq:5 innate-freq:100 spells:BR_COLD | BR_LIGHT | BR_SHAR | BR_SOUN desc:The wolfhound of the Valar, Huan has served many masters in his time, from desc: Celegorm son of Feanor to Beren son of Barahir: but now he runs wild and desc: acknowledges no master save himself, as he hunts alone for his nemesis - desc: Carcharoth, the terrible wolf of Angband. name:Carcharoth, the Jaws of Thirst base:canine color:p speed:130 hit-points:8000 light:2 hearing:50 smell:50 armor-class:192 sleepiness:10 depth:90 rarity:1 weight:0 experience:40000 blow:CLAW:FIRE:9d12 blow:CLAW:FIRE:9d12 blow:BITE:FIRE:9d12 blow:BITE:FIRE:9d12 flags:UNIQUE | MALE | EVIL | SMART | ATTR_FLICKER flags:DROP_4 | DROP_GOOD | ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD | IM_NETHER flags:FORCE_SLEEP spell-freq:3 innate-freq:80 spells:BR_DARK | BR_FIRE | BR_NETH | BR_POIS spells:S_HOUND desc:The first guard of Angband, Carcharoth, also known as 'The Red Maw', is the desc: greatest wolf to ever walk the earth. He is highly intelligent and a desc: deadly opponent in combat. ### Dungeon level 91 ### name:ancient ethereal wyrm base:ancient dragon color:T speed:130 hit-points:6330 hearing:30 armor-class:225 sleepiness:20 depth:91 rarity:5 weight:0 experience:42000 blow:CLAW:HURT:8d12 blow:CRUSH:HURT:8d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:9d14 flags:INVISIBLE | ATTR_FLICKER flags:ONLY_ITEM flags:OPEN_DOOR | BASH_DOOR | PASS_WALL flags:IM_NETHER spell-freq:3 spell-power:91 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_NETH spells:S_DRAGON | S_HI_DRAGON desc:An ancient dragon of power with bright green scales. name:ancient crystal wyrm base:ancient dragon color:u speed:130 hit-points:6330 light:2 hearing:30 armor-class:225 sleepiness:20 depth:91 rarity:5 weight:22000 experience:42000 blow:CLAW:HURT:8d12 blow:CRUSH:HURT:8d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:9d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR | NO_CUT spell-freq:3 spell-power:91 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_SHAR spells:S_DRAGON | S_HI_DRAGON color-cycle:fancy:crystal desc:An ancient dragon of power with crystalline brown scales. name:ancient shadow wyrm base:ancient dragon color:o speed:130 hit-points:6330 light:-2 hearing:30 armor-class:225 sleepiness:20 depth:91 rarity:5 weight:22000 experience:42000 blow:CLAW:HURT:8d12 blow:CRUSH:HURT:8d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:9d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR spell-freq:3 spell-power:91 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_DARK | BR_LIGHT spells:S_DRAGON | S_HI_DRAGON desc:An ancient dragon of power with beautiful orange scales. name:Ancient Wyrm of the Deep plural:Ancient Wyrms of the Deep base:ancient dragon color:Z speed:130 hit-points:6330 hearing:30 armor-class:225 sleepiness:20 depth:91 rarity:5 weight:22000 experience:42000 blow:CLAW:HURT:8d12 blow:CRUSH:HURT:8d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:9d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_WATER spell-freq:3 spell-power:91 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_WATE spells:S_DRAGON | S_HI_DRAGON desc:An ancient dragon of power with deep watery scales. ### Dungeon level 92 ### name:Vecna, the Emperor Lich base:lich color:p speed:130 hit-points:6000 hearing:100 armor-class:120 sleepiness:10 depth:92 rarity:3 weight:0 experience:45000 blow:HIT:EXP_80:7d12 blow:HIT:LOSE_DEX:7d12 blow:HIT:DRAIN_CHARGES:7d12 blow:HIT:DRAIN_CHARGES:7d12 flags:UNIQUE | MALE flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:IM_ELEC | IM_FIRE spell-freq:2 spell-power:92 spells:BLIND | WOUND | SCARE | TPORT | BRAIN_SMASH spells:BA_FIRE | BA_MANA | BA_NETH spells:BO_MANA spells:S_HI_DEMON | S_HI_UNDEAD | S_KIN | S_MONSTERS spells:ANIM_DEAD friends:50:1d3:greater mummy friends:50:1d3:skeleton ettin friends:50:1d3:night mare friends:30:1d2:dreadlord friends:40:1d2:archlich friends:30:1d2:nightwing friends:30:1d2:nightcrawler friends:20:1d2:nightwalker friends:20:1d2:bone golem friends:20:1d2:black reaver desc:The greatest of all undead sorcerers, even the gods once feared him. This desc: ancient shadow of death wilts every living thing it passes. ### Dungeon level 93 ### name:Ancient Wyrm of Chaos plural:Ancient Wyrms of Chaos base:ancient dragon color:v speed:130 hit-points:6870 hearing:30 armor-class:225 sleepiness:20 depth:93 rarity:5 weight:22000 experience:44000 blow:CLAW:HURT:8d12 blow:CRUSH:HURT:8d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:10d14 flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | IM_DISEN flags:ATTR_MULTI spell-freq:3 spell-power:93 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_CHAO | BR_DISE spells:S_DRAGON | S_HI_DRAGON desc:An ancient dragon of changing form. As you watch, it appears first fair and desc: then foul. Its body is twisted by chaotic forces as it strives to stay desc: real. Its very existence distorts the universe around it. name:Ancient Wyrm of Law plural:Ancient Wyrms of Law base:ancient dragon color:B speed:130 hit-points:6870 hearing:30 armor-class:225 sleepiness:20 depth:93 rarity:5 weight:22000 experience:44000 blow:CLAW:HURT:8d12 blow:CRUSH:HURT:8d12 blow:BITE:HURT:9d14 blow:CRUSH:HURT:10d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | NO_STUN | NO_CUT spell-freq:3 spell-power:93 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_SHAR | BR_SOUN spells:S_DRAGON | S_HI_DRAGON color-cycle:fancy:law desc:An ancient dragon of powerful intellect. It seeks to dominate the universe desc: and despises all other life. It sees all who do not obey it as mere desc: insects to be crushed underfoot. ### Dungeon level 94 ### name:Michael, the Guardian #base:angel base:ainu color:u speed:130 hit-points:8500 light:2 hearing:50 armor-class:216 sleepiness:50 depth:94 rarity:3 weight:0 experience:45000 blow:GAZE:BLIND:11d11 blow:MOAN:FIRE:11d11 blow:INSULT:HURT:11d11 blow:HIT:DISENCHANT:11d11 flags:UNIQUE | MALE | SMART flags:DROP_1 | DROP_GOOD | ONLY_ITEM | LEVITATE flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_LIGHT flags:NO_STUN spell-freq:2 innate-freq:17 spells:BLIND | TELE_TO spells:BO_MANA | BO_WATE | BO_FIRE | BO_ICE | BR_LIGHT #spells:S_ANGEL spells:S_AINU friends:100:1d3:Seraph friends:100:1d5:Archon desc:Michael leads angel's armies against evil forces. ### Dungeon level 95 ### name:storm of Unmagic plural:storms of Unmagic base:vortex color:v speed:140 hit-points:600 hearing:50 armor-class:48 sleepiness:0 depth:95 rarity:3 weight:0 experience:17000 blow:ENGULF:EXP_80:5d7 blow:ENGULF:DRAIN_CHARGES:5d7 blow:ENGULF:DISENCHANT:5d7 blow:ENGULF:LOSE_ALL:5d7 flags:KILL_WALL flags:IM_DISEN flags:ATTR_MULTI flags:ANTI_MAGIC | NO_STUN spell-freq:3 innate-freq:100 spells:BR_CHAO | BR_DISE | BR_TIME desc:Howling through the disintegrating dungeon, this whirlpool of Unmagic rips desc: the enchantments from everything it touches. name:Gothmog, the High Captain of Balrogs base:major demon color:v speed:130 hit-points:8000 light:2 hearing:100 armor-class:168 sleepiness:10 depth:95 rarity:1 weight:0 experience:43000 blow:HIT:FIRE:9d12 blow:HIT:FIRE:9d12 blow:CRUSH:HURT:8d12 blow:TOUCH:DRAIN_CHARGES flags:UNIQUE | MALE | POWERFUL | LEVITATE flags:DROP_4 | DROP_GOOD | DROP_GREAT flags:MOVE_BODY | KILL_WALL flags:IM_ELEC | IM_FIRE | IM_PLASMA spell-freq:3 innate-freq:29 spells:BLIND | CONF | SCARE spells:BR_FIRE | BR_PLAS spells:S_HI_DEMON | S_HI_UNDEAD friends:100:1d5:lesser Balrog:servant friends:30:1d3:osyluth:servant friends:30:1d3:gelugon:servant friends:30:1d3:pit fiend:servant friends:100:1d2:greater Balrog:bodyguard friends:100:1d1:Lungorthin, the Balrog of White Fire:servant desc:Gothmog is the Chief Balrog in Morgoth's personal guard. He is renowned for desc: slaying Feanor and Fingon, two of the High Kings of the Noldor, and desc: has never been defeated in combat. With his whip of flame and awesome desc: fiery breath he saved his master from Ungoliant's rage. name:Ancient Wyrm of Balance plural:Ancient Wyrms of Balance base:ancient dragon color:P speed:130 hit-points:7380 hearing:30 armor-class:225 sleepiness:20 depth:95 rarity:5 weight:22000 experience:46000 blow:CLAW:HURT:8d12 blow:CRUSH:HURT:8d12 blow:BITE:HURT:10d14 blow:CRUSH:HURT:10d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | IM_FIRE | NO_STUN | IM_DISEN | NO_CUT spell-freq:3 spell-power:95 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_SOUN | BR_CHAO | BR_SHAR | BR_DISE spells:S_DRAGON | S_HI_DRAGON color-cycle:fancy:balance desc:An ancient dragon, one of the mightiest of dragon kind. It is thousands of desc: years old and seeks to maintain the cosmic balance. It sees you as an desc: upstart troublemaker without the wisdom to control your actions. It will desc: destroy you. name:Ancient Wyrm of Many Colours plural:Ancient Wyrms of Many Colours base:ancient dragon color:v speed:130 hit-points:7380 hearing:30 armor-class:225 sleepiness:20 depth:95 rarity:5 weight:22000 experience:46000 blow:CLAW:HURT:8d12 blow:CRUSH:HURT:8d12 blow:BITE:HURT:10d14 blow:CRUSH:HURT:10d14 flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | IM_ACID | IM_POIS | IM_COLD | IM_ELEC flags:ATTR_MULTI spell-freq:3 spell-power:95 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_POIS | BR_ELEC | BR_ACID | BR_FIRE | BR_COLD spells:S_DRAGON | S_HI_DRAGON desc:A gigantic ancient dragon whose scales shimmer in myriad hues. ### Dungeon level 96 ### name:Raphael, the Healer #base:angel base:ainu color:u speed:130 hit-points:9000 light:2 hearing:50 armor-class:222 sleepiness:50 depth:96 rarity:3 weight:0 experience:50000 blow:BEG:HURT:9d13 blow:BEG:HURT:9d13 blow:BEG:HURT:9d13 blow:BEG:HURT:9d13 flags:UNIQUE | MALE | SMART flags:DROP_1 | DROP_GOOD | ONLY_ITEM | LEVITATE flags:MOVE_BODY flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_LIGHT flags:NO_STUN spell-freq:2 innate-freq:15 spells:HEAL | HEAL_KIN | TELE_TO | BLINK | TPORT spells:BO_MANA | BR_LIGHT #spells:S_ANGEL spells:S_AINU friends:100:1d7:Fallen angel desc:"Stop fighting! It's time to unity our strength, to overcome our desc: differences and to give a new breath to the world desc: we all love so much!" ### Dungeon level 97 ### name:Ancient Wyrm of Power plural:Ancient Wyrms of Power base:ancient dragon color:I speed:130 hit-points:8000 light:2 hearing:30 armor-class:225 sleepiness:20 depth:97 rarity:5 weight:22000 experience:48000 blow:CLAW:HURT:8d12 blow:CRUSH:HURT:9d12 blow:BITE:HURT:10d14 blow:CRUSH:HURT:10d14 flags:ATTR_FLICKER flags:ONLY_ITEM | DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:NO_STUN | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER | NO_CUT flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW spell-freq:3 innate-freq:17 spells:BLIND | CONF | SCARE spells:BR_ACID | BR_ELEC | BR_FIRE | BR_COLD | BR_POIS | BR_NETH | BR_LIGHT spells:BR_SOUN | BR_CHAO | BR_DISE | BR_NEXU | BR_TIME | BR_INER | BR_GRAV spells:BR_SHAR | BR_PLAS | BR_WALL | BR_MANA | BR_WATE | BR_DARK spells:S_DRAGON | S_HI_DRAGON desc:The mightiest of all dragon kind, an Ancient Wyrm of Power is seldom desc: encountered in our world. It can crush stars with its might. ### Dungeon level 98 ### #unicorn name:Konyok-Gorbunok base:quadruped color:w speed:130 hit-points:7000 hearing:20 smell:20 armor-class:100 sleepiness:40 depth:98 rarity:4 weight:0 experience:50000 blow:KICK:SHATTER:11d11 blow:BITE:HURT:11d11 blow:TOUCH:DISENCHANT:11d11 flags:UNIQUE | SMART flags:REGENERATE | ANIMAL flags:IM_POIS | NO_CONF | NO_SLEEP | NO_FEAR | IM_FIRE | IM_COLD | IM_ELEC flags:IM_NETHER | NO_STUN | IM_PLASMA | IM_DISEN flags:IM_ACID drop:crop:carrot:100:2:3 spell-freq:3 innate-freq:25 spells:BR_GRAV | BR_TIME spells:BLINK | HEAL | WOUND | BLIND | MISSILE spells:S_MONSTERS desc:Tiny humpbacked horse with enormous magic powers. name:The Balrog of the Sammath Naur base:major demon color:v speed:130 hit-points:10000 light:2 hearing:100 armor-class:180 sleepiness:10 depth:98 rarity:1 weight:0 experience:75000 blow:HIT:FIRE:10d12 blow:HIT:FIRE:10d12 blow:CRUSH:HURT:10d12 blow:TOUCH:DRAIN_CHARGES flags:UNIQUE | MALE | POWERFUL | PWMANG_FIXED | LEVITATE flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:MOVE_BODY | KILL_WALL flags:IM_ELEC | IM_FIRE | IM_PLASMA flags:FORCE_DEPTH spell-freq:2 innate-freq:50 spells:BR_FIRE | BR_PLAS spells:S_HI_DEMON | S_HI_UNDEAD desc:A huge Balrog of devastating power, he guards the entrance to the Chambers desc: of Fire at the top of Mount Doom. locations:Mount Doom ### Dungeon level 99 ### name:Sauron, the Sorcerer base:ainu color:p speed:130 hit-points:10500 hearing:100 armor-class:192 sleepiness:0 depth:99 rarity:1 weight:0 experience:50000 blow:HIT:DISENCHANT:10d12 blow:HIT:DISENCHANT:10d12 blow:HIT:DRAIN_CHARGES:8d12 blow:HIT:DRAIN_CHARGES:8d12 flags:UNIQUE | QUESTOR | MALE | EVIL | REGENERATE flags:DROP_4 | DROP_GOOD | DROP_GREAT flags:MOVE_BODY flags:IM_ELEC | NO_FEAR flags:FORCE_DEPTH spell-freq:2 spell-power:130 spells:BRAIN_SMASH | WOUND | TELE_LEVEL | TPORT spells:BA_DARK | BA_FIRE | BA_NETH spells:BO_ICE | BO_MANA | BO_PLAS spells:SHAPECHANGE spells:S_HI_DEMON | S_HI_DRAGON | S_HI_UNDEAD | S_UNIQUE | S_WRAITH spells:ANIM_DEAD friends:100:1d1:Khamul, the Black Easterling:servant friends:100:1d1:The Witch-King of Angmar:servant shape:Wolf-Sauron shape:Serpent-Sauron shape:Vampire-Sauron desc:Greatest and most terrible of the servants of Morgoth, creator of the One desc: Ring. A sorcerer of dreadful powers, master of shadows and of phantoms, desc: foul in wisdom, cruel in strength, misshaping what he rules, lord of desc: werewolves; his dominion is torment. He has many servants, and rarely desc: fights without them. name:Wolf-Sauron base:canine color:p speed:140 hearing:100 armor-class:164 sleepiness:0 depth:99 rarity:0 blow:BITE:POISON:8d10 blow:BITE:POISON:8d10 blow:CLAW:CONFUSE:6d8 blow:CLAW:PARALYZE:6d8 flags:UNIQUE | MALE | EVIL | REGENERATE flags:FORCE_SLEEP | FORCE_DEPTH flags:SMART | OPEN_DOOR | BASH_DOOR | MOVE_BODY flags:IM_POIS | IM_ELEC | IM_FIRE | IM_COLD | IM_NETHER flags:NO_CONF | NO_SLEEP | NO_FEAR spell-freq:3 innate-freq:13 spell-power:105 spells:BLINK | TPORT | TELE_LEVEL | TELE_SELF_TO spells:BLIND | CONF | SCARE | WOUND spells:BR_FIRE | BR_NETH | BA_DARK spells:S_HOUND | S_DRAGON | S_HI_DEMON | S_HI_UNDEAD desc:Sauron's form as the mightiest wolf to walk the world. name:Serpent-Sauron base:snake color:p speed:130 hearing:100 armor-class:164 sleepiness:0 depth:99 rarity:0 blow:BITE:POISON:7d12 blow:BITE:POISON:7d12 blow:CRUSH:HURT:8d12 blow:SPIT:ACID:4d12 flags:UNIQUE | MALE | EVIL flags:FORCE_SLEEP | FORCE_DEPTH flags:SMART | OPEN_DOOR | MOVE_BODY | REGENERATE flags:IM_POIS | IM_ACID | IM_ELEC | IM_COLD flags:NO_CONF | NO_SLEEP | NO_FEAR spell-freq:4 innate-freq:19 spell-power:108 spells:BLINK | TPORT | TELE_LEVEL | TELE_SELF_TO spells:BLIND | CONF | SCARE | WOUND spells:BRAIN_SMASH | FORGET spells:BR_POIS | BR_CHAO | BR_ACID spells:S_DRAGON | S_HI_DEMON | S_HI_UNDEAD desc:Sauron's form as a serpent: poisonous, biting, spitting, and threatening desc: to crush you in its mighty coils. name:Vampire-Sauron base:vampire color:p speed:130 hearing:100 armor-class:164 sleepiness:0 depth:99 rarity:0 blow:BITE:EXP_80:6d12 blow:CLAW:TERRIFY:8d12 blow:HIT:DRAIN_CHARGES:8d12 blow:HIT:DRAIN_CHARGES:8d12 flags:UNIQUE | MALE flags:FORCE_DEPTH flags:MOVE_BODY | IM_ELEC flags:NO_FEAR spell-freq:2 spell-power:130 spells:BLINK | TPORT | TELE_LEVEL | BLIND | CONF spells:BRAIN_SMASH | FORGET spells:BO_ICE | BO_PLAS | BE_NETH spells:BA_NETH | STORM | BA_DARK | BA_POIS | BA_ACID spells:S_DRAGON | S_HI_DEMON | S_HI_UNDEAD desc:Sauron's form as a vampire, great as a dark cloud across the moon. ### Dungeon level 100 ### name:Morgoth, Lord of Darkness base:Morgoth color:D speed:140 hit-points:20000 hearing:100 armor-class:180 sleepiness:0 depth:100 rarity:1 weight:0 experience:80000 blow:HIT:SHATTER:20d10 blow:HIT:SHATTER:20d10 blow:HIT:LOSE_ALL:10d12 blow:TOUCH:DRAIN_CHARGES flags:UNIQUE | QUESTOR | MALE | EVIL | SMART | REGENERATE | SPIRIT | LEVITATE flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:SMASH_WALL | MOVE_BODY | ATTR_FLICKER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_FEAR flags:NO_CONF | NO_SLEEP | NO_HOLD flags:FORCE_DEPTH | FORCE_SLEEP flags:IM_NETHER | NO_STUN | IM_PLASMA | IM_DISEN spell-freq:3 spells:BRAIN_SMASH spells:BA_MANA | BA_NETH spells:BO_MANA spells:S_HI_DEMON | S_HI_DRAGON | S_HI_UNDEAD | S_MONSTERS | S_UNIQUE spells:ANIM_DEAD desc:He is the Master of the Pits of Angband. His figure is like a black desc: mountain crowned with lightning. He rages with everlasting anger, his body desc: scarred by Fingolfin's eight mighty wounds. He can never rest from his desc: pain, but seeks forever to dominate all that is light and good in the desc: world. He is the origin of man's fear of darkness and created many foul desc: creatures with his evil powers. Orcs, Dragons, and Trolls are his most desc: foul corruptions, causing much pain and suffering in the world to please desc: him. His disgusting visage, twisted with evil, is crowned with iron, the desc: two remaining Silmarils forever burning him. Grond, the mighty Hammer of desc: the Underworld, cries defiance as he strides towards you to crush you to a desc: pulp! ########## DUNGEON LEVELS 101-127 ########## ### Lukomorye ### name:death guard base:person color:T speed:130 hit-points:2640 light:2 hearing:20 armor-class:180 sleepiness:50 depth:101 rarity:3 weight:0 experience:10000 blow:GAZE:EXP_80:10d5 blow:GAZE:TERRIFY:4d5 blow:HIT:FIRE:4d15 blow:HIT:DRAIN_CHARGES:4d15 flags:PWMANG_EXTRA | EVIL | LEVITATE flags:MOVE_BODY | OPEN_DOOR flags:IM_FIRE | IM_PLASMA | IM_NETHER | NO_CONF | NO_SLEEP | NO_FEAR | IM_COLD flags:IM_POIS | NO_STUN | NO_HOLD flags:FORCE_DEPTH spell-freq:4 innate-freq:50 spells:BRAIN_SMASH | MIND_BLAST spells:BR_FIRE | BR_NETH desc:A corrupted soul who raids the world to destroy all that is living. name:viy base:wraith color:T speed:125 hit-points:5000 light:-3 hearing:10 armor-class:200 sleepiness:40 depth:103 rarity:2 weight:0 experience:12500 blow:GAZE:TIME:20d5 blow:GAZE:TERRIFY:20d5 blow:ENGULF:HURT:10d5 blow:ENGULF:HURT:10d5 flags:EVIL | LEVITATE flags:MOVE_BODY | OPEN_DOOR flags:IM_FIRE | IM_PLASMA | IM_NETHER | NO_CONF | NO_SLEEP | NO_FEAR | IM_COLD flags:IM_POIS | NO_STUN | NO_HOLD flags:FORCE_DEPTH spell-freq:3 innate-freq:50 spells:BRAIN_SMASH | MIND_BLAST | BLINK spells:BR_GRAV | BR_DARK | WEAVE | S_HI_UNDEAD spells:ANIM_DEAD desc:Weirdest ugly creature of all, it's eyes hidden by huge excrescence filthy desc: lids..there is a rumourds that behind them is death sight. name:death ooze base:jelly color:R speed:140 hit-points:2000 hearing:200 armor-class:72 sleepiness:10 depth:105 rarity:1 weight:0 experience:10000 blow:CRAWL:DISENCHANT:7d7 blow:CRAWL:DISENCHANT:7d7 blow:CRAWL:DISENCHANT:7d7 blow:TOUCH:EXP_80:5d5 flags:EVIL | PWMANG_EXTRA flags:DROP_60 flags:TAKE_ITEM | KILL_BODY | OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP flags:FORCE_SLEEP | FORCE_DEPTH | NO_HOLD desc:It looks like a death mold from afar... but since when do death molds move? name:Zhar-ptitsa base:bird color:w speed:130 hit-points:11000 light:3 hearing:200 armor-class:200 sleepiness:10 depth:107 rarity:5 weight:0 experience:25000 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 flags:PWMANG_EXTRA | REGENERATE | LEVITATE flags:BASH_DOOR | NEVER_BLOW | KILL_WALL flags:IM_FIRE | IM_COLD | IM_POIS | IM_PLASMA | IM_NETHER | IM_ACID flags:NO_STUN | IM_ELEC | IM_LIGHT flags:FORCE_DEPTH spell-freq:3 innate-freq:33 spells:BR_FIRE | BA_FIRE | BO_PLAS | BR_PLAS | BR_GRAV | BA_LIGHT desc:Terrifying firebird, it's deadly beautiful wings sparks everything around desc: into plasma. Air around burning and glowing with blazing light. name:death vortex plural:death vortices base:vortex color:D speed:140 hit-points:2800 hearing:100 #armor-class:96 armor-class:150 sleepiness:0 depth:110 #4 rarity:3 weight:0 experience:15000 # prevent insta KO #blow:ENGULF:HURT:100d1 #blow:ENGULF:PARALYZE:50d1 #blow:ENGULF:HURT:100d1 blow:ENGULF:HURT:20d10 blow:ENGULF:PARALYZE:10d12 blow:ENGULF:HURT:20d10 flags:PWMANG_EXTRA flags:NO_STUN | IM_FIRE | IM_COLD | IM_ELEC | IM_ACID flags:FORCE_DEPTH spell-freq:2 innate-freq:100 spells:BR_WALL desc:A whirling maelstrom of destruction. name:valkyrie base:ainu color:D speed:140 hit-points:6000 hearing:60 armor-class:140 sleepiness:10 depth:112 rarity:3 weight:0 experience:15000 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 blow:HIT:HURT:10d10 flags:PWMANG_EXTRA | SMART | REGENERATE | POWERFUL | COLD_BLOOD | LEVITATE flags:ONLY_ITEM | DROP_2 flags:MOVE_BODY | KILL_WALL | BASH_DOOR flags:IM_WATER | IM_PLASMA | IM_NEXUS | IM_FIRE | IM_POIS | IM_ACID flags:IM_NETHER | NO_STUN | IM_COLD flags:FORCE_DEPTH spell-freq:5 spells:HEAL | TELE_TO spells:BA_NETH | BO_MANA desc:'Tis wet with blood; desc: Now fight foreboding, desc: 'Neath friends' swift fingers, desc: Our grey woof waxeth desc: With war's alarms, desc: Our warp bloodred, desc: Our weft corseblue. desc: Let us weave with our swords this web of victory! name:death wing base:golem color:w speed:130 hit-points:26400 hearing:200 armor-class:450 sleepiness:0 depth:115 rarity:8 weight:0 experience:25000 flags:PWMANG_EXTRA | REGENERATE | ANTI_MAGIC | LEVITATE flags:BASH_DOOR | NEVER_BLOW flags:IM_FIRE | IM_COLD | IM_POIS | IM_PLASMA | IM_NETHER flags:NO_STUN flags:FORCE_DEPTH flags:SWIM_BAD spell-freq:8 spells:HOLD desc:An artificial bird completely made of hardened iron, kept in the air by desc: magical forces. name:death golem base:golem color:v speed:140 hit-points:13200 hearing:250 armor-class:255 sleepiness:0 depth:120 rarity:8 weight:0 experience:50000 blow:HIT:HURT:20d8 blow:HIT:HURT:20d8 blow:HIT:HURT:20d8 blow:HIT:HURT:20d8 flags:PWMANG_EXTRA | SMART | REGENERATE | POWERFUL | COLD_BLOOD | LEVITATE flags:ONLY_ITEM | DROP_3 flags:MOVE_BODY | KILL_ITEM | BASH_DOOR flags:IM_WATER | IM_PLASMA | IM_NEXUS | IM_FIRE | IM_POIS | IM_ACID flags:IM_NETHER | NO_STUN | IM_COLD flags:FORCE_DEPTH | NO_PIT flags:SWIM_BAD spell-freq:5 spells:HEAL | TELE_TO spells:BA_NETH desc:This berserk construct made of black ore has only one purpose: destroying desc: everything it sees. name:tik'srvzllat base:ghost color:p speed:130 hit-points:3000 hearing:20 armor-class:170 sleepiness:10 depth:122 rarity:6 weight:0 experience:25000 blow:GAZE:DISENCHANT:7d7 blow:GAZE:TIME:7d7 blow:GAZE:FORGET:7d7 blow:GAZE:FORGET:7d7 flags:PWMANG_EXTRA | WEIRD_MIND flags:IM_PLASMA | IM_NEXUS | NO_SLOW flags:FORCE_DEPTH spell-freq:3 innate-freq:60 spells:BR_NEXU | BR_GRAV | BR_PLAS | BR_WALL | BO_PLAS | BO_ICE | BO_MANA desc:A disembodied and barely sentient mind, tik'srvzllat floated through the desc: Void for eons before being awakened by sorcery and shaped into the being desc: you see before you. A flickering purple outline of a sphere, with eerie desc: yellow-purple mist circling rapidly around it, tik'srvzllat threatens desc: your sanity with its appearance alone. #name:Tik'srvzllat name:Tulkas, Champion of the Valar base:ghost color:v speed:142 hit-points:18000 hearing:200 armor-class:204 sleepiness:0 depth:124 rarity:1 weight:0 experience:90000 blow:TOUCH:DISENCHANT:10d10 blow:HIT:TIME:10d10 blow:GAZE:FORGET:10d10 blow:CRUSH:TERRIFY:10d5 flags:POWERFUL | UNIQUE | WEIRD_MIND flags:PWMANG_BASE | PWMANG_FIXED flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:IM_FIRE | IM_ACID | IM_ELEC flags:FORCE_DEPTH | ATTR_MULTI spell-freq:2 innate-freq:8 spells:BA_MANA | BA_NETH spells:BR_DISE spells:S_DEMON | S_DRAGON | S_HI_DEMON | S_HI_DRAGON | S_HI_UNDEAD | S_KIN spells:S_UNDEAD | S_UNIQUE desc:Huge ruddy giant with golden hair and beard; master of wrestling and desc: contests of strength. He doesn't need a weapon, and could move so fast desc: that doesn't need steed either. desc: He is the strongest of all the Valar. desc: He is coming for you. locations:The Straight Road ### Valinor ### name:nether vortex plural:nether vortices base:vortex color:G speed:140 hit-points:420 hearing:100 armor-class:30 sleepiness:0 depth:101 rarity:4 weight:0 experience:10000 blow:ENGULF:EXP_80:10d10 blow:ENGULF:HURT:10d5 blow:ENGULF:HURT:10d10 flags:PWMANG_EXTRA flags:NO_STUN | IM_FIRE | IM_COLD | IM_ELEC | IM_ACID | IM_NETHER flags:FORCE_DEPTH spell-freq:2 innate-freq:100 spells:BR_NETH desc:A whirling anomaly of nether mists that will drain your life force. locations:Valinor name:crawling mass of primal chaos plural:crawling masses of primal chaos base:jelly color:v speed:140 hit-points:2000 hearing:200 armor-class:72 sleepiness:10 depth:105 rarity:1 weight:0 experience:10000 blow:CRAWL:CONFUSE:7d7 blow:CRAWL:HALLU:7d7 blow:CRAWL:CONFUSE:7d7 blow:CRAWL:HALLU:7d7 flags:EVIL | PWMANG_EXTRA | ABOMINATION flags:DROP_60 flags:TAKE_ITEM | KILL_BODY | OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP flags:FORCE_SLEEP | FORCE_DEPTH | ATTR_MULTI | NO_HOLD | IM_NETHER desc:A mass of pure chaotic energy crawling towards you, eating everything on desc: its path. locations:Valinor name:chaos mutant base:person color:t speed:130 hit-points:3640 light:2 hearing:20 armor-class:180 sleepiness:50 depth:110 rarity:3 weight:0 experience:12000 blow:BITE:DISEASE:10d5 blow:TOUCH:DISEASE:4d5 blow:HIT:DISEASE:4d15 blow:HIT:DISEASE:4d15 flags:PWMANG_EXTRA | EVIL | LEVITATE | ABOMINATION flags:MOVE_BODY | OPEN_DOOR flags:IM_FIRE | IM_PLASMA | IM_NETHER | NO_CONF | NO_SLEEP | NO_FEAR | IM_COLD flags:IM_POIS | NO_STUN | NO_HOLD flags:FORCE_DEPTH desc:Despite their swollen faces, they manage to smile at you. You back away desc: nervously as their smile becomes a grin, and then a yawn, and then their desc: mouths open wider still... and not one but a hundred writhing tongues desc: spill from between their impossible wide jaws. locations:Valinor name:vlodblad base:jelly color:B speed:140 hit-points:3000 hearing:200 armor-class:72 sleepiness:10 depth:115 rarity:1 weight:0 experience:15000 blow:TOUCH:ACID:7d7 blow:TOUCH:ACID:8d8 blow:TOUCH:ACID:9d9 blow:TOUCH:ACID:10d10 flags:EVIL | PWMANG_EXTRA | ABOMINATION flags:DROP_60 flags:TAKE_ITEM | KILL_BODY | OPEN_DOOR | BASH_DOOR flags:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | NO_CONF | NO_SLEEP flags:FORCE_SLEEP | FORCE_DEPTH | NO_HOLD desc:A hideous creation of evil sorcery. Dormant it lies as a mound of flabby desc: flesh, but when aroused into combat it will gradually sprout limbs, desc: growing ever more skilful and unless killed quickly will overcome any desc: opponent, devouring them and absorbing them into its fleshy body. locations:Valinor name:blood lurcher base:canine color:t speed:130 hit-points:2440 hearing:25 smell:50 armor-class:80 sleepiness:30 depth:120 rarity:2 weight:60 experience:6000 blow:BITE:EXP_80:5d12 blow:BITE:EXP_80:5d12 blow:BITE:EXP_80:5d12 blow:BITE:EXP_80:5d12 flags:EVIL | PWMANG_EXTRA | ABOMINATION flags:RAND_25 | BASH_DOOR | MOVE_BODY flags:DROP_CORPSE flags:FORCE_SLEEP | FORCE_DEPTH friends:100:2d5:Same desc:Hairless, eyeless chaotic monstrosities which devour their victims by desc: sucking their blood through the many writhing tentacles which protrude desc: from their mouths instead of teeth. They are bipedal, fast and strong, desc: with long and vicious claws on their front paws. locations:Valinor name:Varda, Queen of the Valar base:ainu color:G speed:140 hit-points:24000 light:2 hearing:155 armor-class:210 sleepiness:0 depth:124 rarity:1 weight:0 experience:95000 blow:HIT:PARALYZE:20d10 blow:HIT:EXP_80:20d10 blow:HIT:LOSE_ALL:10d12 blow:TOUCH:FORGET:12d9 flags:EVIL | UNIQUE | FEMALE | INVISIBLE flags:WEIRD_MIND | REGENERATE flags:PWMANG_EXTRA | PWMANG_FIXED flags:DROP_4 | DROP_GOOD | DROP_GREAT flags:KILL_WALL | KILL_BODY flags:IM_ACID | IM_ELEC | IM_NETHER flags:NO_FEAR flags:FORCE_DEPTH spell-freq:2 spells:BLIND | WOUND | FORGET | HASTE | HEAL | MIND_BLAST spells:TELE_TO | TPORT | TRAPS spells:BA_FIRE | BA_MANA | BA_NETH | BA_WATE spells:BO_ICE | BO_MANA | BO_PLAS spells:S_HI_DEMON | S_HI_DRAGON | S_HI_UNDEAD | S_MONSTERS desc:Wife of Manwe, Varda is the most beautiful of all the Valar... desc: She is also known as Elbereth - "Queen of the Stars". locations:Valinor name:Manwe, King of the Valar base:nether color:G speed:140 hit-points:30000 light:2 hearing:200 armor-class:240 sleepiness:0 depth:125 rarity:1 weight:0 experience:95000 blow:HIT:PARALYZE:20d15 blow:HIT:EXP_80:20d17 blow:HIT:LOSE_ALL:10d12 blow:TOUCH:FORGET:12d9 flags:EVIL | SMART | UNIQUE | MALE | INVISIBLE | POWERFUL | SPIRIT flags:WEIRD_MIND | REGENERATE flags:PWMANG_EXTRA | PWMANG_FIXED flags:DROP_4 | DROP_GOOD | DROP_GREAT | ONLY_ITEM flags:KILL_WALL | KILL_BODY | KILL_ITEM flags:IM_WATER | IM_PLASMA | IM_NEXUS | NO_CONF | NO_SLEEP | NO_FEAR | NO_STUN flags:IM_ACID | IM_FIRE | IM_COLD | IM_ELEC | IM_POIS | IM_NETHER | NO_HOLD flags:FORCE_DEPTH spell-freq:2 spells:BLIND | BRAIN_SMASH | WOUND | CONF | FORGET | HASTE | HEAL spells:HOLD | SLOW | TELE_TO | TPORT spells:BA_DARK | BA_MANA | BA_NETH | BA_WATE spells:BO_ICE | BO_MANA | BO_PLAS spells:ANIM_DEAD spells:S_HI_DEMON | S_HI_DRAGON | S_HI_UNDEAD | S_UNIQUE | S_ABOMINATION desc:Husband of Varda, brother of Melkor and the leader of the Ainur. desc: He was also known as Sulimo, commander of winds and air. desc: He is the one who will crush you to The Void! locations:Valinor ### Utumno, Portal to the Void ### name:spirit of combat plural:spirits of combat base:ghost color:M speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:102 rarity:2 weight:0 experience:25000 blow:HIT:SHATTER:8d8 blow:CLAW:HURT:8d8 blow:HIT:DISARM:8d8 blow:CLAW:LOSE_ALL:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH desc:A ghostly apparition ready for combat. locations:Utumno, Portal to the Void name:spirit of body plural:spirits of body base:ghost color:M speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:102 rarity:2 weight:0 experience:25000 blow:HIT:LOSE_STR:8d8 blow:CLAW:LOSE_DEX:8d8 blow:HIT:LOSE_CON:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH desc:A ghostly apparition ready to sap your body. locations:Utumno, Portal to the Void name:spirit of mind plural:spirits of mind base:ghost color:M speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:102 rarity:2 weight:0 experience:25000 blow:HIT:LOSE_INT:8d8 blow:CLAW:LOSE_WIS:8d8 blow:HIT:LOSE_INT:8d8 blow:CLAW:LOSE_WIS:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH desc:A ghostly apparition ready to sap your mind. locations:Utumno, Portal to the Void name:spirit of lust plural:spirits of lust base:ghost color:P speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:102 rarity:9 weight:0 experience:25000 blow:HYPNOTIZE:SEDUCE:8d8 blow:HIT:PARALYZE:8d8 blow:HIT:FORGET:8d8 blow:HIT:CONFUSE:8d8 flags:PWMANG_EXTRA | MALE | FEMALE flags:FORCE_DEPTH desc:When you look at it you are ready to unscrew your head off from pleasure... locations:Utumno, Portal to the Void name:spirit of greed plural:spirits of greed base:ghost color:M speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:102 rarity:2 weight:0 experience:25000 blow:TOUCH:EAT_GOLD:8d8 blow:TOUCH:EAT_ITEM:8d8 blow:SWALLOW:EAT_FOOD:8d8 blow:DEVOUR:EAT_LIGHT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH desc:A ghostly apparition full of greed. locations:Utumno, Portal to the Void name:spirit of filth plural:spirits of filth base:ghost color:M speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:102 rarity:2 weight:0 experience:25000 blow:HIT:DISEASE:8d8 blow:SWALLOW:FAMINE:8d8 blow:HIT:DISEASE:8d8 blow:SWALLOW:FAMINE:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH desc:A ghostly apparition full of filth. locations:Utumno, Portal to the Void name:spirit of poison plural:spirits of poison base:ghost color:z speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:102 rarity:2 weight:0 experience:25000 blow:HIT:POISON:8d8 blow:CLAW:POISON:8d8 blow:HIT:POISON:8d8 blow:CLAW:POISON:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 innate-freq:50 spells:BR_POIS | BA_POIS desc:A ghostly apparition with a toxic aura. locations:Utumno, Portal to the Void name:spirit of acid plural:spirits of acid base:ghost color:z speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:102 rarity:2 weight:0 experience:25000 blow:HIT:ACID:8d8 blow:CLAW:ACID:8d8 blow:HIT:ACID:8d8 blow:CLAW:ACID:8d8 flags:PWMANG_EXTRA flags:IM_ACID flags:FORCE_DEPTH spell-freq:3 innate-freq:33 spells:BR_ACID | BA_ACID | BO_ACID desc:A ghostly apparition with an acidic aura. locations:Utumno, Portal to the Void name:spirit of lightning plural:spirits of lightning base:ghost color:z speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:102 rarity:2 weight:0 experience:25000 blow:HIT:ELEC:8d8 blow:CLAW:ELEC:8d8 blow:HIT:ELEC:8d8 blow:CLAW:ELEC:8d8 flags:PWMANG_EXTRA flags:IM_ELEC flags:FORCE_DEPTH spell-freq:3 innate-freq:33 spells:BR_ELEC | BA_ELEC | BO_ELEC desc:A ghostly apparition with an electric aura. locations:Utumno, Portal to the Void name:spirit of fire plural:spirits of fire base:ghost color:z speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:102 rarity:2 weight:0 experience:25000 blow:HIT:FIRE:8d8 blow:CLAW:FIRE:8d8 blow:HIT:FIRE:8d8 blow:CLAW:FIRE:8d8 flags:PWMANG_EXTRA flags:IM_FIRE flags:FORCE_DEPTH spell-freq:3 innate-freq:33 spells:BR_FIRE | BA_FIRE | BO_FIRE desc:A ghostly apparition with a fiery aura. locations:Utumno, Portal to the Void name:spirit of cold plural:spirits of cold base:ghost color:z speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:102 rarity:2 weight:0 experience:25000 blow:HIT:COLD:8d8 blow:CLAW:COLD:8d8 blow:HIT:COLD:8d8 blow:CLAW:COLD:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 innate-freq:33 spells:BR_COLD | BA_COLD | BO_COLD desc:A ghostly apparition with a chilling aura. locations:Utumno, Portal to the Void name:spirit of annoyance plural:spirits of annoyance base:ghost color:Y speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:109 rarity:3 weight:0 experience:25000 blow:HIT:BLIND:8d8 blow:CLAW:FORGET:8d8 blow:HIT:TERRIFY:8d8 blow:CLAW:CONFUSE:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 innate-freq:8 spells:SHRIEK | DRAIN_MANA | MIND_BLAST | BRAIN_SMASH | SCARE | BLIND | CONF spells:TELE_TO | DARKNESS | TRAPS | FORGET | ANIM_DEAD desc:A ghostly apparition ready to annoy you. locations:Utumno, Portal to the Void name:spirit of haste plural:spirits of haste base:ghost color:Y speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:109 rarity:3 weight:0 experience:25000 blow:HIT:PARALYZE:8d8 blow:CLAW:PARALYZE:8d8 blow:HIT:PARALYZE:8d8 blow:CLAW:PARALYZE:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 spells:SLOW | HOLD | HASTE desc:A ghostly apparition moving with haste. locations:Utumno, Portal to the Void name:spirit of missile plural:spirits of missile base:ghost color:Y speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:109 rarity:3 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 innate-freq:80 spells:ARROW | SHOT | BOLT | BOULDER | MISSILE desc:A ghostly apparition ready for ranged combat. locations:Utumno, Portal to the Void name:spirit of curse plural:spirits of curse base:ghost color:Y speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:109 rarity:3 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 spells:WOUND desc:A ghostly apparition that will drag you to your doom. locations:Utumno, Portal to the Void name:spirit of healing plural:spirits of healing base:ghost color:Y speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:109 rarity:3 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 spells:HEAL | HEAL_KIN desc:A ghostly apparition ready to help its kin against you. locations:Utumno, Portal to the Void name:spirit of teleportation plural:spirits of teleportation base:ghost color:Y speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:109 rarity:3 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 spells:BLINK | TPORT | TELE_AWAY | TELE_LEVEL desc:A ghostly apparition that never stays in place. locations:Utumno, Portal to the Void name:spirit of friendship plural:spirits of friendship base:ghost color:i speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:116 rarity:4 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 spells:S_KIN | S_MONSTER | S_MONSTERS | S_UNIQUE desc:A ghostly apparition with many friends. locations:Utumno, Portal to the Void name:spirit of nature plural:spirits of nature base:ghost color:i speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:116 rarity:4 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 spells:S_ANIMAL | S_SPIDER | S_HOUND | S_HYDRA desc:A ghostly apparition with many friends of nature. locations:Utumno, Portal to the Void name:spirit of goodness plural:spirits of goodness base:ghost color:i speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:116 rarity:4 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 spells:S_AINU desc:A ghostly apparition with many friends from the heavens. locations:Utumno, Portal to the Void name:spirit of hell plural:spirits of hell base:ghost color:i speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:116 rarity:4 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 spells:S_DEMON | S_HI_DEMON desc:A ghostly apparition with many demonic friends. locations:Utumno, Portal to the Void name:spirit of undeath plural:spirits of undeath base:ghost color:i speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:116 rarity:4 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 spells:S_UNDEAD | S_HI_UNDEAD desc:A ghostly apparition with many undead friends. locations:Utumno, Portal to the Void name:spirit of dragonkind plural:spirits of dragonkind base:ghost color:i speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:116 rarity:4 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 spells:S_DRAGON | S_HI_DRAGON desc:A ghostly apparition with many draconic friends. locations:Utumno, Portal to the Void name:spirit of nether plural:spirits of nether base:ghost color:p speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:123 rarity:5 weight:0 experience:25000 blow:HIT:EXP_10:8d8 blow:CLAW:EXP_20:8d8 blow:HIT:EXP_40:8d8 blow:CLAW:EXP_80:8d8 flags:PWMANG_EXTRA flags:IM_NETHER flags:FORCE_DEPTH spell-freq:3 innate-freq:33 spells:BR_NETH | BA_NETH | BO_NETH desc:A ghostly apparition from the Nether Dimension. locations:Utumno, Portal to the Void name:spirit of water plural:spirits of water base:ghost color:p speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:123 rarity:5 weight:0 experience:25000 blow:HIT:CONFUSE:8d8 blow:CLAW:CONFUSE:8d8 blow:HIT:CONFUSE:8d8 blow:CLAW:CONFUSE:8d8 flags:PWMANG_EXTRA flags:IM_WATER flags:FORCE_DEPTH spell-freq:3 innate-freq:33 spells:BR_WATE | BA_WATE | BO_WATE desc:A ghostly apparition from the abyss world. locations:Utumno, Portal to the Void name:spirit of mana plural:spirits of mana base:ghost color:p speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:123 rarity:5 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 innate-freq:33 spells:BR_MANA | BA_MANA | BO_MANA desc:A ghostly apparition with an intense magical aura. locations:Utumno, Portal to the Void name:spirit of disenchantment plural:spirits of disenchantment base:ghost color:p speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:123 rarity:5 weight:0 experience:25000 blow:HIT:DISENCHANT:8d8 blow:TOUCH:DRAIN_CHARGES:8d8 blow:HIT:DISENCHANT:8d8 blow:TOUCH:DRAIN_CHARGES:8d8 flags:PWMANG_EXTRA flags:IM_FIRE | IM_DISEN flags:FORCE_DEPTH spell-freq:3 innate-freq:100 spells:BR_DISE desc:A ghostly apparition ready to ruin your belongings. locations:Utumno, Portal to the Void name:spirit of chaos plural:spirits of chaos base:ghost color:p speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:123 rarity:5 weight:0 experience:25000 blow:HIT:HALLU:8d8 blow:CLAW:CONFUSE:8d8 blow:HIT:HALLU:8d8 blow:CLAW:CONFUSE:8d8 flags:PWMANG_EXTRA flags:IM_FIRE flags:FORCE_DEPTH spell-freq:3 innate-freq:100 spells:BR_CHAO desc:A ghostly apparition ready to wreck havoc. locations:Utumno, Portal to the Void name:spirit of time plural:spirits of time base:ghost color:p speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:123 rarity:5 weight:0 experience:25000 blow:HIT:TIME:8d8 blow:CLAW:TIME:8d8 blow:HIT:TIME:8d8 blow:CLAW:TIME:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 innate-freq:100 spells:BR_TIME desc:A ghostly apparition that seems out of time. locations:Utumno, Portal to the Void name:spirit of shadows plural:spirits of shadows base:ghost color:p speed:130 hit-points:4000 light:-2 hearing:20 armor-class:180 sleepiness:10 depth:123 rarity:5 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:FORCE_DEPTH spell-freq:3 innate-freq:67 spells:BR_LIGHT | BR_DARK | BA_DARK desc:A ghostly apparition that stands between light and darkness. locations:Utumno, Portal to the Void name:spirit of law plural:spirits of law base:ghost color:p speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:123 rarity:5 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA | NO_CUT flags:FORCE_DEPTH spell-freq:3 innate-freq:100 spells:BR_SOUN | BR_SHAR desc:A ghostly apparition seeking obedience. locations:Utumno, Portal to the Void name:spirit of power plural:spirits of power base:ghost color:p speed:130 hit-points:4000 hearing:20 armor-class:180 sleepiness:10 depth:123 rarity:5 weight:0 experience:25000 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 blow:HIT:HURT:8d8 blow:CLAW:HURT:8d8 flags:PWMANG_EXTRA flags:IM_PLASMA | IM_NEXUS | NO_SLOW flags:FORCE_DEPTH spell-freq:3 innate-freq:71 spells:BR_NEXU | BR_INER | BR_GRAV | BR_PLAS | BR_WALL | BO_PLAS | BO_ICE desc:A ghostly apparition ready to demonstrate its power. locations:Utumno, Portal to the Void name:Melkor, Lord of Darkness base:ainu color:D speed:150 hit-points:40000 hearing:200 armor-class:240 sleepiness:0 depth:126 rarity:1 weight:0 experience:97000 blow:HIT:DISENCHANT:24d10 blow:HIT:TIME:20d10 blow:HIT:FORGET:20d10 blow:HIT:LOSE_ALL:20d10 flags:UNIQUE | MALE | EVIL | REGENERATE flags:PWMANG_BASE | PWMANG_FIXED flags:KILL_WALL | MOVE_BODY | ATTR_FLICKER flags:IM_ACID | IM_ELEC | NO_FEAR flags:IM_NETHER | IM_PLASMA | IM_DISEN flags:FORCE_DEPTH drop:fortune cookie:Fortune Cookie:100:1:1 spell-freq:4 innate-freq:11 spells:BRAIN_SMASH | HEAL spells:DRAIN_MANA | TELE_TO | DARKNESS | SHRIEK spells:BA_MANA | BA_NETH | BA_DARK spells:BO_MANA spells:BR_NETH spells:S_HI_DEMON | S_HI_DRAGON | S_HI_UNDEAD | S_MONSTERS | S_UNIQUE spells:ANIM_DEAD | S_SPIRIT desc:He was the most powerful of the Valar, the equal of Manwe. desc: You banned him here, in the Void, and now you must destroy him desc: forever. However here in the Void, his spirit gained much power desc: for he is closer to the Flame Imperishable. He is coming to you in pure desc: madness, which makes him even more dangerous. You are on the verge desc: of dying! locations:Utumno, Portal to the Void name:Eru Iluvatar base:ainu color:D speed:155 hit-points:50000 hearing:200 armor-class:250 sleepiness:0 depth:127 rarity:1 weight:0 experience:99999 blow:HIT:DISENCHANT:25d10 blow:HIT:TIME:25d10 blow:HIT:FORGET:25d10 blow:HIT:LOSE_ALL:25d10 flags:UNIQUE | MALE | REGENERATE flags:PWMANG_FIXED | PWMANG_FINAL flags:KILL_WALL | MOVE_BODY | ATTR_FLICKER flags:IM_ACID | IM_ELEC | NO_FEAR flags:IM_NETHER | IM_PLASMA | IM_DISEN flags:FORCE_DEPTH drop:fortune cookie:Fortune Cookie:100:1:1 spell-freq:3 innate-freq:13 spells:BRAIN_SMASH | HEAL | TELE_SELF_TO spells:DRAIN_MANA | TELE_TO | SHRIEK spells:BA_MANA | BA_NETH | BA_DARK spells:BO_MANA spells:BR_NETH spells:S_HI_DEMON | S_HI_DRAGON | S_HI_UNDEAD | S_MONSTERS | S_UNIQUE spells:ANIM_DEAD | S_SPIRIT desc:He is the master of this dimension. He is God. He control it entirely. desc: Will you dare to raise your head and to look directly into his eyes? desc: What will you see there?.. locations:Utumno, Portal to the Void ########################################################################### ########################################################################### ########################################################################### ########################################################################### ################### Hunter's Valley ########################################################################### # Starting town name:huge bee base:townsfolk color:B speed:110 hit-points:7 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:2 weight:0 experience:0 blow:BITE:POISON:1d1 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:brown horse base:quadruped color:y speed:110 hit-points:50 hearing:30 armor-class:1 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:HIT:HURT:1d5 blow:MOAN flags:ANIMAL | RAND_50 | PWMANG_BASE | FRIGHTENED flags:FRIENDLY desc:A common horse. locations:Hunter's Valley|Farfest name:white horse base:quadruped color:y speed:110 hit-points:50 hearing:30 armor-class:1 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:HIT:HURT:1d5 blow:MOAN flags:ANIMAL | RAND_50 | PWMANG_BASE | FRIGHTENED flags:FRIENDLY desc:A common horse. locations:Hunter's Valley|Farfest name:spotted horse base:quadruped color:y speed:110 hit-points:50 hearing:30 armor-class:1 sleepiness:10 depth:0 rarity:4 weight:0 experience:0 blow:HIT:HURT:1d5 blow:MOAN flags:ANIMAL | RAND_50 | PWMANG_BASE | FRIGHTENED flags:FRIENDLY desc:A common horse. locations:Hunter's Valley|Farfest name:deer base:townsfolk color:B speed:110 hit-points:35 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:HIT:HURT:1d3 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:chicken base:townsfolk color:B speed:100 hit-points:13 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:1 weight:0 experience:0 blow:HIT:HURT:1d1 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:cow base:townsfolk color:B speed:70 hit-points:40 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:2 weight:0 experience:0 blow:HIT:HURT:1d5 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:donkey base:townsfolk color:B speed:90 hit-points:17 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:2 weight:0 experience:0 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:wagtail bird base:townsfolk color:B speed:110 hit-points:20 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:2 weight:0 experience:0 blow:HIT:HURT:1d1 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:thrush bird base:townsfolk color:B speed:110 hit-points:20 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:HIT:HURT:1d1 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:sparrow bird base:townsfolk color:B speed:110 hit-points:20 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:1 weight:0 experience:0 blow:HIT:HURT:1d1 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:tit bird base:townsfolk color:B speed:110 hit-points:20 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:2 weight:0 experience:0 blow:HIT:HURT:1d1 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:woodpecker bird base:townsfolk color:B speed:110 hit-points:20 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:HIT:HURT:1d1 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:waxwing bird base:townsfolk color:B speed:110 hit-points:20 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:HIT:HURT:1d1 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:blue jay bird base:townsfolk color:B speed:110 hit-points:20 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:HIT:HURT:1d1 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:red cardinal bird base:townsfolk color:B speed:110 hit-points:20 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:4 weight:0 experience:0 blow:HIT:HURT:1d1 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:blue big jay bird base:townsfolk color:B speed:110 hit-points:20 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:4 weight:0 experience:0 blow:HIT:HURT:1d1 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:black cat base:townsfolk color:B speed:110 hit-points:9 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:1 weight:0 experience:0 blow:HIT:HURT:1d2 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:spotted cat base:townsfolk color:B speed:110 hit-points:9 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:2 weight:0 experience:0 blow:HIT:HURT:1d2 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY flags:PASS_WALL desc:It doesn't like strangers. locations:Farfest name:yellow dog base:townsfolk color:B speed:110 hit-points:11 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:HIT:HURT:1d3 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:ginger pussycat base:townsfolk color:B speed:105 hit-points:9 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:4 weight:0 experience:0 blow:HIT:HURT:1d2 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY flags:PASS_WALL desc:It doesn't like strangers. locations:Farfest name:green snake base:townsfolk color:B speed:110 hit-points:22 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:2 weight:0 experience:0 blow:BITE:POISON:1d3 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:yellow snake base:townsfolk color:B speed:110 hit-points:22 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:2 weight:0 experience:0 blow:BITE:POISON:1d3 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:black and white cat base:townsfolk color:B speed:110 hit-points:9 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:HIT:HURT:1d2 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY flags:PASS_WALL desc:It doesn't like strangers. locations:Farfest name:grey cat base:townsfolk color:B speed:105 hit-points:9 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:HIT:HURT:1d1 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:ginger cat base:townsfolk color:B speed:110 hit-points:9 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:4 weight:0 experience:0 blow:HIT:HURT:1d2 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY flags:PASS_WALL desc:It doesn't like strangers. locations:Farfest name:white pussycat base:townsfolk color:B speed:105 hit-points:9 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:5 weight:0 experience:0 blow:HIT:HURT:1d2 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY flags:PASS_WALL desc:It doesn't like strangers. locations:Farfest name:cat bully base:townsfolk color:B speed:110 hit-points:9 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:4 weight:0 experience:0 blow:HIT:HURT:1d2 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY flags:PASS_WALL desc:It doesn't like strangers. locations:Farfest name:squirrel base:townsfolk color:B speed:110 hit-points:11 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:2 weight:0 experience:0 blow:HIT:HURT:1d1 flags:FEMALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:turtle base:townsfolk color:B speed:40 hit-points:30 hearing:10 armor-class:100 sleepiness:10 depth:0 rarity:6 weight:0 experience:0 blow:HIT:HURT:1d1 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:moose base:townsfolk color:B speed:110 hit-points:60 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:4 weight:0 experience:0 blow:HIT:HURT:1d8 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED desc:It doesn't like strangers. locations:Hunter's Valley|Farfest ### dog - in other place of tileset name:dog base:townsfolk color:B speed:110 hit-points:20 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:2 weight:0 experience:0 blow:HIT:HURT:1d2 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY desc:It doesn't like strangers. locations:Farfest name:mouse base:townsfolk color:B speed:110 hit-points:4 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:2 weight:0 experience:0 blow:HIT:HURT:1d1 flags:FEMALE flags:SMART | REGENERATE flags:NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:Small ears, beady eyes, fleshy nose and wormy tail. locations:Hunter's Valley|Farfest name:frog base:townsfolk color:B speed:105 hit-points:9 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:DROOL:HURT:1d1 flags:FEMALE flags:SMART | REGENERATE flags:NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:cockroach base:townsfolk color:B speed:105 hit-points:2 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:4 weight:0 experience:0 blow:BITE:HURT:1d1 flags:MALE flags:SMART | REGENERATE flags:NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:sheep base:townsfolk color:B speed:90 hit-points:15 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:5 weight:0 experience:0 blow:HIT:HURT:1d3 flags:FEMALE flags:SMART | REGENERATE flags:NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:pig base:townsfolk color:B speed:100 hit-points:15 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:5 weight:0 experience:0 blow:HIT:HURT:1d2 flags:MALE flags:SMART | REGENERATE flags:NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:fox base:townsfolk color:B speed:110 hit-points:20 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:HIT:HURT:1d2 flags:FEMALE flags:SMART | REGENERATE flags:NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:wasp base:townsfolk color:B speed:110 hit-points:10 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:BITE:POISON:1d3 flags:MALE flags:SMART | REGENERATE flags:NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:hedgehog base:townsfolk color:B speed:100 hit-points:11 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:4 weight:0 experience:0 blow:HIT:HURT:1d2 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY flags:PASS_WALL desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:scruffy little dog base:townsfolk color:B speed:110 hit-points:17 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:3 weight:0 experience:0 blow:HIT:HURT:1d2 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED flags:FRIENDLY desc:It doesn't like strangers. locations:Hunter's Valley|Farfest name:bear base:townsfolk color:u speed:110 hit-points:120 hearing:10 armor-class:10 sleepiness:10 depth:0 rarity:4 weight:0 experience:0 blow:HIT:HURT:1d10 flags:MALE flags:SMART | REGENERATE flags:NO_FEAR | NO_SLEEP flags:ANIMAL | RAND_50 | FRIGHTENED desc:It doesn't like strangers. locations:Hunter's Valley|Farfest ########################################################################### ################### Carn Dum ########################################################################### # Base town containing the main Angband dungeon ################### Endless Sea ########################################################################### ################### Ice Lands ########################################################################### # Helcaraxe name:Ice Lands ice elemental base:elemental color:w speed:110 hit-points:193 hearing:10 armor-class:90 sleepiness:50 depth:0 rarity:1 weight:0 experience:20 blow:TOUCH:COLD:4d3 blow:HIT:HURT:4d6 blow:TOUCH:COLD:4d3 flags:COLD_BLOOD | POWERFUL flags:BASH_DOOR | KILL_BODY | KILL_ITEM flags:IM_ACID | IM_COLD | IM_ELEC | HURT_FIRE flags:FORCE_SLEEP flags:WILD_GLACIER spell-freq:5 spell-power:37 spells:BA_COLD spells:BO_ICE desc:It is a towering glacier of ice. locations:Ice Lands ########################################################################### ################### The North Sea ########################################################################### ########################################################################### ################### Deadmen hills ########################################################################### # Barrow Downs name:Deadmen hills white wraith base:wraith color:w speed:110 hit-points:68 hearing:20 armor-class:48 sleepiness:100 depth:0 rarity:1 weight:0 experience:7 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 blow:TOUCH:LOSE_WIS flags:OPEN_DOOR | BASH_DOOR flags:FORCE_SLEEP | LEVITATE spell-freq:8 spell-power:26 spells:WOUND | DARKNESS | SCARE desc:It is a tangible but ghostly form made of white fog. locations:Deadmen hills ########################################################################### ################### Farfest ########################################################################### # TOWN ################# THERE ARE ALREADY MORE GUYS IN MAIN SECTION (townies) name:brazen strumpet base:townsfolk color:I speed:100 hit-points:20 light:2 hearing:40 armor-class:4 sleepiness:80 depth:0 rarity:3 weight:90 experience:0 blow:HYPNOTIZE:SEDUCE blow:BEG blow:TOUCH:DISEASE flags:FEMALE flags:DROP_60 | ONLY_GOLD flags:TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON flags:NO_SLEEP spell-freq:15 spell-power:3 spells:BLINK desc:Very beautiful girl... She looks at you with interest. locations:Farfest ########################################################################### ################### Old Forest ########################################################################### # The Old forest name:Old Forest shambling mound base:mushroom color:g speed:110 hit-points:70 hearing:20 armor-class:19 sleepiness:80 depth:0 rarity:2 weight:0 experience:7 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 flags:EVIL flags:OPEN_DOOR | BASH_DOOR flags:WILD_SWAMP spell-freq:4 spell-power:18 friends:60:1d1:giant fruit fly desc:A pile of rotting vegetation that slides towards you with a disgusting desc: stench, waking all it nears. locations:Old Forest name:Old Forest huorn base:tree color:g speed:110 hit-points:275 light:-2 hearing:40 armor-class:45 sleepiness:80 depth:0 rarity:1 weight:0 experience:7 blow:CRUSH:HURT:3d6 blow:CRUSH:HURT:3d6 blow:CRUSH:HURT:3d6 blow:CRUSH:HURT:3d6 flags:NO_SLEEP | NO_CONF | WEIRD_MIND | HURT_FIRE | PWMANG_BASE flags:IM_WATER | IM_COLD | NEVER_MOVE | WILD_ONLY | WILD_WOOD spell-freq:9 spell-power:19 spells:BLINK | TELE_TO desc:A very strong near-sentient tree, which has become hostile to other living desc: things. locations:Old Forest name:Old Forest werewolf plural:werewolves base:canine color:D speed:110 hit-points:230 hearing:15 smell:50 armor-class:36 sleepiness:70 depth:0 rarity:1 weight:90 experience:15 blow:CLAW:HURT:2d6 blow:CLAW:HURT:2d6 blow:BITE:HURT:2d10 flags:EVIL flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON desc:It is a huge wolf with eyes that glow with manly intelligence. locations:Old Forest name:Old Forest ranger base:person color:W speed:110 hit-points:90 light:2 hearing:20 armor-class:60 sleepiness:80 depth:0 rarity:1 weight:170 experience:5 blow:HIT:HURT:5d4 blow:HIT:HURT:5d4 flags:MALE flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON spell-freq:4 spell-power:20 innate-freq:15 spells:ARROW | BLINK | MISSILE spells:BO_COLD | BO_ELEC spells:S_ANIMAL friends:50:1d1:Easterling champion friends:50:1d1:master rogue friends:50:1d2:illusionist friends:50:1d2:priest friends:50:1d1:paladin desc:A warrior who is at one with nature. A master of both bow and sword, with desc: minor spellcasting skills, and animals come to do his bidding. locations:Old Forest name:Old Forest unbeliever base:person color:m speed:110 hit-points:83 light:2 hearing:20 armor-class:48 sleepiness:80 depth:0 rarity:1 weight:190 experience:9 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:MALE | ANTI_MAGIC | PWMANG_BASE flags:OPEN_DOOR friends:50:1d1:Easterling champion friends:50:1d1:master rogue desc:A scarred warrior who moves with strange confidence. locations:Old Forest ########################################################################### ################### Widelands ########################################################################### # The Land Of Rhun name:Widelands easterling champion base:person color:u speed:110 hit-points:90 light:2 hearing:20 armor-class:60 sleepiness:160 depth:0 rarity:1 weight:190 experience:6 blow:HIT:HURT:6d5 blow:HIT:HURT:6d5 flags:MALE | EVIL flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON friends:50:1d2:Same desc:A scarred warrior who moves with confidence. locations:Widelands name:Widelands ranger base:person color:W speed:110 hit-points:90 light:2 hearing:20 armor-class:60 sleepiness:120 depth:0 rarity:1 weight:170 experience:5 blow:HIT:HURT:5d4 blow:HIT:HURT:5d4 flags:MALE flags:OPEN_DOOR | TAKE_ITEM flags:DROP_CORPSE | DROP_SKELETON spell-freq:4 spell-power:20 innate-freq:40 spells:ARROW | BLINK | MISSILE spells:BO_COLD | BO_ELEC friends:100:1d3:Same desc:A warrior who is at one with nature. A master of both bow and sword, with desc: minor spellcasting skills, and animals come to do his bidding. locations:Widelands ########################################################################### ################### Mirkwood ########################################################################### # Mirkwood name:Mirkwood ranger chieftain base:person color:W speed:120 hit-points:880 hearing:20 armor-class:72 sleepiness:110 depth:0 rarity:1 weight:180 experience:35 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:MALE | INVISIBLE flags:OPEN_DOOR | TAKE_ITEM flags:IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:DROP_CORPSE | DROP_SKELETON spell-freq:4 spell-power:41 innate-freq:40 spells:ARROW | BLINK | HASTE | MISSILE spells:BO_COLD spells:BO_ELEC | BO_FIRE desc:A chieftain among the Rangers. His understanding of nature gives him desc: powerful elemental spells to use against you, in addition to his skills as desc: an archer and a warrior. Furthermore, he is a master of camouflage, so you desc: will need magically enhanced seeing to spot him. locations:Mirkwood ########################################################################### ################### South Mirkwood ########################################################################### name:South Mirkwood ranger chieftain base:person color:W speed:120 hit-points:880 hearing:20 armor-class:72 sleepiness:110 depth:0 rarity:1 weight:180 experience:35 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 blow:HIT:HURT:5d5 flags:MALE | INVISIBLE flags:OPEN_DOOR | TAKE_ITEM flags:IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD flags:DROP_CORPSE | DROP_SKELETON spell-freq:4 spell-power:41 innate-freq:33 spells:ARROW | BLINK | HASTE | MISSILE spells:BO_COLD spells:BO_ELEC | BO_FIRE desc:A chieftain among the Rangers. His understanding of nature gives him desc: powerful elemental spells to use against you, in addition to his skills as desc: an archer and a warrior. Furthermore, he is a master of camouflage, so you desc: will need magically enhanced seeing to spot him. locations:South Mirkwood ########################################################################### ################### Moarih ########################################################################### # Utumno name:Moarih nightcrawler base:wraith color:D speed:120 hit-points:2440 hearing:20 armor-class:192 sleepiness:230 depth:0 rarity:3 weight:0 experience:100 blow:STING:LOSE_CON:8d8 blow:STING:LOSE_CON:8d8 blow:BITE:ACID:10d10 blow:BITE:ACID:10d10 flags:SMART | ATTR_FLICKER flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | IM_NETHER flags:FORCE_SLEEP spell-freq:4 spell-power:69 spells:BLIND | BRAIN_SMASH | SCARE spells:BO_MANA | BO_NETH desc:This intensely evil creature bears the form of a gargantuan black worm. Its desc: gaping maw is a void of blackness, acid drips from its steely hide. It is desc: like nothing you have ever seen before, and a terrible chill runs down desc: your spine as you face it. locations:Moarih ########################################################################### ################### Sea of Bermados ########################################################################### # The Small Watery Cave ################### DOESN'T WORK WITHOUT SPAWN ON WATER FLAG name:Sea of Bermados water spirit base:elemental color:b speed:120 hit-points:41 hearing:12 armor-class:42 sleepiness:20 depth:0 rarity:1 weight:0 experience:5 blow:HIT:HURT:2d4 blow:HIT:HURT:2d4 flags:COLD_BLOOD | LEVITATE flags:IM_ACID | IM_WATER desc:A whirlpool of sentient liquid. locations:Sea of Bermados name:Sea of Bermados water vortex plural:water vortices base:vortex color:s speed:110 hit-points:45 hearing:100 armor-class:36 sleepiness:10 depth:0 rarity:1 weight:0 experience:10 blow:ENGULF:ACID:3d3 flags:IM_ACID | IM_WATER flags:NO_STUN spell-freq:6 spell-power:21 innate-freq:100 spells:BR_ACID desc:A caustic spinning whirlpool of water. locations:Sea of Bermados name:Sea of Bermados water elemental base:elemental color:b speed:110 hit-points:113 hearing:12 armor-class:48 sleepiness:50 depth:0 rarity:1 weight:0 experience:5 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 blow:HIT:HURT:1d10 flags:COLD_BLOOD | LEVITATE flags:KILL_BODY | KILL_ITEM flags:IM_ACID | IM_COLD | IM_FIRE | IM_WATER flags:FORCE_SLEEP spell-freq:6 spell-power:33 spells:BO_COLD desc:It is a towering tempest of water. locations:Sea of Bermados name:Sea of Bermados water troll base:troll color:B speed:110 hit-points:316 hearing:20 smell:20 armor-class:60 sleepiness:50 depth:0 rarity:4 weight:400 experience:10 blow:HIT:HURT:1d9 blow:HIT:HURT:1d9 blow:BITE:HURT:2d2 blow:BITE:HURT:2d2 flags:MALE | REGENERATE flags:HURT_LIGHT | IM_COLD flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP friends:100:1d2:Same desc:He is a troll that reeks of brine. locations:Sea of Bermados name:Sea of Bermados mature water dragon base:dragon color:Z speed:110 hit-points:528 hearing:20 armor-class:84 sleepiness:180 depth:0 rarity:3 weight:11000 experience:10 blow:CLAW:HURT:2d9 blow:CLAW:HURT:2d9 blow:BITE:HURT:4d9 flags:OPEN_DOOR | BASH_DOOR flags:IM_WATER | NO_CONF | NO_SLEEP flags:DROP_CORPSE | WILD_SHORE spell-freq:8 spell-power:36 innate-freq:33 spells:CONF | SCARE spells:BR_WATE desc:A large dragon, scales tinted deep watery blue. locations:Sea of Bermados name:Sea of Bermados water hound base:zephyr hound color:Z speed:110 hit-points:248 hearing:30 smell:50 armor-class:48 sleepiness:180 depth:0 rarity:4 weight:6 experience:10 blow:BITE:CONFUSE:2d10 blow:BITE:HURT:2d10 blow:CLAW:HURT:2d10 blow:CLAW:HURT:2d10 flags:PWMANG_BASE flags:DROP_CORPSE | DROP_SKELETON flags:BASH_DOOR flags:IM_COLD | IM_WATER flags:FORCE_SLEEP spell-freq:5 spell-power:43 innate-freq:100 spells:BR_WATE friends:100:1d4:Same desc:The sound of a hundred waterfalls rushes through your ears as a huge wave desc: of water, vaguely hound-shaped, rushes towards you. locations:Sea of Bermados ########################################################################### ################### Old manor ########################################################################### # Abandoned Manor name:Old manor vampire bat base:bat color:D speed:120 hit-points:30 hearing:12 armor-class:60 sleepiness:180 depth:0 rarity:3 weight:0 experience:5 blow:BITE:LOSE_WIS:1d4 blow:BITE:LOSE_INT:1d4 flags:UNDEAD | EVIL | COLD_BLOOD | REGENERATE flags:IM_COLD | NO_FEAR | NO_CONF | NO_SLEEP | NO_STUN desc:A blood-sucking bat that flies at your neck hungrily. locations:Old manor ########################################################################### #################### -1_1 ########################################################################### # PLAYER HOUSING #short:-1_1 #wpos:-1:1 ########################################################################### ################### Mosquito Marshes ########################################################################### # Fetid Swamps name:Mosquito Marshes black mamba base:snake color:D speed:120 hit-points:45 hearing:10 armor-class:48 sleepiness:70 depth:0 rarity:3 weight:30 experience:4 blow:BITE:POISON:4d4 flags:IM_POIS flags:DROP_CORPSE | DROP_SKELETON | WILD_GRASS | WILD_WOOD | WILD_SWAMP desc:It has glistening black skin, a sleek body and highly venomous fangs. locations:Mosquito Marshes name:Mosquito Marshes grape jelly plural:grape jellies base:jelly color:P speed:110 hit-points:234 light:2 hearing:2 armor-class:1 sleepiness:99 depth:0 rarity:3 weight:0 experience:6 blow:TOUCH:LOSE_DEX flags:NEVER_MOVE flags:HURT_LIGHT | HURT_COLD | IM_POIS | NO_CONF | NO_SLEEP spell-freq:11 spell-power:12 spells:DRAIN_MANA desc:Yum! It looks quite tasty. It is a pulsing mound of glowing flesh. locations:Mosquito Marshes name:Mosquito Marshes skeleton human base:skeleton color:w speed:110 hit-points:45 hearing:20 armor-class:45 sleepiness:70 depth:0 rarity:1 weight:0 experience:4 blow:HIT:HURT:1d8 flags:EMPTY_MIND flags:OPEN_DOOR | BASH_DOOR desc:It is an animated human skeleton. locations:Mosquito Marshes name:Mosquito Marshes zombified human base:zombie color:s speed:110 hit-points:54 hearing:20 armor-class:36 sleepiness:100 depth:0 rarity:1 weight:0 experience:3 blow:HIT:HURT:1d4 blow:HIT:HURT:1d4 flags:EMPTY_MIND flags:NO_FEAR desc:It is a shambling human corpse dropping chunks of flesh behind it. locations:Mosquito Marshes name:Mosquito Marshes stegocentipede base:centipede color:u speed:120 hit-points:59 hearing:12 smell:20 armor-class:36 sleepiness:30 depth:0 rarity:2 weight:0 experience:4 blow:BITE:HURT:2d4 blow:BITE:HURT:2d4 blow:STING:HURT:2d4 flags:BASH_DOOR flags:DROP_SKELETON desc:It is a vast armoured centipede with massive mandibles and a spiked tail. locations:Mosquito Marshes name:Mosquito Marshes spotted jelly plural:spotted jellies base:jelly color:o speed:120 hit-points:59 hearing:12 armor-class:27 sleepiness:30 depth:0 rarity:3 weight:0 experience:3 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:2d6 blow:TOUCH:ACID:2d6 flags:COLD_BLOOD flags:NEVER_MOVE flags:HURT_LIGHT | IM_ACID | IM_POIS | HURT_COLD | NO_CONF | NO_SLEEP desc:A strange jelly thing, covered in discoloured blotches. locations:Mosquito Marshes name:Mosquito Marshes drider base:spider color:b speed:110 hit-points:70 hearing:8 armor-class:36 sleepiness:80 depth:0 rarity:2 weight:200 experience:5 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 blow:BITE:POISON:1d6 flags:EVIL flags:IM_POIS flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:8 spell-power:13 spells:WOUND | CONF | DARKNESS desc:A dark elven torso merged with the bloated form of a giant spider. locations:Mosquito Marshes name:Mosquito Marshes killer brown beetle base:killer beetle color:u speed:110 hit-points:59 hearing:10 armor-class:72 sleepiness:70 depth:0 rarity:1 weight:50 experience:5 blow:BITE:HURT:4d4 flags:DROP_CORPSE desc:It is a vicious insect with a tough carapace. locations:Mosquito Marshes name:Mosquito Marshes druid base:person color:G speed:110 hit-points:78 light:2 hearing:20 armor-class:15 sleepiness:80 depth:0 rarity:2 weight:140 experience:5 blow:HIT:HURT:2d4 blow:HIT:HURT:2d4 flags:MALE | EVIL | SMART flags:OPEN_DOOR flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD spell-freq:3 spell-power:13 spells:BLIND | BLINK | HASTE | HOLD | SLOW spells:BO_ELEC | BO_FIRE desc:A priest devoted to Nature. locations:Mosquito Marshes name:Mosquito Marshes ochre jelly plural:ochre jellies base:jelly color:U speed:120 hit-points:59 hearing:12 armor-class:21 sleepiness:30 depth:0 rarity:3 weight:0 experience:4 blow:TOUCH:ACID:1d10 blow:TOUCH:ACID:2d6 blow:TOUCH:ACID:2d6 flags:COLD_BLOOD flags:OPEN_DOOR | BASH_DOOR | TAKE_ITEM flags:IM_ACID | IM_POIS | HURT_COLD | NO_CONF | NO_SLEEP desc:A fast moving highly acidic jelly thing, that is eating away the floor it desc: rests on. locations:Mosquito Marshes name:Mosquito Marshes mongbat base:bat color:M speed:110 hit-points:88 hearing:20 armor-class:96 sleepiness:20 depth:0 rarity:2 weight:80 experience:6 blow:CLAW:HURT:1d4 blow:CLAW:HURT:1d4 blow:BITE:POISON:1d8 flags:EVIL | WEIRD_MIND | PWMANG_BASE flags:DROP_CORPSE flags:IM_COLD | IM_ELEC | IM_POIS friends:100:1d3:Same desc:Devil-bats, notoriously difficult to kill. locations:Mosquito Marshes name:Mosquito Marshes giant flea base:insect color:s speed:120 hit-points:3 hearing:8 armor-class:30 sleepiness:80 depth:0 rarity:3 weight:0 experience:4 flags:NO_PASS_TREE blow:BITE:HURT:1d2 flags:BASH_DOOR desc:It makes you itch just to look at it. locations:Mosquito Marshes name:Mosquito Marshes flesh golem base:golem color:R speed:110 hit-points:54 hearing:12 armor-class:36 sleepiness:80 depth:0 rarity:2 weight:0 experience:5 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 flags:BASH_DOOR desc:A shambling humanoid monster with long scars. locations:Mosquito Marshes name:Mosquito Marshes warg base:canine color:s speed:120 hit-points:36 hearing:20 smell:50 armor-class:30 sleepiness:80 depth:0 rarity:2 weight:70 experience:4 blow:BITE:HURT:1d8 flags:EVIL | GROUP_AI flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD | WILD_MOUNTAIN friends:100:1d3:Same desc:It is a large wolf with eyes full of cunning. locations:Mosquito Marshes name:Mosquito Marshes giant black louse plural:giant black lice base:insect color:D speed:120 hit-points:2 hearing:6 armor-class:8 sleepiness:80 depth:0 rarity:1 weight:0 experience:3 flags:NO_PASS_TREE blow:BITE:HURT:1d2 desc:It makes you itch just to look at it. locations:Mosquito Marshes name:Mosquito Marshes lurker base:lurker color:w speed:110 hit-points:176 hearing:30 armor-class:30 sleepiness:80 depth:0 rarity:3 weight:0 experience:8 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 desc:A strange creature that merges with the dungeon floor, trapping its victims desc: by enveloping them within its perfectly disguised form. locations:Mosquito Marshes name:Mosquito Marshes gibbering mouther base:jelly color:M speed:110 hit-points:28 hearing:15 armor-class:24 sleepiness:80 depth:0 rarity:4 weight:0 experience:2 blow:CRAWL:POISON:1d4 flags:MULTIPLY | EVIL | PWMANG_BASE flags:NEVER_MOVE flags:IM_POIS spell-freq:7 spell-power:14 innate-freq:33 spells:CONF | SCARE spells:BR_LIGHT desc:A chaotic mass of pulsating flesh, mouths and eyes. locations:Mosquito Marshes ########################################################################### ################### Minotaur Thorns ########################################################################### # The Maze name:Minotaur Thorns cave troll base:troll color:u speed:110 hit-points:156 hearing:20 smell:20 armor-class:60 sleepiness:80 depth:0 rarity:1 weight:600 experience:10 blow:HIT:HURT:3d5 blow:HIT:HURT:3d5 blow:BITE:HURT:1d8 blow:BITE:HURT:1d8 flags:MALE | REGENERATE flags:HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON friends:100:1d8:Same desc:He is a vicious monster, feared for his ferocity. locations:Minotaur Thorns ########################################################################### ################### Ancient Mountains ########################################################################### # The Heart of the Earth name:Ancient Mountains ettin base:troll color:b speed:110 hit-points:1320 hearing:20 smell:20 armor-class:120 sleepiness:70 depth:0 rarity:1 weight:15 experience:1000 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 blow:HIT:HURT:3d6 flags:NO_CONF | NO_SLEEP flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD | WILD_SWAMP | WILD_MOUNTAIN desc:A massive two-headed troll of huge strength, ettins are stupid but violent. desc: They are also living proof that two heads are not more intelligent than desc: one... locations:Ancient Mountains ########################################################################### ################### Lakelands ########################################################################### # Erebor name:Lakelands ancient green dragon base:ancient dragon color:g speed:120 hit-points:1056 hearing:20 armor-class:120 sleepiness:180 depth:0 rarity:1 weight:17000 experience:50 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d8 flags:OPEN_DOOR | BASH_DOOR flags:IM_POIS flags:DROP_CORPSE spell-freq:6 spell-power:40 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_POIS desc:A huge draconic form enveloped in clouds of poisonous vapour. locations:Lakelands name:Lakelands ancient black dragon base:ancient dragon color:s speed:120 hit-points:1164 hearing:20 armor-class:120 sleepiness:180 depth:0 rarity:2 weight:17000 experience:60 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d9 flags:OPEN_DOOR | BASH_DOOR flags:IM_ACID flags:DROP_CORPSE spell-freq:6 spell-power:41 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_ACID desc:A huge draconic form. Pools of acid melt the floor around it. locations:Lakelands name:Lakelands ancient red dragon base:ancient dragon color:r speed:120 hit-points:1164 light:2 hearing:20 armor-class:120 sleepiness:180 depth:0 rarity:2 weight:17000 experience:60 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d9 flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE flags:DROP_CORPSE spell-freq:6 spell-power:41 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_FIRE desc:A huge draconic form. Wisps of smoke steam from its nostrils and the desc: extreme heat surrounding it makes you gasp for breath. locations:Lakelands ########################################################################### ################### Unnamed Lands ########################################################################### # The Paths of the Dead name:Unnamed Lands skeleton human base:skeleton color:w speed:120 hit-points:1000 hearing:20 armor-class:75 sleepiness:70 depth:0 rarity:1 weight:0 experience:0 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 flags:EMPTY_MIND flags:OPEN_DOOR | BASH_DOOR friends:100:1d6:Same desc:It is an animated human skeleton. locations:Unnamed Lands ########################################################################### ################### Ancient City ########################################################################### # Numenor name:Ancient City nether wraith base:wraith color:G speed:120 hit-points:650 hearing:20 armor-class:66 sleepiness:180 depth:0 rarity:4 weight:0 experience:25 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 blow:HIT:HURT:1d12 blow:TOUCH:LOSE_STR flags:INVISIBLE flags:PASS_WALL flags:FORCE_SLEEP spell-freq:6 spell-power:39 spells:BLIND | WOUND | DARKNESS | MIND_BLAST | SCARE spells:BO_NETH desc:A form that hurts the eye, death permeates the air around it. As it nears desc: you, a coldness saps your soul. locations:Ancient City ########################################################################### ################### Worm Beach ########################################################################### # The Sandworm Lair name:Worm Beach sandworm base:sandworm color:M speed:115 hit-points:132 hearing:10 armor-class:48 sleepiness:80 depth:0 rarity:3 weight:0 experience:1 blow:CLAW:POISON:4d4 blow:CLAW:POISON:4d4 blow:CLAW:POISON:4d4 blow:BITE:HURT:5d5 flags:PWMANG_BASE friends:100:1d4:Same desc:Off breed of the Sandworm Queen, they are harmless alone... locations:Worm Beach ########################################################################### ################### Magery Peninsula ########################################################################### # The Illusory Castle name:Magery Peninsula giant roc base:bird color:u speed:110 hit-points:560 hearing:20 armor-class:84 sleepiness:180 depth:0 rarity:3 weight:600 experience:20 blow:CRUSH:HURT:8d12 blow:CRUSH:HURT:8d12 blow:HIT:ELEC:12d12 flags:BASH_DOOR flags:IM_ELEC flags:DROP_CORPSE | WILD_WOOD | WILD_MOUNTAIN flags:WANDERER desc:A vast legendary bird, its iron talons rake the most impenetrable of desc: surfaces and its screech echoes through the many winding dungeon desc: corridors. locations:Magery Peninsula ########################################################################### ################### Deadlands ########################################################################### # Dol Guldur name:Deadlands hell knight base:person color:D speed:120 hit-points:1320 light:2 hearing:20 armor-class:120 sleepiness:180 depth:0 rarity:1 weight:0 experience:50 blow:HIT:HURT:10d5 blow:HIT:HURT:10d5 blow:HIT:HURT:10d5 blow:HIT:LOSE_CON:10d5 flags:COLD_BLOOD | EVIL | PWMANG_BASE | SMART flags:OPEN_DOOR flags:IM_NEXUS | IM_PLASMA | IM_NETHER | IM_FIRE | IM_COLD | IM_POIS flags:FORCE_SLEEP spell-freq:5 spell-power:52 spells:BLIND | WOUND | SCARE spells:BA_FIRE | BA_NETH spells:BO_PLAS friends:100:1d3:Same desc:It is a humanoid form dressed in armour of ancient style. From beneath its desc: helmet, eyes glow with hellfire. locations:Deadlands ########################################################################### ################### Websnout ########################################################################### # Cirith Ungol name:Websnout elder aranea base:spider color:r speed:120 hit-points:1050 hearing:20 armor-class:78 sleepiness:180 depth:0 rarity:1 weight:0 experience:25 blow:CLAW:POISON:5d8 blow:CLAW:POISON:5d8 blow:BITE:HALLU:5d6 blow:DEVOUR:EAT_LIGHT:5d6 flags:EVIL | ANIMAL | SMART | SPIRIT flags:OPEN_DOOR flags:HURT_LIGHT | IM_FIRE | IM_POIS flags:FORCE_SLEEP flags:DROP_SKELETON spell-freq:6 spell-power:48 spells:WOUND | DRAIN_MANA | HEAL | HOLD | MIND_BLAST | SLOW spells:BA_FIRE spells:BO_FIRE friends:30:1d2:Same desc:A vast, bloated arachnid, master of its brood: among the more terrible of desc: Ungoliant's descendants, this is a monster such as those who haunted the desc: dread valley of Nan Dungortheb long ago. locations:Websnout ########################################################################### ################### Iron Mountains ########################################################################### # The Mines of Moria name:Iron Mountains 11-headed hydra base:hydra color:R speed:120 hit-points:950 light:2 hearing:20 armor-class:120 sleepiness:180 depth:0 rarity:1 weight:850 experience:50 blow:BITE:HURT:3d12 blow:BITE:HURT:3d12 blow:BITE:HURT:3d12 blow:BITE:HURT:3d12 flags:OPEN_DOOR | MOVE_BODY flags:IM_FIRE flags:DROP_CORPSE | DROP_SKELETON | WILD_SHORE | WILD_SWAMP spell-freq:4 spell-power:44 innate-freq:40 spells:SCARE spells:BA_FIRE spells:BO_FIRE spells:BR_FIRE | BR_SOUN desc:A strange reptilian hybrid with eleven smouldering heads. locations:Iron Mountains #breath sound instead of bo_plasma #bity not with fire, but normal ########################################################################### ################### Old Mines ########################################################################### # The Orc Mountains name:Old Mines half-orc base:orc color:s speed:110 hit-points:88 hearing:20 smell:20 armor-class:60 sleepiness:50 depth:0 rarity:2 weight:170 experience:5 blow:HIT:HURT:3d4 blow:HIT:HURT:3d4 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL friends:30:1d8:Same desc:He is a hideous deformed cross-breed with man and orc, combining man's desc: strength and cunning with orcish evil. The traitorous wizard Saruman is desc: generally believed to be responsible for this abomination. locations:Old Mines ########################################################################### ################### Abandoned Outpost ########################################################################### # The Orc Cave name:Abandoned Outpost's brown yeek base:yeek color:u speed:110 hit-points:11 hearing:18 smell:20 armor-class:21 sleepiness:60 depth:0 rarity:1 weight:80 experience:1 blow:HIT:HURT:1d6 flags:DROP_40 flags:DROP_CORPSE desc:It is a strange small humanoid. locations:Abandoned Outpost name:Abandoned Outpost's small kobold base:kobold color:y speed:110 hit-points:8 hearing:20 smell:20 armor-class:24 sleepiness:70 depth:0 rarity:1 weight:80 experience:1 blow:HIT:HURT:1d5 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:It is a squat and ugly humanoid figure with a canine face. locations:Abandoned Outpost name:Abandoned Outpost's kobold base:kobold color:G speed:110 hit-points:12 hearing:20 smell:20 armor-class:24 sleepiness:70 depth:0 rarity:1 weight:90 experience:1 blow:HIT:HURT:1d8 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:It is a small, dog-headed humanoid. locations:Abandoned Outpost name:Abandoned Outpost's kobold shaman base:kobold color:r speed:110 hit-points:11 hearing:20 smell:20 armor-class:24 sleepiness:50 depth:0 rarity:1 weight:80 experience:2 blow:HIT:HURT:1d8 flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 spell-power:3 spells:WOUND | CONF | HEAL | MISSILE friends:100:1d3:Same desc:It is a kobold dressed in skins and gesturing wildly. locations:Abandoned Outpost name:Abandoned Outpost's kobold archer base:kobold color:W speed:110 hit-points:24 hearing:20 smell:20 armor-class:24 sleepiness:70 depth:0 rarity:1 weight:90 experience:2 blow:HIT:HURT:1d9 flags:DROP_CORPSE | DROP_SKELETON spell-freq:5 spell-power:4 innate-freq:100 spells:ARROW friends:100:1d3:Same desc:It is an ugly dog-headed humanoid wielding a bow. locations:Abandoned Outpost name:Abandoned Outpost's snotling base:orc color:M speed:110 hit-points:15 hearing:20 smell:20 armor-class:38 sleepiness:70 depth:0 rarity:1 weight:90 experience:2 blow:HIT:HURT:1d6 flags:PWMANG_BASE flags:HURT_LIGHT flags:WILD_WOOD friends:100:1d3:Same desc:Immature orclings, running wild and screaming all the time. locations:Abandoned Outpost name:Abandoned Outpost's large kobold base:kobold color:b speed:110 hit-points:65 hearing:20 smell:20 armor-class:48 sleepiness:70 depth:0 rarity:1 weight:100 experience:3 blow:HIT:HURT:1d10 flags:DROP_CORPSE | DROP_SKELETON friends:100:1d3:Same desc:It is a man-sized figure with the all too recognizable face of a kobold. locations:Abandoned Outpost name:Abandoned Outpost's snaga base:orc color:U speed:110 hit-points:36 hearing:20 smell:20 armor-class:48 sleepiness:70 depth:0 rarity:1 weight:160 experience:3 blow:HIT:HURT:1d8 flags:HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL friends:100:1d3:Same desc:He is one of the many weaker 'slave' orcs, often mistakenly known as a desc: goblin. locations:Abandoned Outpost ########################################################################### ################### Mountain Gorge ########################################################################### # The Mountain Gorge name:Mountain Gorge's grey mold base:mold color:s speed:110 hit-points:2 hearing:2 armor-class:1 sleepiness:0 depth:0 rarity:1 weight:0 experience:0 blow:SPORE:HURT:1d3 blow:SPORE:HURT:1d3 flags:EMPTY_MIND | STUPID desc:A small strange grey growth. locations:Mountain Gorge name:Mountain Gorge's grey mushroom patch plural:grey mushroom patches base:mushroom color:s speed:100 hit-points:2 hearing:2 armor-class:1 sleepiness:0 depth:0 rarity:1 weight:0 experience:0 blow:SPORE:CONFUSE:1d3 flags:IM_POIS | NEVER_MOVE desc:Yum! It looks quite tasty. locations:Mountain Gorge name:Mountain Gorge's giant yellow centipede base:centipede color:y speed:110 hit-points:7 hearing:8 smell:20 armor-class:14 sleepiness:30 depth:0 rarity:1 weight:0 experience:0 blow:BITE:HURT:1d3 blow:STING:HURT:1d2 flags:DROP_SKELETON | WILD_ALL desc:It is about four feet long and carnivorous. locations:Mountain Gorge name:Mountain Gorge's giant white centipede base:centipede color:w speed:110 hit-points:9 hearing:7 smell:20 armor-class:12 sleepiness:40 depth:0 rarity:1 weight:0 experience:0 blow:BITE:HURT:1d2 blow:STING:HURT:1d2 flags:DROP_SKELETON | WILD_ALL desc:It is about four feet long and carnivorous. locations:Mountain Gorge name:Mountain Gorge's giant white mouse plural:giant white mice base:rodent color:w speed:110 hit-points:2 hearing:8 smell:20 armor-class:4 sleepiness:20 depth:0 rarity:1 weight:0 experience:0 blow:BITE:HURT:1d2 flags:DROP_SKELETON | WILD_GRASS desc:It is about three feet long with large teeth. locations:Mountain Gorge name:Mountain Gorge's large brown snake base:snake color:u speed:100 hit-points:14 hearing:4 armor-class:42 sleepiness:99 depth:0 rarity:1 weight:80 experience:0 blow:BITE:HURT:1d2 blow:CRUSH:HURT:1d3 flags:DROP_CORPSE | DROP_SKELETON desc:It is about eight feet long. locations:Mountain Gorge name:Mountain Gorge's large white snake base:snake color:w speed:100 hit-points:11 hearing:4 armor-class:36 sleepiness:99 depth:0 rarity:1 weight:80 experience:0 blow:BITE:HURT:1d1 blow:CRUSH:HURT:1d1 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:It is about eight feet long. locations:Mountain Gorge name:Mountain Gorge's small kobold base:kobold color:y speed:110 hit-points:8 hearing:20 smell:20 armor-class:24 sleepiness:70 depth:0 rarity:1 weight:80 experience:0 blow:HIT:HURT:1d4 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:It is a squat and ugly humanoid figure with a canine face. locations:Mountain Gorge name:Mountain Gorge's rock lizard base:reptile color:U speed:110 hit-points:8 hearing:20 smell:20 armor-class:4 sleepiness:15 depth:0 rarity:1 weight:10 experience:0 blow:BITE:HURT:1d1 flags:DROP_CORPSE | WILD_MOUNTAIN desc:It is a small lizard with a hardened hide. locations:Mountain Gorge name:Mountain Gorge's jackal base:canine color:U speed:110 hit-points:3 hearing:10 smell:50 armor-class:3 sleepiness:10 depth:0 rarity:1 weight:40 experience:0 blow:BITE:HURT:1d1 flags:GROUP_AI flags:DROP_CORPSE | DROP_SKELETON | WILD_GRASS | WILD_WOOD friends:100:1d3:Same desc:It is a yapping snarling dog, dangerous when in a pack. locations:Mountain Gorge name:Mountain Gorge's soldier ant base:ant color:W speed:110 hit-points:6 hearing:10 smell:20 armor-class:4 sleepiness:40 depth:0 rarity:1 weight:0 experience:0 blow:BITE:HURT:1d2 flags:DROP_SKELETON | WILD_GRASS desc:A large ant with powerful mandibles. locations:Mountain Gorge name:Mountain Gorge's newt base:reptile color:Y speed:110 hit-points:7 hearing:8 smell:20 armor-class:14 sleepiness:30 depth:0 rarity:1 weight:1 experience:0 blow:BITE:HURT:1d2 blow:BITE:HURT:1d3 flags:WEIRD_MIND | PWMANG_BASE flags:DROP_CORPSE flags:WILD_SHORE | WILD_GRASS | WILD_SWAMP | WILD_WASTE | WILD_MOUNTAIN desc:A small, harmless lizard. locations:Mountain Gorge ### Gorge level 2 ### name:Mountain Gorge's metallic green centipede base:centipede color:g speed:120 hit-points:10 hearing:5 smell:20 armor-class:4 sleepiness:10 depth:0 rarity:1 weight:0 experience:0 blow:CRAWL:HURT:1d1 flags:DROP_SKELETON | WILD_ALL desc:It is about four feet long and carnivorous. locations:Mountain Gorge name:Mountain Gorge's yellow mushroom patch plural:yellow mushroom patches base:mushroom color:y speed:110 hit-points:1 hearing:2 armor-class:1 sleepiness:0 depth:0 rarity:1 weight:0 experience:0 blow:SPORE:TERRIFY:1d5 flags:NEVER_MOVE flags:IM_POIS flags:WILD_SWAMP desc:Yum! It looks quite tasty. locations:Mountain Gorge name:Mountain Gorge's white jelly plural:white jellies base:jelly color:w speed:115 hit-points:36 hearing:2 armor-class:1 sleepiness:99 depth:0 rarity:2 weight:0 experience:0 blow:TOUCH:POISON:1d2 flags:NEVER_MOVE flags:HURT_LIGHT | IM_POIS | HURT_COLD | NO_CONF | NO_SLEEP desc:It's a large pile of white flesh. locations:Mountain Gorge name:Mountain Gorge's giant black ant base:ant color:D speed:110 hit-points:11 hearing:8 smell:20 armor-class:24 sleepiness:80 depth:0 rarity:1 weight:0 experience:0 blow:BITE:HURT:1d3 flags:DROP_SKELETON | WILD_GRASS | WILD_WOOD desc:It is about three feet long. locations:Mountain Gorge name:Mountain Gorge's salamander base:reptile color:o speed:110 hit-points:14 hearing:8 smell:20 armor-class:24 sleepiness:80 depth:0 rarity:1 weight:10 experience:0 blow:BITE:FIRE:1d3 flags:IM_FIRE flags:DROP_CORPSE | WILD_VOLCANO | WILD_DESERT desc:A small black and orange lizard. locations:Mountain Gorge name:Mountain Gorge's large yellow snake base:snake color:y speed:100 hit-points:18 hearing:5 armor-class:45 sleepiness:75 depth:0 rarity:1 weight:100 experience:0 blow:BITE:HURT:1d3 blow:CRUSH:HURT:1d5 flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:It is about ten feet long. locations:Mountain Gorge name:Mountain Gorge's cave spider base:spider color:p speed:115 hit-points:7 hearing:8 armor-class:19 sleepiness:80 depth:0 rarity:2 weight:0 experience:0 blow:BITE:HURT:1d3 flags:ANIMAL | WEIRD_MIND flags:GROUP_AI flags:DROP_SKELETON friends:100:1d2:Same desc:It is a black spider that moves in fits and starts. locations:Mountain Gorge name:Mountain Gorge's wild cat base:feline color:U speed:115 hit-points:9 hearing:40 smell:30 armor-class:14 sleepiness:0 depth:0 rarity:3 weight:20 experience:0 blow:CLAW:HURT:1d2 blow:CLAW:HURT:1d3 flags:BASH_DOOR flags:DROP_CORPSE | DROP_SKELETON | WILD_ALL desc:A larger than normal feline, hissing loudly. Its velvet paws conceal a desc: fistful of needles. locations:Mountain Gorge name:Mountain Gorge's crow base:townsfolk color:s speed:115 hit-points:9 hearing:40 armor-class:14 sleepiness:0 depth:0 rarity:5 weight:30 experience:0 blow:BITE:HURT:1d2 blow:BITE:HURT:1d3 flags:DROP_CORPSE | WILD_WOOD desc:It is a hooded crow, gray except for the black wings and head. locations:Mountain Gorge ########################################################################### ################### Cursed Valley ########################################################################### # Mordor name:Cursed Valley hell knight base:person color:D speed:120 hit-points:1320 light:2 hearing:20 armor-class:120 sleepiness:180 depth:0 rarity:1 weight:0 experience:50 blow:HIT:HURT:10d5 blow:HIT:HURT:10d5 blow:HIT:HURT:10d5 blow:HIT:LOSE_INT:10d5 flags:COLD_BLOOD | EVIL | PWMANG_BASE | SMART flags:OPEN_DOOR flags:IM_NEXUS | IM_PLASMA | IM_NETHER | IM_FIRE | IM_COLD | IM_POIS flags:FORCE_SLEEP spell-freq:5 spell-power:52 spells:BLIND | WOUND | SCARE spells:BA_FIRE | BA_NETH spells:BO_PLAS friends:100:1d3:Same desc:It is a humanoid form dressed in armour of ancient style. From beneath its desc: helmet, eyes glow with hellfire. locations:Cursed Valley ########################################################################### ################### River of Fire ########################################################################### # Mount Doom name:River of Fire greater Balrog base:major demon color:P speed:130 hit-points:2400 light:2 hearing:40 armor-class:210 sleepiness:230 depth:0 rarity:3 weight:0 experience:100 blow:HIT:FIRE:8d12 blow:HIT:FIRE:8d12 blow:CRUSH:HURT:7d12 blow:TOUCH:DRAIN_CHARGES flags:POWERFUL | ATTR_FLICKER | LEVITATE flags:MOVE_BODY flags:IM_ELEC | IM_FIRE | IM_POIS | IM_PLASMA flags:IM_NETHER spell-freq:3 spell-power:79 innate-freq:30 spells:CONF | SCARE spells:BA_FIRE spells:BO_PLAS spells:BR_FIRE | BR_PLAS desc:Originally of the semi-divine Maiar, this evil spirit swore allegiance to desc: Morgoth at the beginning of time and is now one of his most terrible desc: demonic servants. With its flaming whip and sword it seeks to destroy you. locations:River of Fire ########################################################################### ################### Upper Ashes ########################################################################### name:Upper Ashes lesser Balrog base:major demon color:p speed:120 hit-points:1760 light:2 hearing:20 armor-class:75 sleepiness:180 depth:0 rarity:2 weight:0 experience:50 blow:HIT:FIRE:4d12 blow:HIT:FIRE:4d12 blow:CRUSH:HURT:3d12 blow:TOUCH:DRAIN_CHARGES flags:POWERFUL flags:MOVE_BODY flags:IM_FIRE spell-freq:4 spell-power:49 innate-freq:33 spells:BLIND | CONF spells:BR_FIRE desc:It is a massive humanoid demon wreathed in flames. locations:Upper Ashes ########################################################################### ################### Damned Ashes ########################################################################### # Angband name:Damned Ashes lesser Balrog base:major demon color:p speed:120 hit-points:1760 light:2 hearing:20 armor-class:75 sleepiness:180 depth:0 rarity:2 weight:0 experience:50 blow:HIT:FIRE:4d12 blow:HIT:FIRE:4d12 blow:CRUSH:HURT:3d12 blow:TOUCH:DRAIN_CHARGES flags:POWERFUL flags:MOVE_BODY flags:IM_FIRE spell-freq:4 spell-power:49 innate-freq:33 spells:BLIND | CONF spells:BR_FIRE desc:It is a massive humanoid demon wreathed in flames. locations:Damned Ashes ########################################################################### ################### Sandskull ########################################################################### name:Sandskull nightcrawler base:wraith color:D speed:120 hit-points:2440 hearing:20 armor-class:192 sleepiness:230 depth:0 rarity:3 weight:0 experience:100 blow:STING:LOSE_CON:8d8 blow:STING:LOSE_CON:8d8 blow:BITE:ACID:10d10 blow:BITE:ACID:10d10 flags:SMART | ATTR_FLICKER flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | IM_NETHER flags:FORCE_SLEEP spell-freq:4 spell-power:69 spells:BLIND | BRAIN_SMASH | SCARE spells:BO_MANA | BO_NETH desc:This intensely evil creature bears the form of a gargantuan black worm. Its desc: gaping maw is a void of blackness, acid drips from its steely hide. It is desc: like nothing you have ever seen before, and a terrible chill runs down desc: your spine as you face it. locations:Sandskull ########################################################################### ################### North Sea ########################################################################### ### !!!!!!!!!!!!!!!!!!!!!!!!!!!DOESNT WORK without land ########################################################################### ################### Dragon's Mountain ########################################################################### # The Sacred Land Of Mountains name:Dragon Mountain ancient blue dragon base:ancient dragon color:b speed:120 hit-points:1056 hearing:20 armor-class:120 sleepiness:180 depth:0 rarity:1 weight:17000 experience:50 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d8 flags:OPEN_DOOR | BASH_DOOR flags:IM_ELEC flags:DROP_CORPSE spell-freq:6 spell-power:40 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_ELEC desc:A huge draconic form. Lightning crackles along its length. locations:Dragon Mountain name:Dragon Mountain ancient gold dragon base:ancient dragon color:y speed:120 hit-points:1164 hearing:20 armor-class:120 sleepiness:180 depth:0 rarity:2 weight:17000 experience:60 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d9 flags:OPEN_DOOR | BASH_DOOR | NO_STUN flags:DROP_CORPSE spell-freq:6 spell-power:41 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_SOUN desc:A huge draconic form wreathed in a nimbus of light. Its roar stuns and desc: deafens you. locations:Dragon Mountain name:Dragon Mountain ancient silver dragon base:ancient dragon color:z speed:120 hit-points:1164 hearing:20 armor-class:120 sleepiness:180 depth:0 rarity:3 weight:17000 experience:60 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:BITE:HURT:7d9 flags:DROP_CORPSE flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | NO_SLOW spell-freq:6 spell-power:41 innate-freq:25 spells:BLIND | CONF | SCARE spells:BR_COLD | BR_INER desc:A huge draconic form wreathed in a radiance of silver. Its roar stuns and desc: deafens you. locations:Dragon Mountain ########################################################################### ################### Ettendales ########################################################################### name:Ettendales stone troll base:troll color:W speed:110 hit-points:127 hearing:20 smell:20 armor-class:60 sleepiness:170 depth:0 rarity:1 weight:500 experience:8 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 blow:BITE:HURT:3d4 flags:MALE flags:HURT_ROCK | HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON friends:50:1d2:earth hound desc:He is a large, lumpish troll with scabrous black skin. locations:Ettendales name:Ettendales troll scavenger base:troll color:o speed:110 hit-points:137 hearing:20 smell:20 armor-class:90 sleepiness:150 depth:0 rarity:1 weight:600 experience:10 blow:CLAW:POISON:3d3 blow:CLAW:POISON:3d3 blow:BITE:HURT:1d6 flags:IM_POIS | HURT_LIGHT flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD | WILD_SWAMP | WILD_MOUNTAIN friends:100:1d2:Same desc:A powerful, man-eating troll, its claws foul with the traces of its last desc: kill. locations:Ettendales name:Ettendales algroth base:troll color:o speed:110 hit-points:240 hearing:20 smell:20 armor-class:90 sleepiness:150 depth:0 rarity:1 weight:600 experience:10 blow:CLAW:HURT:1d6 blow:CLAW:HURT:1d6 blow:BITE:POISON:1d20 blow:CRUSH:HURT:2d9 flags:REGENERATE flags:IM_POIS flags:DROP_CORPSE | DROP_SKELETON | WILD_WOOD | WILD_SWAMP | WILD_MOUNTAIN friends:100:1d2:Same desc:Pale, bald, fat, hairless troll creatures. Ugly beyond description. desc:Not to mention how bad their breath smells... locations:Ettendales name:Ettendales hill giant base:giant color:U speed:110 hit-points:240 hearing:20 armor-class:54 sleepiness:150 depth:0 rarity:1 weight:350 experience:10 blow:HIT:HURT:4d8 blow:HIT:HURT:4d8 flags:OPEN_DOOR flags:DROP_CORPSE | DROP_SKELETON | WILD_MOUNTAIN spell-freq:10 innate-freq:100 spells:BOULDER friends:60:1d3:wolf friends:80:1d2:Same desc:A ten foot tall humanoid with powerful muscles. locations:Ettendales name:Ettendales cave ogre base:ogre color:u speed:110 hit-points:150 hearing:20 smell:20 armor-class:49 sleepiness:140 depth:0 rarity:2 weight:250 experience:8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 flags:DROP_CORPSE | DROP_SKELETON desc:A giant orc-like figure with an awesomely muscled frame. locations:Ettendales name:Ettendales half-ogre base:ogre color:o speed:110 hit-points:175 light:2 hearing:20 smell:20 armor-class:49 sleepiness:130 depth:0 rarity:2 weight:270 experience:10 blow:HIT:HURT:4d8 blow:HIT:HURT:4d8 flags:SMART | PWMANG_BASE flags:DROP_CORPSE | DROP_SKELETON friends:100:1d3:Same desc:A giant, brutish figure, as ugly as an orc, but with some of the desc: intelligence of his half-human ancestry. locations:Ettendales name:Ettendales ogre mage base:ogre color:r speed:110 hit-points:163 hearing:20 smell:20 armor-class:60 sleepiness:140 depth:0 rarity:2 weight:240 experience:20 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 blow:HIT:HURT:3d8 flags:FORCE_SLEEP flags:DROP_CORPSE | DROP_SKELETON spell-freq:4 spell-power:27 spells:HEAL | HOLD | TRAPS spells:BA_COLD spells:S_MONSTER desc:A hideous ogre wrapped in black sorcerous robes. locations:Ettendales ########################################################################### ################### Low Mountans ########################################################################### #desc:She is Lucifer's most beautiful wife. A fallen Maia of mind-shattering #desc: beauty, she is the princess of the .... But beware, she knows #desc: devastating spells, and she is as evil as she is beautiful. #desc:He Is The Master Of DEATH. #.... #Greatest mortal wizard of all times. He is looking for a meeting with you. ###################################### #/////////// SUMMONS ////////////# ###################################### name:skeleton base:skeleton color:w speed:110 hit-points:8 hearing:20 armor-class:24 sleepiness:70 depth:1 rarity:9 weight:0 experience:5 blow:HIT:HURT:1d5 flags:EMPTY_MIND flags:OPEN_DOOR | BASH_DOOR desc:It is a small animated skeleton. name:zombie base:zombie color:s speed:110 hit-points:8 hearing:20 armor-class:24 sleepiness:70 depth:1 rarity:9 weight:0 experience:5 blow:HIT:HURT:1d5 flags:EMPTY_MIND flags:NO_FEAR desc:It is an animated corpse. Flesh falls off in large chunks as it desc: shambles forward. ###################################### #///////////// FORMS ////////////# ###################################### #/////////// YEEK #new name:oook base:yeek color:u speed:100 hit-points:20 hearing:18 smell:20 armor-class:20 sleepiness:10 #1 depth:8 rarity:0 weight:1 experience:11 blow:HIT:HURT:1d2 flags:FRIGHTENED | NEVER_BLOW | NEVER_MOVE | REGENERATE flags:NO_STUN | NO_CONF | NO_SLEEP flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE spell-freq:34 spell-power:1 spells:HEAL desc:Small and shivering. #name:terrified yeek name:eeek base:yeek color:u speed:100 hit-points:100 hearing:18 smell:20 armor-class:35 sleepiness:10 #12 depth:8 rarity:0 weight:1 experience:11 blow:HIT:HURT:1d4 flags:FRIGHTENED | NEVER_BLOW | NEVER_MOVE | REGENERATE flags:NO_STUN | NO_CONF | NO_SLEEP flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE spell-power:5 spell-freq:34 spells:HEAL | BLINK desc:It's time to run! RUN! RUUUUUN! #name:master yeek name:yaak base:yeek color:U speed:100 hit-points:220 hearing:18 smell:20 armor-class:60 sleepiness:10 #24 depth:12 rarity:0 weight:1 experience:28 blow:HIT:HURT:1d8 flags:FRIGHTENED | NEVER_BLOW | NEVER_MOVE | REGENERATE flags:NO_STUN | NO_CONF | NO_SLEEP | INVISIBLE flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE spell-power:10 spell-freq:34 spells:HEAL | BLINK | TPORT desc:A small ball of fur that radiates desire to run away. #/////////// ENT #lonely tree name:sleepy ent base:tree color:G speed:100 hit-points:40 light:-2 hearing:40 armor-class:30 sleepiness:20 depth:1 rarity:0 weight:1 experience:4 blow:CRUSH:HURT:1d10 flags:WEIRD_MIND flags:IM_COLD | NEVER_MOVE desc:They say that staying near lonely tree at thunderstorm could be dangerous desc: But actually staying nearby such tree could be deadly in any weather. #/////////// Werewolf #name:jackal name:jackal_ base:canine color:U speed:112 hit-points:20 hearing:10 smell:50 armor-class:3 sleepiness:10 #1 depth:1 rarity:0 weight:40 experience:1 blow:BITE:HURT:1d2 flags:EVIL flags:HURT_LIGHT desc:It is a yapping snarling dog, dangerous when in a pack. #wolf name:wolf_ base:canine color:u speed:114 hit-points:30 hearing:30 smell:50 armor-class:45 sleepiness:10 #10 depth:10 rarity:0 weight:60 experience:30 blow:BITE:HURT:1d4 blow:BITE:HURT:1d4 flags:EVIL flags:HURT_LIGHT desc:It howls and snaps at you. #name:warg name:warg_ base:canine color:s speed:114 hit-points:70 hearing:20 smell:50 armor-class:30 sleepiness:10 #20 depth:14 rarity:0 weight:70 experience:40 blow:BITE:HURT:1d10 flags:RAND_25 | EVIL flags:HURT_LIGHT desc:It is a large wolf with eyes full of cunning. #name:werewolf name:werewolf_ base:canine color:D speed:116 hit-points:300 hearing:15 smell:50 armor-class:36 sleepiness:70 #30 depth:20 rarity:0 weight:90 experience:150 blow:CLAW:HURT:2d6 blow:CLAW:HURT:2d6 blow:BITE:HURT:2d10 flags:RAND_25 | EVIL flags:HURT_LIGHT desc:It is a huge wolf with eyes that glow with manly intelligence. #name:hellhound name:hellwolf_ base:canine color:r speed:118 hit-points:500 light:2 hearing:25 smell:50 armor-class:120 sleepiness:10 #40 depth:42 rarity:0 weight:75 experience:600 blow:BITE:FIRE:3d12 blow:BITE:FIRE:3d12 blow:BITE:FIRE:3d12 flags:IM_FIRE | NO_FEAR flags:RAND_25 | EVIL flags:HURT_LIGHT spell-freq:34 innate-freq:100 spells:BR_FIRE desc:It is a giant wolf that glows with heat. Flames pour from its nostrils. #name:volkodlak name:volkodlak_ base:canine color:G #! speed:120 hit-points:1200 hearing:30 smell:50 #! armor-class:130 sleepiness:5 #50 depth:63 rarity:0 weight:80 experience:4000 blow:BITE:EXP_20:2d4 blow:CLAW:POISON:4d10 blow:CLAW:POISON:4d10 #IM_NETHER converted to 'hold life' meh flags:IM_POIS | IM_NETHER flags:HURT_LIGHT | HURT_COLD | HURT_FIRE flags:NO_FEAR | NO_CONF | NO_SLEEP flags:RAND_25 | EVIL desc:A massive wolf, appearing like a mighty shadow. Its glowing red eyes desc: glare malevolently. #/////////// Vampire name:vampiric mist_ base:mist color:s speed:110 hit-points:22 hearing:12 armor-class:40 sleepiness:30 #5 depth:22 rarity:0 weight:1 experience:40 blow:ENGULF:EXP_20:1d6 blow:ENGULF:EXP_20:1d6 flags:UNDEAD flags:NO_SLEEP | NO_STUN desc:A cloud of evil, sentient mist. name:fruit bat_ base:bat color:o speed:120 hit-points:4 hearing:20 armor-class:3 sleepiness:10 #10 depth:1 rarity:0 weight:2 experience:1 blow:BITE:HURT:1d1 flags:DROP_CORPSE | WILD_WOOD | WILD_SWAMP desc:A fast-moving pest. name:vampire bat_ base:bat color:D speed:120 hit-points:50 hearing:12 armor-class:60 sleepiness:10 #20 depth:24 rarity:0 weight:1 experience:150 blow:BITE:EXP_40:1d4 blow:BITE:EXP_40:1d4 flags:UNDEAD | EVIL | COLD_BLOOD | REGENERATE flags:RAND_50 flags:IM_COLD | NO_FEAR | NO_CONF | NO_SLEEP | NO_STUN flags:HURT_LIGHT desc:A blood-sucking bat that flies at your neck hungrily. name:bat of Gorgoroth_ base:bat color:g speed:120 hit-points:110 hearing:20 armor-class:36 sleepiness:30 #30 depth:28 rarity:0 weight:15 experience:100 blow:BITE:POISON:1d10 blow:CLAW:HURT:1d4 flags:WEIRD_MIND flags:RAND_25 | BASH_DOOR | MOVE_BODY flags:IM_POIS flags:HURT_LIGHT spell-freq:8 innate-freq:34 spells:SCARE spells:BR_POIS desc:Fed with horrid meats and grown to enormous size, this slavering creature desc: seeks livelier prey. name:doombat_ base:bat color:R speed:130 hit-points:180 light:2 hearing:16 armor-class:112 sleepiness:20 #40 depth:32 rarity:0 weight:15 experience:250 blow:BITE:FIRE:5d4 blow:BITE:FIRE:5d4 blow:BITE:FIRE:5d4 flags:WEIRD_MIND | RAND_25 flags:BASH_DOOR flags:IM_FIRE flags:HURT_LIGHT | HURT_COLD desc:It is a fast moving creature of chaos, a gigantic black bat surrounded by desc: flickering bright red flames. #/////////// Demonic (Cambion) name:succubi base:major demon color:I speed:116 #hit-points:98 hit-points:198 hearing:50 armor-class:84 sleepiness:15 depth:35 rarity:0 weight:10 experience:500 blow:TOUCH:LOSE_WIS blow:TOUCH:EXP_40:3d4 blow:HYPNOTIZE:SEDUCE flags:FEMALE | SMART spell-freq:34 spells:DARKNESS | FORGET | HEAL | TELE_TO | TPORT desc:A daemon with a form of beautiful woman, she visits you while asleep and... #/////////// Draconian #name:newborn dragon name:newborn dracon base:dragon color:t speed:102 hit-points:25 hearing:20 armor-class:24 sleepiness:70 #1 depth:5 rarity:0 weight:80 experience:15 blow:CLAW:HURT:1d3 blow:SPIT:FIRE:1d4 flags:OPEN_DOOR | BASH_DOOR spell-freq:1 spell-power:1 innate-freq:100 #spells:SPIT spells:BR_FIRE desc:This hatchling dracon is very soft, its eyes unaccustomed to light and its desc: scales without particular color. #baby green dragon name:baby dracon base:dragon color:g speed:104 hit-points:80 hearing:20 armor-class:36 sleepiness:70 depth:9 #10 rarity:0 weight:90 experience:35 blow:CLAW:HURT:1d3 blow:SPIT:FIRE:1d5 blow:BITE:HURT:1d3 flags:OPEN_DOOR | BASH_DOOR spell-freq:1 spell-power:8 innate-freq:100 #spells:SPIT spells:BR_FIRE desc:This hatchling dracon is still soft, its eyes unaccustomed to light and its desc: scales a sickly green. #young green dragon name:young dracon base:dragon color:g speed:106 hit-points:150 hearing:20 armor-class:60 sleepiness:70 #20 depth:28 rarity:0 weight:120 experience:500 blow:CLAW:HURT:2d4 blow:SPIT:FIRE:3d6 blow:BITE:HURT:2d4 flags:OPEN_DOOR | BASH_DOOR spell-freq:1 spell-power:16 innate-freq:100 #spells:SPIT spells:BR_FIRE desc:It has a form that legends are made of. Its still-tender scales are a deep desc: green in hue. #mature green dragon name:mature dracon base:dragon color:g speed:108 hit-points:300 hearing:20 armor-class:84 sleepiness:70 #30 depth:34 rarity:0 weight:150 experience:1200 blow:CLAW:HURT:2d8 blow:SPIT:FIRE:4d8 blow:BITE:HURT:2d8 flags:OPEN_DOOR | BASH_DOOR spell-freq:1 spell-power:24 innate-freq:100 #spells:SPIT spells:BR_FIRE desc:A large dracon, scales tinted deep green. #name:ancient green dragon name:ancient dracon base:ancient dragon color:g speed:110 hit-points:600 hearing:20 armor-class:120 sleepiness:80 #40 depth:40 rarity:0 weight:175 experience:5000 blow:CLAW:HURT:4d8 blow:SPIT:FIRE:7d8 blow:BITE:HURT:4d8 flags:OPEN_DOOR | BASH_DOOR spell-freq:1 spell-power:32 innate-freq:100 #spells:SPIT spells:BR_FIRE desc:A huge draconic form enveloped in beautiful green scale. #name:great swamp wyrm name:great dracon base:ancient dragon color:g speed:112 hit-points:1168 hearing:30 armor-class:180 sleepiness:30 depth:63 #50 rarity:0 weight:200 experience:20000 blow:CLAW:HURT:4d12 blow:CLAW:HURT:4d12 blow:BITE:HURT:6d14 blow:SPIT:FIRE:6d14 flags:OPEN_DOOR | BASH_DOOR spell-freq:1 spell-power:40 innate-freq:100 #spells:SPIT spells:BR_FIRE desc:A truly enormous dracon. #/////////// Spider #name:cave spider name:s'spider base:spider color:p speed:110 hit-points:15 hearing:8 armor-class:0 sleepiness:80 #1 depth:2 rarity:0 weight:25 experience:7 blow:BITE:HURT:1d4 flags:ANIMAL flags:HURT_LIGHT desc:It is a black spider that moves in fits and starts. #name:wood spider name:s'weaver base:spider color:U speed:110 hit-points:40 hearing:8 armor-class:0 sleepiness:80 #5 depth:7 rarity:0 weight:50 experience:15 blow:BITE:HURT:1d3 blow:STING:POISON:1d4 flags:ANIMAL flags:HURT_LIGHT spell-freq:34 innate-freq:100 spells:WEAVE desc:It scuttles around weaving spider silk. #name:giant spider name:s'warrior base:spider color:V speed:110 hit-points:80 hearing:8 armor-class:0 sleepiness:40 #10 depth:10 rarity:0 weight:70 experience:35 blow:BITE:HURT:1d10 blow:BITE:POISON:1d6 blow:BITE:POISON:1d6 blow:BITE:HURT:1d10 flags:ANIMAL flags:HURT_LIGHT desc:It is a vast black spider with bulbous bloated body. #name:giant tarantula name:s'guard base:spider color:o speed:110 hit-points:140 hearing:8 armor-class:0 sleepiness:20 #15 depth:15 rarity:0 weight:80 experience:70 blow:BITE:POISON:1d6 blow:BITE:POISON:1d6 blow:BITE:POISON:1d6 flags:ANIMAL flags:OPEN_DOOR flags:HURT_LIGHT spell-freq:34 innate-freq:100 spells:WEAVE desc:A giant, fast-moving spider with hairy black and red legs. #name:Mirkwood spider name:s'apprentice base:spider color:g speed:110 hit-points:190 hearing:15 armor-class:0 sleepiness:80 #20 depth:20 rarity:0 weight:90 experience:25 blow:BITE:HURT:1d8 blow:BITE:POISON:1d6 blow:BITE:POISON:1d6 flags:ANIMAL flags:OPEN_DOOR flags:HURT_LIGHT spell-freq:34 spell-power:20 innate-freq:50 spells:BLINK | WEAVE desc:A strong and powerful spider. Cunning and evil, it desc: seeks to taste your juicy insides. #name:aranea name:s'adept base:spider color:R speed:110 hit-points:240 hearing:20 armor-class:0 sleepiness:50 # 25 depth:38 rarity:0 weight:100 experience:250 blow:STING:POISON:2d8 blow:CLAW:HURT:1d8 blow:BITE:POISON:2d6 flags:ANIMAL flags:OPEN_DOOR flags:HURT_LIGHT spell-freq:34 spell-power:25 innate-freq:50 spells:BLINK | WEAVE | HOLD desc:An intelligent arachnid whose hairy legs weave spells in the air. #name:aranea name:s'master color:R speed:110 hit-points:330 hearing:20 armor-class:0 sleepiness:50 # 30 depth:38 rarity:0 weight:110 experience:250 blow:CLAW:POISON:2d8 blow:CLAW:POISON:2d8 blow:BITE:POISON:2d6 blow:BITE:POISON:2d6 flags:ANIMAL flags:OPEN_DOOR flags:HURT_LIGHT spell-freq:34 spell-power:30 innate-freq:50 spells:BLINK | WEAVE | HOLD | CONF desc:Fast and furious spider. Master of the web and poison. #name:aranea name:s'aranea color:R speed:110 hit-points:370 hearing:20 armor-class:0 sleepiness:50 # 35 depth:38 rarity:0 weight:120 experience:250 blow:CLAW:POISON:2d8 blow:CLAW:POISON:2d8 blow:BITE:POISON:2d6 blow:BITE:POISON:2d6 flags:ANIMAL flags:OPEN_DOOR flags:HURT_LIGHT spell-freq:34 spell-power:35 innate-freq:50 spells:BLINK | WEAVE | HOLD | CONF | BLIND desc:An intelligent arachnid whose hairy legs weave spells in the air. #name:abyss spider name:s'elder base:spider color:G speed:110 hit-points:450 hearing:20 armor-class:0 sleepiness:50 # 40 depth:38 rarity:0 weight:130 experience:250 blow:CLAW:HURT:2d8 blow:STING:POISON:2d6 blow:STING:POISON:2d6 blow:BITE:CONFUSE:1d3 flags:ANIMAL flags:OPEN_DOOR flags:HURT_LIGHT spell-power:40 spell-freq:34 innate-freq:50 spells:BLINK | WEAVE | HOLD | CONF | BLIND | WOUND desc:A massive spider, heaving the bloated bag of its body between great desc: spined legs. #name:Ancient spider name:s'ancient base:spider color:r speed:110 hit-points:700 hearing:20 armor-class:0 sleepiness:50 # 45 depth:48 rarity:0 weight:140 experience:2500 blow:CLAW:POISON:5d8 blow:CLAW:POISON:5d8 blow:BITE:HALLU:5d6 blow:DEVOUR:EAT_LIGHT:5d6 flags:ANIMAL flags:OPEN_DOOR flags:HURT_LIGHT spell-freq:34 spell-power:45 innate-freq:50 spells:BLINK | WEAVE | HOLD | CONF | BLIND | WOUND spells:BR_POIS desc:A foul creature of spider form, older even than the pits of Angband. #name:elder aranea name:s'lord base:spider color:r speed:110 hit-points:950 hearing:20 armor-class:0 sleepiness:50 # 50 depth:48 rarity:0 weight:150 experience:3000 blow:CLAW:POISON:5d8 blow:CLAW:POISON:5d8 blow:BITE:HALLU:5d6 blow:DEVOUR:EAT_LIGHT:5d6 flags:ANIMAL flags:OPEN_DOOR flags:HURT_LIGHT spell-freq:34 spell-power:50 innate-freq:50 spells:BLINK | WEAVE | HOLD | CONF | BLIND | WOUND | HEAL spells:BR_POIS | BR_DARK desc:A vast, bloated arachnid, master of its brood: among the more terrible of desc: Ungoliant's descendants, this is a monster such as those who haunted the desc: dread valley of Nan Dungortheb long ago. #/////////// Ghosts #name:poltergeist name:expulsion base:ghost color:W speed:110 hit-points:11 hearing:8 armor-class:18 sleepiness:10 #1 depth:3 rarity:0 weight:1 experience:8 blow:TOUCH:TERRIFY:1d2 flags:RAND_25 | RAND_50 flags:HURT_LIGHT desc:It is a ghastly, ghostly form. #name:moaning spirit name:echo base:ghost color:u speed:110 #hit-points:23 hit-points:66 hearing:14 armor-class:24 sleepiness:10 #10 depth:12 rarity:0 weight:1 experience:44 blow:WAIL:TERRIFY blow:TOUCH:LOSE_DEX:1d4 flags:RAND_50 desc:A ghostly apparition that shrieks horribly. #name:banshee name:imprint base:ghost color:b speed:110 #hit-points:27 hit-points:144 hearing:20 armor-class:28 sleepiness:10 #20 depth:24 rarity:0 weight:1 experience:60 blow:WAIL:TERRIFY blow:TOUCH:EXP_20:1d8 flags:RAND_25 desc:It is a ghostly woman's form that wails mournfully. #name:ghost name:spectral base:ghost color:w speed:110 #hit-points:59 hit-points:233 hearing:20 armor-class:36 sleepiness:10 #30 depth:31 rarity:0 weight:1 experience:350 blow:WAIL:TERRIFY blow:TOUCH:EXP_20 blow:CLAW:LOSE_INT:1d6 blow:CLAW:LOSE_WIS:1d6 flags:RAND_25 spell-freq:34 spells:BLINK desc:You don't believe in it. But it believes in you... #name:phantom name:spirit base:ghost color:P speed:110 #hit-points:175 hit-points:333 hearing:30 armor-class:36 sleepiness:20 #40 depth:40 rarity:0 weight:1 experience:400 blow:TOUCH:EXP_80 blow:TOUCH:EXP_40 blow:CLAW:LOSE_INT:2d8 blow:CLAW:LOSE_WIS:2d8 flags:RAND_25 spell-freq:51 spells:BLINK | SCARE desc:An unholy creature of darkness, the aura emanating from this evil being desc: saps your very soul. #name:shadow name:wraith' base:ghost color:D speed:110 #hit-points:260 hit-points:555 light:-2 hearing:30 armor-class:36 sleepiness:20 #50 depth:50 rarity:0 weight:1 experience:800 blow:TOUCH:EXP_80 blow:TOUCH:EXP_40 blow:CLAW:LOSE_INT:3d10 blow:CLAW:LOSE_WIS:3d10 flags:RAND_25 spell-freq:51 spells:BLINK | SCARE | CONF desc:A mighty spirit of darkness of vaguely humanoid form. Razor-edged claws desc: reach out to end your life as it glides towards you, seeking to suck the desc: energy from your soul to feed its power. #/////////// Beholder name:floating eye' base:eye color:o speed:110 hit-points:40 hearing:1 armor-class:10 sleepiness:10 #1 depth:1 rarity:0 weight:1 experience:1 blow:GAZE:PARALYZE #empty mind should disable ESP | EMPTY_MIND flags:NEVER_MOVE | NEVER_BLOW flags:HURT_LIGHT | NO_FEAR spell-freq:34 spells:MIND_BLAST | HOLD desc:A disembodied eye, floating a few feet above the ground. name:disenchanter eye' base:eye color:v speed:110 hit-points:150 hearing:2 armor-class:20 sleepiness:10 #10 depth:5 rarity:0 weight:1 experience:20 blow:GAZE:DISENCHANT flags:NEVER_MOVE flags:HURT_LIGHT | IM_DISEN | NO_FEAR | SMART spell-freq:1 spells:MIND_BLAST | HOLD | BLIND desc:A disembodied eye, crackling with magic. name:evil eye' base:eye color:g speed:112 hit-points:250 hearing:2 armor-class:45 sleepiness:10 #20 depth:18 rarity:0 weight:1 experience:80 blow:GAZE:EXP_10 blow:GAZE:EXP_10 flags:NEVER_MOVE | NEVER_BLOW | SMART flags:HURT_LIGHT | NO_FEAR spell-freq:34 spells:MIND_BLAST | HOLD | BLIND | CONF desc:A huge disembodied eye. As you stare into the black nothingness of its desc: pupil, you feel your will and vitality draining away, and are unable to do desc: anything except approach it in horrified fascination. name:spectator' base:eye color:B speed:114 hit-points:400 hearing:30 armor-class:65 sleepiness:30 #30 depth:28 rarity:0 weight:1 experience:150 blow:GAZE:PARALYZE:1d4 blow:GAZE:CONFUSE:1d4 blow:BITE:HURT:1d8 flags:NEVER_MOVE | NEVER_BLOW | SMART flags:HURT_LIGHT | NO_FEAR | NO_CONF | NO_SLEEP spell-freq:51 spells:MIND_BLAST | HOLD | BLIND | CONF | SCARE desc:A lesser relative of the beholder: a globular body with a large toothy desc: mouth, a large central eye, and four smaller eyes on stalks protruding desc: from the top of its body. #name:beholder name:observer' base:eye color:U speed:120 hit-points:700 hearing:30 armor-class:90 sleepiness:10 #40 depth:40 rarity:0 weight:1 experience:6000 blow:GAZE:EXP_20:2d6 blow:GAZE:DRAIN_CHARGES:2d6 blow:GAZE:FORGET:2d6 blow:BITE:HURT:6d6 flags:NEVER_MOVE | NEVER_BLOW flags:HURT_LIGHT | NO_CONF | NO_SLEEP | SMART spell-freq:100 spells:MIND_BLAST | HOLD | BLIND | CONF | SCARE | SLOW desc:A vile creature with one huge central eye, twelve smaller eyes on stalks, desc: and a huge mouth filled with sharp teeth. #name:glaz name:overseer' base:eye color:r speed:130 hit-points:1000 hearing:30 armor-class:110 sleepiness:10 #50 depth:56 rarity:0 weight:1 experience:10000 blow:GAZE:EXP_20:6d6 blow:GAZE:DRAIN_CHARGES:6d6 blow:GAZE:FORGET:6d6 blow:GAZE:PARALYZE:6d6 flags:NEVER_MOVE | NEVER_BLOW flags:HURT_LIGHT | NO_CONF | NO_SLEEP | SMART spell-freq:100 spells:MIND_BLAST | HOLD | BLIND | CONF | SCARE | SLOW desc:A weird bloodshot disembodied eye, floating a few feet above the ground. desc:It blinks slowly and menacily. #/////////// ^^^ FORMS #/////////// ############# ############# ############# Thunderlord race pet name:tamed young eagle base:bird color:m speed:111 hit-points:1 hearing:30 armor-class:4 sleepiness:10 depth:1 rarity:0 weight:20 experience:0 blow:CLAW:HURT:1d1 blow:BITE:HURT:1d1 flags:WILD_WASTE | WILD_MOUNTAIN | WILD_WOOD | PWMANG_BASE desc:A magnificent youngling of predatory bird. name:tamed eagle base:bird color:m speed:115 #hit-points:45 hit-points:1 hearing:30 armor-class:25 sleepiness:10 depth:10 rarity:0 weight:60 experience:0 blow:CLAW:HURT:1d3 #blow:CLAW:HURT:1d3 blow:BITE:HURT:1d6 flags:WILD_WASTE | WILD_MOUNTAIN | WILD_WOOD | PWMANG_BASE desc:A magnificent huge predatory bird. name:tamed great eagle base:bird color:M speed:120 #hit-points:300 hit-points:1 hearing:20 armor-class:65 sleepiness:20 depth:20 rarity:0 weight:100 experience:0 blow:CLAW:HURT:3d6 #blow:CLAW:HURT:6d3 blow:BITE:HURT:3d6 flags:PWMANG_BASE flags:WILD_MOUNTAIN | WILD_VOLCANO | WILD_WASTE | WILD_WOOD flags:WILD_DESERT desc:Greater and more intelligent than most of its kind, this great eagle is desc: a messenger between the forces of good. name:tamed giant eagle base:bird color:u speed:121 #hit-points:560 hit-points:1 hearing:20 armor-class:84 sleepiness:10 depth:40 rarity:0 weight:150 experience:0 blow:CLAW:HURT:4d8 blow:BITE:HURT:4d12 flags:BASH_DOOR flags:DROP_CORPSE | WILD_WOOD | WILD_MOUNTAIN desc:A vast legendary bird, its iron talons rake the most impenetrable of desc: surfaces and its screech echoes through the many winding dungeon desc: corridors. ####### ############### ######################### Test stuff name:Test dummy base:golem color:y speed:100 hit-points:1000 hearing:1 armor-class:0 sleepiness:0 depth:1 rarity:0 weight:0 experience:1 spell-freq:1 spell-power:50 spells:FORGET flags:NEVER_MOVE desc:An indestructible golem used for testing purposes. name:Test drop base:golem color:y speed:100 hit-points:100 hearing:1 armor-class:0 sleepiness:0 depth:1 rarity:0 weight:0 experience:1 spell-freq:1 blow:HIT:FORGET:10d1 flags:NEVER_MOVE flags:DROP_2 | DROP_GOOD | ONLY_ITEM #drop:ring:Black Ring of Power:100:1:1 drop:sword:'Stormbringer':100:1:1 desc:An indestructible golem used for testing purposes. # tamer class pets name:tamed frog base:reptile color:W speed:110 hit-points:1 hearing:8 smell:20 armor-class:3 sleepiness:30 depth:1 rarity:0 weight:0 experience:0 blow:TOUCH:POISON:1d3 flags:RAND_25 flags:NO_PASS_TREE desc:Very vicious... frog. Be careful - it's poisonous. # copperhead snake name:tamed snake base:snake color:o speed:110 hit-points:3 hearing:6 armor-class:5 sleepiness:10 depth:5 rarity:0 weight:20 experience:0 blow:BITE:POISON:2d4 flags:RAND_50 flags:IM_POIS desc:Tamed sssnake dangerousss for everyone excccept itsss massster. desc: It hass a copper head and sssharp venomouss fangssss. # nighthawk name:tamed hawk base:bird color:u speed:110 hit-points:7 hearing:30 armor-class:10 sleepiness:10 depth:10 rarity:0 weight:30 experience:0 blow:CLAW:HURT:1d3 blow:CLAW:HURT:1d3 blow:BITE:HURT:1d4 flags:NO_FEAR desc:Trained to hunt and kill without fear, this glorious bird can bring its prey desc: corpses to the master. name:tamed boar base:quadruped color:u speed:110 hit-points:12 hearing:12 smell:20 armor-class:20 sleepiness:40 depth:15 rarity:0 weight:100 experience:0 blow:HIT:HURT:3d4 blow:BITE:HURT:2d6 # 3-12 2-12 # 7 7 = 14 flags:ANIMAL flags:BASH_DOOR desc:Huge ill-tempered wild boar covered in brown coarse thick fur with large sharp desc: tusks and watery snout. It's got good sense of smell and will charge anyone desc: who threat its master. # werewolf name:tamed wolf base:canine color:D speed:110 hit-points:17 hearing:15 smell:50 armor-class:30 sleepiness:70 depth:20 rarity:0 weight:90 experience:0 blow:CLAW:HURT:2d6 blow:CLAW:HURT:2d6 blow:BITE:HURT:2d10 # 2-12 2-12 2-20 # 7 7 11 = 25 flags:BASH_DOOR desc:It is a huge wolf with eyes that glow with manly intelligence. desc: Not many managed to time it... # werebear name:tamed bear base:quadruped color:D speed:112 hit-points:25 hearing:20 smell:20 armor-class:40 sleepiness:40 depth:25 rarity:0 weight:300 experience:0 blow:CLAW:HURT:1d10 blow:CLAW:HURT:1d10 blow:BITE:HURT:2d8 blow:CRUSH:HURT:2d6 # 1-10 1-10 2-16 2-12 # 5 5 9 7 = 26 (*1.2x speed) flags:BASH_DOOR desc:In the eyes of this bear, there glimmers the bright light of desc: intelligence. The combination of animal cunning, nearly human intelligence desc: and the great physical strength makes this bear valuable ally. # basilisk name:tamed reptile base:reptile color:s speed:115 hit-points:35 hearing:15 smell:20 armor-class:50 sleepiness:30 depth:30 rarity:0 weight:200 experience:0 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 blow:BITE:HURT:2d12 # 2-24 2-24 2-24 # 13 13 13 = 39 (*1.5x speed) flags:BASH_DOOR flags:IM_POIS | NO_CONF | NO_SLEEP | NO_HOLD spell-freq:12 spells:BO_POIS desc:A vile reptile that preys on unsuspecting travellers. Its eyes stare deeply desc: at your enemies soul starts to wilt.. desc: It's a miracle that someone managed to tame it! name:tamed hellcat base:feline color:r speed:120 hit-points:50 light:1 hearing:25 smell:50 armor-class:60 sleepiness:10 depth:35 rarity:0 weight:120 experience:0 blow:BITE:FIRE:4d4 blow:BITE:FIRE:4d4 blow:CLAW:FIRE:4d4 # 4-16 4-16 4-16 # 10 10 10 = 30 (*2x speed) flags:BASH_DOOR flags:IM_FIRE | HURT_ROCK | HURT_LIGHT spell-freq:8 spells:BO_FIRE desc:Giant fiery panther that glows with heat. Flames pour from its nostrils. desc: Sometimes it purrs to you. name:tamed young unicorn base:quadruped color:w speed:120 hit-points:70 light:1 hearing:20 smell:20 armor-class:70 sleepiness:10 depth:40 rarity:0 weight:300 experience:0 blow:KICK:HURT:3d12 blow:BITE:HURT:3d12 blow:BUTT:HURT:3d12 # 3-36 3-36 3-36 # 20 20 20 = 60 (*2x speed) flags:BASH_DOOR flags:REGENERATE flags:NO_CONF | NO_SLEEP | NO_FEAR | RES_LIGHT spell-freq:8 spells:HEAL | WOUND desc:Innocent holy stallion in blinding white color with silky flowing manes, desc: sapphire blue eyes and horn which sparks with magic, walking with desc: dignified grace. Their neighing is like bells on the wind, sparkling like desc: a warm stream. # great balance drake name:tamed drake base:dragon color:r speed:125 hit-points:100 light:1 hearing:20 armor-class:84 sleepiness:70 depth:45 rarity:0 weight:4000 experience:0 blow:CLAW:HURT:4d8 blow:CLAW:HURT:4d8 blow:CRUSH:HURT:4d8 blow:BITE:HURT:7d9 # 4-32 4-32 4-32 7-63 # 18 18 18 35 = 89 (*2.5x speed) flags:BASH_DOOR flags:IM_FIRE | NO_STUN | NO_CUT spell-freq:8 spells:BLIND | CONF | SCARE spells:BA_FIRE | BO_FIRE desc:A quite large young dragon with shimmering scales tinted deep red. desc: It seems it's in deep affection to its master. # ancient red dragon name:tamed dragon base:dragon color:r speed:130 hit-points:150 light:2 hearing:20 armor-class:120 sleepiness:80 depth:50 rarity:0 weight:9000 experience:0 # 4-40 4-40 4-40 7-70 # 22 22 22 38 = 104 (*3x speed) blow:CLAW:HURT:4d10 blow:CLAW:HURT:4d10 blow:CRUSH:HURT:4d10 blow:BITE:HURT:7d10 flags:BASH_DOOR flags:IM_FIRE spell-freq:6 spells:BA_FIRE desc:A tamed full-grown dragon. Dream of many tamers of Middle-Earth. desc: Very intelligent, dragon consider you not as master, but rather like a friend. desc: Wisps of smoke steam from its nostrils and the extreme heat surrounding desc: it makes you gasp for breath. #### Necromancer summons name:clay_golem base:golem color:U speed:110 hit-points:30 hearing:12 armor-class:30 sleepiness:10 depth:15 rarity:0 weight:0 experience:0 blow:HIT:HURT:1d8 blow:HIT:HURT:1d8 flags:COLD_BLOOD flags:BASH_DOOR flags:HURT_ROCK | IM_COLD | IM_FIRE | IM_POIS flags:NO_STUN flags:SWIM_BAD desc:It is a massive animated statue made out of hardened clay. name:stone_golem base:golem color:s speed:110 hit-points:70 hearing:12 armor-class:40 sleepiness:20 depth:25 rarity:0 weight:0 experience:0 blow:HIT:HURT:1d12 flags:COLD_BLOOD flags:BASH_DOOR flags:IM_COLD | IM_FIRE | IM_POIS flags:FORCE_SLEEP flags:NO_STUN flags:SWIM_BAD desc:It is a massive metal statue that moves steadily towards you. name:iron_golem base:golem color:w speed:110 hit-points:100 hearing:20 armor-class:50 sleepiness:50 depth:35 rarity:0 weight:0 experience:0 blow:HIT:HURT:1d9 blow:HIT:HURT:1d9 blow:HIT:HURT:1d9 blow:HIT:HURT:1d9 flags:IM_COLD | IM_FIRE | IM_POIS flags:EMPTY_MIND | REGENERATE flags:OPEN_DOOR | BASH_DOOR flags:NO_STUN | COLD_BLOOD flags:SWIM_BAD desc:It's lighter and faster than other golems. name:fire_golem base:golem color:g speed:120 hit-points:150 light:2 hearing:25 armor-class:70 sleepiness:80 depth:45 rarity:0 weight:0 experience:0 blow:CLAW:HURT:3d10 blow:CLAW:HURT:3d10 blow:BITE:FIRE:6d10 blow:BITE:FIRE:6d10 flags:OPEN_DOOR | BASH_DOOR flags:IM_FIRE | IM_POIS | RES_LIGHT flags:NO_STUN flags:FORCE_SLEEP desc:Golem consisted entirely from living flame... summoned by desc:accelerating particles of the air at an ever increasing pace desc: till the will ignite and the Golem crackles to the world of living to BURN.. name:drolem_ base:golem color:g speed:120 hit-points:250 hearing:25 armor-class:100 sleepiness:80 depth:50 rarity:0 weight:0 experience:0 blow:CLAW:HURT:3d10 blow:CLAW:HURT:3d10 blow:BITE:POISON:5d10 blow:BITE:POISON:5d10 flags:DRAGON | COLD_BLOOD flags:OPEN_DOOR | BASH_DOOR flags:IM_COLD | IM_FIRE | IM_POIS flags:NO_STUN flags:FORCE_SLEEP flags:SWIM_BAD spell-freq:7 innate-freq:100 spells:ARROW desc:A constructed dragon, the drolem has massive strength. Powerful spells desc: weaved during its creation make it a fearsome adversary. Its eyes show desc: little intelligence, but it has been instructed to destroy all it meets. ### Necromancer's skeletons name:skel base:skeleton color:w speed:110 hit-points:7 hearing:20 armor-class:20 sleepiness:80 depth:1 rarity:0 weight:0 experience:0 blow:HIT:HURT:1d4 flags:EMPTY_MIND flags:OPEN_DOOR | BASH_DOOR desc:It is a small animated skeleton. name:skelet base:skeleton color:w speed:110 hit-points:20 hearing:20 armor-class:30 sleepiness:80 depth:10 rarity:0 weight:0 experience:0 blow:HIT:HURT:1d5 blow:HIT:HURT:1d5 flags:EMPTY_MIND flags:OPEN_DOOR | BASH_DOOR desc:It is a small animated skeleton. name:skeleton_ base:skeleton color:w speed:110 hit-points:40 hearing:20 armor-class:40 sleepiness:80 depth:20 rarity:0 weight:0 experience:0 blow:HIT:HURT:1d5 blow:HIT:HURT:1d5 blow:HIT:HURT:1d5 flags:EMPTY_MIND flags:OPEN_DOOR | BASH_DOOR desc:It is a small animated skeleton. name:skeleton warrior base:skeleton color:w speed:110 hit-points:70 hearing:20 armor-class:50 sleepiness:80 depth:30 rarity:0 weight:0 experience:0 blow:HIT:HURT:1d6 blow:HIT:HURT:1d6 blow:HIT:HURT:2d6 flags:EMPTY_MIND flags:OPEN_DOOR | BASH_DOOR desc:It is a small animated skeleton. name:skeleton knight base:skeleton color:w speed:110 hit-points:100 hearing:20 armor-class:60 sleepiness:80 depth:40 rarity:0 weight:0 experience:0 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 blow:HIT:HURT:2d6 flags:EMPTY_MIND flags:OPEN_DOOR | BASH_DOOR desc:It is a small animated skeleton. name:skeleton warlord base:skeleton color:w speed:120 hit-points:150 hearing:20 armor-class:80 sleepiness:80 depth:50 rarity:0 weight:0 experience:0 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 blow:HIT:HURT:6d6 flags:EMPTY_MIND flags:OPEN_DOOR | BASH_DOOR desc:It is a small animated skeleton. ###### trader's cat name:kitten base:feline color:z speed:110 hit-points:1 hearing:30 smell:30 armor-class:1 sleepiness:10 depth:1 rarity:0 weight:0 experience:0 blow:BITE:HURT:1d1 flags:RAND_50 | RAND_25 flags:NO_PASS_TREE desc:Your meowing cat. It walks by itself, but sometimes can guard you from threats. name:cat base:feline color:z speed:110 hit-points:1 hearing:30 smell:30 armor-class:1 sleepiness:10 depth:1 rarity:0 weight:0 experience:0 blow:BITE:HURT:1d3 flags:RAND_50 flags:NO_PASS_TREE desc:Your meowing cat. It walks by itself, but sometimes can guard you from threats. name:housecat base:feline color:z speed:120 hit-points:1 hearing:30 smell:30 armor-class:1 sleepiness:10 depth:1 rarity:0 weight:0 experience:0 blow:BITE:HURT:1d6 flags:RAND_25 flags:NO_PASS_TREE desc:Your meowing cat. It walks by itself, but sometimes can guard you from threats. name:big cat base:feline color:z speed:130 hit-points:1 hearing:30 smell:30 armor-class:1 sleepiness:10 depth:1 rarity:0 weight:0 experience:0 blow:BITE:HURT:1d12 flags:NO_PASS_TREE desc:Your meowing cat. It walks by itself, but sometimes can guard you from threats. # Assassin's traps name:blade sentry base:sentry color:y speed:110 hit-points:1 hearing:1 armor-class:0 sleepiness:100 depth:1 rarity:8 weight:10 experience:0 blow:HIT:HURT:1d1 flags:NEVER_MOVE flags:FORCE_SLEEP | COLD_BLOOD | STUPID | EMPTY_MIND flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW | IM_LIGHT desc:Simple, but yet effective. name:dart sentry base:sentry color:y speed:110 hit-points:1 hearing:1 armor-class:0 sleepiness:100 depth:10 rarity:8 weight:10 experience:0 blow:HIT:HURT:1d4 flags:NEVER_MOVE flags:FORCE_SLEEP | COLD_BLOOD | STUPID | EMPTY_MIND flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW | IM_LIGHT spell-freq:3 innate-freq:100 spells:WHIP desc:Simple, but yet effective. name:spear sentry base:sentry color:y speed:110 hit-points:1 hearing:1 armor-class:0 sleepiness:100 depth:20 rarity:8 weight:10 experience:0 blow:HIT:HURT:1d8 flags:NEVER_MOVE flags:FORCE_SLEEP | COLD_BLOOD | STUPID | EMPTY_MIND flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW | IM_LIGHT spell-freq:3 innate-freq:100 spells:SPIT desc:Simple, but yet effective. name:acid sentry base:sentry color:y speed:110 hit-points:1 hearing:1 armor-class:0 sleepiness:100 depth:30 rarity:8 weight:10 experience:0 flags:NEVER_BLOW | NEVER_MOVE flags:FORCE_SLEEP | COLD_BLOOD | STUPID | EMPTY_MIND flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW | IM_LIGHT spell-freq:3 spells:BO_ACID desc:Simple, but yet effective. name:fire sentry base:sentry color:y speed:120 hit-points:1 hearing:1 armor-class:0 sleepiness:100 depth:40 rarity:8 weight:10 experience:0 flags:NEVER_BLOW | NEVER_MOVE flags:FORCE_SLEEP | COLD_BLOOD | STUPID | EMPTY_MIND flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW | IM_LIGHT spell-freq:3 spells:BA_FIRE desc:Simple, but yet effective. name:lightning sentry base:sentry color:y speed:130 hit-points:1 hearing:1 armor-class:0 sleepiness:100 depth:50 rarity:8 weight:10 experience:0 flags:NEVER_BLOW | NEVER_MOVE flags:FORCE_SLEEP | COLD_BLOOD | STUPID | EMPTY_MIND flags:NO_STUN | NO_CONF | NO_SLEEP | IM_NEXUS | IM_PLASMA | IM_DISEN | IM_NETHER flags:IM_ACID | IM_COLD | IM_ELEC | IM_FIRE | IM_POIS | IM_WATER | NO_SLOW | IM_LIGHT spell-freq:3 innate-freq:100 spells:BR_ELEC desc:Simple, but yet effective. # scavenger's name:baby rat base:rodent color:W speed:110 hit-points:1 hearing:8 smell:20 armor-class:3 sleepiness:30 depth:1 rarity:0 weight:0 experience:0 blow:BITE:HURT:1d1 flags:NO_PASS_TREE desc:Very vicious rodent. It can bite (quite painfully) all who threats its master. name:rat base:rodent color:W speed:120 hit-points:1 hearing:8 smell:20 armor-class:3 sleepiness:30 depth:1 rarity:0 weight:0 experience:0 blow:BITE:HURT:1d2 flags:NO_PASS_TREE desc:Very vicious rodent. It can bite (quite painfully) all who threats its master. name:fancy rat base:rodent color:W speed:130 hit-points:1 hearing:8 smell:20 armor-class:3 sleepiness:30 depth:1 rarity:0 weight:0 experience:0 blow:BITE:HURT:1d3 flags:NO_PASS_TREE desc:Very vicious rodent. It can bite (quite painfully) all who threats its master. # # leave empty line for EOF