From 030d942efe5b70b3551f82ae26fc2391b13849e3 Mon Sep 17 00:00:00 2001 From: Ovah Date: Sat, 25 Apr 2020 19:04:31 +0200 Subject: Scripts/Antorus: implement Garothi Worldbreaker encounter for normal and heroic difficulty * added base script support for the encounter for normal and heroic difficulty * added instance script for Antorus the Burning Throne * added sniffed template data for involved gameobjects * added encounter related spawns to Antorus the Burning Throne * added instance encounter entry for Garothi Worldbreaker --- src/server/game/Spells/SpellMgr.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/server/game') diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 3c15a374d1b..1dcc18773e1 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3590,6 +3590,20 @@ void SpellMgr::LoadSpellInfoCorrections() }); // ENDOF FIRELANDS SPELLS + // + // ANTORUS THE BURNING THRONE SPELLS + // + + // Decimation + ApplySpellFix({ 244449 }, [](SpellInfo* spellInfo) + { + // For some reason there is a instakill effect that serves absolutely no purpose. + // Until we figure out what it's actually used for we disable it. + const_cast(spellInfo->GetEffect(EFFECT_2))->Effect = 0; + }); + + // ENDOF ANTORUS THE BURNING THRONE SPELLS + // Summon Master Li Fei ApplySpellFix({ 102445 }, [](SpellInfo* spellInfo) { -- cgit v1.2.3