Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 40.61 KB | None | 0 0
  1. ***********************STAT FLAGS***********************
  2.  
  3. Con (con)
  4. ===
  5. Monsters regenerate this many hit points each move.  This is each
  6. time the monster has a move (some for Pow).  So two monsters with the
  7. same Con can regenerate at different rates if their speeds are different.
  8.  
  9. Wis (wis)
  10. ===
  11. Determines how close a player needs to be before the creature wakes
  12. up.  This is done as a square, for reasons of speed.  Thus, if the wisdom
  13. is 11, any player that moves within the 11x11 square of the monster will wake
  14. the monster up.  If the player has stealth, the size of this square is
  15. reduced in half plus 1.
  16.  
  17. Int (int)
  18. ===
  19. gives monsters a modifying to find hidden/invisible creatures.
  20.  
  21. Pow (pow)
  22. ===
  23. If the creature can cast spells, this is how many spell points
  24. are regenerated each move.
  25.  
  26.  
  27. Attack Types (attacktype)
  28. ===============
  29.  
  30. Attack types   bit          description
  31.  
  32. Physical     1          Reduced by 1% per point of armor
  33. Magic        2          All magic spells, but not prayers
  34. Fire         4          Can ignite objects
  35. Electricity      8              Can also ignite objects
  36. Cold         16         Can freeze objects into ice cubes
  37. Confusion    32         Movement/attack directions become random
  38. Acid         64         Random equipped item gets -1 to magic attribute
  39. Drain        128        Victim loses 2% exp, attacker gains half
  40. Weaponmagic      256            Direct damage: Special, use with care
  41. Ghosthit     512        Attacker dissolves (obsolete)
  42. Poison           1024           Some damage each turn thereafter
  43. Slow         2048       Speed is reduced
  44. Paralyze     4096       Speed is reduced to zero
  45. Turn undead      8192       Like Fear, but for undead only
  46. Fear         16384      Like Turn Undead, but for living only
  47. Cancel           32768      Removes magic (+/-) from items
  48. Depletion    65536      Lose one point from one stat
  49. Death        131072     Chance of instant death, otherwise nothing
  50. Chaos        262144     None by itself, uses random other types
  51. Godpower         1048576    Adds relevant god's attacktype
  52. Holy Word        2097152    Enemies: X5, Undead: X1 -unless friends
  53. Blind            4194304    Blinds victim
  54.  
  55.  
  56.  
  57. ***********************OVERWORLD***********************
  58.  
  59. // SHELL BOMY //
  60.  
  61. name Shell Bomy
  62. Object shellbomy
  63. face bomy
  64. race animal
  65. level 1
  66. exp 20
  67. ac 10
  68. wc 10
  69. dam 1
  70. hp 10
  71. maxhp 10
  72. speed 0.1
  73. weight 2000
  74. run_away 2
  75.  
  76. con 1
  77. int 0
  78. wis 6
  79. pow 0
  80.  
  81. resist_physical 0
  82. resist_magic 0
  83. resist_weaponmagic 0
  84. resist_fire 0
  85. resist_cold 0
  86. resist_electricity 0
  87. resist_poison 0
  88. resist_confusion 0
  89. resist_blind 0
  90. resist_acid 0
  91. resist_drain 0
  92. resist_paralyze 0
  93. resist_slow 0
  94. resist_fear 0
  95. resist_ghosthit 0
  96. resist_turn_undead 0
  97. resist_holyword 0
  98. resist_death 0
  99.  
  100. randomitems shellbomy
  101.  
  102. monster 1
  103. editable 1
  104. alive 1
  105. attack_movement 3
  106. graalnpctype 1
  107. end
  108.  
  109. // SHELL BOMY 2 //
  110.  
  111. name Dire Shell Bomy
  112. Object shellbomy2
  113. face bomy
  114. race animal
  115. level 2
  116. exp 40
  117. ac 8
  118. wc 8
  119. dam 2
  120. hp 25
  121. maxhp 25
  122. speed 0.2
  123. weight 4000
  124. run_away 3
  125.  
  126. con 1
  127. int 0
  128. wis 8
  129. pow 0
  130.  
  131. resist_physical 0
  132. resist_magic 0
  133. resist_weaponmagic 0
  134. resist_fire 0
  135. resist_cold 0
  136. resist_electricity 0
  137. resist_poison 0
  138. resist_confusion 0
  139. resist_blind 0
  140. resist_acid 0
  141. resist_drain 0
  142. resist_paralyze 0
  143. resist_slow 0
  144. resist_fear 0
  145. resist_ghosthit 0
  146. resist_turn_undead 0
  147. resist_holyword 0
  148. resist_death 0
  149.  
  150. randomitems shellbomy
  151.  
  152. monster 1
  153. editable 1
  154. alive 1
  155. attack_movement 3
  156. graalnpctype 1
  157. end
  158.  
  159. // SHELL BOMY 3 //
  160.  
  161. name Evil Shell Bomy
  162. Object shellbomy3
  163. face bomy
  164. race animal
  165. level 3
  166. exp 80
  167. ac 5
  168. wc 5
  169. dam 3
  170. hp 50
  171. maxhp 50
  172. speed 0.3
  173. weight 8000
  174. run_away 8
  175.  
  176. con 2
  177. int 0
  178. wis 10
  179. pow 0
  180.  
  181. resist_physical 0
  182. resist_magic 0
  183. resist_weaponmagic 0
  184. resist_fire 0
  185. resist_cold 0
  186. resist_electricity 0
  187. resist_poison 0
  188. resist_confusion 0
  189. resist_blind 0
  190. resist_acid 0
  191. resist_drain 0
  192. resist_paralyze 0
  193. resist_slow 0
  194. resist_fear 0
  195. resist_ghosthit 0
  196. resist_turn_undead 0
  197. resist_holyword 0
  198. resist_death 0
  199.  
  200. randomitems shellbomy
  201.  
  202. monster 1
  203. editable 1
  204. alive 1
  205. attack_movement 3
  206. graalnpctype 1
  207. end
  208.  
  209. // SHELL BOMY 4 //
  210.  
  211. name Vile Shell Bomy
  212. Object shellbomy4
  213. face bomy
  214. race animal
  215. level 5
  216. exp 320
  217. ac 0
  218. wc 0
  219. dam 5
  220. hp 75
  221. maxhp 75
  222. speed 0.5
  223. weight 16000
  224. run_away 12
  225.  
  226. con 3
  227. int 0
  228. wis 12
  229. pow 0
  230.  
  231. resist_physical 0
  232. resist_magic 0
  233. resist_weaponmagic 0
  234. resist_fire 0
  235. resist_cold 0
  236. resist_electricity 0
  237. resist_poison 0
  238. resist_confusion 0
  239. resist_blind 0
  240. resist_acid 0
  241. resist_drain 0
  242. resist_paralyze 0
  243. resist_slow 0
  244. resist_fear 0
  245. resist_ghosthit 0
  246. resist_turn_undead 0
  247. resist_holyword 0
  248. resist_death 0
  249.  
  250. randomitems shellbomy
  251.  
  252. monster 1
  253. editable 1
  254. alive 1
  255. attack_movement 3
  256. graalnpctype 1
  257. end
  258.  
  259. // BATTLE POTATO //
  260.  
  261. name Battle Potato
  262. Object battlepotato
  263. face bomy
  264. race animal
  265. level 1
  266. exp 40
  267. ac 10
  268. wc 10
  269. dam 2
  270. hp 20
  271. maxhp 20
  272. speed 0.2
  273. weight 10000
  274. run_away 3
  275.  
  276. con 1
  277. int 0
  278. wis 6
  279. pow 0
  280.  
  281. resist_physical 0
  282. resist_magic 0
  283. resist_weaponmagic 0
  284. resist_fire 0
  285. resist_cold 0
  286. resist_electricity 0
  287. resist_poison 0
  288. resist_confusion 0
  289. resist_blind 0
  290. resist_acid 0
  291. resist_drain 0
  292. resist_paralyze 0
  293. resist_slow 0
  294. resist_fear 0
  295. resist_ghosthit 0
  296. resist_turn_undead 0
  297. resist_holyword 0
  298. resist_death 0
  299.  
  300. randomitems battlepotato
  301.  
  302. monster 1
  303. editable 1
  304. alive 1
  305. attack_movement 3
  306. graalnpctype 1
  307. end
  308.  
  309. // BATTLE POTATO 2 //
  310.  
  311. name Dire Battle Potato
  312. Object battlepotato2
  313. face bomy
  314. race animal
  315. level 5
  316. exp 320
  317. ac 0
  318. wc 0
  319. dam 5
  320. hp 60
  321. maxhp 60
  322. speed 0.3
  323. weight 15000
  324. run_away 9
  325.  
  326. con 3
  327. int 0
  328. wis 12
  329. pow 0
  330.  
  331. resist_physical 0
  332. resist_magic 0
  333. resist_weaponmagic 0
  334. resist_fire 0
  335. resist_cold 0
  336. resist_electricity 0
  337. resist_poison 0
  338. resist_confusion 0
  339. resist_blind 0
  340. resist_acid 0
  341. resist_drain 0
  342. resist_paralyze 0
  343. resist_slow 0
  344. resist_fear 0
  345. resist_ghosthit 0
  346. resist_turn_undead 0
  347. resist_holyword 0
  348. resist_death 0
  349.  
  350. randomitems battlepotato
  351.  
  352. monster 1
  353. editable 1
  354. alive 1
  355. attack_movement 3
  356. graalnpctype 1
  357. end
  358.  
  359. // BATTLE MUSHROOM //
  360.  
  361. name Battle Mushroom
  362. Object battlemushroom
  363. face mushroom
  364. race animal
  365. level 1
  366. exp 40
  367. ac 5
  368. wc 5
  369. dam 3
  370. hp 25
  371. maxhp 25
  372. speed 0.5
  373. weight 3000
  374. run_away 3
  375.  
  376. con 1
  377. int 0
  378. wis 6
  379. pow 0
  380.  
  381. resist_physical 0
  382. resist_magic 0
  383. resist_weaponmagic 0
  384. resist_fire 0
  385. resist_cold 0
  386. resist_electricity 0
  387. resist_poison 100
  388. resist_confusion 0
  389. resist_blind 0
  390. resist_acid 25
  391. resist_drain 0
  392. resist_paralyze 0
  393. resist_slow 0
  394. resist_fear 0
  395. resist_ghosthit 0
  396. resist_turn_undead 0
  397. resist_holyword 0
  398. resist_death 0
  399.  
  400. randomitems battlemushroom
  401.  
  402. monster 1
  403. editable 1
  404. alive 1
  405. attack_movement 3
  406. graalnpctype 1
  407. end
  408.  
  409. // BATTLE MUSHROOM 2 //
  410.  
  411. name Dire Battle Mushroom
  412. Object battlemushroom2
  413. face mushroom
  414. race animal
  415. level 5
  416. exp 320
  417. ac -3
  418. wc -3
  419. dam 7
  420. hp 100
  421. maxhp 100
  422. speed 0.5
  423. weight 5000
  424. run_away 15
  425.  
  426. con 5
  427. int 0
  428. wis 8
  429. pow 0
  430.  
  431. resist_physical 0
  432. resist_magic 0
  433. resist_weaponmagic 0
  434. resist_fire 0
  435. resist_cold 0
  436. resist_electricity 0
  437. resist_poison 100
  438. resist_confusion 0
  439. resist_blind 0
  440. resist_acid 50
  441. resist_drain 0
  442. resist_paralyze 0
  443. resist_slow 0
  444. resist_fear 0
  445. resist_ghosthit 0
  446. resist_turn_undead 0
  447. resist_holyword 0
  448. resist_death 0
  449.  
  450. randomitems battlemushroom
  451.  
  452. monster 1
  453. editable 1
  454. alive 1
  455. attack_movement 3
  456. graalnpctype 1
  457. end
  458.  
  459. // MANNA RABBIT //
  460.  
  461. name Manna Rabbit
  462. Object mannarabbit
  463. face rabbit
  464. race animal
  465. level 7
  466. exp 1280
  467. ac -5
  468. wc -5
  469. dam 10
  470. hp 250
  471. maxhp 250
  472. speed 0.5
  473. weight 12000
  474. run_away 38
  475.  
  476. con 12
  477. int 0
  478. wis 8
  479. pow 0
  480.  
  481. resist_physical 0
  482. resist_magic 25
  483. resist_weaponmagic 25
  484. resist_fire 0
  485. resist_cold 0
  486. resist_electricity 0
  487. resist_poison 0
  488. resist_confusion 0
  489. resist_blind 0
  490. resist_acid 0
  491. resist_drain 0
  492. resist_paralyze 0
  493. resist_slow 0
  494. resist_fear 0
  495. resist_ghosthit 0
  496. resist_turn_undead 0
  497. resist_holyword 0
  498. resist_death 0
  499.  
  500. randomitems mannarabbit
  501.  
  502. monster 1
  503. editable 1
  504. alive 1
  505. attack_movement 3
  506. graalnpctype 1
  507. end
  508.  
  509. // MANNA RABBIT 2 //
  510.  
  511. name Dire Manna Rabbit
  512. Object mannarabbit2
  513. face rabbit
  514. race animal
  515. level 10
  516. exp 10000
  517. ac -7
  518. wc -7
  519. dam 8
  520. hp 500
  521. maxhp 500
  522. speed 0.5
  523. weight 15000
  524. run_away 75
  525.  
  526. con 25
  527. int 0
  528. wis 14
  529. pow 0
  530.  
  531. resist_physical 0
  532. resist_magic 50
  533. resist_weaponmagic 50
  534. resist_fire 0
  535. resist_cold 0
  536. resist_electricity 0
  537. resist_poison 0
  538. resist_confusion 0
  539. resist_blind 0
  540. resist_acid 0
  541. resist_drain 0
  542. resist_paralyze 0
  543. resist_slow 0
  544. resist_fear 0
  545. resist_ghosthit 0
  546. resist_turn_undead 0
  547. resist_holyword 0
  548. resist_death 0
  549.  
  550. randomitems mannarabbit2
  551.  
  552. monster 1
  553. editable 1
  554. alive 1
  555. attack_movement 3
  556. graalnpctype 1
  557. end
  558.  
  559. ***********************DUNGEONS***********************
  560.  
  561. // RAT //
  562.  
  563. name Rat
  564. Object rat
  565. face rat
  566. race animal
  567. level 1
  568. exp 20
  569. ac 10
  570. wc 10
  571. dam 1
  572. hp 15
  573. maxhp 15
  574. speed 0.3
  575. weight 7000
  576. run_away 2
  577.  
  578. con 1
  579. int 0
  580. wis 6
  581. pow 0
  582.  
  583. resist_physical 0
  584. resist_magic 0
  585. resist_weaponmagic 0
  586. resist_fire 0
  587. resist_cold 0
  588. resist_electricity 0
  589. resist_poison 0
  590. resist_confusion 0
  591. resist_blind 25
  592. resist_acid 0
  593. resist_drain 0
  594. resist_paralyze 0
  595. resist_slow 0
  596. resist_fear 0
  597. resist_ghosthit 0
  598. resist_turn_undead 0
  599. resist_holyword 0
  600. resist_death 0
  601.  
  602. randomitems rat
  603.  
  604. monster 1
  605. editable 1
  606. alive 1
  607. attack_movement 3
  608. graalnpctype 1
  609. end
  610.  
  611. // BIGRAT //
  612.  
  613. name Big Rat
  614. Object bigrat
  615. face rat
  616. race animal
  617. level 3
  618. exp 80
  619. ac 5
  620. wc 5
  621. dam 3
  622. hp 35
  623. maxhp 35
  624. speed 0.5
  625. weight 10000
  626. run_away 5
  627.  
  628. con 1
  629. int 0
  630. wis 8
  631. pow 0
  632.  
  633. resist_physical 0
  634. resist_magic 0
  635. resist_weaponmagic 0
  636. resist_fire 0
  637. resist_cold 0
  638. resist_electricity 0
  639. resist_poison 0
  640. resist_confusion 0
  641. resist_blind 50
  642. resist_acid 0
  643. resist_drain 0
  644. resist_paralyze 0
  645. resist_slow 0
  646. resist_fear 0
  647. resist_ghosthit 0
  648. resist_turn_undead 0
  649. resist_holyword 0
  650. resist_death 0
  651.  
  652. randomitems rat
  653.  
  654. monster 1
  655. editable 1
  656. alive 1
  657. attack_movement 3
  658. graalnpctype 1
  659. end
  660.  
  661. // BANDIT //
  662.  
  663. name Bandit
  664. Object bandit
  665. face human
  666. race human
  667. level 5
  668. exp 320
  669. ac -5
  670. wc -5
  671. dam 7
  672. hp 250
  673. maxhp 250
  674. speed 1
  675. weight 120000
  676. run_away 38
  677.  
  678. con 12
  679. int 0
  680. wis 16
  681. pow 0
  682.  
  683. attacktype 147473
  684. resist_physical 0
  685. resist_magic 0
  686. resist_weaponmagic 0
  687. resist_fire 0
  688. resist_cold 0
  689. resist_electricity 0
  690. resist_poison 0
  691. resist_confusion 0
  692. resist_blind 25
  693. resist_acid 0
  694. resist_drain 0
  695. resist_paralyze 0
  696. resist_slow 25
  697. resist_fear 0
  698. resist_ghosthit 0
  699. resist_turn_undead 0
  700. resist_holyword 0
  701. resist_death 0
  702.  
  703. randomitems vampireguard
  704.  
  705. can_see_in_dark 1
  706. can_use_weapon 1
  707. can_use_armour 1
  708. can_apply 25
  709. sleep 1
  710.  
  711. no_pick 1
  712. no_steal 1
  713. nopeaceful 1
  714.  
  715. monster 1
  716. editable 1
  717. alive 1
  718. undead 0
  719.  
  720.  
  721. graalnpctype 1
  722. end
  723.  
  724. // BANDIT LEADER //
  725.  
  726. name Bandit Leader
  727. Object banditleader
  728. race human
  729. face human
  730. level 10
  731. exp 10000
  732. ac -10
  733. wc -10
  734. dam 10
  735. hp 1000
  736. maxhp 1000
  737. speed 1
  738. weight 150000
  739. run_away 150
  740.  
  741. con 30
  742. int 0
  743. wis 20
  744. pow 0
  745.  
  746. attacktype 147473
  747. resist_physical 0
  748. resist_magic 0
  749. resist_weaponmagic 0
  750. resist_fire 0
  751. resist_cold 0
  752. resist_electricity 0
  753. resist_poison 0
  754. resist_confusion 0
  755. resist_blind 50
  756. resist_acid 0
  757. resist_drain 0
  758. resist_paralyze 0
  759. resist_slow 50
  760. resist_fear 0
  761. resist_ghosthit 0
  762. resist_turn_undead 0
  763. resist_holyword 0
  764. resist_death 0
  765.  
  766. randomitems banditleader
  767.  
  768. can_see_in_dark 1
  769. can_use_weapon 1
  770. can_use_armour 1
  771. can_apply 25
  772.  
  773. no_pick 1
  774. no_steal 1
  775. nopeaceful 1
  776.  
  777. monster 1
  778. editable 1
  779. alive 1
  780. undead 0
  781. sleep 1
  782. graalnpctype 1
  783. end
  784.  
  785. // BOMY //
  786.  
  787. name Bomy
  788. Object bomy
  789. face bomy
  790. race animal
  791. level 12
  792. exp 14000
  793. ac -12
  794. wc -12
  795. dam 10
  796. hp 300
  797. maxhp 300
  798. speed 0.3
  799. weight 25000
  800. run_away 45
  801.  
  802. con 15
  803. int 0
  804. wis 12
  805. pow 0
  806.  
  807. resist_physical 0
  808. resist_magic 0
  809. resist_weaponmagic 0
  810. resist_fire 0
  811. resist_cold 0
  812. resist_electricity 0
  813. resist_poison 0
  814. resist_confusion 0
  815. resist_blind 0
  816. resist_acid 0
  817. resist_drain 0
  818. resist_paralyze 25
  819. resist_slow 25
  820. resist_fear 0
  821. resist_ghosthit 0
  822. resist_turn_undead 0
  823. resist_holyword 0
  824. resist_death 0
  825.  
  826. randomitems bomy
  827.  
  828. monster 1
  829. editable 1
  830. alive 1
  831. attack_movement 3
  832. graalnpctype 1
  833. end
  834.  
  835. // BOMY 2 //
  836.  
  837. name Dire Bomy
  838. Object bomy2
  839. face bomy
  840. race animal
  841. level 15
  842. exp 33000
  843. ac -15
  844. wc -15
  845. dam 15
  846. hp 400
  847. maxhp 400
  848. speed 0.3
  849. weight 35000
  850. run_away 60
  851.  
  852. con 20
  853. int 0
  854. wis 14
  855. pow 0
  856.  
  857. resist_physical 0
  858. resist_magic 0
  859. resist_weaponmagic 0
  860. resist_fire 0
  861. resist_cold 0
  862. resist_electricity 0
  863. resist_poison 0
  864. resist_confusion 0
  865. resist_blind 0
  866. resist_acid 0
  867. resist_drain 0
  868. resist_paralyze 50
  869. resist_slow 50
  870. resist_fear 0
  871. resist_ghosthit 0
  872. resist_turn_undead 0
  873. resist_holyword 0
  874. resist_death 0
  875.  
  876. randomitems bomy
  877.  
  878. monster 1
  879. editable 1
  880. alive 1
  881. attack_movement 3
  882. graalnpctype 1
  883. end
  884.  
  885. // EVIL BOMY //
  886.  
  887. name Evil Bomy
  888. Object evilbomy
  889. face bomy
  890. race animal
  891. level 20
  892. exp 75000
  893. ac -15
  894. wc -15
  895. dam 15
  896. hp 500
  897. maxhp 500
  898. speed 0.5
  899. weight 40000
  900. run_away 75
  901.  
  902. con 25
  903. int 0
  904. wis 16
  905. pow 0
  906.  
  907. resist_physical 0
  908. resist_magic 0
  909. resist_weaponmagic 0
  910. resist_fire 0
  911. resist_cold 0
  912. resist_electricity 0
  913. resist_poison 0
  914. resist_confusion 0
  915. resist_blind 0
  916. resist_acid 0
  917. resist_drain 0
  918. resist_paralyze 75
  919. resist_slow 75
  920. resist_fear 0
  921. resist_ghosthit 0
  922. resist_turn_undead 0
  923. resist_holyword 0
  924. resist_death 0
  925.  
  926. randomitems evilbomy
  927.  
  928. monster 1
  929. editable 1
  930. alive 1
  931. attack_movement 3
  932. graalnpctype 1
  933. end
  934.  
  935. // WOLF //
  936.  
  937. name Wolf
  938. Object wolf
  939. face wolf
  940. race animal
  941. level 22
  942. exp 62000
  943. ac -20
  944. wc -20
  945. dam 20
  946. hp 550
  947. maxhp 550
  948. speed 0.5
  949. weight 145000
  950. run_away 82
  951.  
  952. con 27
  953. int 0
  954. wis 16
  955. pow 0
  956.  
  957. resist_physical 0
  958. resist_magic 0
  959. resist_weaponmagic 0
  960. resist_fire 0
  961. resist_cold 0
  962. resist_electricity 0
  963. resist_poison 0
  964. resist_confusion 25
  965. resist_blind 0
  966. resist_acid 0
  967. resist_drain 0
  968. resist_paralyze 0
  969. resist_slow 0
  970. resist_fear 25
  971. resist_ghosthit 0
  972. resist_turn_undead 0
  973. resist_holyword 0
  974. resist_death 0
  975.  
  976. randomitems wolf
  977.  
  978. monster 1
  979. editable 1
  980. alive 1
  981. attack_movement 3
  982. graalnpctype 1
  983. end
  984.  
  985. // WOLF 2 //
  986.  
  987. name Dire Wolf
  988. Object wolf2
  989. face wolf
  990. race animal
  991. level 24
  992. exp 75000
  993. ac -22
  994. wc -22
  995. dam 22
  996. hp 600
  997. maxhp 600
  998. speed 0.5
  999. weight 155000
  1000. run_away 90
  1001.  
  1002. con 30
  1003. int 0
  1004. wis 18
  1005. pow 0
  1006.  
  1007. resist_physical 0
  1008. resist_magic 0
  1009. resist_weaponmagic 0
  1010. resist_fire 0
  1011. resist_cold 0
  1012. resist_electricity 0
  1013. resist_poison 0
  1014. resist_confusion 50
  1015. resist_blind 0
  1016. resist_acid 0
  1017. resist_drain 0
  1018. resist_paralyze 0
  1019. resist_slow 0
  1020. resist_fear 50
  1021. resist_ghosthit 0
  1022. resist_turn_undead 0
  1023. resist_holyword 0
  1024. resist_death 0
  1025.  
  1026. randomitems wolf
  1027.  
  1028. monster 1
  1029. editable 1
  1030. alive 1
  1031. attack_movement 3
  1032. graalnpctype 1
  1033. end
  1034.  
  1035. // PANTHER //
  1036.  
  1037. name Panther
  1038. Object panther
  1039. face panther
  1040. race animal
  1041. level 26
  1042. exp 87500
  1043. ac -24
  1044. wc -24
  1045. dam 24
  1046. hp 750
  1047. maxhp 750
  1048. speed 0.75
  1049. weight 165000
  1050. run_away 112
  1051.  
  1052. con 37
  1053. int 0
  1054. wis 16
  1055. pow 0
  1056.  
  1057. resist_physical 0
  1058. resist_magic 0
  1059. resist_weaponmagic 0
  1060. resist_fire 0
  1061. resist_cold 0
  1062. resist_electricity 0
  1063. resist_poison 0
  1064. resist_confusion 75
  1065. resist_blind 0
  1066. resist_acid 0
  1067. resist_drain 0
  1068. resist_paralyze 0
  1069. resist_slow 0
  1070. resist_fear 75
  1071. resist_ghosthit 0
  1072. resist_turn_undead 0
  1073. resist_holyword 0
  1074. resist_death 0
  1075.  
  1076. randomitems wolf
  1077.  
  1078. can_see_in_dark 1
  1079.  
  1080. monster 1
  1081. editable 1
  1082. alive 1
  1083. attack_movement 3
  1084. graalnpctype 1
  1085. end
  1086.  
  1087. // PANTHER 2 //
  1088.  
  1089. name Dire Panther
  1090. Object panther2
  1091. face panther
  1092. race animal
  1093. level 28
  1094. exp 90000
  1095. ac -26
  1096. wc -26
  1097. dam 26
  1098. hp 800
  1099. maxhp 800
  1100. speed 0.75
  1101. weight 175000
  1102. run_away 120
  1103.  
  1104. con 40
  1105. int 0
  1106. wis 18
  1107. pow 0
  1108.  
  1109. resist_physical 0
  1110. resist_magic 0
  1111. resist_weaponmagic 0
  1112. resist_fire 0
  1113. resist_cold 0
  1114. resist_electricity 0
  1115. resist_poison 0
  1116. resist_confusion 100
  1117. resist_blind 0
  1118. resist_acid 0
  1119. resist_drain 0
  1120. resist_paralyze 0
  1121. resist_slow 0
  1122. resist_fear 100
  1123. resist_ghosthit 0
  1124. resist_turn_undead 0
  1125. resist_holyword 0
  1126. resist_death 0
  1127.  
  1128. randomitems wolf
  1129.  
  1130. can_see_in_dark 1
  1131.  
  1132. monster 1
  1133. editable 1
  1134. alive 1
  1135. attack_movement 3
  1136. graalnpctype 1
  1137. end
  1138.  
  1139. // SABRETOOTH TIGER //
  1140.  
  1141. name Sabretooth Tiger
  1142. Object sabretooth
  1143. face sabretooth
  1144. race animal
  1145. level 30
  1146. exp 92500
  1147. ac -28
  1148. wc -28
  1149. dam 30
  1150. hp 1000
  1151. maxhp 1000
  1152. speed 0.75
  1153. weight 120000
  1154. run_away 150
  1155.  
  1156. con 50
  1157. int 0
  1158. wis 20
  1159. pow 0
  1160.  
  1161. resist_physical 0
  1162. resist_magic 0
  1163. resist_weaponmagic 0
  1164. resist_fire 0
  1165. resist_cold 0
  1166. resist_electricity 0
  1167. resist_poison 0
  1168. resist_confusion 100
  1169. resist_blind 100
  1170. resist_acid 0
  1171. resist_drain 0
  1172. resist_paralyze 0
  1173. resist_slow 100
  1174. resist_fear 100
  1175. resist_ghosthit 0
  1176. resist_turn_undead 0
  1177. resist_holyword 0
  1178. resist_death 0
  1179.  
  1180. randomitems wolf
  1181.  
  1182. monster 1
  1183. editable 1
  1184. alive 1
  1185. attack_movement 3
  1186. graalnpctype 1
  1187. end
  1188.  
  1189. // FOGGY //
  1190.  
  1191. name Foggy
  1192. Object foggy
  1193. face smoky
  1194. race animal
  1195. level 30
  1196. exp 95000
  1197. ac -30
  1198. wc -30
  1199. dam 30
  1200. hp 1200
  1201. maxhp 1200
  1202. speed 0.5
  1203. weight 20000
  1204. run_away 180
  1205.  
  1206. con 60
  1207. int 0
  1208. wis 14
  1209. pow 0
  1210.  
  1211. attacktype 1
  1212. resist_physical 0
  1213. resist_magic 0
  1214. resist_weaponmagic 0
  1215. resist_fire 0
  1216. resist_cold 0
  1217. resist_electricity 0
  1218. resist_poison 0
  1219. resist_confusion 0
  1220. resist_blind 25
  1221. resist_acid 0
  1222. resist_drain 0
  1223. resist_paralyze 0
  1224. resist_slow 0
  1225. resist_fear 0
  1226. resist_ghosthit 0
  1227. resist_turn_undead 0
  1228. resist_holyword 0
  1229. resist_death 0
  1230.  
  1231. monster 1
  1232. editable 1
  1233. alive 1
  1234. attack_movement 3
  1235. graalnpctype 1
  1236. end
  1237.  
  1238. // SMOKY //
  1239.  
  1240. name Smoky
  1241. Object smoky
  1242. face smoky
  1243. race animal
  1244. level 32
  1245. exp 97500
  1246. ac -32
  1247. wc -32
  1248. dam 32
  1249. hp 1400
  1250. maxhp 1400
  1251. speed 0.5
  1252. weight 22000
  1253. run_away 210
  1254.  
  1255. con 70
  1256. int 0
  1257. wis 16
  1258. pow 0
  1259.  
  1260. attacktype 2049
  1261. resist_physical 0
  1262. resist_magic 0
  1263. resist_weaponmagic 0
  1264. resist_fire 0
  1265. resist_cold 0
  1266. resist_electricity 0
  1267. resist_poison 0
  1268. resist_confusion 0
  1269. resist_blind 50
  1270. resist_acid 0
  1271. resist_drain 0
  1272. resist_paralyze 0
  1273. resist_slow 0
  1274. resist_fear 0
  1275. resist_ghosthit 0
  1276. resist_turn_undead 0
  1277. resist_holyword 0
  1278. resist_death 0
  1279.  
  1280. randomitems smoky
  1281.  
  1282. monster 1
  1283. editable 1
  1284. alive 1
  1285. attack_movement 3
  1286. graalnpctype 1
  1287. end
  1288.  
  1289. // SMOKY 2 //
  1290.  
  1291. name Dire Smoky
  1292. Object smoky2
  1293. face smoky
  1294. race animal
  1295. level 34
  1296. exp 110000
  1297. ac -34
  1298. wc -34
  1299. dam 34
  1300. hp 1600
  1301. maxhp 1600
  1302. speed 0.5
  1303. weight 24000
  1304. run_away 240
  1305.  
  1306. con 80
  1307. int 0
  1308. wis 18
  1309. pow 0
  1310.  
  1311. attacktype 2049
  1312. resist_physical 0
  1313. resist_magic 0
  1314. resist_weaponmagic 0
  1315. resist_fire 0
  1316. resist_cold 0
  1317. resist_electricity 0
  1318. resist_poison 0
  1319. resist_confusion 0
  1320. resist_blind 75
  1321. resist_acid 0
  1322. resist_drain 0
  1323. resist_paralyze 0
  1324. resist_slow 0
  1325. resist_fear 0
  1326. resist_ghosthit 0
  1327. resist_turn_undead 0
  1328. resist_holyword 0
  1329. resist_death 0
  1330.  
  1331. randomitems smoky
  1332.  
  1333. monster 1
  1334. editable 1
  1335. alive 1
  1336. attack_movement 3
  1337. graalnpctype 1
  1338. end
  1339.  
  1340. // DIEVIL //
  1341.  
  1342. name Dievil
  1343. Object dievil
  1344. face dievil
  1345. race animal
  1346. level 36
  1347. exp 122500
  1348. ac -36
  1349. wc -36
  1350. dam 36
  1351. hp 1800
  1352. maxhp 1800
  1353. speed 0.5
  1354. weight 26000
  1355. run_away 270
  1356.  
  1357. con 90
  1358. int 0
  1359. wis 20
  1360. pow 0
  1361.  
  1362. attacktype 4
  1363. resist_physical 0
  1364. resist_magic 0
  1365. resist_weaponmagic 0
  1366. resist_fire 25
  1367. resist_cold -25
  1368. resist_electricity 0
  1369. resist_poison 0
  1370. resist_confusion 0
  1371. resist_blind 0
  1372. resist_acid 0
  1373. resist_drain 0
  1374. resist_paralyze 0
  1375. resist_slow 0
  1376. resist_fear 0
  1377. resist_ghosthit 0
  1378. resist_turn_undead 0
  1379. resist_holyword 0
  1380. resist_death 0
  1381.  
  1382. randomitems dievil
  1383.  
  1384. monster 1
  1385. editable 1
  1386. alive 1
  1387. attack_movement 3
  1388. graalnpctype 1
  1389. end
  1390.  
  1391. // HEAVIL //
  1392.  
  1393. name Heavil
  1394. Object heavil
  1395. face heavil
  1396. race animal
  1397. level 36
  1398. exp 122500
  1399. ac -36
  1400. wc -36
  1401. dam 36
  1402. hp 1800
  1403. maxhp 1800
  1404. speed 0.5
  1405. weight 26000
  1406. run_away 270
  1407.  
  1408. con 90
  1409. int 0
  1410. wis 20
  1411. pow 0
  1412.  
  1413. attacktype 16
  1414. resist_physical 0
  1415. resist_magic 0
  1416. resist_weaponmagic 0
  1417. resist_fire -25
  1418. resist_cold 25
  1419. resist_electricity 0
  1420. resist_poison 0
  1421. resist_confusion 0
  1422. resist_blind 0
  1423. resist_acid 0
  1424. resist_drain 0
  1425. resist_paralyze 0
  1426. resist_slow 0
  1427. resist_fear 0
  1428. resist_ghosthit 0
  1429. resist_turn_undead 0
  1430. resist_holyword 0
  1431. resist_death 0
  1432.  
  1433. randomitems heavil
  1434.  
  1435. monster 1
  1436. editable 1
  1437. alive 1
  1438. attack_movement 3
  1439. graalnpctype 1
  1440. end
  1441.  
  1442. // EVILDIEVIL //
  1443.  
  1444. name Evildievil
  1445. Object evildievil
  1446. face dievil
  1447. race animal
  1448. level 38
  1449. exp 135000
  1450. ac -38
  1451. wc -38
  1452. dam 38
  1453. hp 2000
  1454. maxhp 2000
  1455. sp 100
  1456. maxsp 100
  1457. speed 0.5
  1458. weight 28000
  1459. run_away 300
  1460.  
  1461. con 100
  1462. int 0
  1463. wis 22
  1464. pow 0
  1465.  
  1466. attacktype 4
  1467. resist_physical 0
  1468. resist_magic 100
  1469. resist_weaponmagic 100
  1470. resist_fire 50
  1471. resist_cold -50
  1472. resist_electricity 100
  1473. resist_poison 100
  1474. resist_confusion 100
  1475. resist_blind 100
  1476. resist_acid 100
  1477. resist_drain 100
  1478. resist_paralyze 100
  1479. resist_slow 100
  1480. resist_fear 100
  1481. resist_ghosthit 100
  1482. resist_turn_undead 100
  1483. resist_holyword 100
  1484. resist_death 100
  1485.  
  1486. randomitems dievil
  1487.  
  1488. can_cast_spell 1
  1489.  
  1490. monster 1
  1491. alive 1
  1492. editable 1
  1493. attack_movement 3
  1494. graalnpctype 1
  1495. end
  1496.  
  1497. // EVILHEAVIL //
  1498.  
  1499. name Evilheavil
  1500. Object evilheavil
  1501. face heavil
  1502. race animal
  1503. level 38
  1504. exp 135000
  1505. ac -38
  1506. wc -38
  1507. dam 38
  1508. hp 2000
  1509. maxhp 2000
  1510. sp 100
  1511. maxsp 100
  1512. speed 0.5
  1513. weight 28000
  1514. run_away 300
  1515.  
  1516. con 100
  1517. int 0
  1518. wis 22
  1519. pow 0
  1520.  
  1521. attacktype 16
  1522. resist_physical 0
  1523. resist_magic 100
  1524. resist_weaponmagic 100
  1525. resist_fire -50
  1526. resist_cold 50
  1527. resist_electricity 100
  1528. resist_poison 100
  1529. resist_confusion 100
  1530. resist_blind 100
  1531. resist_acid 100
  1532. resist_drain 100
  1533. resist_paralyze 100
  1534. resist_slow 100
  1535. resist_fear 100
  1536. resist_ghosthit 100
  1537. resist_turn_undead 100
  1538. resist_holyword 100
  1539. resist_death 100
  1540.  
  1541. randomitems heavil
  1542.  
  1543. can_cast_spell 1
  1544.  
  1545. monster 1
  1546. editable 1
  1547. alive 1
  1548. attack_movement 3
  1549. graalnpctype 1
  1550. end
  1551.  
  1552. // GLOK //
  1553.  
  1554. name Orange Glok
  1555. Object glok
  1556. face glok
  1557. race slime
  1558. level 40
  1559. exp 147500
  1560. ac -40
  1561. wc -40
  1562. dam 40
  1563. hp 2200
  1564. maxhp 2200
  1565. speed 0.5
  1566. weight 20000
  1567. run_away 330
  1568.  
  1569. con 110
  1570. int 0
  1571. wis 16
  1572. pow 0
  1573.  
  1574. attacktype 1025
  1575. resist_physical 0
  1576. resist_magic 0
  1577. resist_weaponmagic 0
  1578. resist_fire 0
  1579. resist_cold 0
  1580. resist_electricity 100
  1581. resist_poison 100
  1582. resist_confusion 0
  1583. resist_blind 0
  1584. resist_acid 0
  1585. resist_drain 0
  1586. resist_paralyze 0
  1587. resist_slow 0
  1588. resist_fear 0
  1589. resist_ghosthit 0
  1590. resist_turn_undead 0
  1591. resist_holyword 0
  1592. resist_death 0
  1593.  
  1594. randomitems glok
  1595.  
  1596. monster 1
  1597. editable 1
  1598. alive 1
  1599. attack_movement 3
  1600. graalnpctype 1
  1601. end
  1602.  
  1603. // GLOK 2 //
  1604.  
  1605. name Purple Glok
  1606. Object glok2
  1607. face glok2
  1608. race slime
  1609. level 42
  1610. exp 160500
  1611. ac -42
  1612. wc -42
  1613. dam 42
  1614. hp 2400
  1615. maxhp 2400
  1616. speed 0.5
  1617. weight 22000
  1618. run_away 360
  1619.  
  1620. con 120
  1621. int 0
  1622. wis 18
  1623. pow 0
  1624.  
  1625. attacktype 1025
  1626. resist_physical 0
  1627. resist_magic 0
  1628. resist_weaponmagic 0
  1629. resist_fire 0
  1630. resist_cold 0
  1631. resist_electricity 0
  1632. resist_poison 100
  1633. resist_confusion 0
  1634. resist_blind 0
  1635. resist_acid 0
  1636. resist_drain 0
  1637. resist_paralyze 0
  1638. resist_slow 0
  1639. resist_fear 100
  1640. resist_ghosthit 0
  1641. resist_turn_undead 0
  1642. resist_holyword 0
  1643. resist_death 0
  1644.  
  1645. randomitems glok2
  1646.  
  1647. monster 1
  1648. editable 1
  1649. alive 1
  1650. attack_movement 3
  1651. graalnpctype 1
  1652. end
  1653.  
  1654. // GLOK 3 // (White)
  1655.  
  1656. name Snow Glok
  1657. Object glok3
  1658. face glok3
  1659. race slime
  1660. level 44
  1661. exp 173500
  1662. ac -44
  1663. wc -44
  1664. dam 44
  1665. hp 2600
  1666. maxhp 2600
  1667. speed 0.5
  1668. weight 24000
  1669. run_away 390
  1670.  
  1671. con 130
  1672. int 0
  1673. wis 20
  1674. pow 0
  1675.  
  1676. attacktype 1025
  1677. resist_physical 0
  1678. resist_magic 0
  1679. resist_weaponmagic 0
  1680. resist_fire 0
  1681. resist_cold 100
  1682. resist_electricity 0
  1683. resist_poison 100
  1684. resist_confusion 0
  1685. resist_blind 0
  1686. resist_acid 0
  1687. resist_drain 0
  1688. resist_paralyze 0
  1689. resist_slow 0
  1690. resist_fear 0
  1691. resist_ghosthit 0
  1692. resist_turn_undead 0
  1693. resist_holyword 0
  1694. resist_death 0
  1695.  
  1696. randomitems glok3
  1697.  
  1698. monster 1
  1699. editable 1
  1700. alive 1
  1701. attack_movement 3
  1702. graalnpctype 1
  1703. end
  1704.  
  1705. // GLOK 4 //
  1706.  
  1707. name Dire Purple Glok
  1708. Object glok4
  1709. face glok
  1710. race slime
  1711. level 46
  1712. exp 186500
  1713. ac -46
  1714. wc -46
  1715. dam 46
  1716. hp 2800
  1717. maxhp 2800
  1718. speed 0.5
  1719. weight 26000
  1720. run_away 420
  1721.  
  1722. con 140
  1723. int 0
  1724. wis 22
  1725. pow 0
  1726.  
  1727. attacktype 16385
  1728. resist_physical 0
  1729. resist_magic 0
  1730. resist_weaponmagic 0
  1731. resist_fire 0
  1732. resist_cold 0
  1733. resist_electricity 100
  1734. resist_poison 100
  1735. resist_confusion 0
  1736. resist_blind 0
  1737. resist_acid 0
  1738. resist_drain 0
  1739. resist_paralyze 0
  1740. resist_slow 0
  1741. resist_fear 0
  1742. resist_ghosthit 0
  1743. resist_turn_undead 0
  1744. resist_holyword 0
  1745. resist_death 0
  1746.  
  1747. randomitems glok
  1748.  
  1749. monster 1
  1750. editable 1
  1751. alive 1
  1752. attack_movement 3
  1753. graalnpctype 1
  1754. end
  1755.  
  1756. // GLOK 5 //
  1757.  
  1758. name Dire Orange Glok
  1759. Object glok5
  1760. face glok2
  1761. race slime
  1762. level 48
  1763. exp 199500
  1764. ac -48
  1765. wc -48
  1766. dam 48
  1767. hp 3000
  1768. maxhp 3000
  1769. speed 0.5
  1770. weight 28000
  1771. run_away 450
  1772.  
  1773. con 150
  1774. int 0
  1775. wis 24
  1776. pow 0
  1777.  
  1778. attacktype 16385
  1779. resist_physical 0
  1780. resist_magic 0
  1781. resist_weaponmagic 0
  1782. resist_fire 0
  1783. resist_cold 0
  1784. resist_electricity 0
  1785. resist_poison 100
  1786. resist_confusion 0
  1787. resist_blind 0
  1788. resist_acid 0
  1789. resist_drain 0
  1790. resist_paralyze 0
  1791. resist_slow 0
  1792. resist_fear 100
  1793. resist_ghosthit 0
  1794. resist_turn_undead 0
  1795. resist_holyword 0
  1796. resist_death 0
  1797.  
  1798. randomitems glok2
  1799.  
  1800. monster 1
  1801. editable 1
  1802. alive 1
  1803. attack_movement 3
  1804. graalnpctype 1
  1805. end
  1806.  
  1807. // BABY IGUANADON //
  1808.  
  1809. name Baby Iguanadon
  1810. Object iguanadonsmall
  1811. face iguanadon
  1812. race giant
  1813. level 50
  1814. exp 213000
  1815. ac -50
  1816. wc -50
  1817. dam 50
  1818. hp 3250
  1819. maxhp 3250
  1820. speed 0.5
  1821. weight 245000
  1822. run_away 485
  1823.  
  1824. con 162
  1825. int 0
  1826. wis 16
  1827. pow 0
  1828.  
  1829. attacktype 1
  1830. resist_physical 0
  1831. resist_magic 0
  1832. resist_weaponmagic 0
  1833. resist_fire 0
  1834. resist_cold 0
  1835. resist_electricity 0
  1836. resist_poison 0
  1837. resist_confusion 0
  1838. resist_blind 0
  1839. resist_acid 0
  1840. resist_drain 0
  1841. resist_paralyze 0
  1842. resist_slow 0
  1843. resist_fear 0
  1844. resist_ghosthit 0
  1845. resist_turn_undead 0
  1846. resist_holyword 0
  1847. resist_death 0
  1848.  
  1849. randomitems iguanadon
  1850.  
  1851. monster 1
  1852. editable 1
  1853. alive 1
  1854. attack_movement 3
  1855. graalnpctype 1
  1856. end
  1857.  
  1858. // IGUANADON //
  1859.  
  1860. name Iguanadon
  1861. Object iguanadon
  1862. face iguanadon
  1863. race giant
  1864. level 52
  1865. exp 227000
  1866. ac -52
  1867. wc -52
  1868. dam 52
  1869. hp 3500
  1870. maxhp 3500
  1871. speed 0.5
  1872. weight 345000
  1873. run_away 525
  1874.  
  1875. con 175
  1876. int 0
  1877. wis 18
  1878. pow 0
  1879.  
  1880. attacktype 1
  1881. resist_physical 0
  1882. resist_magic 0
  1883. resist_weaponmagic 0
  1884. resist_fire 0
  1885. resist_cold 0
  1886. resist_electricity 0
  1887. resist_poison 0
  1888. resist_confusion 0
  1889. resist_blind 0
  1890. resist_acid 0
  1891. resist_drain 0
  1892. resist_paralyze 0
  1893. resist_slow 0
  1894. resist_fear 0
  1895. resist_ghosthit 0
  1896. resist_turn_undead 0
  1897. resist_holyword 0
  1898. resist_death 0
  1899.  
  1900. randomitems iguanadon
  1901.  
  1902. monster 1
  1903. editable 1
  1904. alive 1
  1905. attack_movement 3
  1906. graalnpctype 1
  1907. end
  1908.  
  1909. // BLUE IGUANADON //
  1910.  
  1911. name Blue Iguanadon
  1912. Object iguanadonblue
  1913. face iguanadon
  1914. race giant
  1915. level 54
  1916. exp 241000
  1917. ac -54
  1918. wc -54
  1919. dam 54
  1920. hp 4000
  1921. maxhp 4000
  1922. speed 0.5
  1923. weight 445000
  1924. run_away 600
  1925.  
  1926. con 200
  1927. int 0
  1928. wis 20
  1929. pow 0
  1930.  
  1931. attacktype 1
  1932. resist_physical 0
  1933. resist_magic 100
  1934. resist_weaponmagic 100
  1935. resist_fire -50
  1936. resist_cold 100
  1937. resist_electricity 100
  1938. resist_poison 100
  1939. resist_confusion 100
  1940. resist_blind 100
  1941. resist_acid 100
  1942. resist_drain 100
  1943. resist_paralyze 100
  1944. resist_slow 100
  1945. resist_fear 100
  1946. resist_ghosthit 100
  1947. resist_turn_undead 100
  1948. resist_holyword 100
  1949. resist_death 100
  1950.  
  1951. randomitems iguanadon
  1952.  
  1953. monster 1
  1954. editable 1
  1955. alive 1
  1956. attack_movement 3
  1957. graalnpctype 1
  1958. end
  1959.  
  1960. // T-REX //
  1961.  
  1962. name T-Rex
  1963. Object trex
  1964. face trex
  1965. race giant
  1966. level 56
  1967. exp 255000
  1968. ac -56
  1969. wc -56
  1970. dam 56
  1971. hp 4500
  1972. maxhp 4500
  1973. speed 0.5
  1974. weight 500000
  1975. run_away 675
  1976.  
  1977. con 225
  1978. int 0
  1979. wis 22
  1980. pow 0
  1981.  
  1982. attacktype 1
  1983. resist_physical 0
  1984. resist_magic 0
  1985. resist_weaponmagic 0
  1986. resist_fire 0
  1987. resist_cold 0
  1988. resist_electricity 0
  1989. resist_poison 0
  1990. resist_confusion 0
  1991. resist_blind 0
  1992. resist_acid 0
  1993. resist_drain 0
  1994. resist_paralyze 0
  1995. resist_slow 0
  1996. resist_fear 0
  1997. resist_ghosthit 0
  1998. resist_turn_undead 0
  1999. resist_holyword 0
  2000. resist_death 0
  2001.  
  2002. randomitems trex
  2003.  
  2004. monster 1
  2005. editable 1
  2006. alive 1
  2007. attack_movement 3
  2008. graalnpctype 1
  2009. end
  2010.  
  2011. // RED T-REX //
  2012.  
  2013. name Red T-Rex
  2014. Object trexred
  2015. face trex
  2016. race giant
  2017. level 58
  2018. exp 269000
  2019. ac -58
  2020. wc -58
  2021. dam 58
  2022. hp 5000
  2023. maxhp 5000
  2024. speed 0.5
  2025. weight 550000
  2026. run_away 750
  2027.  
  2028. con 250
  2029. int 0
  2030. wis 24
  2031. pow 0
  2032.  
  2033. attacktype 1
  2034. resist_physical 0
  2035. resist_magic 100
  2036. resist_weaponmagic 100
  2037. resist_fire 100
  2038. resist_cold -50
  2039. resist_electricity 100
  2040. resist_poison 100
  2041. resist_confusion 100
  2042. resist_blind 100
  2043. resist_acid 100
  2044. resist_drain 100
  2045. resist_paralyze 100
  2046. resist_slow 100
  2047. resist_fear 100
  2048. resist_ghosthit 100
  2049. resist_turn_undead 100
  2050. resist_holyword 100
  2051. resist_death 100
  2052.  
  2053. randomitems trex
  2054.  
  2055. monster 1
  2056. editable 1
  2057. alive 1
  2058. attack_movement 3
  2059. graalnpctype 1
  2060. end
  2061.  
  2062. // SNAKE //
  2063.  
  2064. name Snake
  2065. Object snake
  2066. race reptile
  2067. face snake0
  2068. level 62
  2069. exp 283000
  2070. ac -62
  2071. wc -62
  2072. dam 62
  2073. hp 3000
  2074. maxhp 3000
  2075. sp 80
  2076. maxsp 80
  2077. speed 0.5
  2078. weight 15000
  2079. run_away 450
  2080.  
  2081. con 150
  2082. int 0
  2083. wis 10
  2084. pow 0
  2085.  
  2086. resist_physical 0
  2087. resist_magic 0
  2088. resist_weaponmagic 0
  2089. resist_fire 0
  2090. resist_cold 0
  2091. resist_electricity 0
  2092. resist_poison 0
  2093. resist_confusion 0
  2094. resist_blind 0
  2095. resist_acid 0
  2096. resist_drain 0
  2097. resist_paralyze 0
  2098. resist_slow 100
  2099. resist_fear 0
  2100. resist_ghosthit 0
  2101. resist_turn_undead 0
  2102. resist_holyword 0
  2103. resist_death 0
  2104.  
  2105. randomitems snake
  2106.  
  2107. no_pick 1
  2108.  
  2109. monster 1
  2110. editable 1
  2111. alive 1
  2112. graalnpctype 1
  2113. graalnpcparam g2k2msnake0.png
  2114. end
  2115.  
  2116. // SNAKE 2 //
  2117.  
  2118. name Serpent
  2119. Object snake2
  2120. race reptile
  2121. face snake0
  2122. level 64
  2123. exp 297000
  2124. ac -64
  2125. wc -64
  2126. dam 64
  2127. hp 4000
  2128. maxhp 4000
  2129. speed 0.5
  2130. weight 20000
  2131. run_away 600
  2132.  
  2133. con 200
  2134. int 0
  2135. wis 12
  2136. pow 0
  2137.  
  2138. resist_physical 0
  2139. resist_magic 0
  2140. resist_weaponmagic 0
  2141. resist_fire 0
  2142. resist_cold 0
  2143. resist_electricity 0
  2144. resist_poison 0
  2145. resist_confusion 0
  2146. resist_blind 0
  2147. resist_acid 0
  2148. resist_drain 0
  2149. resist_paralyze 0
  2150. resist_slow 100
  2151. resist_fear 0
  2152. resist_ghosthit 0
  2153. resist_turn_undead 0
  2154. resist_holyword 0
  2155. resist_death 0
  2156.  
  2157. randomitems snake
  2158.  
  2159. no_pick 1
  2160.  
  2161. monster 1
  2162. editable 1
  2163. alive 1
  2164. graalnpctype 1
  2165. graalnpcparam g2k2msnake0.png
  2166. end
  2167.  
  2168. // BIGWORM //
  2169.  
  2170. name Bigworm
  2171. Object bigworm
  2172. face bigworm
  2173. race animal
  2174. level 66
  2175. exp 326000
  2176. ac -66
  2177. wc -66
  2178. dam 66
  2179. hp 5000
  2180. maxhp 5000
  2181. speed 0.5
  2182. weight 60000
  2183. run_away 750
  2184.  
  2185. con 250
  2186. int 0
  2187. wis 30
  2188. pow 0
  2189.  
  2190. attacktype 3073
  2191. resist_physical 0
  2192. resist_magic 0
  2193. resist_weaponmagic 0
  2194. resist_fire 0
  2195. resist_cold 0
  2196. resist_electricity 0
  2197. resist_poison 0
  2198. resist_confusion 0
  2199. resist_blind 0
  2200. resist_acid 0
  2201. resist_drain 0
  2202. resist_paralyze 0
  2203. resist_slow 100
  2204. resist_fear 0
  2205. resist_ghosthit 0
  2206. resist_turn_undead 0
  2207. resist_holyword 0
  2208. resist_death 0
  2209.  
  2210. monster 1
  2211. editable 1
  2212. alive 1
  2213. attack_movement 3
  2214. graalnpctype 1
  2215. end
  2216.  
  2217. // BADWORM //
  2218.  
  2219. name Badworm
  2220. Object badworm
  2221. face badworm
  2222. race animal
  2223. level 68
  2224. exp 341000
  2225. ac -68
  2226. wc -68
  2227. dam 68
  2228. hp 6000
  2229. maxhp 6000
  2230. speed 0.3
  2231. weight 80000
  2232. run_away 900
  2233.  
  2234. con 300
  2235. int 0
  2236. wis 20
  2237. pow 0
  2238.  
  2239. attacktype 3073
  2240. resist_physical 0
  2241. resist_magic 0
  2242. resist_weaponmagic 0
  2243. resist_fire 0
  2244. resist_cold 0
  2245. resist_electricity 0
  2246. resist_poison 0
  2247. resist_confusion 0
  2248. resist_blind 0
  2249. resist_acid 0
  2250. resist_drain 0
  2251. resist_paralyze 0
  2252. resist_slow 100
  2253. resist_fear 0
  2254. resist_ghosthit 0
  2255. resist_turn_undead 0
  2256. resist_holyword 0
  2257. resist_death 0
  2258.  
  2259. monster 1
  2260. editable 1
  2261. alive 1
  2262. attack_movement 3
  2263. graalnpctype 1
  2264. end
  2265.  
  2266. // DEMON //
  2267.  
  2268. name Demon
  2269. Object demon
  2270. face demon
  2271. race giant
  2272. level 72
  2273. exp 371000
  2274. ac -72
  2275. wc -72
  2276. dam 72
  2277. hp 7200
  2278. maxhp 7200
  2279. sp 200
  2280. maxsp 200
  2281. speed 0.5
  2282. weight 160000
  2283. run_away 1080
  2284.  
  2285. con 360
  2286. int 0
  2287. wis 24
  2288. pow 0
  2289.  
  2290. resist_physical 0
  2291. resist_magic 0
  2292. resist_weaponmagic 0
  2293. resist_fire 100
  2294. resist_cold 0
  2295. resist_electricity 0
  2296. resist_poison 0
  2297. resist_confusion 0
  2298. resist_blind 0
  2299. resist_acid 0
  2300. resist_drain 0
  2301. resist_paralyze 0
  2302. resist_slow 0
  2303. resist_fear 100
  2304. resist_ghosthit 0
  2305. resist_turn_undead 0
  2306. resist_holyword -50
  2307. resist_death 100
  2308.  
  2309. randomitems demon
  2310.  
  2311. can_cast_spell 1
  2312.  
  2313. monster 1
  2314. editable 1
  2315. alive 1
  2316. attack_movement 3
  2317. graalnpctype 1
  2318. end
  2319.  
  2320. // CYCLOP //
  2321.  
  2322. name Cyclops
  2323. Object cyclop
  2324. face cyclop
  2325. race giant
  2326. level 74
  2327. exp 386000
  2328. ac -74
  2329. dam -74
  2330. wc -74
  2331. hp 7400
  2332. maxhp 7400
  2333. sp 200
  2334. maxsp 200
  2335. speed 0.5
  2336. weight 180000
  2337. run_away 1110
  2338.  
  2339. con 370
  2340. int 0
  2341. wis 20
  2342. pow 0
  2343.  
  2344. resist_physical 0
  2345. resist_magic 0
  2346. resist_weaponmagic 0
  2347. resist_fire 0
  2348. resist_cold 100
  2349. resist_electricity 0
  2350. resist_poison 0
  2351. resist_confusion 0
  2352. resist_blind -50
  2353. resist_acid 0
  2354. resist_drain 0
  2355. resist_paralyze 0
  2356. resist_slow 0
  2357. resist_fear 0
  2358. resist_ghosthit 0
  2359. resist_turn_undead 0
  2360. resist_holyword -50
  2361. resist_death 100
  2362.  
  2363. randomitems cyclop
  2364.  
  2365. can_cast_spell 1
  2366.  
  2367. monster 1
  2368. editable 1
  2369. alive 1
  2370. attack_movement 3
  2371. graalnpctype 1
  2372. end
  2373.  
  2374. // ELVEN ARCHER //
  2375.  
  2376. name Elven Archer
  2377. Object archer
  2378. face elf
  2379. race human
  2380. level 76
  2381. exp 401000
  2382. ac -76
  2383. wc -76
  2384. dam 76
  2385. hp 7600
  2386. maxhp 7600
  2387. speed 1
  2388. weight 160000
  2389. run_away 1140
  2390.  
  2391. con 380
  2392. int 0
  2393. wis 30
  2394. pow 0
  2395.  
  2396. attacktype 1
  2397. resist_physical 0
  2398. resist_magic 100
  2399. resist_weaponmagic 100
  2400. resist_fire 0
  2401. resist_cold 0
  2402. resist_electricity 0
  2403. resist_poison 0
  2404. resist_confusion -50
  2405. resist_blind -50
  2406. resist_acid 0
  2407. resist_drain 0
  2408. resist_paralyze 0
  2409. resist_slow -50
  2410. resist_fear 0
  2411. resist_ghosthit 0
  2412. resist_turn_undead 0
  2413. resist_holyword 0
  2414. resist_death 0
  2415.  
  2416. randomitems archer
  2417.  
  2418. can_see_in_dark 1
  2419. can_apply 25
  2420. will_apply 2
  2421. pick_up 24
  2422.  
  2423. no_pick 1
  2424. no_steal 1
  2425. nopeaceful 1
  2426.  
  2427. monster 1
  2428. editable 1
  2429. alive 1
  2430. attack_movement 3
  2431. graalnpctype 1
  2432. end
  2433.  
  2434. // ORC //
  2435.  
  2436. name Orc Warrior
  2437. Object orc
  2438. face goblin
  2439. race goblin
  2440. level 78
  2441. exp 416000
  2442. ac -78
  2443. wc -78
  2444. dam 78
  2445. hp 7800
  2446. maxhp 7800
  2447. speed 1
  2448. weight 260000
  2449. run_away 1170
  2450.  
  2451. con 390
  2452. int 0
  2453. wis 20
  2454. pow 0
  2455.  
  2456. attacktype 132099
  2457. resist_physical 0
  2458. resist_magic 0
  2459. resist_weaponmagic 0
  2460. resist_fire 0
  2461. resist_cold -50
  2462. resist_electricity 0
  2463. resist_poison 100
  2464. resist_confusion 0
  2465. resist_blind 0
  2466. resist_acid 0
  2467. resist_drain 0
  2468. resist_paralyze 0
  2469. resist_slow -50
  2470. resist_fear 100
  2471. resist_ghosthit 0
  2472. resist_turn_undead 0
  2473. resist_holyword 0
  2474. resist_death 0
  2475.  
  2476. randomitems orc
  2477.  
  2478. can_see_in_dark 1
  2479. can_apply 25
  2480. will_apply 2
  2481. pick_up 24
  2482.  
  2483. no_pick 1
  2484. no_steal 1
  2485. nopeaceful 1
  2486.  
  2487. monster 1
  2488. editable 1
  2489. alive 1
  2490. attack_movement 3
  2491. graalnpctype 1
  2492. end
  2493.  
  2494. // SKELETON //
  2495.  
  2496. name Skeleton
  2497. Object skeleton
  2498. race undead
  2499. face skeleton.111
  2500. level 80
  2501. exp 431000
  2502. ac -80
  2503. wc -80
  2504. dam 80
  2505. hp 7500
  2506. maxhp 7500
  2507. speed 0.5
  2508. weight 120000
  2509. run_away 1125
  2510.  
  2511. con 375
  2512. int 0
  2513. wis 16
  2514. pow 0
  2515.  
  2516. attacktype 17
  2517. resist_physical 0
  2518. resist_magic 0
  2519. resist_weaponmagic 0
  2520. resist_fire 0
  2521. resist_cold 0
  2522. resist_electricity 0
  2523. resist_poison 100
  2524. resist_confusion 0
  2525. resist_blind 0
  2526. resist_acid 0
  2527. resist_drain 0
  2528. resist_paralyze 0
  2529. resist_slow 0
  2530. resist_fear 100
  2531. resist_ghosthit 0
  2532. resist_turn_undead -75
  2533. resist_holyword -75
  2534. resist_death 100
  2535.  
  2536. randomitems skeleton
  2537.  
  2538. can_see_in_dark 1
  2539. can_use_weapon 1
  2540. can_use_armour 1
  2541. can_use_ring 1
  2542. can_apply 25
  2543. will_apply 2
  2544. pick_up 24
  2545.  
  2546. no_pick 1
  2547.  
  2548. monster 1
  2549. editable 1
  2550. alive 1
  2551. undead 1
  2552. sleep 1
  2553. graalnpctype 1
  2554. end
  2555.  
  2556. // GRIM REAPER //
  2557.  
  2558. name Grim Reaper
  2559. Object grimreaper
  2560. race undead
  2561. face skeleton
  2562. level 85
  2563. exp 470500
  2564. ac -85
  2565. wc -85
  2566. dam 85
  2567. hp 8000
  2568. maxhp 8000
  2569. speed 0.5
  2570. weight 160000
  2571. run_away 1200
  2572.  
  2573. con 400
  2574. int 0
  2575. wis 18
  2576. pow 0
  2577.  
  2578. attacktype 17
  2579. resist_physical 0
  2580. resist_magic 0
  2581. resist_weaponmagic 0
  2582. resist_fire 0
  2583. resist_cold 0
  2584. resist_electricity 0
  2585. resist_poison 0
  2586. resist_confusion 0
  2587. resist_blind 0
  2588. resist_acid 100
  2589. resist_drain 0
  2590. resist_paralyze 0
  2591. resist_slow 0
  2592. resist_fear 100
  2593. resist_ghosthit 0
  2594. resist_turn_undead -50
  2595. resist_holyword -50
  2596. resist_death 100
  2597.  
  2598. can_see_in_dark 1
  2599. can_use_weapon 1
  2600. can_use_armour 1
  2601. can_use_ring 1
  2602. can_apply 25
  2603. will_apply 2
  2604. pick_up 24
  2605.  
  2606. no_pick 1
  2607.  
  2608. monster 1
  2609. editable 1
  2610. alive 1
  2611. undead 1
  2612. sleep 1
  2613. graalnpctype 1
  2614. end
  2615.  
  2616. // ZOMBIE //
  2617.  
  2618. name Zombie
  2619. Object zombie
  2620. race undead
  2621. face skeleton
  2622. level 88
  2623. exp 494500
  2624. ac -88
  2625. wc -88
  2626. dam 88
  2627. hp 8500
  2628. maxhp 8500
  2629. speed 0.25
  2630. weight 180000
  2631. run_away 1275
  2632.  
  2633. con 425
  2634. int 0
  2635. wis 20
  2636. pow 0
  2637.  
  2638. attacktype 1042
  2639. resist_physical 0
  2640. resist_magic 0
  2641. resist_weaponmagic 0
  2642. resist_fire -50
  2643. resist_cold 0
  2644. resist_electricity 0
  2645. resist_poison 100
  2646. resist_confusion 0
  2647. resist_blind 0
  2648. resist_acid 0
  2649. resist_drain 0
  2650. resist_paralyze 0
  2651. resist_slow 100
  2652. resist_fear 0
  2653. resist_ghosthit 0
  2654. resist_turn_undead -25
  2655. resist_holyword -25
  2656. resist_death 100
  2657.  
  2658. randomitems zombie
  2659.  
  2660. can_see_in_dark 1
  2661. can_use_weapon 1
  2662. can_use_armour 1
  2663. can_use_ring 1
  2664. can_apply 25
  2665. will_apply 2
  2666. pick_up 24
  2667.  
  2668. no_steal 1
  2669. no_pick 1
  2670. nopeaceful 1
  2671.  
  2672. monster 1
  2673. editable 1
  2674. alive 1
  2675. undead 1
  2676. sleep 1
  2677. graalnpctype 1
  2678. end
  2679.  
  2680. // VAMPIRIC GUARDIAN //
  2681.  
  2682. name Vampiric Guardian
  2683. Object vampireguard
  2684. race undead
  2685. face vampireguard
  2686. level 90
  2687. exp 510500
  2688. ac -90
  2689. wc -90
  2690. dam 90
  2691. hp 9000
  2692. maxhp 9000
  2693. speed 1.25
  2694. weight 160000
  2695. run_away 1350
  2696.  
  2697. con 450
  2698. int 0
  2699. wis 24
  2700. pow 0
  2701.  
  2702. attacktype 147473
  2703. resist_physical 0
  2704. resist_magic 100
  2705. resist_weaponmagic 100
  2706. resist_fire -50
  2707. resist_cold 0
  2708. resist_electricity 0
  2709. resist_poison 0
  2710. resist_confusion 0
  2711. resist_blind 100
  2712. resist_acid 0
  2713. resist_drain 0
  2714. resist_paralyze 0
  2715. resist_slow 100
  2716. resist_fear 100
  2717. resist_ghosthit 0
  2718. resist_turn_undead -25
  2719. resist_holyword -25
  2720. resist_death 100
  2721.  
  2722. randomitems vampireguard
  2723.  
  2724. can_see_in_dark 1
  2725. can_use_weapon 1
  2726. can_use_armour 1
  2727. can_use_ring 1
  2728. can_apply 25
  2729. will_apply 2
  2730. pick_up 24
  2731.  
  2732. no_pick 1
  2733. no_steal 1
  2734. nopeaceful 1
  2735.  
  2736. monster 1
  2737. editable 1
  2738. alive 1
  2739. undead 1
  2740. sleep 1
  2741. graalnpctype 1
  2742. end
  2743.  
  2744. // VAMPIRE PRIEST //
  2745.  
  2746. name Vampiric Priest
  2747. Object vampirepriest
  2748. face vampire
  2749. race undead
  2750. level 95
  2751. exp 550500
  2752. ac -95
  2753. wc -95
  2754. dam 95
  2755. hp 9500
  2756. maxhp 9500
  2757. maxsp 250
  2758. sp 250
  2759. speed 1
  2760. weight 120000
  2761. run_away 1425
  2762.  
  2763. con 475
  2764. int 0
  2765. wis 30
  2766. pow 0
  2767.  
  2768. attacktype 147473
  2769. resist_physical 0
  2770. resist_magic 100
  2771. resist_weaponmagic 100
  2772. resist_fire 0
  2773. resist_cold -50
  2774. resist_electricity 0
  2775. resist_poison 0
  2776. resist_confusion 0
  2777. resist_blind 0
  2778. resist_acid 0
  2779. resist_drain 0
  2780. resist_paralyze 0
  2781. resist_slow 0
  2782. resist_fear 100
  2783. resist_ghosthit 0
  2784. resist_turn_undead -50
  2785. resist_holyword -50
  2786. resist_death 100
  2787.  
  2788. randomitems vampirepriest
  2789.  
  2790. can_see_in_dark 1
  2791. can_cast_spell 1
  2792. can_apply 25
  2793. will_apply 2
  2794. pick_up 24
  2795.  
  2796. no_pick 1
  2797. no_steal 1
  2798. nopeaceful 1
  2799.  
  2800. monster 1
  2801. editable 1
  2802. undead 1
  2803. alive 1
  2804. attack_movement 3
  2805. graalnpctype 1
  2806. end
  2807.  
  2808. // WRAITH //
  2809.  
  2810. name Wraith
  2811. Object wraith
  2812. face wraith
  2813. race undead
  2814. level 98
  2815. exp 574500
  2816. ac -98
  2817. wc -98
  2818. dam 98
  2819. hp 9800
  2820. maxhp 9800
  2821. maxsp 500
  2822. sp 500
  2823. speed 1
  2824. weight 0
  2825. run_away 1470
  2826.  
  2827. con 490
  2828. int 0
  2829. wis 30
  2830. pow 0
  2831.  
  2832. attacktype 147473
  2833. resist_physical 100
  2834. resist_magic -75
  2835. resist_weaponmagic 100
  2836. resist_fire 100
  2837. resist_cold 100
  2838. resist_electricity 100
  2839. resist_poison 100
  2840. resist_confusion 100
  2841. resist_blind 100
  2842. resist_acid 100
  2843. resist_drain 100
  2844. resist_paralyze 100
  2845. resist_slow 100
  2846. resist_fear 100
  2847. resist_ghosthit 100
  2848. resist_turn_undead -75
  2849. resist_holyword -75
  2850. resist_death 100
  2851.  
  2852. randomitems wraith
  2853.  
  2854. can_see_in_dark 1
  2855. can_cast_spell 1
  2856. can_apply 25
  2857. will_apply 2
  2858. pick_up 24
  2859.  
  2860. no_pick 1
  2861. no_steal 1
  2862. nopeaceful 1
  2863.  
  2864. monster 1
  2865. editable 1
  2866. alive 1
  2867. undead 1
  2868. attack_movement 3
  2869. graalnpctype 1
  2870. end
  2871.  
  2872. // GHOUL //
  2873.  
  2874. name Ghoul
  2875. Object ghoul
  2876. face human
  2877. race human
  2878. level 100
  2879. exp 590500
  2880. ac -100
  2881. wc -100
  2882. dam 100
  2883. hp 10000
  2884. maxhp 10000
  2885. speed 1
  2886. weight 140000
  2887. run_away 1500
  2888.  
  2889. con 500
  2890. int 0
  2891. wis 16
  2892. pow 0
  2893.  
  2894. attacktype 1057
  2895. resist_physical 0
  2896. resist_magic 0
  2897. resist_weaponmagic 0
  2898. resist_fire -50
  2899. resist_cold 0
  2900. resist_electricity 0
  2901. resist_poison 100
  2902. resist_confusion 0
  2903. resist_blind 100
  2904. resist_acid 0
  2905. resist_drain 0
  2906. resist_paralyze 0
  2907. resist_slow 100
  2908. resist_fear 100
  2909. resist_ghosthit 0
  2910. resist_turn_undead -75
  2911. resist_holyword -75
  2912. resist_death 100
  2913.  
  2914. randomitems bsoldier
  2915.  
  2916. monster 1
  2917. editable 1
  2918. undead 1
  2919. alive 1
  2920. attack_movement 3
  2921. graalnpctype 1
  2922. end
  2923.  
  2924. // ABOMINATION //
  2925.  
  2926. name Abomination
  2927. Object abomination
  2928. face human
  2929. race human
  2930. level 102
  2931. exp 606500
  2932. ac -102
  2933. wc -102
  2934. dam 102
  2935. hp 12000
  2936. maxhp 12000
  2937. speed 1
  2938. weight 140000
  2939. run_away 1800
  2940.  
  2941. con 600
  2942. int 0
  2943. wis 18
  2944. pow 0
  2945.  
  2946. attacktype 1057
  2947. resist_physical 0
  2948. resist_magic 0
  2949. resist_weaponmagic 0
  2950. resist_fire 0
  2951. resist_cold 0
  2952. resist_electricity -50
  2953. resist_poison 0
  2954. resist_confusion 0
  2955. resist_blind 100
  2956. resist_acid 100
  2957. resist_drain 0
  2958. resist_paralyze 0
  2959. resist_slow 100
  2960. resist_fear 100
  2961. resist_ghosthit 0
  2962. resist_turn_undead -50
  2963. resist_holyword -50
  2964. resist_death 100
  2965.  
  2966. randomitems bsoldier
  2967.  
  2968. monster 1
  2969. editable 1
  2970. alive 1
  2971. undead 1
  2972. attack_movement 3
  2973. graalnpctype 1
  2974. end
  2975.  
  2976. // NECROMANCER //
  2977.  
  2978. name Necromancer
  2979. Object dgnecromancer
  2980. face human
  2981. race human
  2982. level 105
  2983. exp 630500
  2984. ac -105
  2985. wc -105
  2986. dam 105
  2987. hp 12500
  2988. maxhp 12500
  2989. sp 300
  2990. maxsp 300
  2991. speed 1
  2992. weight 160000
  2993. run_away 1875
  2994.  
  2995. con 625
  2996. int 0
  2997. wis 30
  2998. pow 0
  2999.  
  3000. attacktype 1057
  3001. resist_physical 0
  3002. resist_magic 0
  3003. resist_weaponmagic 0
  3004. resist_fire 0
  3005. resist_cold -50
  3006. resist_electricity 0
  3007. resist_poison 0
  3008. resist_confusion 0
  3009. resist_blind 100
  3010. resist_acid 100
  3011. resist_drain 100
  3012. resist_paralyze 0
  3013. resist_slow 0
  3014. resist_fear 100
  3015. resist_ghosthit 0
  3016. resist_turn_undead -25
  3017. resist_holyword -25
  3018. resist_death 100
  3019.  
  3020. randomitems bsoldier
  3021.  
  3022. can_cast_spell 1
  3023.  
  3024. monster 1
  3025. editable 1
  3026. alive 1
  3027. attack_movement 3
  3028. graalnpctype 1
  3029. end
  3030.  
  3031. // SUCCUBUS //
  3032.  
  3033. name Succubus
  3034. Object succubusboss
  3035. face human
  3036. race demon
  3037. level 108
  3038. exp 654500
  3039. ac -108
  3040. wc -108
  3041. dam 108
  3042. hp 15000
  3043. maxhp 15000
  3044. sp 500
  3045. maxsp 500
  3046. speed 1
  3047. weight 120000
  3048. run_away 2250
  3049.  
  3050. con 750
  3051. int 0
  3052. wis 30
  3053. pow 0
  3054.  
  3055. attacktype 147473
  3056. resist_physical 0
  3057. resist_magic 100
  3058. resist_weaponmagic 100
  3059. resist_fire 50
  3060. resist_cold 50
  3061. resist_electricity 50
  3062. resist_poison 0
  3063. resist_confusion 100
  3064. resist_blind 100
  3065. resist_acid 0
  3066. resist_drain 100
  3067. resist_paralyze 0
  3068. resist_slow 100
  3069. resist_fear 100
  3070. resist_ghosthit 100
  3071. resist_turn_undead 75
  3072. resist_holyword 75
  3073. resist_death 100
  3074.  
  3075. can_cast_spell 1
  3076. can_apply 25
  3077. pick_up 24
  3078.  
  3079. no_pick 1
  3080. no_steal 1
  3081.  
  3082. monster 1
  3083. editable 1
  3084. alive 1
  3085. attack_movement 3
  3086. graalnpctype 1
  3087. end
  3088.  
  3089. ***********************ENDGAME***********************
  3090.  
  3091. // CRYSTAL GOLEM //
  3092.  
  3093. Object crystalgolem
  3094. name Crystal Golem
  3095. face bomy
  3096. race giant
  3097. exp 700000
  3098. level 110
  3099. ac -110
  3100. wc -110
  3101. dam 110
  3102. hp 32000
  3103. maxhp 32000
  3104. speed 1
  3105. weight 2000000
  3106. run_away 4800
  3107.  
  3108. con 960
  3109. int 0
  3110. wis 40
  3111. pow 0
  3112.  
  3113. attacktype 1048593
  3114. resist_physical 0
  3115. resist_magic 100
  3116. resist_weaponmagic 100
  3117. resist_fire -50
  3118. resist_cold 100
  3119. resist_electricity 100
  3120. resist_poison 100
  3121. resist_confusion 100
  3122. resist_blind 100
  3123. resist_acid 100
  3124. resist_drain 100
  3125. resist_paralyze 100
  3126. resist_slow -50
  3127. resist_fear 100
  3128. resist_ghosthit 100
  3129. resist_turn_undead 100
  3130. resist_holyword 100
  3131. resist_death 100
  3132.  
  3133. can_apply 25
  3134. pick_up 24
  3135.  
  3136. no_pick 1
  3137. no_steal 1
  3138.  
  3139. monster 1
  3140. editable 1
  3141. alive 1
  3142. attack_movement 3
  3143. graalnpctype 1
  3144. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement