From 23f729a7c79c9b6fc5d16350186bd77713f945ab Mon Sep 17 00:00:00 2001 From: megamage Date: Fri, 24 Apr 2009 11:15:04 -0500 Subject: [7704] Implement damage part for spell 12809. Author: Trogvar --HG-- branch : trunk --- src/game/SpellEffects.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index dc7ab3f0b93..4f367d4f614 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1393,6 +1393,12 @@ void Spell::EffectDummy(uint32 i) m_damage+=damage; return; } + // Concussion Blow + if(m_spellInfo->SpellFamilyFlags & 0x0000000004000000LL) + { + m_damage+= uint32(damage * m_caster->GetTotalAttackPowerValue(BASE_ATTACK) / 100); + return; + } switch(m_spellInfo->Id) { // Warrior's Wrath -- cgit v1.2.3