Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. if gmcp.Char.Status.gender == "female" then
  2. illusionsDefensive = {
  3. "A nearly invisible magical shield forms around "..gmcp.Char.Status.name..".",
  4. ""..gmcp.Char.Status.name.." stands up.",
  5. ""..gmcp.Char.Status.name.." eats a magnesium chip.",
  6. ""..gmcp.Char.Status.name.." takes some salve from a vial and rubs it on her legs.",
  7. ""..gmcp.Char.Status.name.." takes some salve from a vial and rubs it on her arms.",
  8. "A look of extreme focus crosses the face of "..gmcp.Char.Status.name..".",
  9. ""..gmcp.Char.Status.name.." touches a tree of life tattoo.",
  10. "You glance over "..gmcp.Char.Status.name.." and see that her health is at 2300/8900.",
  11. ""..gmcp.Char.Status.name.." ceases to favour her left leg.",
  12. ""..gmcp.Char.Status.name.." ceases to favour her right leg.",
  13. ""..gmcp.Char.Status.name.." ceases to favour her left arm.",
  14. ""..gmcp.Char.Status.name.." ceases to favour her right arm.",
  15. "You have slain "..gmcp.Char.Status.name.."."
  16. }
  17. else
  18. illusionsDefensive = {
  19. "A nearly invisible magical shield forms around "..gmcp.Char.Status.name..".",
  20. ""..gmcp.Char.Status.name.." stands up.",
  21. ""..gmcp.Char.Status.name.." eats a magnesium chip.",
  22. ""..gmcp.Char.Status.name.." takes some salve from a vial and rubs it on his legs.",
  23. ""..gmcp.Char.Status.name.." takes some salve from a vial and rubs it on his arms.",
  24. "A look of extreme focus crosses the face of "..gmcp.Char.Status.name..".",
  25. ""..gmcp.Char.Status.name.." touches a tree of life tattoo.",
  26. "You glance over "..gmcp.Char.Status.name.." and see that his health is at 2300/8900.",
  27. ""..gmcp.Char.Status.name.." ceases to favour his left leg.",
  28. ""..gmcp.Char.Status.name.." ceases to favour his right leg.",
  29. ""..gmcp.Char.Status.name.." ceases to favour his left arm.",
  30. ""..gmcp.Char.Status.name.." ceases to favour his right arm.",
  31. "You have slain "..gmcp.Char.Status.name.."."
  32. }
  33. end
  34.  
  35.  
  36. function illusion()
  37. illusions = illusions or "defensive"
  38. if illusions == "defensive" then
  39. if gmcp.Char.Status.class:find("Dragon") then
  40. illusionCheck = math.random(#illusionsDefensive)
  41. send("conjure "..target.." illusion "..illusionsDefensive[illusionCheck])
  42. send("clearqueue equilibrium")
  43. end
  44. end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement