Guest User

Untitled

a guest
Jun 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. # Hey, I think this stuff is pretty self-explanatory, really
  2. # If anyone wants to add stuff to these that would be awesome of them :D
  3. # Just click paste again. It's on the right. Then put the new link in the topic.
  4. #
  5. # Note: ripostes aren't used at the moment and there are no plans to implement them.
  6. # You can still add shit to the array it's just a little pointless
  7. #
  8. # (b'-')b
  9.  
  10. my @normal_attacks = (
  11. "AA pokes BB in the eye!",
  12. "AA kicks BB in the groin!",
  13. "AA headbutts BB in the shins!",
  14. "AA punches BB in the spleen!",
  15. "AA wildy throws punches at BB's midriff!",
  16. "AA gnaws desperately on BB's elbow!"
  17. "AA punches BB in the cunt! (It's legal in France)",
  18.  
  19. );
  20.  
  21. my @failed_attacks = (
  22. "AA tries to punch BB but trips over.",
  23. "AA runs up to BB, but is distracted by a butterfly before he can attack!",
  24. "AA swings a punch at BB's head, but BB is so tough he doesn't feel a thing."
  25. );
  26.  
  27. my @dodges = (
  28. "But BB steps aside at the last moment! Gasp!",
  29. "BB doesn't even feel it!",
  30. "But BB just laughs in AA's face!"
  31. );
  32.  
  33. my @stat_ups = (
  34. "AA meditates for a moment."
  35. );
  36.  
  37. my @stat_downs = (
  38. "AA casts a magics upon BB!",
  39. "AA runs around and around, confusing poor BB's tiny mind!"
  40. );
  41.  
  42. my @riposte = (
  43. "But BB was ready for that, and neatly trips AA over!",
  44. "BB ripostes with a quick punch to the throat!"
  45. );
  46.  
  47. my @power_attacks = (
  48. "AA takes a running leap at BB, dealing double damage!",
  49. "AA punches BB so hard that BB's ears fell off! Double damage!",
  50. );
  51.  
  52. my @fail_dodge = (
  53. "BB tries to dodge, but AA manages to get a glancing hit for half damage!"
  54. );
Add Comment
Please, Sign In to add comment