Guest User

Spawners for complex doom v26a2 w/ v27 monster doomed nums.

a guest
Jan 29th, 2018
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 5.05 KB | None | 0 0
  1. //========================
  2. // Mixed Monster Spawners
  3. //========================
  4. /*
  5. ACTOR ZombiemanSpawner : RandomSpawner Replaces Zombieman
  6. {
  7. DropItem "PlasmaGunner", 256, 61
  8. DropItem "RailGunner", 256, 28
  9. DropItem "DemonTechZombie", 256, 8
  10. DropItem "RocketZombie", 256, 3
  11. }
  12. */
  13.  
  14. ACTOR ShotgunZombieSpawner : RandomSpawner Replaces ShotgunGuy
  15. {
  16. DropItem "ShotgunZombie", 256, 100
  17. //DropItem "AssaultShotgunZombie", 256, 28
  18. //DropItem "SuperShotgunZombie", 256, 16
  19. //DropItem "QuadShotgunZombie", 256, 5
  20. }
  21.  
  22. ACTOR ChainZombieSpawner : RandomSpawner Replaces ChaingunGuy
  23. {
  24. //DropItem "AssaultRifleZombie", 256, 56
  25. DropItem "Chaingunner", 256, 100
  26. //DropItem "Minigunner", 256, 14
  27. //DropItem "BFGZombieman", 256, 2
  28. }
  29.  
  30. ACTOR ImpSpawner : RandomSpawner Replaces DoomImp
  31. {
  32. DropItem "Imp", 256, 100
  33. //DropItem "VoidImp", 256, 26
  34. //DropItem "Devil", 256, 10
  35. //DropItem "PhaseImp", 256, 3
  36. }
  37.  
  38. ACTOR DemonSpawner : RandomSpawner Replaces Demon
  39. {
  40. DropItem "BullFiend", 256, 100
  41. //DropItem "CyberFiend", 256, 24
  42. //DropItem "MagmaFiend", 256, 8
  43. //DropItem "DTechFiend", 256, 3
  44. }
  45.  
  46. ACTOR SpectreSpawner : RandomSpawner Replaces Spectre
  47. {
  48. DropItem "Spectre~", 256, 100
  49. //DropItem "Lurker", 256, 24
  50. //DropItem "Spook", 256, 8
  51. }
  52.  
  53. ACTOR SoulSpawner : RandomSpawner Replaces LostSoul
  54. {
  55. DropItem "TerrorSoul", 256, 100
  56. //DropItem "ForgottenOne", 256, 24
  57. //DropItem "PoisonSoul", 256, 10
  58. //DropItem "Rictus", 256, 6
  59. }
  60.  
  61. ACTOR CacodemonSpawner : RandomSpawner Replaces Cacodemon
  62. {
  63. DropItem "Cacodemon~", 256, 100
  64. //DropItem "Watcher", 256, 10
  65. //DropItem "Cacomental", 256, 6
  66. }
  67.  
  68. ACTOR PainSpawner : RandomSpawner Replaces PainElemental
  69. {
  70. DropItem "SoulKeeper", 256, 100
  71. //DropItem "Defiler", 256, 10
  72. //DropItem "PoisonElemental", 256, 6
  73. //DropItem "BombElemental", 256, 3
  74. }
  75.  
  76. ACTOR ArachSpawner : RandomSpawner Replaces Arachnotron
  77. {
  78. DropItem "Dualachnotron", 256, 100
  79. //DropItem "Fusionite", 256, 33
  80. //DropItem "BabyDemolisher", 256, 33
  81. //DropItem "BabySentient", 256, 33
  82. }
  83. ACTOR ArachReplacer
  84. {
  85. +NOSECTOR
  86. +NOGRAVITY
  87. +BOSSDEATH
  88. +SHOOTABLE
  89. +ISMONSTER
  90. +NORADIUSDMG
  91. +NOINTERACTION
  92. +NOBLOCKMAP
  93. HEALTH 0x7FFFFFFF
  94. Radius 0
  95. Height 0
  96. Mass 0x7FFFFFFF
  97. }
  98.  
  99. ACTOR FattySpawner : RandomSpawner Replaces Fatso
  100. {
  101. DropItem "Hectebus", 256, 100
  102. //DropItem "Daedabus", 256, 33
  103. //DropItem "Behemoth", 256, 33
  104. //DropItem "Barbatos", 256, 33
  105. }
  106.  
  107. ACTOR SkeletonSpawner : RandomSpawner Replaces Revenant
  108. {
  109. DropItem "Guardian", 256, 100
  110. //DropItem "Cadaver", 256, 9
  111. //DropItem "HellfireRevenant", 256, 5
  112. //DropItem "Famine" 256, 3
  113. }
  114.  
  115. ACTOR MinorSpawner : RandomSpawner Replaces HellKnight
  116. {
  117. DropItem "HellKnight~", 256, 100
  118. //DropItem "PyroDemon", 256, 9
  119. //DropItem "CyberNoble", 256, 5
  120. //DropItem "HellDuke" 256, 3
  121. }
  122.  
  123. ACTOR NobleSpawner Replaces BaronOfHell
  124. {
  125. DropItem "BaronOfHell~", 256, 100
  126. //DropItem "BruiserDemon", 256, 33
  127. //DropItem "Cybruiser", 256, 33
  128. }
  129.  
  130. ACTOR VileSpawner: RandomSpawner Replaces ArchVile
  131. {
  132. DropItem "Exile", 256, 100
  133. //DropItem "Diabolist", 256, 6
  134. //DropItem "DarkHellion", 256, 3
  135. }
  136.  
  137. ACTOR MastermindSpawner Replaces SpiderMastermind
  138. {
  139. DropItem "Demolisher", 256, 100
  140. //DropItem "DarkDemolisher", 256, 33
  141. //DropItem "CerebralSentient", 256, 33
  142. }
  143.  
  144. ACTOR CyberSpawner Replaces Cyberdemon
  145. {
  146. DropItem "CyberLord", 256, 100
  147. //DropItem "DarkCyberdemon", 256, 33
  148. //DropItem "Cardinal", 256, 33
  149. }
  150.  
  151. ACTOR WolfSSSpawner : RandomSpawner Replaces WolfensteinSS
  152. {
  153. DropItem "Guard", 256, 100
  154. //DropItem "SSNazi", 256, 24
  155. //DropItem "Mutant", 256, 18
  156. //DropItem "Officer", 256, 16
  157. //DropItem "NaziDog" 256, 8
  158. //DropItem "Hitler", 256, 2
  159. }
  160.  
  161.  
  162.  
  163. //======================================================================
  164. // Health & Armor Bonus / Red Armor / Pure Rage / Mixed Sphere Spawners
  165. //======================================================================
  166.  
  167. ACTOR HealthBonusSpawner : RandomSpawner Replaces HealthBonus
  168. {
  169. DropItem "NewHealthBonus", 256, 75
  170. DropItem "NewMaxHealthBonus", 256, 25
  171. }
  172.  
  173. ACTOR ArmorBonusSpawner : RandomSpawner Replaces ArmorBonus
  174. {
  175. DropItem "NewArmorBonus", 256, 75
  176. DropItem "NewMaxArmorBonus", 256, 25
  177. }
  178.  
  179. ACTOR GreenArmorSpawner : RandomSpawner Replaces GreenArmor
  180. {
  181. DropItem "ModdedGreenArmor", 256, 95
  182. DropItem "RedArmor", 256, 5
  183. }
  184.  
  185. ACTOR BlueArmorSpawner : RandomSpawner Replaces BlueArmor
  186. {
  187. DropItem "ModdedBlueArmor", 256, 90
  188. DropItem "RedArmor", 256, 10
  189. }
  190.  
  191. ACTOR BerserkSpawner : RandomSpawner Replaces Berserk
  192. {
  193. DropItem "BerserkPack", 256, 90
  194. DropItem "PureRage", 256, 10
  195. }
  196.  
  197. ACTOR BlurSphereSpawner : RandomSpawner Replaces BlurSphere
  198. {
  199. DropItem "ModdedBlurSphere", 256, 90
  200. DropItem "HasteSphere", 256, 10
  201. }
  202.  
  203. ACTOR SoulSphereSpawner : RandomSpawner Replaces SoulSphere
  204. {
  205. DropItem "ModdedSoulSphere", 256, 90
  206. DropItem "LifeSphere", 256, 10
  207. }
  208.  
  209. ACTOR MegaSphereSpawner : RandomSpawner Replaces MegaSphere
  210. {
  211. DropItem "ModdedMegaSphere", 256, 90
  212. DropItem "UltraSphere", 256, 10
  213. }
  214.  
  215. ACTOR InvulnerabilitySphereSpawner : RandomSpawner Replaces InvulnerabilitySphere
  216. {
  217. DropItem "ModdedInvulnerabilitySphere", 256, 90
  218. DropItem "UnbelieveabilitySphere", 256, 10
  219. }
Advertisement
Add Comment
Please, Sign In to add comment