Advertisement
Guest User

Untitled

a guest
Dec 10th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. variables:
  2. ZipChargeVar:
  3. type: player
  4. default: 0
  5. min: 0
  6. max: 2
  7. permanent: true
  8.  
  9. ZipCharge:
  10. spell-class: ".instant.DummySpell"
  11. modifiers:
  12. - variableequals ZipChargeVar:2 denied
  13. variable-mods-cast:
  14. - ZipChargeVar +1
  15. str-cast-self: "&3Zip Charges &6%var:ZipChargeVar%/2"
  16. str-cast-fail: "&3No more zip charges... *sniff*"
  17.  
  18. ZipFail:
  19. spell-class: ".instant.DummySpell"
  20. str-cast-self: "&3No more zip charges... *sniff*"
  21.  
  22. Zip:
  23. spell-class: ".MultiSpell"
  24. name: Zip
  25. cooldown: 0
  26. modifiers:
  27. - sneaking castinstead ZipCharge
  28. - sneaking cancel
  29. - variableequals ZipChargeVar:0 castinstead ZipFail
  30. variable-mods-cast:
  31. - ZipChargeVar -1
  32. always-granted: false
  33. check-individual-cooldowns: false
  34. spells:
  35. - ZipEffect
  36. - ZipProjectile
  37. str-cast-self: "&3Zip Charges &6%var:ZipChargeVar%/2"
  38. str-cast-fail: "&3No more zip charges... *sniff*"
  39.  
  40. ZipEffect:
  41. spell-class: ".instant.DummySpell"
  42. effects:
  43. 1:
  44. position: caster
  45. effect: effectlib
  46. height-offset: 0.1
  47. effectlib:
  48. class: WarpEffect
  49. particle: REDSTONE
  50. color: ffe700
  51. iterations: 1
  52. particles: 25
  53. radius: 0.5
  54. speed: 0
  55. rings: 1
  56. visibileRange: 100
  57.  
  58. ZipProjectile:
  59. spell-class: ".instant.ParticleProjectileSpell"
  60. spell: StaticTeleportTeleport
  61. projectile-velocity: 100
  62. cooldown: 0
  63. tick-interval: 1
  64. projectile-gravity: 0
  65. hit-air-at-end: true
  66. tick-interval: 1
  67. special-effect-interval: 1
  68. hit-radius: 1
  69. particle-horizontal-spread: 0.1
  70. hit-non-players: false
  71. hit-players: false
  72. stop-on-hit-entity: true
  73. can-cast-by-command: false
  74. particle-vertical-spread: 0.1
  75. particle-count: 1
  76. particle-name: take
  77. max-distance: 4
  78. max-duration: 140
  79. render-distance: 100
  80. particle-speed: 0
  81.  
  82. ZipTeleport:
  83. spell-class: ".TargetedMultiSpell"
  84. cooldown: 0
  85. always-granted: false
  86. check-individual-cooldowns: false
  87. spells:
  88. - ZipMark
  89. - DELAY 1
  90. - StaticTeleportRecall
  91. - ZipEffect
  92.  
  93. ZipMark:
  94. spell-class: ".instant.MarkSpell"
  95. cooldown: 0
  96. permanent-marks: false
  97.  
  98. ZipRecall:
  99. spell-class: ".instant.RecallSpell"
  100. cooldown: 0
  101. mark-spell: ZipMark
  102. max-range: 50
  103. allow-cross-world: false
  104. use-bed-location: false
  105. str-cast-self: You have zipped.
  106. str-no-mark: You have not zipped to your location desired.
  107. str-other-world: You cannot zip to another world.
  108. str-too-far: Your zip location is too far away.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement