Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. if snd.class == "Syssin" then
  2. snd.hypno_stack = { -- hypnosis affs, in priority order
  3. "hypochondria",
  4. "impatience",
  5. "loneliness",
  6. "lethargy",
  7. "hypochondria",
  8. "impatience",
  9. "vertigo",
  10. "lethargy",
  11. "impatience",
  12. "loneliness",
  13. "lethargy"
  14. }
  15. snd.starting_attack()
  16. function snd.attack_function()
  17. local string = "" -- this will populate with our attack
  18. local call = "" -- this will be for affliction calling
  19. local touse = {} -- this will store the affs we still want to hit with
  20. local tohit = {} -- this will store the effects from touse
  21. local extraaff = "delphinium" -- what to use if we used everything else
  22. -- and how far away we are from a lock
  23. local missing = snd.missingAff("stupidity/paresis/anorexia/asthma/slickness", "/")
  24. if snd.target_locked() then
  25. snd.giving = {
  26. "a broken left leg",
  27. "a broken right leg",
  28. "hearing",
  29. "sensitivity",
  30. "voyria"
  31. }
  32. elseif snd.hypno == "running" then
  33. snd.giving = { -- the venoms we're going to apply while hypnosis is running, in prioritized order
  34. --"sight",
  35. "paresis",
  36. "clumsiness",
  37. "asthma",
  38. "shyness", -- to keep impatience stuck, this buries it
  39. "slickness",
  40. "anorexia", -- work harder on the lock than buffer affs, while hypnosis is going
  41. "stupidity", -- not as important, since we're running impatience
  42. --"vomiting",
  43. "allergies",
  44. "sensitivity",
  45. --"haemophilia",
  46. --"recklessness",
  47. "weariness",
  48. --"dizziness",
  49. "voyria",
  50. }
  51. else
  52. snd.giving = { -- the venoms we're going to apply while hypnosis is building, in prioritized order
  53. --"sight",
  54. "clumsiness",
  55. "asthma",
  56. "paresis",
  57. --"squelched",
  58. "shyness", -- to bury impatience once hypno fires
  59. --"vomiting", -- stick these two early, to bury scytherus
  60. "allergies", -- this being the second
  61. "slickness",
  62. "stupidity",
  63. "anorexia",
  64. "sensitivity",
  65. --"haemophilia",
  66. --"recklessness",
  67. "weariness",
  68. --"dizziness",
  69. --"voyria",
  70. }
  71. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement