home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / NOVELL / BARON3.ZIP / MONSTERS.TXT < prev    next >
Encoding:
Text File  |  1990-05-10  |  9.4 KB  |  167 lines

  1. # The "#" at the beginning of a line indicates comments.
  2. #
  3. # Level ranges from 1 to 30.
  4. #
  5. # Names can be up to 18 characters long.  Underscores in names will be converted
  6. # to spaces in the game -- spaces are NOT allowed in names in this file -- use
  7. # the underscore instead.
  8. #
  9. # Health is calculated as follows: (average is 10)
  10. #
  11. #     25 + random( (1 * Level) to (Health * Level) )
  12. #
  13. # Strength, Accuracy, and Quickness are calculated as follows: (average is 5)
  14. #
  15. #     12 + random( (1 * Level) to ([Strength, Accuracy, Quickness] * Level) )
  16. #
  17. # Armor ranges from 1 to 30.
  18. #
  19. # Weapon ranges from 1 to 26.  Note that 25 & 26 are the equivalent of a
  20. # Sword of Sharpness and a Vorpal Sword, respectively.  As such, use them
  21. # sparingly, since they are quite powerful.
  22. #
  23. # Gold is calculated as follows:
  24. #
  25. #     Chance to have gold:   Level * 5 + 15 as a percentage
  26. #
  27. #     Amount:  random( 1 to 250 ) + random( (1 * Level) to (Gold * Level) )
  28. #
  29. # Potion is the percentage chance of a potion being found instead of gold.
  30. #
  31. # Special is the percentage chance that if a potion is found, instead it will
  32. # be a Sword of Sharpness or a Vorpal Sword.
  33. #
  34. # NOTE: Health, Strength, Accuracy, and Quickness can all be made into an
  35. #       absolute number by putting a negative sign in front of the number.
  36. #       Example:  If you want a monster to ALWAYS have 150 health points, you
  37. #                 would put -150 in the health spot.
  38. #
  39. # If you omit a level by not having at least one monster of that level in this
  40. # file, the game will NOT run.  You must ALWAYS have at least ONE monster of
  41. # EACH level.
  42. #
  43. #                          Health
  44. #                          |
  45. #                          |    Strength
  46. #                          |    |
  47. #                          |    |   Accuracy
  48. #                          |    |   |
  49. #                          |    |   |   Quickness
  50. #                          |    |   |   |
  51. #                          |    |   |   |   Armor
  52. #                          |    |   |   |   |
  53. # Level                    |    |   |   |   |   Weapon    Potion
  54. # |                        |    |   |   |   |   |         |
  55. # |    Name                |    |   |   |   |   |   Gold  |    Special
  56. # |    |                   |    |   |   |   |   |   |     |    |
  57. # --   ------------------  ---  --  --  --  --  --  ----  ---  ---
  58.   1    Orc                 10   5   5   5   1   1   50    0    0
  59.   1    Goblin              7    4   5   5   1   1   50    0    0
  60.   1    Dwarf               11   6   5   4   5   1   50    0    0
  61.   1    Bandit              9    5   6   5   3   2   50    0    0
  62.   1    Kobold              6    4   6   6   1   1   50    0    0
  63.   2    Carrion_Crawler     10   5   5   5   1   1   50    0    0
  64.   2    Norker              10   6   5   5   2   2   50    0    0
  65.   2    Hobgoblin           10   5   5   5   2   2   50    0    0
  66.   2    Giant_Ant           9    5   6   6   2   2   5     0    0
  67.   2    Skeleton            10   4   4   4   4   2   10    0    0
  68.   2    Zombie              11   8   3   3   2   2   10    0    0
  69.   3    Giant_Centipede     7    5   5   5   3   3   5     0    0
  70.   3    Stirge              9    5   7   7   3   3   50    0    0
  71.   3    Giant_Toad          10   6   6   6   3   3   50    0    0
  72.   3    Troglodyte          11   6   5   5   3   3   50    0    0
  73.   3    Gnoll               10   5   5   5   3   3   50    0    0
  74.   4    Giant_Badger        8    4   5   6   4   4   10    0    0
  75.   4    Shrieker            6    4   4   4   4   4   5     0    0
  76.   4    Giant_Rat           8    4   5   7   4   4   20    0    0
  77.   4    Fire_Beetle         9    5   5   5   4   4   50    0    0
  78.   4    Giant_Spider        10   6   7   6   4   4   60    0    0
  79.   5    Bugbear             11   6   4   4   5   5   50    3    0
  80.   5    Ghoul               10   6   4   6   5   5   50    3    0
  81.   5    Giant_Lizard        7    5   5   8   5   5   20    0    0
  82.   5    Giant_Tick          15   3   3   3   5   5   50    0    0
  83.   5    Giant_Weasel        10   5   6   6   5   5   50    0    0
  84.   6    Ogre                12   8   5   4   10  10  100   6    0
  85.   6    Gelatinous_Cube     20   5   3   2   6   6   75    7    0
  86.   6    Giant_Beetle        9    5   5   4   6   6   50    3    0
  87.   6    Ochre_Jelly         10   5   5   5   6   6   50    6    0
  88.   6    Baby_Dragon         -100 7   7   5   10  10  150   7    0
  89.   7    Carnivorous_Ape     10   6   5   5   7   7   50    9    0
  90.   7    Blink_Dog           8    5   5   7   7   7   50    9    0
  91.   7    Gargoyle            10   5   5   5   7   7   50    9    0
  92.   7    Werewolf            10   6   6   6   7   7   50    9    0
  93.   7    Owlbear             10   5   5   5   7   7   50    9    0
  94.   8    Giant_Snake         10   5   6   6   8   8   40    9    0
  95.   8    Gray_Ooze           9    6   4   3   8   8   50    0    0
  96.   8    Hell_Hound          10   5   5   5   8   8   50    12   0
  97.   8    Shadow              10   5   5   5   8   8   50    12   0
  98.   8    Ghast               10   5   5   5   8   8   50    12   0
  99.   9    Cockatrice          9    5   6   6   9   9   50    15   0
  100.   9    Displacer_Beast     10   5   5   6   15  9   50    15   0
  101.   9    Doppleganger        8    5   5   6   10  10  50    15   0
  102.   9    5-headed_Hydra      12   6   6   6   9   9   50    15   0
  103.   9    Imp                 7    4   7   7   9   9   50    15   0
  104.   10   Leucrotta           10   5   5   5   10  10  50    18   0
  105.   10   Wereboar            11   6   5   5   10  10  50    18   0
  106.   10   Minotaur            10   6   4   5   10  10  50    18   0
  107.   10   Small_Dragon        -170 7   7   5   14  14  150   20   0
  108.   10   Quasit              9    5   5   5   10  10  50    18   0
  109.   11   Basilisk            9    5   9   7   11  11  50    21   1
  110.   11   Djinni              10   6   5   5   11  11  50    21   1
  111.   11   Green_Slime         11   8   6   4   11  11  50    0    0
  112.   11   7-Headed_Hydra      12   6   6   6   11  11  50    21   1
  113.   12   Lammasu             10   5   5   5   12  12  50    24   1
  114.   12   Weretiger           11   5   5   6   12  12  50    24   1
  115.   12   Erinyes_Devil       11   6   5   5   12  12  50    24   1
  116.   12   Wight               9    6   5   5   12  12  50    24   1
  117.   12   Otyugh              10   5   6   6   12  12  50    24   1
  118.   13   Wind_Walker         10   5   6   6   13  13  50    27   1
  119.   13   Wraith              10   6   5   5   13  13  50    27   1
  120.   13   Wyvern              10   5   7   5   13  13  50    27   1
  121.   13   Troll               13   6   4   6   20  13  50    27   1
  122.   13   Rakshasa            9    5   5   5   13  13  50    27   1
  123.   14   Manticore           10   6   5   5   14  14  50    30   2
  124.   14   Phase_Spider        10   5   7   7   17  14  50    30   2
  125.   14   Black_Pudding       11   7   4   3   17  16  50    0    0
  126.   14   Chimera             11   5   5   5   14  14  50    30   2
  127.   14   9-headed_Hydra      12   6   6   6   14  14  50    30   2
  128.   15   Medusa              8    8   7   7   15  15  50    33   2
  129.   15   Succubus            9    5   9   5   15  15  50    33   2
  130.   15   Medium_Dragon       -225 7   7   5   19  19  150   36   3
  131.   15   Efreeti             10   7   5   5   15  15  50    34   2
  132.   15   Ettin               11   6   4   4   15  15  50    33   2
  133.   16   Lamia               10   5   5   5   16  16  50    36   2
  134.   16   Mind Flayer         9    7   7   7   16  16  50    36   2
  135.   16   Hill_Giant          10   6   4   4   16  16  50    36   2
  136.   16   Gorgon              10   5   6   6   16  16  50    36   2
  137.   17   Mezzodaemon         11   6   6   6   17  17  50    39   3
  138.   17   Shambling_Mound     11   5   4   3   17  17  50    39   3
  139.   17   Umber_Hulk          10   5   6   6   17  17  50    39   3
  140.   17   Xorn                10   5   5   6   17  17  50    39   3
  141.   17   Mummy               10   7   4   2   17  17  50    39   3
  142.   18   Fire_Giant          10   6   5   5   18  18  50    42   3
  143.   18   Ice_Devil           11   5   5   5   18  18  50    42   3
  144.   18   Ghost               10   6   5   5   18  18  50    42   3
  145.   18   Naga                10   5   5   5   18  18  50    42   3
  146.   18   Purple_Worm         14   7   5   4   18  18  50    42   3
  147.   19   Storm_Giant         10   7   5   5   19  19  50    45   3
  148.   19   Vampire             10   6   6   6   19  19  50    45   3
  149.   19   Nycadaemon          11   6   5   5   19  19  50    45   3
  150.   19   Minor_Titan         11   7   5   5   19  19  50    45   3
  151.   19   Stone_Golem         12   5   5   3   19  19  50    0    0
  152.   20   Iron_Golem          15   5   5   3   20  20  50    0    0
  153.   20   Greater_Titan       12   7   5   5   20  20  50    45   4
  154.   20   Huge_Dragon         -325 7   7   5   24  24  150   49   5
  155.   20   Lich                10   6   6   6   20  20  50    45   4
  156.   20   Beholder            10   5   5   5   20  20  50    45   4
  157.   21   Intellect_Devourer  20   7   7   7   21  21  50    45   4
  158.   22   Beastie_22          10   5   5   5   22  22  50    45   4
  159.   23   Beastie_23          10   5   5   5   23  23  50    45   4
  160.   24   Beastie_24          10   5   5   5   24  24  50    45   5
  161.   25   Beastie_25          10   5   5   5   25  24  50    45   5
  162.   26   Beastie_26          10   5   5   5   26  24  50    45   5
  163.   27   Beastie_27          10   5   5   5   27  24  50    45   5
  164.   28   Beastie_28          10   5   5   5   28  24  50    45   6
  165.   29   Beastie_29          10   5   5   5   29  25  50    45   6
  166.   30   Beastie_30          10   5   5   5   30  26  50    45   7
  167.