[12121] Implement some server side summons spells

Add spells: 34810, 34817, 34818, 34819, 35153, 35904, 35905, 35906

Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
This commit is contained in:
cyberium 2012-08-23 14:58:22 +02:00 committed by Antz
parent 2b1842dfb0
commit 5214147ace
5 changed files with 32 additions and 4 deletions

View file

@ -1332,6 +1332,14 @@ void Spell::EffectDummy(SpellEffectEntry const* effect)
m_caster->CastSpell(m_caster, spell_id, true, NULL);
return;
}
case 34803: // Summon Reinforcements
{
m_caster->CastSpell(m_caster, 34810, true); // Summon 20083 behind of the caster
m_caster->CastSpell(m_caster, 34817, true); // Summon 20078 right of the caster
m_caster->CastSpell(m_caster, 34818, true); // Summon 20078 left of the caster
m_caster->CastSpell(m_caster, 34819, true); // Summon 20078 front of the caster
return;
}
case 36677: // Chaos Breath
{
if (!unitTarget)