aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Spells/spell_mage.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/server/scripts/Spells/spell_mage.cpp b/src/server/scripts/Spells/spell_mage.cpp
index 36504353bcb..24433669136 100644
--- a/src/server/scripts/Spells/spell_mage.cpp
+++ b/src/server/scripts/Spells/spell_mage.cpp
@@ -35,6 +35,7 @@ enum MageSpells
SPELL_MAGE_GLYPH_OF_ETERNAL_WATER = 70937,
SPELL_MAGE_SUMMON_WATER_ELEMENTAL_PERMANENT = 70908,
SPELL_MAGE_SUMMON_WATER_ELEMENTAL_TEMPORARY = 70907,
+ SPELL_MAGE_GLYPH_OF_BLAST_WAVE = 62126,
};
class spell_mage_cold_snap : public SpellScriptLoader
@@ -172,9 +173,42 @@ class spell_mage_summon_water_elemental : public SpellScriptLoader
}
};
+class spell_mage_blast_wave : public SpellScriptLoader
+{
+ public:
+ spell_mage_blast_wave() : SpellScriptLoader("spell_mage_blast_wave") { }
+
+ class spell_mage_blast_wave_SpellScript : public SpellScript
+ {
+ bool Validate(SpellEntry const * /*spellEntry*/)
+ {
+ if (!sSpellStore.LookupEntry(SPELL_MAGE_GLYPH_OF_BLAST_WAVE))
+ return false;
+ return true;
+ }
+
+ void HandleKnockBack(SpellEffIndex effIndex)
+ {
+ if (GetCaster()->HasAura(SPELL_MAGE_GLYPH_OF_BLAST_WAVE))
+ PreventHitDefaultEffect(effIndex);
+ }
+
+ void Register()
+ {
+ OnEffect += SpellEffectFn(spell_mage_blast_wave_SpellScript::HandleKnockBack, EFFECT_2, SPELL_EFFECT_KNOCK_BACK);
+ }
+ };
+
+ SpellScript * GetSpellScript() const
+ {
+ return new spell_mage_blast_wave_SpellScript();
+ }
+};
+
void AddSC_mage_spell_scripts()
{
new spell_mage_cold_snap;
new spell_mage_polymorph_cast_visual;
new spell_mage_summon_water_elemental;
+ new spell_mage_blast_wave;
}