Jump to content

Shattered Barrier, Permafrost, Frostfire bolt


Guest Ginny17

Recommended Posts

Shattered Barrier:When the shattered barrier destryed doesnt freeze all enemies within 10 yards

http://www.wowhead.com/?spell=54787

Permafrost: dosnt reduce the target movement speed and healing reduction

http://www.wowhead.com/?spell=12571

Frostfire bolt: dmg is low 2.5k-5k dmg but i look some videos and the dmg is 4-7k crits on frozen target 8-10k and in a raid 12-15k dmg+dot

http://www.wowhead.com/?spell=47610

Link to comment
Share on other sites

  • 2 months later...

for shattered barrier try this

diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp
index 9d3a5a7..fe713a4 100644
--- a/src/game/SpellAuras.cpp
+++ b/src/game/SpellAuras.cpp
@@ -6501,8 +6501,8 @@ void Aura::HandleSpellSpecificBoosts(bool apply)
                        if ((*itr)->GetSpellProto()->SpellIconID == 2945)
                        {
                            cast_at_remove = true;
-                            // first rank have 50% chance
-                            if ((*itr)->GetId() != 44745 || roll_chance_i(50))
+                            // 1st rank have 50% chance, 2nd 100%
+                            if (((*itr)->GetId() == 44745 && roll_chance_i(50)) || (*itr)->GetId() == 54787)
                                spellId1 = 55080;
                            break;
                        }
@@ -6510,6 +6510,7 @@ void Aura::HandleSpellSpecificBoosts(bool apply)
                }
                else
                    return;
+                break;
            }

            switch(GetId())

Link to comment
Share on other sites

  • 1 month later...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use