mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 19:37:02 +00:00
[9534] Attack Power bonus for spell 64382.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
81c6f3ff9b
commit
e49fac9ef2
2 changed files with 4 additions and 1 deletions
|
|
@ -401,6 +401,9 @@ void Spell::EffectSchoolDMG(SpellEffectIndex effect_idx)
|
|||
// Heroic Throw ${$m1+$AP*.50}
|
||||
else if (m_spellInfo->SpellFamilyFlags & UI64LIT(0x0000000100000000))
|
||||
damage+= uint32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * 0.5f);
|
||||
// Shattering Throw ${$m1+$AP*.50}
|
||||
else if (m_spellInfo->SpellFamilyFlags & UI64LIT(0x0040000000000000))
|
||||
damage+= uint32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * 0.5f);
|
||||
// Shockwave ${$m3/100*$AP}
|
||||
else if (m_spellInfo->SpellFamilyFlags & UI64LIT(0x0000800000000000))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue