Scripts/ScarletHalls: Implement Armsmaster Harlan encounter (#29944)

This commit is contained in:
Naddley
2024-05-05 05:30:37 +02:00
committed by GitHub
parent 240b7e58d8
commit 62156f57b2
6 changed files with 654 additions and 0 deletions

View File

@@ -4642,6 +4642,34 @@ void SpellMgr::LoadSpellInfoCorrections()
});
// ENDOF FIRELANDS
//
// SCARLET HALLS SPELLS
//
// 111755 - Call Reinforcement
ApplySpellFix({ 111755 }, [](SpellInfo* spellInfo)
{
spellInfo->AttributesEx2 |= SPELL_ATTR2_IGNORE_LINE_OF_SIGHT;
ApplySpellEffectFix(spellInfo, EFFECT_0, [](SpellEffectInfo* spellEffectInfo)
{
spellEffectInfo->TargetA = SpellImplicitTargetInfo(TARGET_DEST_DB);
});
});
// 111756 - Call Reinforcement
ApplySpellFix({ 111756 }, [](SpellInfo* spellInfo)
{
spellInfo->AttributesEx2 |= SPELL_ATTR2_IGNORE_LINE_OF_SIGHT;
ApplySpellEffectFix(spellInfo, EFFECT_0, [](SpellEffectInfo* spellEffectInfo)
{
spellEffectInfo->TargetA = SpellImplicitTargetInfo(TARGET_DEST_DB);
});
});
// ENDOF SCARLET HALLS SPELLS
//
// MARDUM SPELLS
//