home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 26 / CDMM26.iso / data / dark / damage.txt < prev    next >
Encoding:
Text File  |  1996-11-28  |  961 b   |  51 lines

  1. ;
  2. ; Damage Table File
  3. ;
  4. ; Format:
  5. ;
  6. ; DeclareOffenses()
  7. ; {
  8. ;   _list_of_offense_categories_
  9. ; }
  10. ;
  11. ;
  12. ; DefineVulnerability( _DefenseClass_  _DefaultVulnerability%_  _DefaultVariation%_  _CriticalHit%_ )
  13. ; {
  14. ;    _Offense_  _Vulnerability%_  _Variation%_  _CriticalHit%_
  15. ;    ...
  16. ; }
  17. ;
  18. ; NOTE: If Offense has no category (ie. Z instead of Z1), the defense entries
  19. ;       apply to all categories of that offense
  20. ;
  21.  
  22. DeclareOffenses() 
  23. {
  24.   F1 G1 G2 M1 M2 Z0
  25. }
  26.  
  27. DefineVulnerability(HumanSkin 100 10 0)
  28. {
  29.   F   100  30   0  ; Offense   Vulnerability   Variation   CriticalHitPercentage
  30.   M1  30   5    5
  31. }
  32.  
  33. DefineVulnerability(ToughHuman 100 10 5)
  34. {
  35.   F   100  30   0
  36.   G1  60   10   3
  37.   G2  80   10   3
  38.   M1  25   5    5
  39.   M2  95   10   5
  40.   Z   80   0    0
  41. }
  42.  
  43. DefineVulnerability(TankPlating 100 10 0)
  44. {
  45.   F   20   10   0
  46.   G1  10   10   0
  47.   G2  10   10   0
  48.   M1 100   20   0
  49.   M2  60   10   0  
  50.   Z    0    0   0
  51. }