Last active
December 30, 2015 09:39
-
-
Save benphelps/7811088 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Buffs | |
| Windfury Weapon { | |
| player.enchant.mainhand | |
| } | |
| Flametongue Weapon { | |
| !player.enchant.offhand | |
| } | |
| Lightning Shield { | |
| !player.buff(Lightning Shield) | |
| } | |
| -- Kick | |
| Wind Shear { | |
| modifier.interrupts | |
| } | |
| Totemic Projection -> ground { | |
| modifier.shift | |
| } | |
| Healing Surge { | |
| player.buff(Maelstrom Weapon).count = 5 | |
| player.health < 80 | |
| } | |
| Healing Stream Totem { | |
| player.health < 60 | |
| } | |
| { | |
| { | |
| Fire Elemental Totem | |
| Earth Elemental Totem | |
| Feral Spirit | |
| } | |
| modifier.cooldowns | |
| } | |
| Ascendance { | |
| modifier.cooldowns | |
| !player.buff(Ascendance) | |
| } | |
| Searing Totem { | |
| toggle.totems | |
| !player.totem(Fire Elemental Totem) | |
| !player.totem(Searing Totem) | |
| !modifier.multitarget | |
| } | |
| Magma Totem { | |
| toggle.totems | |
| !player.totem(Fire Elemental Totem) | |
| !player.totem(Magma Totem) | |
| modifier.multitarget | |
| } | |
| Flame Shock { modifier.multitarget } | |
| Lava Lash{ | |
| modifier.multitarget | |
| target.debuff(Flame Shock) | |
| } | |
| Chain Lightning { | |
| player.buff(Maelstrom Weapon).count = 5 | |
| modifier.multitarget | |
| } | |
| Fire Nova { | |
| modifier.multitarget | |
| target.debuff(Flame Shock) | |
| } | |
| Unleash Elements | |
| Elemental Blast | |
| Lightning Bolt { | |
| player.buff(Maelstrom Weapon).count = 5 | |
| } | |
| Stormstrike | |
| Stormblast | |
| Flame Shock { | |
| player.buff(Unleash Flame) | |
| } | |
| Flame Shock { | |
| target.debuff(Flame Shock).duration <= 3 | |
| } | |
| Lava Lash | |
| Earth Shock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment