Advertisement
CaptainManiac999

Decorate defs for Damagetypes

Apr 5th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.77 KB | None | 0 0
  1. DamageType Radiation
  2. {
  3. Factor = 5.0
  4. ReplaceFactor
  5. NoArmor
  6. Obituary = "%o suffered  from radiation sickness"
  7. }
  8.  
  9. Damagetype Slime
  10. {
  11. Factor = 3.0
  12. ReplaceFactor
  13. Obituary = "%o touched radioactive substance and mutated"
  14. }
  15.  
  16. DamageType Falling
  17. {
  18. Factor = 1.0
  19. ReplaceFactor
  20. Obituary = "%o fell from too high"
  21. No Armor
  22. }
  23.  
  24. DamageType Ice
  25. {
  26. Factor = 1.5
  27. ReplaceFactor
  28. Obituary = "%o suffered the white death given to him by %k"
  29. NoArmor
  30. }
  31.  
  32. DamageType Poison
  33. {
  34. Factor = 2.0
  35. NoArmor
  36. Obituary = "%o was poisoned by %k"
  37. }
  38.  
  39. DamageType Electric
  40. {
  41. Factor = 3.5
  42. NoArmor
  43. ReplaceFactor
  44. Obituary = "%o was electrocuted by %k"
  45. }
  46.  
  47. DamageType Fire
  48. {
  49. Factor = 4.0
  50. NoArmor
  51. ReplaceFactor
  52. Obituary = "%o was incinerated by %k"
  53. }
  54.  
  55.  
  56. Decorate defs for Damagetypes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement