mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-15 23:20:36 +01:00
Scripts/ShrineOfTheStorm: Implement Aqu'sirr encounter (#30122)
Co-authored-by: ModoX <moardox@gmail.com>
This commit is contained in:
@@ -4891,6 +4891,37 @@ void SpellMgr::LoadSpellInfoCorrections()
|
||||
// ENDOF THE AZURE VAULT SPELLS
|
||||
//
|
||||
|
||||
//
|
||||
// SHRINE OF THE STORM SPELLS
|
||||
//
|
||||
|
||||
// These spells have TARGET_DEST_NEARBY_ENTRY for serverside unit
|
||||
ApplySpellFix({
|
||||
274365, // Requiem of the Abyss
|
||||
274367, // Requiem of the Abyss
|
||||
264911, // Erupting Waters
|
||||
264912, // Erupting Waters
|
||||
264913, // Erupting Waters
|
||||
}, [](SpellInfo* spellInfo)
|
||||
{
|
||||
ApplySpellEffectFix(spellInfo, EFFECT_0, [](SpellEffectInfo* spellEffectInfo)
|
||||
{
|
||||
spellEffectInfo->TargetA = SpellImplicitTargetInfo(TARGET_DEST_DEST);
|
||||
});
|
||||
});
|
||||
|
||||
// Conversation
|
||||
ApplySpellFix({ 274668, 274669 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
ApplySpellEffectFix(spellInfo, EFFECT_0, [](SpellEffectInfo* spellEffectInfo)
|
||||
{
|
||||
spellEffectInfo->Effect = SPELL_EFFECT_CREATE_CONVERSATION;
|
||||
});
|
||||
});
|
||||
|
||||
// ENDOF SHRINE OF THE STORM SPELLS
|
||||
//
|
||||
|
||||
//
|
||||
// WAYCREST MANOR SPELLS
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user