mirror of
https://github.com/mangosfour/server.git
synced 2025-12-28 22:37:04 +00:00
[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:
parent
2b1842dfb0
commit
5214147ace
5 changed files with 32 additions and 4 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue