Guest User

Untitled

a guest
Apr 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. ^You violently propel your kai energy at (.*), enfeebling (.*).$ [Perl Regex]
  2.  
  3. deleteFull()
  4. echo("\nEnfeebled "..matches[2])
  5. send ('pt ========Enfeebled '..matches[2]..'========')
  6.  
  7. --------------------------------------------------------------------------------------------
  8.  
  9. You raise your arms above your head, allowing Kai energy to congregate between your outstretched palms. [Exact Match]
  10.  
  11. deleteFull()
  12.  
  13. --------------------------------------------------------------------------------------------
  14.  
  15. ^You thrust your palms forward and a stream of blue light crackles forth to strike out at (.*). Snapping sounds echo through the air as your crippled victim sinks to the floor.$
  16. [Perl Regex]
  17.  
  18. deleteFull()
  19. echo("\nCrippled "..matches[2])
  20. send ('pt ========Crippled '..matches[2]..'========')
  21.  
  22. --------------------------------------------------------------------------------------------
  23.  
  24. ^You invoke an ancient command and wave your palm in the direction of (.*), who simply fades from existence with a startled look on (his|her) face.$ [Perl Regex]
  25.  
  26. deleteFull()
  27. echo("\nBanished "..matches[2])
  28. send ('pt ========Banished '..matches[2]..'========')
  29.  
  30. --------------------------------------------------------------------------------------------
  31.  
  32. ^Your face contorted in a twisted grimace, you clench your fists to crush the life out of (.*).$ [Perl Regex]
  33.  
  34.  
  35. deleteFull()
  36. echo("\nChoked "..matches[2])
  37. send ('pt ========Choked '..matches[2]..'========')
  38.  
  39. --------------------------------------------------------------------------------------------
  40.  
  41. ^(.*) gasps and stumbles as an unseen force crushes the life breath out of (him|her).$
  42. [Perl Regex]
  43.  
  44.  
  45. deleteFull()
Add Comment
Please, Sign In to add comment