Advertisement
ijontichy

doomspawners.txt

Jun 10th, 2012
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.76 KB | None | 0 0
  1. //=================================================================================================
  2. //
  3. // Weak monster spawner
  4. //
  5. //=================================================================================================
  6.  
  7. ACTOR WeakMonsterSpot : CustomMonsterInvasionSpot 5201
  8. {
  9. Game Doom
  10. DropItem "ZombieMan"
  11. DropItem "ShotgunGuy"
  12. DropItem "DoomImp"
  13. DropItem "DarkImp"
  14. DropItem "Demon"
  15. DropItem "BloodDemon"
  16. DropItem "LostSoul"
  17. }
  18.  
  19. //=================================================================================================
  20. //
  21. // Powerful monster spawner
  22. //
  23. //=================================================================================================
  24.  
  25. ACTOR PowerfulMonsterSpot : CustomMonsterInvasionSpot 5202
  26. {
  27. Game Doom
  28. DropItem "ChaingunGuy"
  29. DropItem "SuperShotgunGuy"
  30. DropItem "Cacodemon"
  31. DropItem "Cacolantern"
  32. DropItem "Revenant"
  33. DropItem "HellKnight"
  34. DropItem "BaronOfHell"
  35. DropItem "Arachnotron"
  36. DropItem "Fatso"
  37. DropItem "PainElemental"
  38. }
  39.  
  40. //=================================================================================================
  41. //
  42. // Very powerful monster spawner
  43. //
  44. //=================================================================================================
  45.  
  46. ACTOR VeryPowerfulMonsterSpot : CustomMonsterInvasionSpot 5203
  47. {
  48. Game Doom
  49. DropItem "Abaddon"
  50. DropItem "Hectebus"
  51. DropItem "Belphegor"
  52. DropItem "Archvile"
  53. }
  54.  
  55. //=================================================================================================
  56. //
  57. // Any monster spawner
  58. //
  59. //=================================================================================================
  60.  
  61. ACTOR AnyMonsterSpot : CustomMonsterInvasionSpot 5204
  62. {
  63. Game Doom
  64. DropItem "DoomImp"
  65. DropItem "DarkImp"
  66. DropItem "Demon"
  67. DropItem "Spectre"
  68. DropItem "BloodDemon"
  69. DropItem "ZombieMan"
  70. DropItem "ShotgunGuy"
  71. DropItem "ChaingunGuy"
  72. DropItem "SuperShotgunGuy"
  73. DropItem "Cacodemon"
  74. DropItem "Cacolantern"
  75. DropItem "Abaddon"
  76. DropItem "Revenant"
  77. DropItem "Fatso"
  78. DropItem "Hectebus"
  79. DropItem "Arachnotron"
  80. DropItem "HellKnight"
  81. DropItem "BaronOfHell"
  82. DropItem "Belphegor"
  83. DropItem "LostSoul"
  84. DropItem "PainElemental"
  85. DropItem "Cyberdemon"
  86. DropItem "SpiderMastermind"
  87. DropItem "Archvile"
  88. }
  89.  
  90. //=================================================================================================
  91. //
  92. // Imp spawner
  93. //
  94. //=================================================================================================
  95.  
  96. ACTOR ImpSpot : CustomMonsterInvasionSpot 5205
  97. {
  98. Game Doom
  99. DropItem "DoomImp"
  100. }
  101.  
  102. //=================================================================================================
  103. //
  104. // Dark imp spawner
  105. //
  106. //=================================================================================================
  107.  
  108. ACTOR DarkImpSpot : CustomMonsterInvasionSpot 5206
  109. {
  110. Game Doom
  111. DropItem "DarkImp"
  112. }
  113.  
  114. //=================================================================================================
  115. //
  116. // Demon spawner
  117. //
  118. //=================================================================================================
  119.  
  120. ACTOR DemonSpot : CustomMonsterInvasionSpot 5207
  121. {
  122. Game Doom
  123. DropItem "Demon"
  124. }
  125.  
  126. //=================================================================================================
  127. //
  128. // Spectre spawner
  129. //
  130. //=================================================================================================
  131.  
  132. ACTOR SpectreSpot : CustomMonsterInvasionSpot 5208
  133. {
  134. Game Doom
  135. DropItem "Spectre"
  136. }
  137.  
  138. //=================================================================================================
  139. //
  140. // Blood demon spawner
  141. //
  142. //=================================================================================================
  143.  
  144. ACTOR BloodDemonSpot : CustomMonsterInvasionSpot 5209
  145. {
  146. Game Doom
  147. DropItem "BloodDemon"
  148. }
  149.  
  150. //=================================================================================================
  151. //
  152. // Zombieman spawner
  153. //
  154. //=================================================================================================
  155.  
  156. ACTOR ZombieManSpot : CustomMonsterInvasionSpot 5210
  157. {
  158. Game Doom
  159. DropItem "ZombieMan"
  160. }
  161.  
  162. //=================================================================================================
  163. //
  164. // Shotgun guy spawner
  165. //
  166. //=================================================================================================
  167.  
  168. ACTOR ShotgunGuySpot : CustomMonsterInvasionSpot 5211
  169. {
  170. Game Doom
  171. DropItem "ShotgunGuy"
  172. }
  173.  
  174. //=================================================================================================
  175. //
  176. // Chaingun guy spawner
  177. //
  178. //=================================================================================================
  179.  
  180. ACTOR ChaingunGuySpot : CustomMonsterInvasionSpot 5212
  181. {
  182. Game Doom
  183. DropItem "ChaingunGuy"
  184. }
  185.  
  186. //=================================================================================================
  187. //
  188. // Super shotgun guy spawner
  189. //
  190. //=================================================================================================
  191.  
  192. ACTOR SuperShotgunGuySpot : CustomMonsterInvasionSpot 5213
  193. {
  194. Game Doom
  195. DropItem "SuperShotgunGuy"
  196. }
  197.  
  198. //=================================================================================================
  199. //
  200. // Cacodemon spawner
  201. //
  202. //=================================================================================================
  203.  
  204. ACTOR CacodemonSpot : CustomMonsterInvasionSpot 5214
  205. {
  206. Game Doom
  207. DropItem "Cacodemon"
  208. }
  209.  
  210. //=================================================================================================
  211. //
  212. // Cacolantern spawner
  213. //
  214. //=================================================================================================
  215.  
  216. ACTOR CacolanternSpot : CustomMonsterInvasionSpot 5215
  217. {
  218. Game Doom
  219. DropItem "Cacolantern"
  220. }
  221.  
  222. //=================================================================================================
  223. //
  224. // Abaddon spawner
  225. //
  226. //=================================================================================================
  227.  
  228. ACTOR AbaddonSpot : CustomMonsterInvasionSpot 5216
  229. {
  230. Game Doom
  231. DropItem "Abaddon"
  232. }
  233.  
  234. //=================================================================================================
  235. //
  236. // Revenant spawner
  237. //
  238. //=================================================================================================
  239.  
  240. ACTOR RevenantSpot : CustomMonsterInvasionSpot 5217
  241. {
  242. Game Doom
  243. DropItem "Revenant"
  244. }
  245.  
  246. //=================================================================================================
  247. //
  248. // Fatso spawner
  249. //
  250. //=================================================================================================
  251.  
  252. ACTOR FatsoSpot : CustomMonsterInvasionSpot 5218
  253. {
  254. Game Doom
  255. DropItem "Fatso"
  256. }
  257.  
  258. //=================================================================================================
  259. //
  260. // Hectebus spawner
  261. //
  262. //=================================================================================================
  263.  
  264. ACTOR HectebusSpot : CustomMonsterInvasionSpot 5219
  265. {
  266. Game Doom
  267. DropItem "Hectebus"
  268. }
  269.  
  270. //=================================================================================================
  271. //
  272. // Arachnotron spawner
  273. //
  274. //=================================================================================================
  275.  
  276. ACTOR ArachnotronSpot : CustomMonsterInvasionSpot 5220
  277. {
  278. Game Doom
  279. DropItem "Arachnotron"
  280. }
  281.  
  282. //=================================================================================================
  283. //
  284. // Hell knight spawner
  285. //
  286. //=================================================================================================
  287.  
  288. ACTOR HellKnightSpot : CustomMonsterInvasionSpot 5221
  289. {
  290. Game Doom
  291. DropItem "HellKnight"
  292. }
  293.  
  294. //=================================================================================================
  295. //
  296. // Baron of Hell spawner
  297. //
  298. //=================================================================================================
  299.  
  300. ACTOR BaronOfHellSpot : CustomMonsterInvasionSpot 5222
  301. {
  302. Game Doom
  303. DropItem "BaronOfHell"
  304. }
  305.  
  306. //=================================================================================================
  307. //
  308. // Belphegor spawner
  309. //
  310. //=================================================================================================
  311.  
  312. ACTOR BelphegorSpot : CustomMonsterInvasionSpot 5223
  313. {
  314. Game Doom
  315. DropItem "Belphegor"
  316. }
  317.  
  318. //=================================================================================================
  319. //
  320. // Lost soul spawner
  321. //
  322. //=================================================================================================
  323.  
  324. ACTOR LostSoulSpot : CustomMonsterInvasionSpot 5224
  325. {
  326. Game Doom
  327. DropItem "LostSoul"
  328. }
  329.  
  330. //=================================================================================================
  331. //
  332. // Pain elemental spawner
  333. //
  334. //=================================================================================================
  335.  
  336. ACTOR PainElementalSpot : CustomMonsterInvasionSpot 5225
  337. {
  338. Game Doom
  339. DropItem "PainElemental"
  340. }
  341.  
  342. //=================================================================================================
  343. //
  344. // Cyberdemon spawner
  345. //
  346. //=================================================================================================
  347.  
  348. ACTOR CyberdemonSpot : CustomMonsterInvasionSpot 5226
  349. {
  350. Game Doom
  351. DropItem "Cyberdemon"
  352. }
  353.  
  354. //=================================================================================================
  355. //
  356. // Spider mastermind spawner
  357. //
  358. //=================================================================================================
  359.  
  360. ACTOR SpiderMastermindSpot : CustomMonsterInvasionSpot 5227
  361. {
  362. Game Doom
  363. DropItem "SpiderMastermind"
  364. }
  365.  
  366. //=================================================================================================
  367. //
  368. // Arch-vile spawner
  369. //
  370. //=================================================================================================
  371.  
  372. ACTOR ArchvileSpot : CustomMonsterInvasionSpot 5228
  373. {
  374. Game Doom
  375. DropItem "Archvile"
  376. }
  377.  
  378. //=================================================================================================
  379. //
  380. // Stimpack spawner
  381. //
  382. //=================================================================================================
  383.  
  384. ACTOR StimpackSpot : CustomPickupInvasionSpot 5229
  385. {
  386. Game Doom
  387. DropItem "Stimpack"
  388. }
  389.  
  390. //=================================================================================================
  391. //
  392. // Medikit spawner
  393. //
  394. //=================================================================================================
  395.  
  396. ACTOR MedikitSpot : CustomPickupInvasionSpot 5230
  397. {
  398. Game Doom
  399. DropItem "Medikit"
  400. }
  401.  
  402. //=================================================================================================
  403. //
  404. // Health bonus spawner
  405. //
  406. //=================================================================================================
  407.  
  408. ACTOR HealthBonusSpot : CustomPickupInvasionSpot 5231
  409. {
  410. Game Doom
  411. DropItem "HealthBonus"
  412. }
  413.  
  414. //=================================================================================================
  415. //
  416. // Armor bonus spawner
  417. //
  418. //=================================================================================================
  419.  
  420. ACTOR ArmorBonusSpot : CustomPickupInvasionSpot 5232
  421. {
  422. Game Doom
  423. DropItem "ArmorBonus"
  424. }
  425.  
  426. //=================================================================================================
  427. //
  428. // Max. health bonus spawner
  429. //
  430. //=================================================================================================
  431.  
  432. ACTOR MaxHealthBonusSpot : CustomPickupInvasionSpot 5233
  433. {
  434. Game Doom
  435. DropItem "MaxHealthBonus"
  436. }
  437.  
  438. //=================================================================================================
  439. //
  440. // Max. armor bonus spawner
  441. //
  442. //=================================================================================================
  443.  
  444. ACTOR MaxArmorBonusSpot : CustomPickupInvasionSpot 5234
  445. {
  446. Game Doom
  447. DropItem "MaxArmorBonus"
  448. }
  449.  
  450. //=================================================================================================
  451. //
  452. // Green armor spawner
  453. //
  454. //=================================================================================================
  455.  
  456. ACTOR GreenArmorSpot : CustomPickupInvasionSpot 5235
  457. {
  458. Game Doom
  459. DropItem "GreenArmor"
  460. }
  461.  
  462. //=================================================================================================
  463. //
  464. // Blue armor spawner
  465. //
  466. //=================================================================================================
  467.  
  468. ACTOR BlueArmorSpot : CustomPickupInvasionSpot 5236
  469. {
  470. Game Doom
  471. DropItem "BlueArmor"
  472. }
  473.  
  474. //=================================================================================================
  475. //
  476. // Red armor spawner
  477. //
  478. //=================================================================================================
  479.  
  480. ACTOR RedArmorSpot : CustomPickupInvasionSpot 5237
  481. {
  482. Game Doom
  483. DropItem "RedArmor"
  484. }
  485.  
  486. //=================================================================================================
  487. //
  488. // Doomsphere spawner
  489. //
  490. //=================================================================================================
  491.  
  492. ACTOR DoomsphereSpot : CustomPickupInvasionSpot 5238
  493. {
  494. Game Doom
  495. DropItem "Doomsphere"
  496. }
  497.  
  498. //=================================================================================================
  499. //
  500. // Guardsphere spawner
  501. //
  502. //=================================================================================================
  503.  
  504. ACTOR GuardsphereSpot : CustomPickupInvasionSpot 5239
  505. {
  506. Game Doom
  507. DropItem "Guardsphere"
  508. }
  509.  
  510. //=================================================================================================
  511. //
  512. // Invisibility sphere spawner
  513. //
  514. //=================================================================================================
  515.  
  516. ACTOR InvisibilitySphereSpot : CustomPickupInvasionSpot 5240
  517. {
  518. Game Doom
  519. DropItem "InvisibilitySphere"
  520. }
  521.  
  522. //=================================================================================================
  523. //
  524. // Blur sphere spawner
  525. //
  526. //=================================================================================================
  527.  
  528. ACTOR BlurSphereSpot : CustomPickupInvasionSpot 5241
  529. {
  530. Game Doom
  531. DropItem "BlurSphere"
  532. }
  533.  
  534. //=================================================================================================
  535. //
  536. // Invulnerability sphere spawner
  537. //
  538. //=================================================================================================
  539.  
  540. ACTOR InvulnerabilitySphereSpot : CustomPickupInvasionSpot 5242
  541. {
  542. Game Doom
  543. DropItem "InvulnerabilitySphere"
  544. }
  545.  
  546. //=================================================================================================
  547. //
  548. // Megasphere spawner
  549. //
  550. //=================================================================================================
  551.  
  552. ACTOR MegasphereSpot : CustomPickupInvasionSpot 5243
  553. {
  554. Game Doom
  555. DropItem "Megasphere"
  556. }
  557.  
  558. //=================================================================================================
  559. //
  560. // Random powerup spawner
  561. //
  562. //=================================================================================================
  563.  
  564. ACTOR RandomPowerupSpot : CustomPickupInvasionSpot 5244
  565. {
  566. Game Doom
  567. DropItem "RandomPowerup"
  568. }
  569.  
  570. //=================================================================================================
  571. //
  572. // Soulsphere spawner
  573. //
  574. //=================================================================================================
  575.  
  576. ACTOR SoulsphereSpot : CustomPickupInvasionSpot 5245
  577. {
  578. Game Doom
  579. DropItem "Soulsphere"
  580. }
  581.  
  582. //=================================================================================================
  583. //
  584. // Time freeze sphere spawner
  585. //
  586. //=================================================================================================
  587.  
  588. ACTOR TimeFreezeSphereSpot : CustomPickupInvasionSpot 5246
  589. {
  590. Game Doom
  591. DropItem "TimeFreezeSphere"
  592. }
  593.  
  594. //=================================================================================================
  595. //
  596. // Turbosphere spawner
  597. //
  598. //=================================================================================================
  599.  
  600. ACTOR TurbosphereSpot : CustomPickupInvasionSpot 5247
  601. {
  602. Game Doom
  603. DropItem "Turbosphere"
  604. }
  605.  
  606. //=================================================================================================
  607. //
  608. // Strength rune spawner
  609. //
  610. //=================================================================================================
  611.  
  612. ACTOR StrengthRuneSpot : CustomPickupInvasionSpot 5248
  613. {
  614. Game Doom
  615. Game Heretic
  616. Game Hexen
  617. DropItem "StrengthRune"
  618. }
  619.  
  620. //=================================================================================================
  621. //
  622. // Rage rune spawner
  623. //
  624. //=================================================================================================
  625.  
  626. ACTOR RageRuneSpot : CustomPickupInvasionSpot 5249
  627. {
  628. Game Doom
  629. Game Heretic
  630. Game Hexen
  631. DropItem "RageRune"
  632. }
  633.  
  634. //=================================================================================================
  635. //
  636. // Drain rune spawner
  637. //
  638. //=================================================================================================
  639.  
  640. ACTOR DrainRuneSpot : CustomPickupInvasionSpot 5250
  641. {
  642. Game Doom
  643. Game Heretic
  644. Game Hexen
  645. DropItem "DrainRune"
  646. }
  647.  
  648. //=================================================================================================
  649. //
  650. // Spread rune spawner
  651. //
  652. //=================================================================================================
  653.  
  654. ACTOR SpreadRuneSpot : CustomPickupInvasionSpot 5251
  655. {
  656. Game Doom
  657. Game Heretic
  658. Game Hexen
  659. DropItem "SpreadRune"
  660. }
  661.  
  662. //=================================================================================================
  663. //
  664. // Resistance rune spawner
  665. //
  666. //=================================================================================================
  667.  
  668. ACTOR ResistanceRuneSpot : CustomPickupInvasionSpot 5252
  669. {
  670. Game Doom
  671. Game Heretic
  672. Game Hexen
  673. DropItem "ResistanceRune"
  674. }
  675.  
  676. //=================================================================================================
  677. //
  678. // Regeneration rune spawner
  679. //
  680. //=================================================================================================
  681.  
  682. ACTOR RegenerationRuneSpot : CustomPickupInvasionSpot 5253
  683. {
  684. Game Doom
  685. Game Heretic
  686. Game Hexen
  687. DropItem "RegenerationRune"
  688. }
  689.  
  690. //=================================================================================================
  691. //
  692. // Prosperity rune spawner
  693. //
  694. //=================================================================================================
  695.  
  696. ACTOR ProsperityRuneSpot : CustomPickupInvasionSpot 5254
  697. {
  698. Game Doom
  699. Game Heretic
  700. Game Hexen
  701. DropItem "ProsperityRune"
  702. }
  703.  
  704. //=================================================================================================
  705. //
  706. // Reflection rune spawner
  707. //
  708. //=================================================================================================
  709.  
  710. ACTOR ReflectionRuneSpot : CustomPickupInvasionSpot 5255
  711. {
  712. Game Doom
  713. Game Heretic
  714. Game Hexen
  715. DropItem "ReflectionRune"
  716. }
  717.  
  718. //=================================================================================================
  719. //
  720. // Haste rune spawner
  721. //
  722. //=================================================================================================
  723.  
  724. ACTOR HasteRuneSpot : CustomPickupInvasionSpot 5256
  725. {
  726. Game Doom
  727. Game Heretic
  728. Game Hexen
  729. DropItem "HasteRune"
  730. }
  731.  
  732. //=================================================================================================
  733. //
  734. // High jump rune spawner
  735. //
  736. //=================================================================================================
  737.  
  738. ACTOR HighJumpRuneSpot : CustomPickupInvasionSpot 5257
  739. {
  740. Game Doom
  741. Game Heretic
  742. Game Hexen
  743. DropItem "HighJumpRune"
  744. }
  745.  
  746. //=================================================================================================
  747. //
  748. // Clip spawner
  749. //
  750. //=================================================================================================
  751.  
  752. ACTOR ClipSpot : CustomPickupInvasionSpot 5258
  753. {
  754. Game Doom
  755. DropItem "Clip"
  756. }
  757.  
  758. //=================================================================================================
  759. //
  760. // Shell spawner
  761. //
  762. //=================================================================================================
  763.  
  764. ACTOR ShellSpot : CustomPickupInvasionSpot 5259
  765. {
  766. Game Doom
  767. DropItem "Shell"
  768. }
  769.  
  770. //=================================================================================================
  771. //
  772. // Rocket ammo spawner
  773. //
  774. //=================================================================================================
  775.  
  776. ACTOR RocketAmmoSpot : CustomPickupInvasionSpot 5260
  777. {
  778. Game Doom
  779. DropItem "RocketAmmo"
  780. }
  781.  
  782. //=================================================================================================
  783. //
  784. // Cell spawner
  785. //
  786. //=================================================================================================
  787.  
  788. ACTOR CellSpot : CustomPickupInvasionSpot 5261
  789. {
  790. Game Doom
  791. DropItem "Cell"
  792. }
  793.  
  794. //=================================================================================================
  795. //
  796. // Clip box spawner
  797. //
  798. //=================================================================================================
  799.  
  800. ACTOR ClipBoxSpot : CustomPickupInvasionSpot 5262
  801. {
  802. Game Doom
  803. DropItem "ClipBox"
  804. }
  805.  
  806. //=================================================================================================
  807. //
  808. // Shell box spawner
  809. //
  810. //=================================================================================================
  811.  
  812. ACTOR ShellBoxSpot : CustomPickupInvasionSpot 5263
  813. {
  814. Game Doom
  815. DropItem "ShellBox"
  816. }
  817.  
  818. //=================================================================================================
  819. //
  820. // Rocket box spawner
  821. //
  822. //=================================================================================================
  823.  
  824. ACTOR RocketBoxSpot : CustomPickupInvasionSpot 5264
  825. {
  826. Game Doom
  827. DropItem "RocketBox"
  828. }
  829.  
  830. //=================================================================================================
  831. //
  832. // Cell pack spawner
  833. //
  834. //=================================================================================================
  835.  
  836. ACTOR CellPackSpot : CustomPickupInvasionSpot 5265
  837. {
  838. Game Doom
  839. DropItem "CellPack"
  840. }
  841.  
  842. //=================================================================================================
  843. //
  844. // Berserk spawner
  845. //
  846. //=================================================================================================
  847.  
  848. ACTOR BerserkSpot : CustomPickupInvasionSpot 5266
  849. {
  850. Game Doom
  851. DropItem "Berserk"
  852. }
  853.  
  854. //=================================================================================================
  855. //
  856. // Chainsaw spawner
  857. //
  858. //=================================================================================================
  859.  
  860. ACTOR ChainsawSpot : CustomWeaponInvasionSpot 5267
  861. {
  862. Game Doom
  863. DropItem "Chainsaw"
  864. }
  865.  
  866. //=================================================================================================
  867. //
  868. // Shotgun spawner
  869. //
  870. //=================================================================================================
  871.  
  872. ACTOR ShotgunSpot : CustomWeaponInvasionSpot 5268
  873. {
  874. Game Doom
  875. DropItem "Shotgun"
  876. }
  877.  
  878. //=================================================================================================
  879. //
  880. // Super shotgun spawner
  881. //
  882. //=================================================================================================
  883.  
  884. ACTOR SuperShotgunSpot : CustomWeaponInvasionSpot 5269
  885. {
  886. Game Doom
  887. DropItem "SuperShotgun"
  888. }
  889.  
  890. //=================================================================================================
  891. //
  892. // Chaingun spawner
  893. //
  894. //=================================================================================================
  895.  
  896. ACTOR ChaingunSpot : CustomWeaponInvasionSpot 5270
  897. {
  898. Game Doom
  899. DropItem "Chaingun"
  900. }
  901.  
  902. //=================================================================================================
  903. //
  904. // Minigun spawner
  905. //
  906. //=================================================================================================
  907.  
  908. ACTOR MinigunSpot : CustomWeaponInvasionSpot 5271
  909. {
  910. Game Doom
  911. DropItem "Minigun"
  912. }
  913.  
  914. //=================================================================================================
  915. //
  916. // Rocket launcher spawner
  917. //
  918. //=================================================================================================
  919.  
  920. ACTOR RocketLauncherSpot : CustomWeaponInvasionSpot 5272
  921. {
  922. Game Doom
  923. DropItem "RocketLauncher"
  924. }
  925.  
  926. //=================================================================================================
  927. //
  928. // Grenade launcher spawner
  929. //
  930. //=================================================================================================
  931.  
  932. ACTOR GrenadeLauncherSpot : CustomWeaponInvasionSpot 5273
  933. {
  934. Game Doom
  935. DropItem "GrenadeLauncher"
  936. }
  937.  
  938. //=================================================================================================
  939. //
  940. // Plasma rifle spawner
  941. //
  942. //=================================================================================================
  943.  
  944. ACTOR PlasmaRifleSpot : CustomWeaponInvasionSpot 5274
  945. {
  946. Game Doom
  947. DropItem "PlasmaRifle"
  948. }
  949.  
  950. //=================================================================================================
  951. //
  952. // Railgun spawner
  953. //
  954. //=================================================================================================
  955.  
  956. ACTOR RailgunSpot : CustomWeaponInvasionSpot 5275
  957. {
  958. Game Doom
  959. DropItem "Railgun"
  960. }
  961.  
  962. //=================================================================================================
  963. //
  964. // BFG9000 spawner
  965. //
  966. //=================================================================================================
  967.  
  968. ACTOR BFG9000Spot : CustomWeaponInvasionSpot 5276
  969. {
  970. Game Doom
  971. DropItem "BFG9000"
  972. }
  973.  
  974. //=================================================================================================
  975. //
  976. // BFG10K spawner
  977. //
  978. //=================================================================================================
  979.  
  980. ACTOR BFG10KSpot : CustomWeaponInvasionSpot 5277
  981. {
  982. Game Doom
  983. DropItem "BFG10K"
  984. }
  985.  
  986. //=================================================================================================
  987. //
  988. // Random clip ammo spawner
  989. //
  990. //=================================================================================================
  991.  
  992. ACTOR RandomClipAmmoSpot : CustomPickupInvasionSpot 5278
  993. {
  994. Game Doom
  995. DropItem "Clip"
  996. DropItem "Shell"
  997. DropItem "RocketAmmo"
  998. DropItem "Cell"
  999. }
  1000.  
  1001. //=================================================================================================
  1002. //
  1003. // Random box ammo spawner
  1004. //
  1005. //=================================================================================================
  1006.  
  1007. ACTOR RandomBoxAmmoSpot : CustomPickupInvasionSpot 5279
  1008. {
  1009. Game Doom
  1010. DropItem "ClipBox"
  1011. DropItem "ShellBox"
  1012. DropItem "RocketBox"
  1013. DropItem "CellPack"
  1014. }
  1015.  
  1016. //=================================================================================================
  1017. //
  1018. // Wolfenstein SS spawner
  1019. //
  1020. //=================================================================================================
  1021.  
  1022. ACTOR WolfensteinSSSpot : CustomMonsterInvasionSpot 5280
  1023. {
  1024. Game Doom
  1025. DropItem "WolfensteinSS"
  1026. }
  1027.  
  1028. //=================================================================================================
  1029. //
  1030. // Backpack spawner
  1031. //
  1032. //=================================================================================================
  1033.  
  1034. ACTOR BackpackSpot : CustomPickupInvasionSpot 5281
  1035. {
  1036. Game Doom
  1037. DropItem "Backpack"
  1038. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement