Advertisement
Guest User

Untitled

a guest
Jan 8th, 2015
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. ^You swing your shield around, smashing the temple of (\w+) with a backhanded blow.$
  2.  
  3. if affstrack.score.dizziness ~= 100 then
  4. affstrack.score.dizziness = 100
  5. elseif affstrack.score.recklessness ~= 100 then
  6. affstrack.score.recklessness = 100
  7. elseif affstrack.score.stupidity ~= 100 then
  8. affstrack.score.stupidity = 100
  9. elseif affstrack.score.confusion ~= 100 then
  10. affstrack.score.confusion = 100
  11. elseif affstrack.score.epilepsy ~= 100 then
  12. affstrack.score.epilepsy = 100
  13. end
  14. scoreup()
  15.  
  16. or
  17.  
  18. if affstrack.score.dizziness == 0 then
  19. affstrack.score.dizziness = 100
  20. elseif affstrack.score.recklessness == 0 then
  21. affstrack.score.recklessness = 100
  22. elseif affstrack.score.stupidity == 0 then
  23. affstrack.score.stupidity = 100
  24. elseif affstrack.score.confusion == 0 then
  25. affstrack.score.confusion = 100
  26. elseif affstrack.score.epilepsy == 0 then
  27. affstrack.score.epilepsy = 100
  28. end
  29. scoreup()
  30.  
  31.  
  32.  
  33. ---------------------------------------------------
  34.  
  35.  
  36. ^You quickly lunge to the side, bringing your shield around to smash into the spine of (\w+).$
  37.  
  38. affstrack.score.paralysis = 100
  39. scoreup()
  40.  
  41. ----------------------------------------------------
  42.  
  43. ^You smash the edge of a Shield of Absorption into the kneecaps of Rollanz, causing her to stumble.$
  44.  
  45. affstrack.score.lethargy = 100
  46. scoreup()
  47.  
  48. ----------------------------------------------------
  49. ^Planting your feet, you drive the edge of your shield with vicious precision into the throat of (\w+).$
  50.  
  51. affstrack.score.asthma = 100
  52. scoreup()
  53.  
  54.  
  55. -----------------------------------------------------
  56. ^You draw .* back, then lunge forward with a savage strike to the ribs of (\w+).$
  57.  
  58. affstrack.score.sensitivity = 100
  59. lastvenom[1] = "prefarar"
  60. sensitivityscoreup()
  61. scoreup()
  62.  
  63. -----------------------------------------------------
  64.  
  65. ^You duck low and smash your shield into the knees of (\w+), causing them to buckle underneath \w+.$
  66. ^You lunge downward, slamming the edge of a Shield of Absorption into the shins of (\w+).$
  67.  
  68. affstrack.score.prone = 100
  69. scoreup()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement