home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 1999 #14 / K_PELIT_14_99.ISO / ShadowMan / data1.cab / Program_Executable_Files / data / scripts / weapons / TrueformStomp.ws < prev    next >
Text File  |  1999-07-08  |  790b  |  26 lines

  1. $name "Trueform Stomp"
  2.  
  3. // This script is correct, honest! This is a blast area weapon, therefore
  4. // it has no movement and no collision flags, as this is all handled thru 
  5. // the blast wrapper.
  6.  
  7. // This is a special case weapon, these actually mean the following :
  8.  
  9. // collision_radius ---> maximum collision radius of the generated blast
  10. // damage           ---> total damage the weapon can do over it's life span
  11. // weapon_range     ---> lifespan of blast
  12.  
  13. $properties            // These are the default properties
  14. {
  15.     $collision_radius    =    300
  16.     $collision_flags    =     0
  17.     $blast_radius        =    0
  18.     $damage                =    25
  19.     $min_velocity        =    0
  20.     $max_velocity        =    0
  21.     $physics_flags        =    PHYS_NONE
  22.     $velocity_flags        =    USE_DEFAULT_VELOCITY
  23.     $weapon_class        =    _WP_CLASS_UNKNWN
  24.     $weapon_range        =    15
  25. }
  26.