home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 2000 June / CD-Gamer_2000-06_10_cd.bin / Patches / Quake3A / q3pointrelease_116n.exe / Main / pak2.pk3 / botfiles / weapons.c < prev   
Encoding:
C/C++ Source or Header  |  1999-12-11  |  5.4 KB  |  219 lines

  1. //===========================================================================
  2. //
  3. // Name:            weapons.c
  4. // Function:        weapon configuration
  5. // Programmer:        Mr Elusive (MrElusive@idsoftware.com)
  6. // Last update:        1999-09-08
  7. // Tab Size:        4 (real tabs)
  8. //===========================================================================
  9.  
  10. #include "inv.h"
  11.  
  12. #define VEC_ORIGIN                        {0, 0, 0}
  13. //projectile flags
  14. #define PFL_WINDOWDAMAGE            1        //projectile damages through window
  15. #define PFL_RETURN                    2        //set when projectile returns to owner
  16. //weapon flags
  17. #define WFL_FIRERELEASED            1        //set when projectile is fired with key-up event
  18. //damage types
  19. #define DAMAGETYPE_IMPACT            1        //damage on impact
  20. #define DAMAGETYPE_RADIAL            2        //radial damage
  21. #define DAMAGETYPE_VISIBLE            4        //damage to all entities visible to the projectile
  22. #define DAMAGETYPE_IGNOREARMOR    8        //projectile goes right through armor
  23.  
  24. #define WEAPONINDEX_GAUNTLET            1
  25. #define WEAPONINDEX_MACHINEGUN            2
  26. #define WEAPONINDEX_SHOTGUN                3
  27. #define WEAPONINDEX_GRENADE_LAUNCHER    4
  28. #define WEAPONINDEX_ROCKET_LAUNCHER        5
  29. #define WEAPONINDEX_LIGHTNING            6
  30. #define WEAPONINDEX_RAILGUN                7
  31. #define WEAPONINDEX_PLASMAGUN            8
  32. #define WEAPONINDEX_BFG                    9
  33. #define WEAPONINDEX_GRAPPLING_HOOK        10
  34.  
  35. //===========================================================================
  36. // Gauntlet
  37. //===========================================================================
  38.  
  39. projectileinfo //for Gauntlet
  40. {
  41.     name                "gauntletdamage"
  42.     damage                50
  43.     damagetype            DAMAGETYPE_IMPACT
  44. }
  45.  
  46. weaponinfo //Gauntlet
  47. {
  48.     name                "Gauntlet"
  49.     number                WEAPONINDEX_GAUNTLET
  50.     projectile            "gauntletdamage"
  51.     numprojectiles        1
  52.     speed                0
  53. } //end weaponinfo
  54.  
  55. //===========================================================================
  56. // Machinegun
  57. //===========================================================================
  58.  
  59. projectileinfo //for Machinegun
  60. {
  61.     name                "machinegunbullet"
  62.     damage                8
  63.     damagetype            DAMAGETYPE_IMPACT
  64. }
  65.  
  66. weaponinfo //Machinegun
  67. {
  68.     name                "Machinegun"
  69.     number                WEAPONINDEX_MACHINEGUN
  70.     projectile            "machinegunbullet"
  71.     numprojectiles        1
  72.     speed                0
  73. } //end weaponinfo
  74.  
  75. //===========================================================================
  76. // Shotgun
  77. //===========================================================================
  78.  
  79. projectileinfo //for Shotgun
  80. {
  81.     name                "shotgunbullet"
  82.     damage                10
  83.     damagetype            DAMAGETYPE_IMPACT
  84. }
  85.  
  86. weaponinfo //Shotgun
  87. {
  88.     name                "Shotgun"
  89.     number                WEAPONINDEX_SHOTGUN
  90.     projectile            "shotgunbullet"
  91.     numprojectiles        11
  92.     speed                0
  93. } //end weaponinfo
  94.  
  95. //===========================================================================
  96. // Grenade Launcher
  97. //===========================================================================
  98.  
  99. projectileinfo //for Grenade Launcher
  100. {
  101.     name                "grenade"
  102.     damage                120
  103.     radius                160
  104.     damagetype            $evalint(DAMAGETYPE_IMPACT|DAMAGETYPE_RADIAL)
  105. }
  106.  
  107. weaponinfo //Grenade Launcher
  108. {
  109.     name                "Grenade Launcher"
  110.     number                WEAPONINDEX_GRENADE_LAUNCHER
  111.     projectile            "grenade"
  112.     numprojectiles        1
  113.     speed                700
  114. } //end weaponinfo
  115.  
  116. //===========================================================================
  117. // Rocket Launcher
  118. //===========================================================================
  119.  
  120. projectileinfo //for Rocket Launcher
  121. {
  122.     name                "rocket"
  123.     damage                100
  124.     radius                120
  125.     damagetype            $evalint(DAMAGETYPE_IMPACT|DAMAGETYPE_RADIAL)
  126. }
  127.  
  128. weaponinfo //Rocket Launcher
  129. {
  130.     name                "Rocket Launcher"
  131.     number                WEAPONINDEX_ROCKET_LAUNCHER
  132.     projectile            "rocket"
  133.     numprojectiles        1
  134.     speed                900
  135. } //end weaponinfo
  136.  
  137. //===========================================================================
  138. // Lightning
  139. //===========================================================================
  140.  
  141. projectileinfo //for Lightning
  142. {
  143.     name                "lightning"
  144.     damage                24
  145.     damagetype            DAMAGETYPE_IMPACT
  146. }
  147.  
  148. weaponinfo //Railgun
  149. {
  150.     name                "Lightning Gun"
  151.     number                WEAPONINDEX_LIGHTNING
  152.     projectile            "lightning"
  153.     numprojectiles        1
  154.     speed                0
  155. } //end weaponinfo
  156.  
  157. //===========================================================================
  158. // Railgun
  159. //===========================================================================
  160.  
  161. projectileinfo //for Railgun
  162. {
  163.     name                "rail"
  164.     damage                100
  165.     damagetype            DAMAGETYPE_IMPACT
  166. }
  167.  
  168. weaponinfo //Railgun
  169. {
  170.     name                "Railgun"
  171.     number                WEAPONINDEX_RAILGUN
  172.     projectile            "rail"
  173.     numprojectiles        1
  174.     speed                0
  175. } //end weaponinfo
  176.  
  177. //===========================================================================
  178. // Plasma Gun
  179. //===========================================================================
  180.  
  181. projectileinfo //for Plasma Gun
  182. {
  183.     name                "plasma"
  184.     damage                20
  185.     radius                20
  186.     damagetype            $evalint(DAMAGETYPE_IMPACT|DAMAGETYPE_RADIAL)
  187. }
  188.  
  189. weaponinfo //Plasma Gun
  190. {
  191.     name                "Plasma Gun"
  192.     number                WEAPONINDEX_PLASMAGUN
  193.     projectile            "plasma"
  194.     numprojectiles        1
  195.     speed                2000
  196. } //end weaponinfo
  197.  
  198. //===========================================================================
  199. // BFG10K
  200. //===========================================================================
  201.  
  202. projectileinfo //for BFG10K
  203. {
  204.     name                "bfgexploision"
  205.     damage                40
  206.     radius                100
  207.     damagetype            $evalint(DAMAGETYPE_IMPACT|DAMAGETYPE_RADIAL)
  208. }
  209.  
  210. weaponinfo //BFG10K
  211. {
  212.     name                "BFG10K"
  213.     number                WEAPONINDEX_BFG
  214.     projectile            "bfgexploision"
  215.     numprojectiles        1
  216.     speed                0
  217. } //end weaponinfo
  218.  
  219.