[9757] Add triggered spell(strength buff) for 71904

This commit is contained in:
Laise 2010-04-18 10:46:22 +03:00
parent a502d1eb78
commit 5b56c321c8
3 changed files with 4 additions and 1 deletions

View file

@ -458,6 +458,7 @@ INSERT INTO spell_check (spellid,SpellFamilyName,SpellFamilyMaskA,SpellFamilyMas
(72505, 0, -1, -1, -1, -1, -1, 2, -1,-1,'Ooze Eruption', 'Spell::EffectSchoolDMG'),
(72624, 0, -1, -1, -1, -1, -1, 2, -1,-1,'Ooze Eruption', 'Spell::EffectSchoolDMG'),
(72625, 0, -1, -1, -1, -1, -1, 2, -1,-1,'Ooze Eruption', 'Spell::EffectSchoolDMG'),
(73422, 0, -1, -1, -1, -1, -1, -1, -1,-1,'Chaos Bane', 'Spell::cast'),
/*id fm familyMaskA fmMaskB icon vis cat eff aur ef name code */

View file

@ -2534,6 +2534,8 @@ void Spell::cast(bool skipCheck)
AddPrecastSpell(11196); // Recently Bandaged
else if(m_spellInfo->Id == 20594) // Stoneskin
AddTriggeredSpell(65116); // Stoneskin - armor 10% for 8 sec
else if(m_spellInfo->Id == 71904) // Chaos Bane strength buff
AddTriggeredSpell(73422);
break;
}
case SPELLFAMILY_MAGE:

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "9756"
#define REVISION_NR "9757"
#endif // __REVISION_NR_H__