Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.28 KB | None | 0 0
  1. <? xml version="1.0" ?>
  2. <spellcast>
  3. <config
  4. RequireVersion="2.22"
  5. />
  6. <variables>
  7. <var name="IceStaff">Aquilo's Staff</var>
  8. <var name="DarkStaff">Pluto's Staff</var>
  9. <var name="ThunderStaff">Jupiter's Staff</var>
  10. <var name="WindStaff">Auster's Staff</var>
  11. <var name="FireStaff">Vulcan's Staff</var>
  12. <var name="EarthStaff">Terra's Staff</var>
  13. <var name="LightStaff">Apollo's Staff</var>
  14. <var name="WaterStaff">Neptune's Staff</var>
  15. </variables>
  16. <sets>
  17. <group name="Main" default="yes">
  18. <set name="Base">
  19. <main>$EarthStaff</main>
  20. <sub>Staff Strap</sub>
  21. <head>Zenith Crown</head>
  22. <body>Dalmatica</body>
  23. <back>Umbra Cape</back>
  24. <neck>Orochi Nodowa</neck>
  25. <hands>Blessed Mitts</hands>
  26. <waist>Penitent's Rope</waist>
  27. <feet>Blessed Pumps</feet>
  28. <legs>Blessed Trousers</legs>
  29. <lear>Novia Earring</lear>
  30. <rear>Magnetic Earring</rear>
  31. <lring>Serket Ring</lring>
  32. <rring>Serene Ring</rring>
  33. </set>
  34. <set name="Cure" BaseSet="Base">
  35. <head>Walahra Turban</head>
  36. <body>Noble's Tunic</body>
  37. <back>Ixion Cape</back>
  38. <neck>Fenrir's Torque</neck>
  39. </set>
  40. <set name="CureV" BaseSet="Base">
  41. <head>Nashira Turban</head>
  42. <body>Noble's Tunic</body>
  43. <back>Ixion Cape</back>
  44. <hands>Healer's Mitts +1</hands>
  45. <legs>Cleric's Pantaloons</legs>
  46. <neck>Healing Torque</neck>
  47. </set>
  48. <set name="Enfeebling" BaseSet="Base">
  49. <body>Healer's Briault</body>
  50. <legs>Nashira Seraweels</legs>
  51. <feet>Avocat's Pigaches</feet>
  52. <neck>Enfeebling Torque</neck>
  53. <lear>Enfeebling Earring</lear>
  54. </set>
  55. <set name="Recast" BaseSet="Base">
  56. <head>Walahra Turban</head>
  57. <body>Goliard Saio</body>
  58. <waist>Swift Belt</waist>
  59. </set>
  60. <set name="Divine" BaseSet="Base">
  61. <legs>Healer's Pantaloons +1</legs>
  62. <body>Nashira Manteel</body>
  63. <head>Nashira Turban</head>
  64. <hands>Zenith Mitts</hands>
  65. </set>
  66. <set name="CureEnm" BaseSet="Base">
  67. <head>Nashira Turban</head>
  68. <body>Noble's Tunic</body>
  69. <back>Ixion Cape</back>
  70. <neck>Fenrir's Torque</neck>
  71. </set>
  72. <set name="HMP" BaseSet="Base">
  73. <body>Errant Hpl.</body>
  74. <main>$DarkStaff</main>
  75. <sub>Bugard Strap +1</sub>
  76. <head>Wizard Petasos</head>
  77. <waist>Qiqirn Sash +1</waist>
  78. <feet>Avocat Pigaches</feet>
  79. <hands>Morrigan's Cuffs</hands>
  80. <neck>Beak Necklace +1</neck>
  81. <lear>Magnetic Earring</lear>
  82. <rear>Sorcerer's Earring</rear>
  83. <legs>Oracle's Braconi</legs>
  84. </set>
  85. <set name="Enmity" BaseSet="Recast">
  86. <head>Nashira Turban</head>
  87. <body>Errant Hpl.</body>
  88. </set>
  89. <set name="Stoneskin" BaseSet="Base">
  90. <main lock="t">Mystic Wand +1</main>
  91. <sub>Muse Tariqah</sub>
  92. <body>Errant Hpl.</body>
  93. <lring>Communion Ring</lring>
  94. </set>
  95. <set name="Dark" BaseSet="Base">
  96. <body>Nashira Manteel</body>
  97. <neck>Dark Torque</neck>
  98. </set>
  99. </group>
  100. </sets>
  101. <rules>
  102. <action type="equip" when="idle|zoning|aftercast" set="Base"/>
  103. <action type="equip" when="resting" set="HMP" />
  104.  
  105. <if skill="EnfeeblingMagic">
  106. <action type="equip" when="midcast" set="Enfeebling" />
  107. </if>
  108. <if skill="DivineMagic">
  109. <action type="equip" when="midcast" set="Divine" />
  110. </if>
  111. <if skill="DarkMagic">
  112. <action type="equip" when="midcast" set="Dark" />
  113. </if>
  114. <if spell="Bar*">
  115. <action type="equip" when="precast|midcast">
  116. <legs>Cleric's Pantaloons</legs>
  117. <body>Blessed Briault</body>
  118. </action>
  119. </if>
  120. <if spell="Regen*">
  121. <action type="equip" when="midcast">
  122. <body>Cleric's Briault</body>
  123. </action>
  124. </if>
  125. <if spell="*na|Erase|Esuna|Sacrafice|Haste">
  126. <action type="equip" when="precast|midcast" set="Recast" />
  127. </if>
  128. <if spell="Cure|Cure II|Cure III|Cure IV|Cure VI">
  129. <action type="equip" when="midcast" set="Cure" />
  130. </if>
  131. <if spell="Cure V">
  132. <action type="equip" when="midcast" set="CureV" />
  133. </if>
  134. <if spell="Curaga*">
  135. <action type="equip" when="midcast" set="CureEnm" />
  136. </if>
  137. <if spell="Flash">
  138. <action type="equip" when="precast|midcast" set="Enmity" />
  139. </if>
  140. <if spell="Stoneskin">
  141. <action type="equip" when="midcast" set="Stoneskin" />
  142. </if>
  143. <if spell="Blink">
  144. <action type="equip" when="midcast" set="Base" />
  145. </if>
  146. <!--Cancel Buffs-->
  147. <if spell="Utsusemi:Ichi">
  148. <action type="command" when="midcast">cancel 66</action>
  149. <action type="midcastdelay" delay="2.8" />
  150. </if>
  151. <if Spell="Monomi*|Sneak" BuffActive="Sneak">
  152. <action type="command" when="midcast">cancel 71</action>
  153. <action type="midcastdelay" delay="2.8" />
  154. </if>
  155. <if Spell="Stoneskin" BuffActive="Stoneskin">
  156. <action type="command" when="midcast">cancel 37</action>
  157. <action type="midcastdelay" delay="4.8" />
  158. </if>
  159. <if Spell="Blink" BuffActive="Blink">
  160. <action type="command" when="midcast">cancel 36</action>
  161. <action type="midcastdelay" delay="4.5" />
  162. </if>
  163. <if spell="Utusemi*|Blink|Teleport*|Sneak|Invisible|Protect*||Shell*|Reraise*">
  164. <action type="equip" when="midcast" set="Base">
  165. <main lock="t">Terra's Staff</main>
  166. </action>
  167. </if>
  168.  
  169. <action type="equip" when="midcast">
  170. <main>$%SpellElementStaff</main>
  171. </action>
  172.  
  173. </rules>
  174. </spellcast>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement