Merge pull request #12071 from Praetonus/warnings

Fix various warnings.
This commit is contained in:
Sebastian Valle Herrera
2014-05-17 18:40:23 -05:00
129 changed files with 798 additions and 800 deletions
@@ -79,4 +79,4 @@ namespace AuthHelper
return NULL;
}
};
}
@@ -92,6 +92,6 @@ namespace AuthHelper
bool IsAcceptedClientBuild(int build);
bool IsPostBCAcceptedClientBuild(int build);
bool IsPreBCAcceptedClientBuild(int build);
};
}
#endif
+1 -1
View File
@@ -22645,7 +22645,7 @@ bool Player::ModifyMoney(int32 amount, bool sendError /*= true*/)
SetMoney (GetMoney() > uint32(-amount) ? GetMoney() + amount : 0);
else
{
if (GetMoney() < uint32(MAX_MONEY_AMOUNT - amount))
if (GetMoney() < MAX_MONEY_AMOUNT - static_cast<uint32>(amount))
SetMoney(GetMoney() + amount);
else
{
+3 -1
View File
@@ -29,6 +29,7 @@
#include "SpellMgr.h"
#include "Unit.h"
#include <limits>
#include <string>
#include <vector>
@@ -824,7 +825,8 @@ enum PlayerDelayedOperations
// Player summoning auto-decline time (in secs)
#define MAX_PLAYER_SUMMON_DELAY (2*MINUTE)
#define MAX_MONEY_AMOUNT (0x7FFFFFFF-1)
// Maximum money amount : 2^31 - 1
auto constexpr MAX_MONEY_AMOUNT(static_cast<uint32>(std::numeric_limits<int32>::max()));
struct InstancePlayerBind
{
+4 -4
View File
@@ -754,7 +754,7 @@ int32 Guild::Member::GetBankWithdrawValue(uint8 tabId) const
{
// Guild master has unlimited amount.
if (IsRank(GR_GUILDMASTER))
return tabId == GUILD_BANK_MAX_TABS ? GUILD_WITHDRAW_MONEY_UNLIMITED : GUILD_WITHDRAW_SLOT_UNLIMITED;
return static_cast<int32>(tabId == GUILD_BANK_MAX_TABS ? GUILD_WITHDRAW_MONEY_UNLIMITED : GUILD_WITHDRAW_SLOT_UNLIMITED);
return m_bankWithdraw[tabId];
}
@@ -1760,7 +1760,7 @@ void Guild::HandleMemberDepositMoney(WorldSession* session, uint32 amount)
bool Guild::HandleMemberWithdrawMoney(WorldSession* session, uint32 amount, bool repair)
{
//clamp amount to MAX_MONEY_AMOUNT, Players can't hold more than that anyway
amount = std::min(amount, uint32(MAX_MONEY_AMOUNT));
amount = std::min(amount, MAX_MONEY_AMOUNT);
if (m_bankMoney < amount) // Not enough money in bank
return false;
@@ -2581,7 +2581,7 @@ inline int32 Guild::_GetMemberRemainingSlots(Member const* member, uint8 tabId)
{
uint8 rankId = member->GetRankId();
if (rankId == GR_GUILDMASTER)
return GUILD_WITHDRAW_SLOT_UNLIMITED;
return static_cast<int32>(GUILD_WITHDRAW_SLOT_UNLIMITED);
if ((_GetRankBankTabRights(rankId, tabId) & GUILD_BANK_RIGHT_VIEW_TAB) != 0)
{
int32 remaining = _GetRankBankTabSlotsPerDay(rankId, tabId) - member->GetBankWithdrawValue(tabId);
@@ -2598,7 +2598,7 @@ inline int32 Guild::_GetMemberRemainingMoney(Member const* member) const
{
uint8 rankId = member->GetRankId();
if (rankId == GR_GUILDMASTER)
return GUILD_WITHDRAW_MONEY_UNLIMITED;
return static_cast<int32>(GUILD_WITHDRAW_MONEY_UNLIMITED);
if ((_GetRankRights(rankId) & (GR_RIGHT_WITHDRAW_REPAIR | GR_RIGHT_WITHDRAW_GOLD)) != 0)
{
+2 -2
View File
@@ -299,14 +299,14 @@ void WorldSession::HandleAcceptTradeOpcode(WorldPacket& /*recvPacket*/)
return;
}
if (_player->GetMoney() >= uint32(MAX_MONEY_AMOUNT) - his_trade->GetMoney())
if (_player->GetMoney() >= MAX_MONEY_AMOUNT - his_trade->GetMoney())
{
_player->SendEquipError(EQUIP_ERR_TOO_MUCH_GOLD, NULL, NULL);
my_trade->SetAccepted(false, true);
return;
}
if (trader->GetMoney() >= uint32(MAX_MONEY_AMOUNT) - my_trade->GetMoney())
if (trader->GetMoney() >= MAX_MONEY_AMOUNT - my_trade->GetMoney())
{
trader->SendEquipError(EQUIP_ERR_TOO_MUCH_GOLD, NULL, NULL);
his_trade->SetAccepted(false, true);
+2 -2
View File
@@ -243,7 +243,7 @@ AI* GetInstanceAI(T* obj, char const* scriptName)
return new AI(obj);
return NULL;
};
}
template<class AI, class T>
AI* GetInstanceAI(T* obj)
@@ -253,6 +253,6 @@ AI* GetInstanceAI(T* obj)
return new AI(obj);
return NULL;
};
}
#endif // TRINITY_INSTANCE_DATA_H
+2 -5
View File
@@ -1020,7 +1020,7 @@ public:
}
else
{
if (newmoney > MAX_MONEY_AMOUNT)
if (newmoney > static_cast<int32>(MAX_MONEY_AMOUNT))
newmoney = MAX_MONEY_AMOUNT;
handler->PSendSysMessage(LANG_YOU_TAKE_MONEY, abs(moneyToAdd), handler->GetNameLink(target).c_str());
@@ -1035,10 +1035,7 @@ public:
if (handler->needReportToTarget(target))
ChatHandler(target->GetSession()).PSendSysMessage(LANG_YOURS_MONEY_GIVEN, handler->GetNameLink().c_str(), moneyToAdd);
if (moneyToAdd >= MAX_MONEY_AMOUNT)
moneyToAdd = MAX_MONEY_AMOUNT;
if (targetMoney >= uint32(MAX_MONEY_AMOUNT) - moneyToAdd)
if (targetMoney >= MAX_MONEY_AMOUNT - moneyToAdd)
moneyToAdd -= targetMoney;
target->ModifyMoney(moneyToAdd);
@@ -212,4 +212,4 @@ void AddSC_boss_balinda()
{
new boss_balinda;
new npc_water_elemental;
};
}
@@ -183,7 +183,7 @@ class spell_egg_event : public SpellScriptLoader
class spell_egg_eventSpellScript : public SpellScript
{
PrepareSpellScript(spell_egg_eventSpellScript);
PrepareSpellScript(spell_egg_eventSpellScript)
void HandleOnHit()
{
@@ -109,7 +109,7 @@ void SummonCroneIfReady(InstanceScript* instance, Creature* creature)
pCrone->AI()->AttackStart(creature->GetVictim());
}
}
};
}
class boss_dorothee : public CreatureScript
{
@@ -160,7 +160,7 @@ class spell_shadow_portal : public SpellScriptLoader
class spell_shadow_portal_SpellScript : public SpellScript
{
PrepareSpellScript(spell_shadow_portal_SpellScript);
PrepareSpellScript(spell_shadow_portal_SpellScript)
void HandleCast(SpellEffIndex /*effIndex*/)
{
@@ -274,7 +274,7 @@ class spell_shadow_portal_rooms : public SpellScriptLoader
class spell_shadow_portal_rooms_SpellScript : public SpellScript
{
PrepareSpellScript(spell_shadow_portal_rooms_SpellScript);
PrepareSpellScript(spell_shadow_portal_rooms_SpellScript)
void HandleSendEvent(SpellEffIndex effIndex)
{
@@ -208,7 +208,7 @@ class spell_shadowfang_keep_haunting_spirits : public SpellScriptLoader
class spell_shadowfang_keep_haunting_spirits_AuraScript : public AuraScript
{
PrepareAuraScript(spell_shadowfang_keep_haunting_spirits_AuraScript);
PrepareAuraScript(spell_shadowfang_keep_haunting_spirits_AuraScript)
void CalcPeriodic(AuraEffect const* /*aurEff*/, bool& isPeriodic, int32& amplitude)
{
@@ -959,7 +959,7 @@ class spell_hexlord_unstable_affliction : public SpellScriptLoader
class spell_hexlord_unstable_affliction_AuraScript : public AuraScript
{
PrepareAuraScript(spell_hexlord_unstable_affliction_AuraScript);
PrepareAuraScript(spell_hexlord_unstable_affliction_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -464,7 +464,7 @@ class spell_banging_the_gong : public SpellScriptLoader
class spell_banging_the_gong_SpellScript : public SpellScript
{
PrepareSpellScript(spell_banging_the_gong_SpellScript);
PrepareSpellScript(spell_banging_the_gong_SpellScript)
void Activate(SpellEffIndex index)
{
@@ -408,7 +408,7 @@ class spell_threatening_gaze : public SpellScriptLoader
class spell_threatening_gaze_AuraScript : public AuraScript
{
PrepareAuraScript(spell_threatening_gaze_AuraScript);
PrepareAuraScript(spell_threatening_gaze_AuraScript)
void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -44,7 +44,7 @@ class spell_razelikh_teleport_group : public SpellScriptLoader
class spell_razelikh_teleport_group_SpellScript : public SpellScript
{
PrepareSpellScript(spell_razelikh_teleport_group_SpellScript);
PrepareSpellScript(spell_razelikh_teleport_group_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -43,7 +43,7 @@ class spell_ex_5581 : public SpellScriptLoader
// initialize script, this macro does compile time check for type of the function - prevents possible issues
// if you have assigned wrong type of function to a hook you'll receive type conversion error during build
// this line is required, otherwise you'll get XXXHandlerFunction - identifier not found errors
PrepareSpellScript(spell_ex_5581SpellScript);
PrepareSpellScript(spell_ex_5581SpellScript)
std::string localVariable;
char* localVariable2;
@@ -205,7 +205,7 @@ class spell_ex_66244 : public SpellScriptLoader
class spell_ex_66244AuraScript : public AuraScript
{
PrepareAuraScript(spell_ex_66244AuraScript);
PrepareAuraScript(spell_ex_66244AuraScript)
// function called on server startup
// checks if script has data required for it to work
bool Validate(SpellInfo const* /*spellInfo*/) override
@@ -364,7 +364,7 @@ class spell_ex_absorb_aura : public SpellScriptLoader
class spell_ex_absorb_auraAuraScript : public AuraScript
{
PrepareAuraScript(spell_ex_absorb_auraAuraScript);
PrepareAuraScript(spell_ex_absorb_auraAuraScript)
void HandleOnEffectAbsorb(AuraEffect* /*aurEff*/, DamageInfo & dmgInfo, uint32 & absorbAmount)
{
@@ -400,7 +400,7 @@ class spell_ex_463 : public SpellScriptLoader
class spell_ex_463AuraScript : public AuraScript
{
PrepareAuraScript(spell_ex_463AuraScript);
PrepareAuraScript(spell_ex_463AuraScript)
bool CheckAreaTarget(Unit* target)
{
@@ -438,7 +438,7 @@ class spell_ex : public SpellScriptLoader
class spell_ex_SpellScript : public SpellScript
{
PrepareSpellScript(spell_ex_SpellScript);
PrepareSpellScript(spell_ex_SpellScript)
//bool Validate(SpellInfo const* spellEntry){return true;} override
//bool Load(){return true;}
@@ -181,7 +181,7 @@ class spell_mark_of_kazrogal : public SpellScriptLoader
class spell_mark_of_kazrogal_SpellScript : public SpellScript
{
PrepareSpellScript(spell_mark_of_kazrogal_SpellScript);
PrepareSpellScript(spell_mark_of_kazrogal_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -196,7 +196,7 @@ class spell_mark_of_kazrogal : public SpellScriptLoader
class spell_mark_of_kazrogal_AuraScript : public AuraScript
{
PrepareAuraScript(spell_mark_of_kazrogal_AuraScript);
PrepareAuraScript(spell_mark_of_kazrogal_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -257,7 +257,7 @@ class spell_snufflenose_command : public SpellScriptLoader
class spell_snufflenose_commandSpellScript : public SpellScript
{
PrepareSpellScript(spell_snufflenose_commandSpellScript);
PrepareSpellScript(spell_snufflenose_commandSpellScript)
bool Load() override
{
@@ -247,7 +247,7 @@ class spell_egg_explosion : public SpellScriptLoader
class spell_egg_explosion_SpellScript : public SpellScript
{
PrepareSpellScript(spell_egg_explosion_SpellScript);
PrepareSpellScript(spell_egg_explosion_SpellScript)
void HandleAfterCast()
{
@@ -215,7 +215,7 @@ class spell_skeram_arcane_explosion : public SpellScriptLoader
class spell_skeram_arcane_explosion_SpellScript : public SpellScript
{
PrepareSpellScript(spell_skeram_arcane_explosion_SpellScript);
PrepareSpellScript(spell_skeram_arcane_explosion_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -178,7 +178,7 @@ class spell_mark_of_frost : public SpellScriptLoader
class spell_mark_of_frost_SpellScript : public SpellScript
{
PrepareSpellScript(spell_mark_of_frost_SpellScript);
PrepareSpellScript(spell_mark_of_frost_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -610,7 +610,7 @@ class spell_ooze_zap : public SpellScriptLoader
class spell_ooze_zap_SpellScript : public SpellScript
{
PrepareSpellScript(spell_ooze_zap_SpellScript);
PrepareSpellScript(spell_ooze_zap_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -657,7 +657,7 @@ class spell_ooze_zap_channel_end : public SpellScriptLoader
class spell_ooze_zap_channel_end_SpellScript : public SpellScript
{
PrepareSpellScript(spell_ooze_zap_channel_end_SpellScript);
PrepareSpellScript(spell_ooze_zap_channel_end_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -693,7 +693,7 @@ class spell_energize_aoe : public SpellScriptLoader
class spell_energize_aoe_SpellScript : public SpellScript
{
PrepareSpellScript(spell_energize_aoe_SpellScript);
PrepareSpellScript(spell_energize_aoe_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
+1 -1
View File
@@ -215,7 +215,7 @@ class spell_gordunni_trap : public SpellScriptLoader
class spell_gordunni_trap_SpellScript : public SpellScript
{
PrepareSpellScript(spell_gordunni_trap_SpellScript);
PrepareSpellScript(spell_gordunni_trap_SpellScript)
void HandleDummy()
{
@@ -1006,7 +1006,7 @@ void npc_qiraj_war_spawn::npc_qiraj_war_spawnAI::JustDied(Unit* /*slayer*/)
if (npc_anachronos_quest_trigger::npc_anachronos_quest_triggerAI* triggerAI = CAST_AI(npc_anachronos_quest_trigger::npc_anachronos_quest_triggerAI, mob->AI()))
triggerAI->LiveCounter();
};
}
/*#####
# go_crystalline_tear
@@ -267,7 +267,7 @@ public:
class spell_elder_nadox_guardian_SpellScript : public SpellScript
{
PrepareSpellScript(spell_elder_nadox_guardian_SpellScript);
PrepareSpellScript(spell_elder_nadox_guardian_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -417,7 +417,7 @@ class spell_prince_taldaram_conjure_flame_sphere : public SpellScriptLoader
class spell_prince_taldaram_conjure_flame_sphere_SpellScript : public SpellScript
{
PrepareSpellScript(spell_prince_taldaram_conjure_flame_sphere_SpellScript);
PrepareSpellScript(spell_prince_taldaram_conjure_flame_sphere_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -460,7 +460,7 @@ class spell_prince_taldaram_flame_sphere_summon : public SpellScriptLoader
class spell_prince_taldaram_flame_sphere_summon_SpellScript : public SpellScript
{
PrepareSpellScript(spell_prince_taldaram_flame_sphere_summon_SpellScript);
PrepareSpellScript(spell_prince_taldaram_flame_sphere_summon_SpellScript)
void SetDest(SpellDestination& dest)
{
@@ -312,7 +312,7 @@ class spell_baltharus_enervating_brand_trigger : public SpellScriptLoader
class spell_baltharus_enervating_brand_trigger_SpellScript : public SpellScript
{
PrepareSpellScript(spell_baltharus_enervating_brand_trigger_SpellScript);
PrepareSpellScript(spell_baltharus_enervating_brand_trigger_SpellScript)
void CheckDistance()
{
@@ -1342,7 +1342,7 @@ class spell_halion_meteor_strike_marker : public SpellScriptLoader
class spell_halion_meteor_strike_marker_AuraScript : public AuraScript
{
PrepareAuraScript(spell_halion_meteor_strike_marker_AuraScript);
PrepareAuraScript(spell_halion_meteor_strike_marker_AuraScript)
void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -1373,7 +1373,7 @@ class spell_halion_combustion_consumption : public SpellScriptLoader
class spell_halion_combustion_consumption_AuraScript : public AuraScript
{
PrepareAuraScript(spell_halion_combustion_consumption_AuraScript);
PrepareAuraScript(spell_halion_combustion_consumption_AuraScript)
public:
spell_halion_combustion_consumption_AuraScript(uint32 spellID) : AuraScript(), _markSpell(spellID) { }
@@ -1431,7 +1431,7 @@ class spell_halion_marks : public SpellScriptLoader
class spell_halion_marks_AuraScript : public AuraScript
{
PrepareAuraScript(spell_halion_marks_AuraScript);
PrepareAuraScript(spell_halion_marks_AuraScript)
public:
spell_halion_marks_AuraScript(uint32 summonSpell, uint32 removeSpell) : AuraScript(),
@@ -1491,7 +1491,7 @@ class spell_halion_damage_aoe_summon : public SpellScriptLoader
class spell_halion_damage_aoe_summon_SpellScript : public SpellScript
{
PrepareSpellScript(spell_halion_damage_aoe_summon_SpellScript);
PrepareSpellScript(spell_halion_damage_aoe_summon_SpellScript)
void HandleSummon(SpellEffIndex effIndex)
{
@@ -1528,7 +1528,7 @@ class spell_halion_twilight_realm_handlers : public SpellScriptLoader
class spell_halion_twilight_realm_handlers_AuraScript : public AuraScript
{
PrepareAuraScript(spell_halion_twilight_realm_handlers_AuraScript);
PrepareAuraScript(spell_halion_twilight_realm_handlers_AuraScript)
public:
spell_halion_twilight_realm_handlers_AuraScript(uint32 beforeHitSpell, bool isApplyHandler) : AuraScript(),
@@ -1592,7 +1592,7 @@ class spell_halion_clear_debuffs : public SpellScriptLoader
class spell_halion_clear_debuffs_SpellScript : public SpellScript
{
PrepareSpellScript(spell_halion_clear_debuffs_SpellScript);
PrepareSpellScript(spell_halion_clear_debuffs_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -1643,7 +1643,7 @@ class spell_halion_twilight_cutter : public SpellScriptLoader
class spell_halion_twilight_cutter_SpellScript : public SpellScript
{
PrepareSpellScript(spell_halion_twilight_cutter_SpellScript);
PrepareSpellScript(spell_halion_twilight_cutter_SpellScript)
void RemoveNotBetween(std::list<WorldObject*>& unitList)
{
@@ -1680,7 +1680,7 @@ class spell_halion_twilight_phasing : public SpellScriptLoader
class spell_halion_twilight_phasing_SpellScript : public SpellScript
{
PrepareSpellScript(spell_halion_twilight_phasing_SpellScript);
PrepareSpellScript(spell_halion_twilight_phasing_SpellScript)
void Phase()
{
@@ -1709,7 +1709,7 @@ class spell_halion_summon_exit_portals : public SpellScriptLoader
class spell_halion_summon_exit_portals_SpellScript : public SpellScript
{
PrepareSpellScript(spell_halion_summon_exit_portals_SpellScript);
PrepareSpellScript(spell_halion_summon_exit_portals_SpellScript)
void SetDest0(SpellDestination& dest)
{
@@ -221,7 +221,7 @@ class spell_saviana_conflagration_init : public SpellScriptLoader
class spell_saviana_conflagration_init_SpellScript : public SpellScript
{
PrepareSpellScript(spell_saviana_conflagration_init_SpellScript);
PrepareSpellScript(spell_saviana_conflagration_init_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -258,7 +258,7 @@ class spell_saviana_conflagration_throwback : public SpellScriptLoader
class spell_saviana_conflagration_throwback_SpellScript : public SpellScript
{
PrepareSpellScript(spell_saviana_conflagration_throwback_SpellScript);
PrepareSpellScript(spell_saviana_conflagration_throwback_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -128,7 +128,7 @@ class spell_eadric_radiance : public SpellScriptLoader
spell_eadric_radiance() : SpellScriptLoader("spell_eadric_radiance") { }
class spell_eadric_radiance_SpellScript : public SpellScript
{
PrepareSpellScript(spell_eadric_radiance_SpellScript);
PrepareSpellScript(spell_eadric_radiance_SpellScript)
void FilterTargets(std::list<WorldObject*>& unitList)
{
@@ -627,7 +627,7 @@ class spell_paletress_summon_memory : public SpellScriptLoader
class spell_paletress_summon_memory_SpellScript : public SpellScript
{
PrepareSpellScript(spell_paletress_summon_memory_SpellScript);
PrepareSpellScript(spell_paletress_summon_memory_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -815,7 +815,7 @@ class spell_impale : public SpellScriptLoader
class spell_impale_SpellScript : public SpellScript
{
PrepareSpellScript(spell_impale_SpellScript);
PrepareSpellScript(spell_impale_SpellScript)
void HandleDamageCalc(SpellEffIndex /*effIndex*/)
{
@@ -846,7 +846,7 @@ class spell_anubarak_leeching_swarm : public SpellScriptLoader
class spell_anubarak_leeching_swarm_AuraScript : public AuraScript
{
PrepareAuraScript(spell_anubarak_leeching_swarm_AuraScript);
PrepareAuraScript(spell_anubarak_leeching_swarm_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -2232,7 +2232,7 @@ class spell_faction_champion_warl_unstable_affliction : public SpellScriptLoader
class spell_faction_champion_warl_unstable_affliction_AuraScript : public AuraScript
{
PrepareAuraScript(spell_faction_champion_warl_unstable_affliction_AuraScript);
PrepareAuraScript(spell_faction_champion_warl_unstable_affliction_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -2266,7 +2266,7 @@ class spell_faction_champion_death_grip : public SpellScriptLoader
class spell_faction_champion_death_grip_SpellScript : public SpellScript
{
PrepareSpellScript(spell_faction_champion_death_grip_SpellScript);
PrepareSpellScript(spell_faction_champion_death_grip_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -2304,7 +2304,7 @@ class spell_toc_bloodlust : public SpellScriptLoader
class spell_toc_bloodlust_SpellScript : public SpellScript
{
PrepareSpellScript(spell_toc_bloodlust_SpellScript);
PrepareSpellScript(spell_toc_bloodlust_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2345,7 +2345,7 @@ class spell_toc_heroism : public SpellScriptLoader
class spell_toc_heroism_SpellScript : public SpellScript
{
PrepareSpellScript(spell_toc_heroism_SpellScript);
PrepareSpellScript(spell_toc_heroism_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -495,7 +495,7 @@ class spell_mistress_kiss : public SpellScriptLoader
class spell_mistress_kiss_AuraScript : public AuraScript
{
PrepareAuraScript(spell_mistress_kiss_AuraScript);
PrepareAuraScript(spell_mistress_kiss_AuraScript)
bool Load() override
{
@@ -819,7 +819,7 @@ class spell_gormok_fire_bomb : public SpellScriptLoader
class spell_gormok_fire_bomb_SpellScript : public SpellScript
{
PrepareSpellScript(spell_gormok_fire_bomb_SpellScript);
PrepareSpellScript(spell_gormok_fire_bomb_SpellScript)
void TriggerFireBomb(SpellEffIndex /*effIndex*/)
{
@@ -731,7 +731,7 @@ class spell_valkyr_essences : public SpellScriptLoader
class spell_valkyr_essences_AuraScript : public AuraScript
{
PrepareAuraScript(spell_valkyr_essences_AuraScript);
PrepareAuraScript(spell_valkyr_essences_AuraScript)
uint32 spellId;
@@ -826,7 +826,7 @@ class spell_power_of_the_twins : public SpellScriptLoader
class spell_power_of_the_twins_AuraScript : public AuraScript
{
PrepareAuraScript(spell_power_of_the_twins_AuraScript);
PrepareAuraScript(spell_power_of_the_twins_AuraScript)
bool Load() override
{
@@ -354,7 +354,7 @@ class spell_novos_summon_minions : public SpellScriptLoader
class spell_novos_summon_minions_SpellScript : public SpellScript
{
PrepareSpellScript(spell_novos_summon_minions_SpellScript);
PrepareSpellScript(spell_novos_summon_minions_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -212,7 +212,7 @@ class spell_tharon_ja_clear_gift_of_tharon_ja : public SpellScriptLoader
class spell_tharon_ja_clear_gift_of_tharon_ja_SpellScript : public SpellScript
{
PrepareSpellScript(spell_tharon_ja_clear_gift_of_tharon_ja_SpellScript);
PrepareSpellScript(spell_tharon_ja_clear_gift_of_tharon_ja_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -219,7 +219,7 @@ class spell_trollgore_consume : public SpellScriptLoader
class spell_trollgore_consume_SpellScript : public SpellScript
{
PrepareSpellScript(spell_trollgore_consume_SpellScript);
PrepareSpellScript(spell_trollgore_consume_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -254,7 +254,7 @@ class spell_trollgore_corpse_explode : public SpellScriptLoader
class spell_trollgore_corpse_explode_AuraScript : public AuraScript
{
PrepareAuraScript(spell_trollgore_corpse_explode_AuraScript);
PrepareAuraScript(spell_trollgore_corpse_explode_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -297,7 +297,7 @@ class spell_trollgore_invader_taunt : public SpellScriptLoader
class spell_trollgore_invader_taunt_SpellScript : public SpellScript
{
PrepareSpellScript(spell_trollgore_invader_taunt_SpellScript);
PrepareSpellScript(spell_trollgore_invader_taunt_SpellScript)
bool Validate(SpellInfo const* spellInfo) override
{
@@ -239,7 +239,7 @@ class spell_bronjahm_magic_bane : public SpellScriptLoader
class spell_bronjahm_magic_bane_SpellScript : public SpellScript
{
PrepareSpellScript(spell_bronjahm_magic_bane_SpellScript);
PrepareSpellScript(spell_bronjahm_magic_bane_SpellScript)
void RecalculateDamage()
{
@@ -273,7 +273,7 @@ class spell_bronjahm_consume_soul : public SpellScriptLoader
class spell_bronjahm_consume_soul_SpellScript : public SpellScript
{
PrepareSpellScript(spell_bronjahm_consume_soul_SpellScript);
PrepareSpellScript(spell_bronjahm_consume_soul_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -300,7 +300,7 @@ class spell_bronjahm_soulstorm_channel : public SpellScriptLoader
class spell_bronjahm_soulstorm_channel_AuraScript : public AuraScript
{
PrepareAuraScript(spell_bronjahm_soulstorm_channel_AuraScript);
PrepareAuraScript(spell_bronjahm_soulstorm_channel_AuraScript)
void HandlePeriodicTick(AuraEffect const* /*aurEff*/)
{
@@ -328,7 +328,7 @@ class spell_bronjahm_soulstorm_visual : public SpellScriptLoader
class spell_bronjahm_soulstorm_visual_AuraScript : public AuraScript
{
PrepareAuraScript(spell_bronjahm_soulstorm_visual_AuraScript);
PrepareAuraScript(spell_bronjahm_soulstorm_visual_AuraScript)
void HandlePeriodicTick(AuraEffect const* aurEff)
{
@@ -374,7 +374,7 @@ class spell_bronjahm_soulstorm_targeting : public SpellScriptLoader
class spell_bronjahm_soulstorm_targeting_SpellScript : public SpellScript
{
PrepareSpellScript(spell_bronjahm_soulstorm_targeting_SpellScript);
PrepareSpellScript(spell_bronjahm_soulstorm_targeting_SpellScript)
void FilterTargetsInitial(std::list<WorldObject*>& targets)
{
@@ -357,7 +357,7 @@ class spell_devourer_of_souls_mirrored_soul : public SpellScriptLoader
class spell_devourer_of_souls_mirrored_soul_SpellScript : public SpellScript
{
PrepareSpellScript(spell_devourer_of_souls_mirrored_soul_SpellScript);
PrepareSpellScript(spell_devourer_of_souls_mirrored_soul_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -392,7 +392,7 @@ class spell_devourer_of_souls_mirrored_soul_proc : public SpellScriptLoader
class spell_devourer_of_souls_mirrored_soul_proc_AuraScript : public AuraScript
{
PrepareAuraScript(spell_devourer_of_souls_mirrored_soul_proc_AuraScript);
PrepareAuraScript(spell_devourer_of_souls_mirrored_soul_proc_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -439,7 +439,7 @@ class spell_devourer_of_souls_mirrored_soul_target_selector : public SpellScript
class spell_devourer_of_souls_mirrored_soul_target_selector_SpellScript : public SpellScript
{
PrepareSpellScript(spell_devourer_of_souls_mirrored_soul_target_selector_SpellScript);
PrepareSpellScript(spell_devourer_of_souls_mirrored_soul_target_selector_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -139,7 +139,7 @@ class spell_marwyn_shared_suffering : public SpellScriptLoader
class spell_marwyn_shared_suffering_AuraScript : public AuraScript
{
PrepareAuraScript(spell_marwyn_shared_suffering_AuraScript);
PrepareAuraScript(spell_marwyn_shared_suffering_AuraScript)
void HandleEffectRemove(AuraEffect const* aurEff, AuraEffectHandleModes /*mode*/)
{
@@ -246,7 +246,7 @@ class spell_garfrost_permafrost : public SpellScriptLoader
class spell_garfrost_permafrost_SpellScript : public SpellScript
{
PrepareSpellScript(spell_garfrost_permafrost_SpellScript);
PrepareSpellScript(spell_garfrost_permafrost_SpellScript)
bool Load() override
{
@@ -504,7 +504,7 @@ class spell_krick_explosive_barrage : public SpellScriptLoader
class spell_krick_explosive_barrage_AuraScript : public AuraScript
{
PrepareAuraScript(spell_krick_explosive_barrage_AuraScript);
PrepareAuraScript(spell_krick_explosive_barrage_AuraScript)
void HandlePeriodicTick(AuraEffect const* /*aurEff*/)
{
@@ -539,7 +539,7 @@ class spell_ick_explosive_barrage : public SpellScriptLoader
class spell_ick_explosive_barrage_AuraScript : public AuraScript
{
PrepareAuraScript(spell_ick_explosive_barrage_AuraScript);
PrepareAuraScript(spell_ick_explosive_barrage_AuraScript)
void HandleEffectApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -578,7 +578,7 @@ class spell_exploding_orb_hasty_grow : public SpellScriptLoader
class spell_exploding_orb_hasty_grow_AuraScript : public AuraScript
{
PrepareAuraScript(spell_exploding_orb_hasty_grow_AuraScript);
PrepareAuraScript(spell_exploding_orb_hasty_grow_AuraScript)
void OnStackChange(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -613,7 +613,7 @@ class spell_krick_pursuit : public SpellScriptLoader
class spell_krick_pursuit_SpellScript : public SpellScript
{
PrepareSpellScript(spell_krick_pursuit_SpellScript);
PrepareSpellScript(spell_krick_pursuit_SpellScript)
void HandleScriptEffect(SpellEffIndex /*effIndex*/)
{
@@ -639,7 +639,7 @@ class spell_krick_pursuit : public SpellScriptLoader
class spell_krick_pursuit_AuraScript : public AuraScript
{
PrepareAuraScript(spell_krick_pursuit_AuraScript);
PrepareAuraScript(spell_krick_pursuit_AuraScript)
void HandleExtraEffect(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -672,7 +672,7 @@ class spell_krick_pursuit_confusion : public SpellScriptLoader
class spell_krick_pursuit_confusion_AuraScript : public AuraScript
{
PrepareAuraScript(spell_krick_pursuit_confusion_AuraScript);
PrepareAuraScript(spell_krick_pursuit_confusion_AuraScript)
void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -413,7 +413,7 @@ class spell_tyrannus_overlord_brand : public SpellScriptLoader
class spell_tyrannus_overlord_brand_AuraScript : public AuraScript
{
PrepareAuraScript(spell_tyrannus_overlord_brand_AuraScript);
PrepareAuraScript(spell_tyrannus_overlord_brand_AuraScript)
bool Load() override
{
@@ -465,7 +465,7 @@ class spell_tyrannus_mark_of_rimefang : public SpellScriptLoader
class spell_tyrannus_mark_of_rimefang_AuraScript : public AuraScript
{
PrepareAuraScript(spell_tyrannus_mark_of_rimefang_AuraScript);
PrepareAuraScript(spell_tyrannus_mark_of_rimefang_AuraScript)
void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -212,7 +212,7 @@ class spell_trash_npc_glacial_strike : public SpellScriptLoader
class spell_trash_npc_glacial_strike_AuraScript : public AuraScript
{
PrepareAuraScript(spell_trash_npc_glacial_strike_AuraScript);
PrepareAuraScript(spell_trash_npc_glacial_strike_AuraScript)
void PeriodicTick(AuraEffect const* /*aurEff*/)
{
@@ -1373,7 +1373,7 @@ class spell_taldaram_glittering_sparks : public SpellScriptLoader
class spell_taldaram_glittering_sparks_SpellScript : public SpellScript
{
PrepareSpellScript(spell_taldaram_glittering_sparks_SpellScript);
PrepareSpellScript(spell_taldaram_glittering_sparks_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -1400,7 +1400,7 @@ class spell_taldaram_summon_flame_ball : public SpellScriptLoader
class spell_taldaram_summon_flame_ball_SpellScript : public SpellScript
{
PrepareSpellScript(spell_taldaram_summon_flame_ball_SpellScript);
PrepareSpellScript(spell_taldaram_summon_flame_ball_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -1427,7 +1427,7 @@ class spell_taldaram_flame_ball_visual : public SpellScriptLoader
class spell_flame_ball_visual_AuraScript : public AuraScript
{
PrepareAuraScript(spell_flame_ball_visual_AuraScript);
PrepareAuraScript(spell_flame_ball_visual_AuraScript)
bool Load() override
{
@@ -1471,7 +1471,7 @@ class spell_taldaram_ball_of_inferno_flame : public SpellScriptLoader
class spell_taldaram_ball_of_inferno_flame_SpellScript : public SpellScript
{
PrepareSpellScript(spell_taldaram_ball_of_inferno_flame_SpellScript);
PrepareSpellScript(spell_taldaram_ball_of_inferno_flame_SpellScript)
void ModAuraStack()
{
@@ -1499,7 +1499,7 @@ class spell_valanar_kinetic_bomb : public SpellScriptLoader
class spell_valanar_kinetic_bomb_SpellScript : public SpellScript
{
PrepareSpellScript(spell_valanar_kinetic_bomb_SpellScript);
PrepareSpellScript(spell_valanar_kinetic_bomb_SpellScript)
void SetDest(SpellDestination& dest)
{
@@ -1515,7 +1515,7 @@ class spell_valanar_kinetic_bomb : public SpellScriptLoader
class spell_valanar_kinetic_bomb_AuraScript : public AuraScript
{
PrepareAuraScript(spell_valanar_kinetic_bomb_AuraScript);
PrepareAuraScript(spell_valanar_kinetic_bomb_AuraScript)
void HandleDummyTick(AuraEffect const* /*aurEff*/)
{
@@ -1556,7 +1556,7 @@ class spell_valanar_kinetic_bomb_knockback : public SpellScriptLoader
class spell_valanar_kinetic_bomb_knockback_SpellScript : public SpellScript
{
PrepareSpellScript(spell_valanar_kinetic_bomb_knockback_SpellScript);
PrepareSpellScript(spell_valanar_kinetic_bomb_knockback_SpellScript)
void KnockIntoAir()
{
@@ -1583,7 +1583,7 @@ class spell_valanar_kinetic_bomb_absorb : public SpellScriptLoader
class spell_valanar_kinetic_bomb_absorb_AuraScript : public AuraScript
{
PrepareAuraScript(spell_valanar_kinetic_bomb_absorb_AuraScript);
PrepareAuraScript(spell_valanar_kinetic_bomb_absorb_AuraScript)
void OnAbsorb(AuraEffect* aurEff, DamageInfo& dmgInfo, uint32& absorbAmount)
{
@@ -1611,7 +1611,7 @@ class spell_blood_council_shadow_prison : public SpellScriptLoader
class spell_blood_council_shadow_prison_AuraScript : public AuraScript
{
PrepareAuraScript(spell_blood_council_shadow_prison_AuraScript);
PrepareAuraScript(spell_blood_council_shadow_prison_AuraScript)
void HandleDummyTick(AuraEffect const* aurEff)
{
@@ -1638,7 +1638,7 @@ class spell_blood_council_shadow_prison_damage : public SpellScriptLoader
class spell_blood_council_shadow_prison_SpellScript : public SpellScript
{
PrepareSpellScript(spell_blood_council_shadow_prison_SpellScript);
PrepareSpellScript(spell_blood_council_shadow_prison_SpellScript)
void AddExtraDamage()
{
@@ -518,7 +518,7 @@ class spell_blood_queen_vampiric_bite : public SpellScriptLoader
class spell_blood_queen_vampiric_bite_SpellScript : public SpellScript
{
PrepareSpellScript(spell_blood_queen_vampiric_bite_SpellScript);
PrepareSpellScript(spell_blood_queen_vampiric_bite_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -595,7 +595,7 @@ class spell_blood_queen_frenzied_bloodthirst : public SpellScriptLoader
class spell_blood_queen_frenzied_bloodthirst_AuraScript : public AuraScript
{
PrepareAuraScript(spell_blood_queen_frenzied_bloodthirst_AuraScript);
PrepareAuraScript(spell_blood_queen_frenzied_bloodthirst_AuraScript)
void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -654,7 +654,7 @@ class spell_blood_queen_bloodbolt : public SpellScriptLoader
class spell_blood_queen_bloodbolt_SpellScript : public SpellScript
{
PrepareSpellScript(spell_blood_queen_bloodbolt_SpellScript);
PrepareSpellScript(spell_blood_queen_bloodbolt_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -705,7 +705,7 @@ class spell_blood_queen_essence_of_the_blood_queen : public SpellScriptLoader
class spell_blood_queen_essence_of_the_blood_queen_AuraScript : public AuraScript
{
PrepareAuraScript(spell_blood_queen_essence_of_the_blood_queen_AuraScript);
PrepareAuraScript(spell_blood_queen_essence_of_the_blood_queen_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -740,7 +740,7 @@ class spell_blood_queen_pact_of_the_darkfallen : public SpellScriptLoader
class spell_blood_queen_pact_of_the_darkfallen_SpellScript : public SpellScript
{
PrepareSpellScript(spell_blood_queen_pact_of_the_darkfallen_SpellScript);
PrepareSpellScript(spell_blood_queen_pact_of_the_darkfallen_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -788,7 +788,7 @@ class spell_blood_queen_pact_of_the_darkfallen_dmg : public SpellScriptLoader
class spell_blood_queen_pact_of_the_darkfallen_dmg_AuraScript : public AuraScript
{
PrepareAuraScript(spell_blood_queen_pact_of_the_darkfallen_dmg_AuraScript);
PrepareAuraScript(spell_blood_queen_pact_of_the_darkfallen_dmg_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -826,7 +826,7 @@ class spell_blood_queen_pact_of_the_darkfallen_dmg_target : public SpellScriptLo
class spell_blood_queen_pact_of_the_darkfallen_dmg_SpellScript : public SpellScript
{
PrepareSpellScript(spell_blood_queen_pact_of_the_darkfallen_dmg_SpellScript);
PrepareSpellScript(spell_blood_queen_pact_of_the_darkfallen_dmg_SpellScript)
void FilterTargets(std::list<WorldObject*>& unitList)
{
@@ -1022,7 +1022,7 @@ class spell_deathbringer_blood_link : public SpellScriptLoader
class spell_deathbringer_blood_link_SpellScript : public SpellScript
{
PrepareSpellScript(spell_deathbringer_blood_link_SpellScript);
PrepareSpellScript(spell_deathbringer_blood_link_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -1058,7 +1058,7 @@ class spell_deathbringer_blood_link_aura : public SpellScriptLoader
class spell_deathbringer_blood_link_AuraScript : public AuraScript
{
PrepareAuraScript(spell_deathbringer_blood_link_AuraScript);
PrepareAuraScript(spell_deathbringer_blood_link_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -1094,7 +1094,7 @@ class spell_deathbringer_blood_power : public SpellScriptLoader
class spell_deathbringer_blood_power_SpellScript : public SpellScript
{
PrepareSpellScript(spell_deathbringer_blood_power_SpellScript);
PrepareSpellScript(spell_deathbringer_blood_power_SpellScript)
void ModAuraValue()
{
@@ -1110,7 +1110,7 @@ class spell_deathbringer_blood_power : public SpellScriptLoader
class spell_deathbringer_blood_power_AuraScript : public AuraScript
{
PrepareAuraScript(spell_deathbringer_blood_power_AuraScript);
PrepareAuraScript(spell_deathbringer_blood_power_AuraScript)
void RecalculateHook(AuraEffect const* /*aurEffect*/, int32& amount, bool& canBeRecalculated)
{
@@ -1143,7 +1143,7 @@ class spell_deathbringer_rune_of_blood : public SpellScriptLoader
class spell_deathbringer_rune_of_blood_SpellScript : public SpellScript
{
PrepareSpellScript(spell_deathbringer_rune_of_blood_SpellScript);
PrepareSpellScript(spell_deathbringer_rune_of_blood_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -1178,7 +1178,7 @@ class spell_deathbringer_blood_nova : public SpellScriptLoader
class spell_deathbringer_blood_nova_SpellScript : public SpellScript
{
PrepareSpellScript(spell_deathbringer_blood_nova_SpellScript);
PrepareSpellScript(spell_deathbringer_blood_nova_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -1213,7 +1213,7 @@ class spell_deathbringer_blood_nova_targeting : public SpellScriptLoader
class spell_deathbringer_blood_nova_targeting_SpellScript : public SpellScript
{
PrepareSpellScript(spell_deathbringer_blood_nova_targeting_SpellScript);
PrepareSpellScript(spell_deathbringer_blood_nova_targeting_SpellScript)
bool Load() override
{
@@ -1292,7 +1292,7 @@ class spell_deathbringer_boiling_blood : public SpellScriptLoader
class spell_deathbringer_boiling_blood_SpellScript : public SpellScript
{
PrepareSpellScript(spell_deathbringer_boiling_blood_SpellScript);
PrepareSpellScript(spell_deathbringer_boiling_blood_SpellScript)
bool Load() override
{
@@ -1329,7 +1329,7 @@ class spell_deathbringer_remove_marks : public SpellScriptLoader
class spell_deathbringer_remove_marks_SpellScript : public SpellScript
{
PrepareSpellScript(spell_deathbringer_remove_marks_SpellScript);
PrepareSpellScript(spell_deathbringer_remove_marks_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -368,7 +368,7 @@ class spell_festergut_pungent_blight : public SpellScriptLoader
class spell_festergut_pungent_blight_SpellScript : public SpellScript
{
PrepareSpellScript(spell_festergut_pungent_blight_SpellScript);
PrepareSpellScript(spell_festergut_pungent_blight_SpellScript)
bool Load() override
{
@@ -404,7 +404,7 @@ class spell_festergut_gastric_bloat : public SpellScriptLoader
class spell_festergut_gastric_bloat_SpellScript : public SpellScript
{
PrepareSpellScript(spell_festergut_gastric_bloat_SpellScript);
PrepareSpellScript(spell_festergut_gastric_bloat_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -442,7 +442,7 @@ class spell_festergut_blighted_spores : public SpellScriptLoader
class spell_festergut_blighted_spores_AuraScript : public AuraScript
{
PrepareAuraScript(spell_festergut_blighted_spores_AuraScript);
PrepareAuraScript(spell_festergut_blighted_spores_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -1824,7 +1824,7 @@ class spell_igb_rocket_pack : public SpellScriptLoader
class spell_igb_rocket_pack_AuraScript : public AuraScript
{
PrepareAuraScript(spell_igb_rocket_pack_AuraScript);
PrepareAuraScript(spell_igb_rocket_pack_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -1868,7 +1868,7 @@ class spell_igb_rocket_pack_useable : public SpellScriptLoader
class spell_igb_rocket_pack_useable_AuraScript : public AuraScript
{
PrepareAuraScript(spell_igb_rocket_pack_useable_AuraScript);
PrepareAuraScript(spell_igb_rocket_pack_useable_AuraScript)
bool Load()
{
@@ -1917,7 +1917,7 @@ class spell_igb_on_gunship_deck : public SpellScriptLoader
class spell_igb_on_gunship_deck_AuraScript : public AuraScript
{
PrepareAuraScript(spell_igb_on_gunship_deck_AuraScript);
PrepareAuraScript(spell_igb_on_gunship_deck_AuraScript)
bool Load() override
{
@@ -1962,7 +1962,7 @@ class spell_igb_periodic_trigger_with_power_cost : public SpellScriptLoader
class spell_igb_periodic_trigger_with_power_cost_AuraScript : public AuraScript
{
PrepareAuraScript(spell_igb_periodic_trigger_with_power_cost_AuraScript);
PrepareAuraScript(spell_igb_periodic_trigger_with_power_cost_AuraScript)
void HandlePeriodicTick(AuraEffect const* /*aurEff*/)
{
@@ -1989,7 +1989,7 @@ class spell_igb_cannon_blast : public SpellScriptLoader
class spell_igb_cannon_blast_SpellScript : public SpellScript
{
PrepareSpellScript(spell_igb_cannon_blast_SpellScript);
PrepareSpellScript(spell_igb_cannon_blast_SpellScript)
bool Load()
{
@@ -2026,7 +2026,7 @@ class spell_igb_incinerating_blast : public SpellScriptLoader
class spell_igb_incinerating_blast_SpellScript : public SpellScript
{
PrepareSpellScript(spell_igb_incinerating_blast_SpellScript);
PrepareSpellScript(spell_igb_incinerating_blast_SpellScript)
void StoreEnergy()
{
@@ -2066,7 +2066,7 @@ class spell_igb_overheat : public SpellScriptLoader
class spell_igb_overheat_AuraScript : public AuraScript
{
PrepareAuraScript(spell_igb_overheat_AuraScript);
PrepareAuraScript(spell_igb_overheat_AuraScript)
bool Load() override
{
@@ -2122,7 +2122,7 @@ class spell_igb_below_zero : public SpellScriptLoader
class spell_igb_below_zero_SpellScript : public SpellScript
{
PrepareSpellScript(spell_igb_below_zero_SpellScript);
PrepareSpellScript(spell_igb_below_zero_SpellScript)
void RemovePassengers()
{
@@ -2148,7 +2148,7 @@ class spell_igb_teleport_to_enemy_ship : public SpellScriptLoader
class spell_igb_teleport_to_enemy_ship_SpellScript : public SpellScript
{
PrepareSpellScript(spell_igb_teleport_to_enemy_ship_SpellScript);
PrepareSpellScript(spell_igb_teleport_to_enemy_ship_SpellScript)
void RelocateTransportOffset(SpellEffIndex /*effIndex*/)
{
@@ -2182,7 +2182,7 @@ class spell_igb_burning_pitch_selector : public SpellScriptLoader
class spell_igb_burning_pitch_selector_SpellScript : public SpellScript
{
PrepareSpellScript(spell_igb_burning_pitch_selector_SpellScript);
PrepareSpellScript(spell_igb_burning_pitch_selector_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -2231,7 +2231,7 @@ class spell_igb_burning_pitch : public SpellScriptLoader
class spell_igb_burning_pitch_SpellScript : public SpellScript
{
PrepareSpellScript(spell_igb_burning_pitch_SpellScript);
PrepareSpellScript(spell_igb_burning_pitch_SpellScript)
void HandleDummy(SpellEffIndex effIndex)
{
@@ -2259,7 +2259,7 @@ class spell_igb_rocket_artillery : public SpellScriptLoader
class spell_igb_rocket_artillery_SpellScript : public SpellScript
{
PrepareSpellScript(spell_igb_rocket_artillery_SpellScript);
PrepareSpellScript(spell_igb_rocket_artillery_SpellScript)
void SelectRandomTarget(std::list<WorldObject*>& targets)
{
@@ -2297,7 +2297,7 @@ class spell_igb_rocket_artillery_explosion : public SpellScriptLoader
class spell_igb_rocket_artillery_explosion_SpellScript : public SpellScript
{
PrepareSpellScript(spell_igb_rocket_artillery_explosion_SpellScript);
PrepareSpellScript(spell_igb_rocket_artillery_explosion_SpellScript)
void DamageGunship(SpellEffIndex /*effIndex*/)
{
@@ -2324,7 +2324,7 @@ class spell_igb_gunship_fall_teleport : public SpellScriptLoader
class spell_igb_gunship_fall_teleport_SpellScript : public SpellScript
{
PrepareSpellScript(spell_igb_gunship_fall_teleport_SpellScript);
PrepareSpellScript(spell_igb_gunship_fall_teleport_SpellScript)
bool Load()
{
@@ -2365,7 +2365,7 @@ class spell_igb_check_for_players : public SpellScriptLoader
class spell_igb_check_for_players_SpellScript : public SpellScript
{
PrepareSpellScript(spell_igb_check_for_players_SpellScript);
PrepareSpellScript(spell_igb_check_for_players_SpellScript)
bool Load() override
{
@@ -2413,7 +2413,7 @@ class spell_igb_teleport_players_on_victory : public SpellScriptLoader
class spell_igb_teleport_players_on_victory_SpellScript : public SpellScript
{
PrepareSpellScript(spell_igb_teleport_players_on_victory_SpellScript);
PrepareSpellScript(spell_igb_teleport_players_on_victory_SpellScript)
bool Load() override
{
@@ -956,7 +956,7 @@ class spell_deathwhisper_mana_barrier : public SpellScriptLoader
class spell_deathwhisper_mana_barrier_AuraScript : public AuraScript
{
PrepareAuraScript(spell_deathwhisper_mana_barrier_AuraScript);
PrepareAuraScript(spell_deathwhisper_mana_barrier_AuraScript)
void HandlePeriodicTick(AuraEffect const* /*aurEff*/)
{
@@ -988,7 +988,7 @@ class spell_cultist_dark_martyrdom : public SpellScriptLoader
class spell_cultist_dark_martyrdom_SpellScript : public SpellScript
{
PrepareSpellScript(spell_cultist_dark_martyrdom_SpellScript);
PrepareSpellScript(spell_cultist_dark_martyrdom_SpellScript)
void HandleEffect(SpellEffIndex /*effIndex*/)
{
@@ -499,7 +499,7 @@ class spell_marrowgar_coldflame : public SpellScriptLoader
class spell_marrowgar_coldflame_SpellScript : public SpellScript
{
PrepareSpellScript(spell_marrowgar_coldflame_SpellScript);
PrepareSpellScript(spell_marrowgar_coldflame_SpellScript)
void SelectTarget(std::list<WorldObject*>& targets)
{
@@ -541,7 +541,7 @@ class spell_marrowgar_coldflame_bonestorm : public SpellScriptLoader
class spell_marrowgar_coldflame_SpellScript : public SpellScript
{
PrepareSpellScript(spell_marrowgar_coldflame_SpellScript);
PrepareSpellScript(spell_marrowgar_coldflame_SpellScript)
void HandleScriptEffect(SpellEffIndex effIndex)
{
@@ -569,7 +569,7 @@ class spell_marrowgar_coldflame_damage : public SpellScriptLoader
class spell_marrowgar_coldflame_damage_AuraScript : public AuraScript
{
PrepareAuraScript(spell_marrowgar_coldflame_damage_AuraScript);
PrepareAuraScript(spell_marrowgar_coldflame_damage_AuraScript)
bool CanBeAppliedOn(Unit* target)
{
@@ -605,7 +605,7 @@ class spell_marrowgar_bone_spike_graveyard : public SpellScriptLoader
class spell_marrowgar_bone_spike_graveyard_SpellScript : public SpellScript
{
PrepareSpellScript(spell_marrowgar_bone_spike_graveyard_SpellScript);
PrepareSpellScript(spell_marrowgar_bone_spike_graveyard_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -670,7 +670,7 @@ class spell_marrowgar_bone_storm : public SpellScriptLoader
class spell_marrowgar_bone_storm_SpellScript : public SpellScript
{
PrepareSpellScript(spell_marrowgar_bone_storm_SpellScript);
PrepareSpellScript(spell_marrowgar_bone_storm_SpellScript)
void RecalculateDamage()
{
@@ -696,7 +696,7 @@ class spell_marrowgar_bone_slice : public SpellScriptLoader
class spell_marrowgar_bone_slice_SpellScript : public SpellScript
{
PrepareSpellScript(spell_marrowgar_bone_slice_SpellScript);
PrepareSpellScript(spell_marrowgar_bone_slice_SpellScript)
bool Load() override
{
@@ -823,7 +823,7 @@ class spell_putricide_gaseous_bloat : public SpellScriptLoader
class spell_putricide_gaseous_bloat_AuraScript : public AuraScript
{
PrepareAuraScript(spell_putricide_gaseous_bloat_AuraScript);
PrepareAuraScript(spell_putricide_gaseous_bloat_AuraScript)
void HandleExtraEffect(AuraEffect const* /*aurEff*/)
{
@@ -855,7 +855,7 @@ class spell_putricide_ooze_channel : public SpellScriptLoader
class spell_putricide_ooze_channel_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_ooze_channel_SpellScript);
PrepareSpellScript(spell_putricide_ooze_channel_SpellScript)
bool Validate(SpellInfo const* spell) override
{
@@ -943,7 +943,7 @@ class spell_putricide_slime_puddle : public SpellScriptLoader
class spell_putricide_slime_puddle_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_slime_puddle_SpellScript);
PrepareSpellScript(spell_putricide_slime_puddle_SpellScript)
void ScaleRange(std::list<WorldObject*>& targets)
{
@@ -971,7 +971,7 @@ class spell_putricide_slime_puddle_aura : public SpellScriptLoader
class spell_putricide_slime_puddle_aura_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_slime_puddle_aura_SpellScript);
PrepareSpellScript(spell_putricide_slime_puddle_aura_SpellScript)
void ReplaceAura()
{
@@ -998,7 +998,7 @@ class spell_putricide_unstable_experiment : public SpellScriptLoader
class spell_putricide_unstable_experiment_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_unstable_experiment_SpellScript);
PrepareSpellScript(spell_putricide_unstable_experiment_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -1046,7 +1046,7 @@ class spell_putricide_ooze_eruption_searcher : public SpellScriptLoader
class spell_putricide_ooze_eruption_searcher_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_ooze_eruption_searcher_SpellScript);
PrepareSpellScript(spell_putricide_ooze_eruption_searcher_SpellScript)
void HandleDummy(SpellEffIndex /*effIndex*/)
{
@@ -1077,7 +1077,7 @@ class spell_putricide_choking_gas_bomb : public SpellScriptLoader
class spell_putricide_choking_gas_bomb_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_choking_gas_bomb_SpellScript);
PrepareSpellScript(spell_putricide_choking_gas_bomb_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -1111,7 +1111,7 @@ class spell_putricide_unbound_plague : public SpellScriptLoader
class spell_putricide_unbound_plague_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_unbound_plague_SpellScript);
PrepareSpellScript(spell_putricide_unbound_plague_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -1190,7 +1190,7 @@ class spell_putricide_eat_ooze : public SpellScriptLoader
class spell_putricide_eat_ooze_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_eat_ooze_SpellScript);
PrepareSpellScript(spell_putricide_eat_ooze_SpellScript)
void SelectTarget(std::list<WorldObject*>& targets)
{
@@ -1242,7 +1242,7 @@ class spell_putricide_mutated_plague : public SpellScriptLoader
class spell_putricide_mutated_plague_AuraScript : public AuraScript
{
PrepareAuraScript(spell_putricide_mutated_plague_AuraScript);
PrepareAuraScript(spell_putricide_mutated_plague_AuraScript)
void HandleTriggerSpell(AuraEffect const* aurEff)
{
@@ -1292,7 +1292,7 @@ class spell_putricide_mutation_init : public SpellScriptLoader
class spell_putricide_mutation_init_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_mutation_init_SpellScript);
PrepareSpellScript(spell_putricide_mutation_init_SpellScript)
SpellCastResult CheckRequirementInternal(SpellCustomErrors& extendedError)
{
@@ -1346,7 +1346,7 @@ class spell_putricide_mutation_init : public SpellScriptLoader
class spell_putricide_mutation_init_AuraScript : public AuraScript
{
PrepareAuraScript(spell_putricide_mutation_init_AuraScript);
PrepareAuraScript(spell_putricide_mutation_init_AuraScript)
void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -1381,7 +1381,7 @@ class spell_putricide_mutated_transformation_dismiss : public SpellScriptLoader
class spell_putricide_mutated_transformation_dismiss_AuraScript : public AuraScript
{
PrepareAuraScript(spell_putricide_mutated_transformation_dismiss_AuraScript);
PrepareAuraScript(spell_putricide_mutated_transformation_dismiss_AuraScript)
void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -1408,7 +1408,7 @@ class spell_putricide_mutated_transformation : public SpellScriptLoader
class spell_putricide_mutated_transformation_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_mutated_transformation_SpellScript);
PrepareSpellScript(spell_putricide_mutated_transformation_SpellScript)
void HandleSummon(SpellEffIndex effIndex)
{
@@ -1469,7 +1469,7 @@ class spell_putricide_mutated_transformation_dmg : public SpellScriptLoader
class spell_putricide_mutated_transformation_dmg_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_mutated_transformation_dmg_SpellScript);
PrepareSpellScript(spell_putricide_mutated_transformation_dmg_SpellScript)
void FilterTargetsInitial(std::list<WorldObject*>& targets)
{
@@ -1496,7 +1496,7 @@ class spell_putricide_regurgitated_ooze : public SpellScriptLoader
class spell_putricide_regurgitated_ooze_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_regurgitated_ooze_SpellScript);
PrepareSpellScript(spell_putricide_regurgitated_ooze_SpellScript)
// the only purpose of this hook is to fail the achievement
void ExtraEffect(SpellEffIndex /*effIndex*/)
@@ -1525,7 +1525,7 @@ class spell_putricide_clear_aura_effect_value : public SpellScriptLoader
class spell_putricide_clear_aura_effect_value_SpellScript : public SpellScript
{
PrepareSpellScript(spell_putricide_clear_aura_effect_value_SpellScript);
PrepareSpellScript(spell_putricide_clear_aura_effect_value_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -1554,7 +1554,7 @@ class spell_stinky_precious_decimate : public SpellScriptLoader
class spell_stinky_precious_decimate_SpellScript : public SpellScript
{
PrepareSpellScript(spell_stinky_precious_decimate_SpellScript);
PrepareSpellScript(spell_stinky_precious_decimate_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -455,7 +455,7 @@ class spell_rotface_ooze_flood : public SpellScriptLoader
class spell_rotface_ooze_flood_SpellScript : public SpellScript
{
PrepareSpellScript(spell_rotface_ooze_flood_SpellScript);
PrepareSpellScript(spell_rotface_ooze_flood_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -505,7 +505,7 @@ class spell_rotface_mutated_infection : public SpellScriptLoader
class spell_rotface_mutated_infection_SpellScript : public SpellScript
{
PrepareSpellScript(spell_rotface_mutated_infection_SpellScript);
PrepareSpellScript(spell_rotface_mutated_infection_SpellScript)
bool Load() override
{
@@ -565,7 +565,7 @@ class spell_rotface_little_ooze_combine : public SpellScriptLoader
class spell_rotface_little_ooze_combine_SpellScript : public SpellScript
{
PrepareSpellScript(spell_rotface_little_ooze_combine_SpellScript);
PrepareSpellScript(spell_rotface_little_ooze_combine_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -597,7 +597,7 @@ class spell_rotface_large_ooze_combine : public SpellScriptLoader
class spell_rotface_large_ooze_combine_SpellScript : public SpellScript
{
PrepareSpellScript(spell_rotface_large_ooze_combine_SpellScript);
PrepareSpellScript(spell_rotface_large_ooze_combine_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -639,7 +639,7 @@ class spell_rotface_large_ooze_buff_combine : public SpellScriptLoader
class spell_rotface_large_ooze_buff_combine_SpellScript : public SpellScript
{
PrepareSpellScript(spell_rotface_large_ooze_buff_combine_SpellScript);
PrepareSpellScript(spell_rotface_large_ooze_buff_combine_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -694,7 +694,7 @@ class spell_rotface_unstable_ooze_explosion_init : public SpellScriptLoader
class spell_rotface_unstable_ooze_explosion_init_SpellScript : public SpellScript
{
PrepareSpellScript(spell_rotface_unstable_ooze_explosion_init_SpellScript);
PrepareSpellScript(spell_rotface_unstable_ooze_explosion_init_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -734,7 +734,7 @@ class spell_rotface_unstable_ooze_explosion : public SpellScriptLoader
class spell_rotface_unstable_ooze_explosion_SpellScript : public SpellScript
{
PrepareSpellScript(spell_rotface_unstable_ooze_explosion_SpellScript);
PrepareSpellScript(spell_rotface_unstable_ooze_explosion_SpellScript)
void CheckTarget(SpellEffIndex effIndex)
{
@@ -771,7 +771,7 @@ class spell_rotface_unstable_ooze_explosion_suicide : public SpellScriptLoader
class spell_rotface_unstable_ooze_explosion_suicide_AuraScript : public AuraScript
{
PrepareAuraScript(spell_rotface_unstable_ooze_explosion_suicide_AuraScript);
PrepareAuraScript(spell_rotface_unstable_ooze_explosion_suicide_AuraScript)
void DespawnSelf(AuraEffect const* /*aurEff*/)
{
@@ -804,7 +804,7 @@ class spell_rotface_vile_gas_trigger : public SpellScriptLoader
class spell_rotface_vile_gas_trigger_SpellScript : public SpellScript
{
PrepareSpellScript(spell_rotface_vile_gas_trigger_SpellScript);
PrepareSpellScript(spell_rotface_vile_gas_trigger_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -1023,7 +1023,7 @@ class spell_sindragosa_s_fury : public SpellScriptLoader
class spell_sindragosa_s_fury_SpellScript : public SpellScript
{
PrepareSpellScript(spell_sindragosa_s_fury_SpellScript);
PrepareSpellScript(spell_sindragosa_s_fury_SpellScript)
bool Load() override
{
@@ -1110,7 +1110,7 @@ class spell_sindragosa_unchained_magic : public SpellScriptLoader
class spell_sindragosa_unchained_magic_SpellScript : public SpellScript
{
PrepareSpellScript(spell_sindragosa_unchained_magic_SpellScript);
PrepareSpellScript(spell_sindragosa_unchained_magic_SpellScript)
void FilterTargets(std::list<WorldObject*>& unitList)
{
@@ -1139,7 +1139,7 @@ class spell_sindragosa_frost_breath : public SpellScriptLoader
class spell_sindragosa_frost_breath_SpellScript : public SpellScript
{
PrepareSpellScript(spell_sindragosa_frost_breath_SpellScript);
PrepareSpellScript(spell_sindragosa_frost_breath_SpellScript)
void HandleInfusion()
{
@@ -1184,7 +1184,7 @@ class spell_sindragosa_instability : public SpellScriptLoader
class spell_sindragosa_instability_AuraScript : public AuraScript
{
PrepareAuraScript(spell_sindragosa_instability_AuraScript);
PrepareAuraScript(spell_sindragosa_instability_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -1218,7 +1218,7 @@ class spell_sindragosa_frost_beacon : public SpellScriptLoader
class spell_sindragosa_frost_beacon_AuraScript : public AuraScript
{
PrepareAuraScript(spell_sindragosa_frost_beacon_AuraScript);
PrepareAuraScript(spell_sindragosa_frost_beacon_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -1253,7 +1253,7 @@ class spell_sindragosa_ice_tomb : public SpellScriptLoader
class spell_sindragosa_ice_tomb_SpellScript : public SpellScript
{
PrepareSpellScript(spell_sindragosa_ice_tomb_SpellScript);
PrepareSpellScript(spell_sindragosa_ice_tomb_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -1286,7 +1286,7 @@ class spell_sindragosa_ice_tomb : public SpellScriptLoader
class spell_sindragosa_ice_tomb_AuraScript : public AuraScript
{
PrepareAuraScript(spell_sindragosa_ice_tomb_AuraScript);
PrepareAuraScript(spell_sindragosa_ice_tomb_AuraScript)
void PeriodicTick(AuraEffect const* /*aurEff*/)
{
@@ -1317,7 +1317,7 @@ class spell_sindragosa_icy_grip : public SpellScriptLoader
class spell_sindragosa_icy_grip_SpellScript : public SpellScript
{
PrepareSpellScript(spell_sindragosa_icy_grip_SpellScript);
PrepareSpellScript(spell_sindragosa_icy_grip_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -1365,7 +1365,7 @@ class spell_sindragosa_mystic_buffet : public SpellScriptLoader
class spell_sindragosa_mystic_buffet_SpellScript : public SpellScript
{
PrepareSpellScript(spell_sindragosa_mystic_buffet_SpellScript);
PrepareSpellScript(spell_sindragosa_mystic_buffet_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -1391,7 +1391,7 @@ class spell_rimefang_icy_blast : public SpellScriptLoader
class spell_rimefang_icy_blast_SpellScript : public SpellScript
{
PrepareSpellScript(spell_rimefang_icy_blast_SpellScript);
PrepareSpellScript(spell_rimefang_icy_blast_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -1443,7 +1443,7 @@ class spell_frostwarden_handler_order_whelp : public SpellScriptLoader
class spell_frostwarden_handler_order_whelp_SpellScript : public SpellScript
{
PrepareSpellScript(spell_frostwarden_handler_order_whelp_SpellScript);
PrepareSpellScript(spell_frostwarden_handler_order_whelp_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -1498,7 +1498,7 @@ class spell_frostwarden_handler_focus_fire : public SpellScriptLoader
class spell_frostwarden_handler_focus_fire_SpellScript : public SpellScript
{
PrepareSpellScript(spell_frostwarden_handler_focus_fire_SpellScript);
PrepareSpellScript(spell_frostwarden_handler_focus_fire_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -1515,7 +1515,7 @@ class spell_frostwarden_handler_focus_fire : public SpellScriptLoader
class spell_frostwarden_handler_focus_fire_AuraScript : public AuraScript
{
PrepareAuraScript(spell_frostwarden_handler_focus_fire_AuraScript);
PrepareAuraScript(spell_frostwarden_handler_focus_fire_AuraScript)
void PeriodicTick(AuraEffect const* /*aurEff*/)
{
@@ -2005,7 +2005,7 @@ class spell_the_lich_king_infest : public SpellScriptLoader
class spell_the_lich_king_infest_AuraScript : public AuraScript
{
PrepareAuraScript(spell_the_lich_king_infest_AuraScript);
PrepareAuraScript(spell_the_lich_king_infest_AuraScript)
void OnPeriodic(AuraEffect const* /*aurEff*/)
{
@@ -2045,7 +2045,7 @@ class spell_the_lich_king_necrotic_plague : public SpellScriptLoader
class spell_the_lich_king_necrotic_plague_AuraScript : public AuraScript
{
PrepareAuraScript(spell_the_lich_king_necrotic_plague_AuraScript);
PrepareAuraScript(spell_the_lich_king_necrotic_plague_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -2093,7 +2093,7 @@ class spell_the_lich_king_necrotic_plague_jump : public SpellScriptLoader
class spell_the_lich_king_necrotic_plague_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_necrotic_plague_SpellScript);
PrepareSpellScript(spell_the_lich_king_necrotic_plague_SpellScript)
bool Load() override
{
@@ -2133,7 +2133,7 @@ class spell_the_lich_king_necrotic_plague_jump : public SpellScriptLoader
class spell_the_lich_king_necrotic_plague_AuraScript : public AuraScript
{
PrepareAuraScript(spell_the_lich_king_necrotic_plague_AuraScript);
PrepareAuraScript(spell_the_lich_king_necrotic_plague_AuraScript)
bool Load() override
{
@@ -2217,7 +2217,7 @@ class spell_the_lich_king_shadow_trap_visual : public SpellScriptLoader
class spell_the_lich_king_shadow_trap_visual_AuraScript : public AuraScript
{
PrepareAuraScript(spell_the_lich_king_shadow_trap_visual_AuraScript);
PrepareAuraScript(spell_the_lich_king_shadow_trap_visual_AuraScript)
void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -2244,7 +2244,7 @@ class spell_the_lich_king_shadow_trap_periodic : public SpellScriptLoader
class spell_the_lich_king_shadow_trap_periodic_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_shadow_trap_periodic_SpellScript);
PrepareSpellScript(spell_the_lich_king_shadow_trap_periodic_SpellScript)
void CheckTargetCount(std::list<WorldObject*>& targets)
{
@@ -2273,7 +2273,7 @@ class spell_the_lich_king_quake : public SpellScriptLoader
class spell_the_lich_king_quake_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_quake_SpellScript);
PrepareSpellScript(spell_the_lich_king_quake_SpellScript)
bool Load() override
{
@@ -2312,7 +2312,7 @@ class spell_the_lich_king_ice_burst_target_search : public SpellScriptLoader
class spell_the_lich_king_ice_burst_target_search_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_ice_burst_target_search_SpellScript);
PrepareSpellScript(spell_the_lich_king_ice_burst_target_search_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -2355,7 +2355,7 @@ class spell_the_lich_king_raging_spirit : public SpellScriptLoader
class spell_the_lich_king_raging_spirit_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_raging_spirit_SpellScript);
PrepareSpellScript(spell_the_lich_king_raging_spirit_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -2404,7 +2404,7 @@ class spell_the_lich_king_defile : public SpellScriptLoader
class spell_the_lich_king_defile_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_defile_SpellScript);
PrepareSpellScript(spell_the_lich_king_defile_SpellScript)
void CorrectRange(std::list<WorldObject*>& targets)
{
@@ -2441,7 +2441,7 @@ class spell_the_lich_king_summon_into_air : public SpellScriptLoader
class spell_the_lich_king_summon_into_air_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_summon_into_air_SpellScript);
PrepareSpellScript(spell_the_lich_king_summon_into_air_SpellScript)
void ModDestHeight(SpellEffIndex effIndex)
{
@@ -2476,7 +2476,7 @@ class spell_the_lich_king_soul_reaper : public SpellScriptLoader
class spell_the_lich_king_soul_reaper_AuraScript : public AuraScript
{
PrepareAuraScript(spell_the_lich_king_soul_reaper_AuraScript);
PrepareAuraScript(spell_the_lich_king_soul_reaper_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -2510,7 +2510,7 @@ class spell_the_lich_king_valkyr_target_search : public SpellScriptLoader
class spell_the_lich_king_valkyr_target_search_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_valkyr_target_search_SpellScript);
PrepareSpellScript(spell_the_lich_king_valkyr_target_search_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -2576,7 +2576,7 @@ class spell_the_lich_king_cast_back_to_caster : public SpellScriptLoader
class spell_the_lich_king_cast_back_to_caster_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_cast_back_to_caster_SpellScript);
PrepareSpellScript(spell_the_lich_king_cast_back_to_caster_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -2602,7 +2602,7 @@ class spell_the_lich_king_life_siphon : public SpellScriptLoader
class spell_the_lich_king_life_siphon_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_life_siphon_SpellScript);
PrepareSpellScript(spell_the_lich_king_life_siphon_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -2635,7 +2635,7 @@ class spell_the_lich_king_vile_spirits : public SpellScriptLoader
class spell_the_lich_king_vile_spirits_AuraScript : public AuraScript
{
PrepareAuraScript(spell_the_lich_king_vile_spirits_AuraScript);
PrepareAuraScript(spell_the_lich_king_vile_spirits_AuraScript)
bool Load() override
{
@@ -2670,7 +2670,7 @@ class spell_the_lich_king_vile_spirits_visual : public SpellScriptLoader
class spell_the_lich_king_vile_spirits_visual_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_vile_spirits_visual_SpellScript);
PrepareSpellScript(spell_the_lich_king_vile_spirits_visual_SpellScript)
void ModDestHeight(SpellEffIndex /*effIndex*/)
{
@@ -2697,7 +2697,7 @@ class spell_the_lich_king_vile_spirit_move_target_search : public SpellScriptLoa
class spell_the_lich_king_vile_spirit_move_target_search_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_vile_spirit_move_target_search_SpellScript);
PrepareSpellScript(spell_the_lich_king_vile_spirit_move_target_search_SpellScript)
bool Load() override
{
@@ -2746,7 +2746,7 @@ class spell_the_lich_king_vile_spirit_damage_target_search : public SpellScriptL
class spell_the_lich_king_vile_spirit_damage_target_search_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_vile_spirit_damage_target_search_SpellScript);
PrepareSpellScript(spell_the_lich_king_vile_spirit_damage_target_search_SpellScript)
bool Load() override
{
@@ -2787,7 +2787,7 @@ class spell_the_lich_king_harvest_soul : public SpellScriptLoader
class spell_the_lich_king_harvest_soul_AuraScript : public AuraScript
{
PrepareAuraScript(spell_the_lich_king_harvest_soul_AuraScript);
PrepareAuraScript(spell_the_lich_king_harvest_soul_AuraScript)
bool Load() override
{
@@ -2820,7 +2820,7 @@ class spell_the_lich_king_lights_favor : public SpellScriptLoader
class spell_the_lich_king_lights_favor_AuraScript : public AuraScript
{
PrepareAuraScript(spell_the_lich_king_lights_favor_AuraScript);
PrepareAuraScript(spell_the_lich_king_lights_favor_AuraScript)
void OnPeriodic(AuraEffect const* /*aurEff*/)
{
@@ -2857,7 +2857,7 @@ class spell_the_lich_king_soul_rip : public SpellScriptLoader
class spell_the_lich_king_soul_rip_AuraScript : public AuraScript
{
PrepareAuraScript(spell_the_lich_king_soul_rip_AuraScript);
PrepareAuraScript(spell_the_lich_king_soul_rip_AuraScript)
void OnPeriodic(AuraEffect const* aurEff)
{
@@ -2886,7 +2886,7 @@ class spell_the_lich_king_restore_soul : public SpellScriptLoader
class spell_the_lich_king_restore_soul_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_restore_soul_SpellScript);
PrepareSpellScript(spell_the_lich_king_restore_soul_SpellScript)
bool Load() override
{
@@ -2939,7 +2939,7 @@ class spell_the_lich_king_dark_hunger : public SpellScriptLoader
class spell_the_lich_king_dark_hunger_AuraScript : public AuraScript
{
PrepareAuraScript(spell_the_lich_king_dark_hunger_AuraScript);
PrepareAuraScript(spell_the_lich_king_dark_hunger_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2974,7 +2974,7 @@ class spell_the_lich_king_in_frostmourne_room : public SpellScriptLoader
class spell_the_lich_king_in_frostmourne_room_AuraScript : public AuraScript
{
PrepareAuraScript(spell_the_lich_king_in_frostmourne_room_AuraScript);
PrepareAuraScript(spell_the_lich_king_in_frostmourne_room_AuraScript)
bool Load() override
{
@@ -3007,7 +3007,7 @@ class spell_the_lich_king_summon_spirit_bomb : public SpellScriptLoader
class spell_the_lich_king_summon_spirit_bomb_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_summon_spirit_bomb_SpellScript);
PrepareSpellScript(spell_the_lich_king_summon_spirit_bomb_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -3034,7 +3034,7 @@ class spell_the_lich_king_trigger_vile_spirit : public SpellScriptLoader
class spell_the_lich_king_trigger_vile_spirit_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_trigger_vile_spirit_SpellScript);
PrepareSpellScript(spell_the_lich_king_trigger_vile_spirit_SpellScript)
void ActivateSpirit()
{
@@ -3064,7 +3064,7 @@ class spell_the_lich_king_jump : public SpellScriptLoader
class spell_the_lich_king_jump_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_jump_SpellScript);
PrepareSpellScript(spell_the_lich_king_jump_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -3094,7 +3094,7 @@ class spell_the_lich_king_jump_remove_aura : public SpellScriptLoader
class spell_the_lich_king_jump_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_jump_SpellScript);
PrepareSpellScript(spell_the_lich_king_jump_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -3121,7 +3121,7 @@ class spell_the_lich_king_play_movie : public SpellScriptLoader
class spell_the_lich_king_play_movie_SpellScript : public SpellScript
{
PrepareSpellScript(spell_the_lich_king_play_movie_SpellScript);
PrepareSpellScript(spell_the_lich_king_play_movie_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -1113,7 +1113,7 @@ class spell_dreamwalker_mana_void : public SpellScriptLoader
class spell_dreamwalker_mana_void_AuraScript : public AuraScript
{
PrepareAuraScript(spell_dreamwalker_mana_void_AuraScript);
PrepareAuraScript(spell_dreamwalker_mana_void_AuraScript)
void PeriodicTick(AuraEffect const* aurEff)
{
@@ -1143,7 +1143,7 @@ class spell_dreamwalker_decay_periodic_timer : public SpellScriptLoader
class spell_dreamwalker_decay_periodic_timer_AuraScript : public AuraScript
{
PrepareAuraScript(spell_dreamwalker_decay_periodic_timer_AuraScript);
PrepareAuraScript(spell_dreamwalker_decay_periodic_timer_AuraScript)
bool Load() override
{
@@ -1181,7 +1181,7 @@ class spell_dreamwalker_summoner : public SpellScriptLoader
class spell_dreamwalker_summoner_SpellScript : public SpellScript
{
PrepareSpellScript(spell_dreamwalker_summoner_SpellScript);
PrepareSpellScript(spell_dreamwalker_summoner_SpellScript)
bool Load() override
{
@@ -1230,7 +1230,7 @@ class spell_dreamwalker_summon_suppresser : public SpellScriptLoader
class spell_dreamwalker_summon_suppresser_AuraScript : public AuraScript
{
PrepareAuraScript(spell_dreamwalker_summon_suppresser_AuraScript);
PrepareAuraScript(spell_dreamwalker_summon_suppresser_AuraScript)
void PeriodicTick(AuraEffect const* /*aurEff*/)
{
@@ -1271,7 +1271,7 @@ class spell_dreamwalker_summon_suppresser_effect : public SpellScriptLoader
class spell_dreamwalker_summon_suppresser_effect_SpellScript : public SpellScript
{
PrepareSpellScript(spell_dreamwalker_summon_suppresser_effect_SpellScript);
PrepareSpellScript(spell_dreamwalker_summon_suppresser_effect_SpellScript)
bool Load() override
{
@@ -1308,7 +1308,7 @@ class spell_dreamwalker_summon_dream_portal : public SpellScriptLoader
class spell_dreamwalker_summon_dream_portal_SpellScript : public SpellScript
{
PrepareSpellScript(spell_dreamwalker_summon_dream_portal_SpellScript);
PrepareSpellScript(spell_dreamwalker_summon_dream_portal_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -1339,7 +1339,7 @@ class spell_dreamwalker_summon_nightmare_portal : public SpellScriptLoader
class spell_dreamwalker_summon_nightmare_portal_SpellScript : public SpellScript
{
PrepareSpellScript(spell_dreamwalker_summon_nightmare_portal_SpellScript);
PrepareSpellScript(spell_dreamwalker_summon_nightmare_portal_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -1370,7 +1370,7 @@ class spell_dreamwalker_nightmare_cloud : public SpellScriptLoader
class spell_dreamwalker_nightmare_cloud_AuraScript : public AuraScript
{
PrepareAuraScript(spell_dreamwalker_nightmare_cloud_AuraScript);
PrepareAuraScript(spell_dreamwalker_nightmare_cloud_AuraScript)
bool Load() override
{
@@ -1405,7 +1405,7 @@ class spell_dreamwalker_twisted_nightmares : public SpellScriptLoader
class spell_dreamwalker_twisted_nightmares_SpellScript : public SpellScript
{
PrepareSpellScript(spell_dreamwalker_twisted_nightmares_SpellScript);
PrepareSpellScript(spell_dreamwalker_twisted_nightmares_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -1733,7 +1733,7 @@ class spell_icc_stoneform : public SpellScriptLoader
class spell_icc_stoneform_AuraScript : public AuraScript
{
PrepareAuraScript(spell_icc_stoneform_AuraScript);
PrepareAuraScript(spell_icc_stoneform_AuraScript)
void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -1775,7 +1775,7 @@ class spell_icc_sprit_alarm : public SpellScriptLoader
class spell_icc_sprit_alarm_SpellScript : public SpellScript
{
PrepareSpellScript(spell_icc_sprit_alarm_SpellScript);
PrepareSpellScript(spell_icc_sprit_alarm_SpellScript)
void HandleEvent(SpellEffIndex effIndex)
{
@@ -1860,7 +1860,7 @@ class spell_frost_giant_death_plague : public SpellScriptLoader
class spell_frost_giant_death_plague_SpellScript : public SpellScript
{
PrepareSpellScript(spell_frost_giant_death_plague_SpellScript);
PrepareSpellScript(spell_frost_giant_death_plague_SpellScript)
bool Load() override
{
@@ -1922,7 +1922,7 @@ class spell_icc_harvest_blight_specimen : public SpellScriptLoader
class spell_icc_harvest_blight_specimen_SpellScript : public SpellScript
{
PrepareSpellScript(spell_icc_harvest_blight_specimen_SpellScript);
PrepareSpellScript(spell_icc_harvest_blight_specimen_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -1966,7 +1966,7 @@ class spell_svalna_revive_champion : public SpellScriptLoader
class spell_svalna_revive_champion_SpellScript : public SpellScript
{
PrepareSpellScript(spell_svalna_revive_champion_SpellScript);
PrepareSpellScript(spell_svalna_revive_champion_SpellScript)
void RemoveAliveTarget(std::list<WorldObject*>& targets)
{
@@ -2007,7 +2007,7 @@ class spell_svalna_remove_spear : public SpellScriptLoader
class spell_svalna_remove_spear_SpellScript : public SpellScript
{
PrepareSpellScript(spell_svalna_remove_spear_SpellScript);
PrepareSpellScript(spell_svalna_remove_spear_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
@@ -2040,7 +2040,7 @@ class spell_icc_soul_missile : public SpellScriptLoader
class spell_icc_soul_missile_SpellScript : public SpellScript
{
PrepareSpellScript(spell_icc_soul_missile_SpellScript);
PrepareSpellScript(spell_icc_soul_missile_SpellScript)
void RelocateDest(SpellDestination& dest)
{
@@ -518,7 +518,7 @@ class spell_trigger_spell_from_caster : public SpellScriptLoader
class spell_trigger_spell_from_caster_SpellScript : public SpellScript
{
PrepareSpellScript(spell_trigger_spell_from_caster_SpellScript);
PrepareSpellScript(spell_trigger_spell_from_caster_SpellScript)
public:
spell_trigger_spell_from_caster_SpellScript(uint32 triggerId) : SpellScript(), _triggerId(triggerId) { }
@@ -395,7 +395,7 @@ class spell_four_horsemen_mark : public SpellScriptLoader
class spell_four_horsemen_mark_AuraScript : public AuraScript
{
PrepareAuraScript(spell_four_horsemen_mark_AuraScript);
PrepareAuraScript(spell_four_horsemen_mark_AuraScript)
void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -595,7 +595,7 @@ class spell_gothik_shadow_bolt_volley : public SpellScriptLoader
class spell_gothik_shadow_bolt_volley_SpellScript : public SpellScript
{
PrepareSpellScript(spell_gothik_shadow_bolt_volley_SpellScript);
PrepareSpellScript(spell_gothik_shadow_bolt_volley_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -147,7 +147,7 @@ class spell_grobbulus_mutating_injection : public SpellScriptLoader
class spell_grobbulus_mutating_injection_AuraScript : public AuraScript
{
PrepareAuraScript(spell_grobbulus_mutating_injection_AuraScript);
PrepareAuraScript(spell_grobbulus_mutating_injection_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -190,7 +190,7 @@ class spell_grobbulus_poison_cloud : public SpellScriptLoader
class spell_grobbulus_poison_cloud_AuraScript : public AuraScript
{
PrepareAuraScript(spell_grobbulus_poison_cloud_AuraScript);
PrepareAuraScript(spell_grobbulus_poison_cloud_AuraScript)
bool Validate(SpellInfo const* spellInfo) override
{
@@ -188,7 +188,7 @@ class spell_heigan_eruption : public SpellScriptLoader
class spell_heigan_eruption_SpellScript : public SpellScript
{
PrepareSpellScript(spell_heigan_eruption_SpellScript);
PrepareSpellScript(spell_heigan_eruption_SpellScript)
void HandleScript(SpellEffIndex /*eff*/)
{
@@ -754,7 +754,7 @@ class spell_kelthuzad_detonate_mana : public SpellScriptLoader
class spell_kelthuzad_detonate_mana_AuraScript : public AuraScript
{
PrepareAuraScript(spell_kelthuzad_detonate_mana_AuraScript);
PrepareAuraScript(spell_kelthuzad_detonate_mana_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -165,7 +165,7 @@ class spell_loatheb_necrotic_aura_warning : public SpellScriptLoader
class spell_loatheb_necrotic_aura_warning_AuraScript : public AuraScript
{
PrepareAuraScript(spell_loatheb_necrotic_aura_warning_AuraScript);
PrepareAuraScript(spell_loatheb_necrotic_aura_warning_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -441,7 +441,7 @@ class spell_thaddius_pos_neg_charge : public SpellScriptLoader
class spell_thaddius_pos_neg_charge_SpellScript : public SpellScript
{
PrepareSpellScript(spell_thaddius_pos_neg_charge_SpellScript);
PrepareSpellScript(spell_thaddius_pos_neg_charge_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -520,7 +520,7 @@ class spell_thaddius_polarity_shift : public SpellScriptLoader
class spell_thaddius_polarity_shift_SpellScript : public SpellScript
{
PrepareSpellScript(spell_thaddius_polarity_shift_SpellScript);
PrepareSpellScript(spell_thaddius_polarity_shift_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -1647,7 +1647,7 @@ class spell_malygos_portal_beam : public SpellScriptLoader
class spell_malygos_portal_beam_AuraScript : public AuraScript
{
PrepareAuraScript(spell_malygos_portal_beam_AuraScript);
PrepareAuraScript(spell_malygos_portal_beam_AuraScript)
bool Load() override
{
@@ -1694,7 +1694,7 @@ class spell_malygos_random_portal : public SpellScriptLoader
class spell_malygos_random_portal_SpellScript : public SpellScript
{
PrepareSpellScript(spell_malygos_random_portal_SpellScript);
PrepareSpellScript(spell_malygos_random_portal_SpellScript)
bool Load() override
{
@@ -1750,7 +1750,7 @@ class spell_malygos_arcane_storm : public SpellScriptLoader
class spell_malygos_arcane_storm_SpellScript : public SpellScript
{
PrepareSpellScript(spell_malygos_arcane_storm_SpellScript);
PrepareSpellScript(spell_malygos_arcane_storm_SpellScript)
bool Load() override
{
@@ -1847,7 +1847,7 @@ class spell_malygos_vortex_visual : public SpellScriptLoader
class spell_malygos_vortex_visual_AuraScript : public AuraScript
{
PrepareAuraScript(spell_malygos_vortex_visual_AuraScript);
PrepareAuraScript(spell_malygos_vortex_visual_AuraScript)
bool Load() override
{
@@ -1926,7 +1926,7 @@ class spell_arcane_overload : public SpellScriptLoader
class spell_arcane_overload_SpellScript : public SpellScript
{
PrepareSpellScript(spell_arcane_overload_SpellScript);
PrepareSpellScript(spell_arcane_overload_SpellScript)
bool Load() override
{
@@ -1959,7 +1959,7 @@ class spell_nexus_lord_align_disk_aggro : public SpellScriptLoader
class spell_nexus_lord_align_disk_aggro_SpellScript : public SpellScript
{
PrepareSpellScript(spell_nexus_lord_align_disk_aggro_SpellScript);
PrepareSpellScript(spell_nexus_lord_align_disk_aggro_SpellScript)
bool Load() override
{
@@ -2010,7 +2010,7 @@ class spell_scion_of_eternity_arcane_barrage : public SpellScriptLoader
class spell_scion_of_eternity_arcane_barrage_SpellScript : public SpellScript
{
PrepareSpellScript(spell_scion_of_eternity_arcane_barrage_SpellScript);
PrepareSpellScript(spell_scion_of_eternity_arcane_barrage_SpellScript)
bool Load() override
{
@@ -2094,7 +2094,7 @@ class spell_malygos_destroy_platform_channel : public SpellScriptLoader
class spell_malygos_destroy_platform_channel_AuraScript : public AuraScript
{
PrepareAuraScript(spell_malygos_destroy_platform_channel_AuraScript);
PrepareAuraScript(spell_malygos_destroy_platform_channel_AuraScript)
bool Load() override
{
@@ -2136,7 +2136,7 @@ class spell_alexstrasza_bunny_destroy_platform_boom_visual : public SpellScriptL
class spell_alexstrasza_bunny_destroy_platform_boom_visual_SpellScript : public SpellScript
{
PrepareSpellScript(spell_alexstrasza_bunny_destroy_platform_boom_visual_SpellScript);
PrepareSpellScript(spell_alexstrasza_bunny_destroy_platform_boom_visual_SpellScript)
bool Load() override
{
@@ -2176,7 +2176,7 @@ class spell_alexstrasza_bunny_destroy_platform_event : public SpellScriptLoader
class spell_alexstrasza_bunny_destroy_platform_event_SpellScript : public SpellScript
{
PrepareSpellScript(spell_alexstrasza_bunny_destroy_platform_event_SpellScript);
PrepareSpellScript(spell_alexstrasza_bunny_destroy_platform_event_SpellScript)
bool Load() override
{
@@ -2217,7 +2217,7 @@ class spell_wyrmrest_skytalon_summon_red_dragon_buddy : public SpellScriptLoader
class spell_wyrmrest_skytalon_summon_red_dragon_buddy_SpellScript : public SpellScript
{
PrepareSpellScript(spell_wyrmrest_skytalon_summon_red_dragon_buddy_SpellScript);
PrepareSpellScript(spell_wyrmrest_skytalon_summon_red_dragon_buddy_SpellScript)
bool Load() override
{
@@ -2250,7 +2250,7 @@ class spell_wyrmrest_skytalon_ride_red_dragon_buddy_trigger : public SpellScript
class spell_wyrmrest_skytalon_ride_red_dragon_buddy_trigger_SpellScript : public SpellScript
{
PrepareSpellScript(spell_wyrmrest_skytalon_ride_red_dragon_buddy_trigger_SpellScript);
PrepareSpellScript(spell_wyrmrest_skytalon_ride_red_dragon_buddy_trigger_SpellScript)
bool Load() override
{
@@ -2399,7 +2399,7 @@ class spell_alexstrasza_gift_beam : public SpellScriptLoader
class spell_alexstrasza_gift_beam_AuraScript : public AuraScript
{
PrepareAuraScript(spell_alexstrasza_gift_beam_AuraScript);
PrepareAuraScript(spell_alexstrasza_gift_beam_AuraScript)
bool Load() override
{
@@ -2446,7 +2446,7 @@ class spell_alexstrasza_gift_beam_visual : public SpellScriptLoader
class spell_alexstrasza_gift_beam_visual_AuraScript : public AuraScript
{
PrepareAuraScript(spell_alexstrasza_gift_beam_visual_AuraScript);
PrepareAuraScript(spell_alexstrasza_gift_beam_visual_AuraScript)
bool Load() override
{
@@ -234,7 +234,7 @@ class spell_intense_cold : public SpellScriptLoader
class spell_intense_cold_AuraScript : public AuraScript
{
PrepareAuraScript(spell_intense_cold_AuraScript);
PrepareAuraScript(spell_intense_cold_AuraScript)
void HandlePeriodicTick(AuraEffect const* aurEff)
{
@@ -263,7 +263,7 @@ class spell_crystal_spike : public SpellScriptLoader
class spell_crystal_spike_AuraScript : public AuraScript
{
PrepareAuraScript(spell_crystal_spike_AuraScript);
PrepareAuraScript(spell_crystal_spike_AuraScript)
void HandlePeriodic(AuraEffect const* /*aurEff*/)
{
@@ -258,7 +258,7 @@ class spell_eregos_planar_shift : public SpellScriptLoader
class spell_eregos_planar_shift_AuraScript : public AuraScript
{
PrepareAuraScript(spell_eregos_planar_shift_AuraScript);
PrepareAuraScript(spell_eregos_planar_shift_AuraScript)
void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -249,7 +249,7 @@ class spell_varos_centrifuge_shield : public SpellScriptLoader
class spell_varos_centrifuge_shield_AuraScript : public AuraScript
{
PrepareAuraScript(spell_varos_centrifuge_shield_AuraScript);
PrepareAuraScript(spell_varos_centrifuge_shield_AuraScript)
bool Load() override
{
@@ -371,7 +371,7 @@ class spell_oculus_call_ruby_emerald_amber_drake : public SpellScriptLoader
class spell_oculus_call_ruby_emerald_amber_drake_SpellScript : public SpellScript
{
PrepareSpellScript(spell_oculus_call_ruby_emerald_amber_drake_SpellScript);
PrepareSpellScript(spell_oculus_call_ruby_emerald_amber_drake_SpellScript)
void SetDest(SpellDestination& dest)
{
@@ -402,7 +402,7 @@ class spell_oculus_ride_ruby_emerald_amber_drake_que : public SpellScriptLoader
class spell_oculus_ride_ruby_emerald_amber_drake_que_AuraScript : public AuraScript
{
PrepareAuraScript(spell_oculus_ride_ruby_emerald_amber_drake_que_AuraScript);
PrepareAuraScript(spell_oculus_ride_ruby_emerald_amber_drake_que_AuraScript)
void HandlePeriodic(AuraEffect const* aurEff)
{
@@ -432,7 +432,7 @@ class spell_oculus_evasive_maneuvers : public SpellScriptLoader
class spell_oculus_evasive_maneuvers_AuraScript : public AuraScript
{
PrepareAuraScript(spell_oculus_evasive_maneuvers_AuraScript);
PrepareAuraScript(spell_oculus_evasive_maneuvers_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -469,7 +469,7 @@ class spell_oculus_shock_lance : public SpellScriptLoader
class spell_oculus_shock_lance_SpellScript : public SpellScript
{
PrepareSpellScript(spell_oculus_shock_lance_SpellScript);
PrepareSpellScript(spell_oculus_shock_lance_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -511,7 +511,7 @@ class spell_oculus_stop_time : public SpellScriptLoader
class spell_oculus_stop_time_AuraScript : public AuraScript
{
PrepareAuraScript(spell_oculus_stop_time_AuraScript);
PrepareAuraScript(spell_oculus_stop_time_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -551,7 +551,7 @@ class spell_oculus_temporal_rift : public SpellScriptLoader
class spell_oculus_temporal_rift_AuraScript : public AuraScript
{
PrepareAuraScript(spell_oculus_temporal_rift_AuraScript);
PrepareAuraScript(spell_oculus_temporal_rift_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -595,7 +595,7 @@ class spell_oculus_touch_the_nightmare : public SpellScriptLoader
class spell_oculus_touch_the_nightmare_SpellScript : public SpellScript
{
PrepareSpellScript(spell_oculus_touch_the_nightmare_SpellScript);
PrepareSpellScript(spell_oculus_touch_the_nightmare_SpellScript)
void HandleDamageCalc(SpellEffIndex /*effIndex*/)
{
@@ -622,7 +622,7 @@ class spell_oculus_dream_funnel : public SpellScriptLoader
class spell_oculus_dream_funnel_AuraScript : public AuraScript
{
PrepareAuraScript(spell_oculus_dream_funnel_AuraScript);
PrepareAuraScript(spell_oculus_dream_funnel_AuraScript)
void HandleEffectCalcAmount(AuraEffect const* /*aurEff*/, int32& amount, bool& canBeRecalculated)
{
@@ -190,7 +190,7 @@ class spell_loken_pulsing_shockwave : public SpellScriptLoader
class spell_loken_pulsing_shockwave_SpellScript : public SpellScript
{
PrepareSpellScript(spell_loken_pulsing_shockwave_SpellScript);
PrepareSpellScript(spell_loken_pulsing_shockwave_SpellScript)
void CalculateDamage(SpellEffIndex /*effIndex*/)
{
@@ -187,7 +187,7 @@ class spell_krystallus_shatter : public SpellScriptLoader
class spell_krystallus_shatter_SpellScript : public SpellScript
{
PrepareSpellScript(spell_krystallus_shatter_SpellScript);
PrepareSpellScript(spell_krystallus_shatter_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -217,7 +217,7 @@ class spell_krystallus_shatter_effect : public SpellScriptLoader
class spell_krystallus_shatter_effect_SpellScript : public SpellScript
{
PrepareSpellScript(spell_krystallus_shatter_effect_SpellScript);
PrepareSpellScript(spell_krystallus_shatter_effect_SpellScript)
void CalculateDamage()
{
@@ -1039,7 +1039,7 @@ class spell_algalon_phase_punch : public SpellScriptLoader
class spell_algalon_phase_punch_AuraScript : public AuraScript
{
PrepareAuraScript(spell_algalon_phase_punch_AuraScript);
PrepareAuraScript(spell_algalon_phase_punch_AuraScript)
void HandlePeriodic(AuraEffect const* /*aurEff*/)
{
@@ -1093,7 +1093,7 @@ class spell_algalon_arcane_barrage : public SpellScriptLoader
class spell_algalon_arcane_barrage_SpellScript : public SpellScript
{
PrepareSpellScript(spell_algalon_arcane_barrage_SpellScript);
PrepareSpellScript(spell_algalon_arcane_barrage_SpellScript)
void SelectTarget(std::list<WorldObject*>& targets)
{
@@ -1128,7 +1128,7 @@ class spell_algalon_trigger_3_adds : public SpellScriptLoader
class spell_algalon_trigger_3_adds_SpellScript : public SpellScript
{
PrepareSpellScript(spell_algalon_trigger_3_adds_SpellScript);
PrepareSpellScript(spell_algalon_trigger_3_adds_SpellScript)
void SelectTarget(std::list<WorldObject*>& targets)
{
@@ -1164,7 +1164,7 @@ class spell_algalon_collapse : public SpellScriptLoader
class spell_algalon_collapse_AuraScript : public AuraScript
{
PrepareAuraScript(spell_algalon_collapse_AuraScript);
PrepareAuraScript(spell_algalon_collapse_AuraScript)
void HandlePeriodic(AuraEffect const* /*aurEff*/)
{
@@ -1191,7 +1191,7 @@ class spell_algalon_big_bang : public SpellScriptLoader
class spell_algalon_big_bang_SpellScript : public SpellScript
{
PrepareSpellScript(spell_algalon_big_bang_SpellScript);
PrepareSpellScript(spell_algalon_big_bang_SpellScript)
bool Load() override
{
@@ -1232,7 +1232,7 @@ class spell_algalon_remove_phase : public SpellScriptLoader
class spell_algalon_remove_phase_AuraScript : public AuraScript
{
PrepareAuraScript(spell_algalon_remove_phase_AuraScript);
PrepareAuraScript(spell_algalon_remove_phase_AuraScript)
void HandlePeriodic(AuraEffect const* /*aurEff*/)
{
@@ -1260,7 +1260,7 @@ class spell_algalon_cosmic_smash : public SpellScriptLoader
class spell_algalon_cosmic_smash_SpellScript : public SpellScript
{
PrepareSpellScript(spell_algalon_cosmic_smash_SpellScript);
PrepareSpellScript(spell_algalon_cosmic_smash_SpellScript)
void ModDestHeight(SpellDestination& dest)
{
@@ -1287,7 +1287,7 @@ class spell_algalon_cosmic_smash_damage : public SpellScriptLoader
class spell_algalon_cosmic_smash_damage_SpellScript : public SpellScript
{
PrepareSpellScript(spell_algalon_cosmic_smash_damage_SpellScript);
PrepareSpellScript(spell_algalon_cosmic_smash_damage_SpellScript)
void RecalculateDamage()
{
@@ -1318,7 +1318,7 @@ class spell_algalon_supermassive_fail : public SpellScriptLoader
class spell_algalon_supermassive_fail_SpellScript : public SpellScript
{
PrepareSpellScript(spell_algalon_supermassive_fail_SpellScript);
PrepareSpellScript(spell_algalon_supermassive_fail_SpellScript)
void RecalculateDamage()
{
@@ -633,7 +633,7 @@ class spell_shield_of_runes : public SpellScriptLoader
class spell_shield_of_runes_AuraScript : public AuraScript
{
PrepareAuraScript(spell_shield_of_runes_AuraScript);
PrepareAuraScript(spell_shield_of_runes_AuraScript)
void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -661,7 +661,7 @@ class spell_assembly_meltdown : public SpellScriptLoader
class spell_assembly_meltdown_SpellScript : public SpellScript
{
PrepareSpellScript(spell_assembly_meltdown_SpellScript);
PrepareSpellScript(spell_assembly_meltdown_SpellScript)
void HandleInstaKill(SpellEffIndex /*effIndex*/)
{
@@ -689,7 +689,7 @@ class spell_assembly_rune_of_summoning : public SpellScriptLoader
class spell_assembly_rune_of_summoning_AuraScript : public AuraScript
{
PrepareAuraScript(spell_assembly_rune_of_summoning_AuraScript);
PrepareAuraScript(spell_assembly_rune_of_summoning_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -489,7 +489,7 @@ class spell_auriaya_strenght_of_the_pack : public SpellScriptLoader
class spell_auriaya_strenght_of_the_pack_SpellScript : public SpellScript
{
PrepareSpellScript(spell_auriaya_strenght_of_the_pack_SpellScript);
PrepareSpellScript(spell_auriaya_strenght_of_the_pack_SpellScript)
void FilterTargets(std::list<WorldObject*>& unitList)
{
@@ -515,7 +515,7 @@ class spell_auriaya_sentinel_blast : public SpellScriptLoader
class spell_auriaya_sentinel_blast_SpellScript : public SpellScript
{
PrepareSpellScript(spell_auriaya_sentinel_blast_SpellScript);
PrepareSpellScript(spell_auriaya_sentinel_blast_SpellScript)
void FilterTargets(std::list<WorldObject*>& unitList)
{
@@ -1458,7 +1458,7 @@ class spell_load_into_catapult : public SpellScriptLoader
class spell_load_into_catapult_AuraScript : public AuraScript
{
PrepareAuraScript(spell_load_into_catapult_AuraScript);
PrepareAuraScript(spell_load_into_catapult_AuraScript)
void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -1503,7 +1503,7 @@ class spell_auto_repair : public SpellScriptLoader
class spell_auto_repair_SpellScript : public SpellScript
{
PrepareSpellScript(spell_auto_repair_SpellScript);
PrepareSpellScript(spell_auto_repair_SpellScript)
void CheckCooldownForTarget()
{
@@ -1564,7 +1564,7 @@ class spell_systems_shutdown : public SpellScriptLoader
class spell_systems_shutdown_AuraScript : public AuraScript
{
PrepareAuraScript(spell_systems_shutdown_AuraScript);
PrepareAuraScript(spell_systems_shutdown_AuraScript)
void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -1650,7 +1650,7 @@ class spell_pursue : public SpellScriptLoader
class spell_pursue_SpellScript : public SpellScript
{
PrepareSpellScript(spell_pursue_SpellScript);
PrepareSpellScript(spell_pursue_SpellScript)
bool Load() override
{
@@ -1722,7 +1722,7 @@ class spell_vehicle_throw_passenger : public SpellScriptLoader
class spell_vehicle_throw_passenger_SpellScript : public SpellScript
{
PrepareSpellScript(spell_vehicle_throw_passenger_SpellScript);
PrepareSpellScript(spell_vehicle_throw_passenger_SpellScript)
void HandleScript(SpellEffIndex effIndex)
{
Spell* baseSpell = GetSpell();
@@ -1533,7 +1533,7 @@ class spell_freya_attuned_to_nature_dose_reduction : public SpellScriptLoader
class spell_freya_attuned_to_nature_dose_reduction_SpellScript : public SpellScript
{
PrepareSpellScript(spell_freya_attuned_to_nature_dose_reduction_SpellScript);
PrepareSpellScript(spell_freya_attuned_to_nature_dose_reduction_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -1580,7 +1580,7 @@ class spell_freya_iron_roots : public SpellScriptLoader
class spell_freya_iron_roots_SpellScript : public SpellScript
{
PrepareSpellScript(spell_freya_iron_roots_SpellScript);
PrepareSpellScript(spell_freya_iron_roots_SpellScript)
void HandleSummon(SpellEffIndex effIndex)
{
@@ -450,7 +450,7 @@ class spell_general_vezax_mark_of_the_faceless : public SpellScriptLoader
class spell_general_vezax_mark_of_the_faceless_AuraScript : public AuraScript
{
PrepareAuraScript(spell_general_vezax_mark_of_the_faceless_AuraScript);
PrepareAuraScript(spell_general_vezax_mark_of_the_faceless_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/)
{
@@ -484,7 +484,7 @@ class spell_general_vezax_mark_of_the_faceless_leech : public SpellScriptLoader
class spell_general_vezax_mark_of_the_faceless_leech_SpellScript : public SpellScript
{
PrepareSpellScript(spell_general_vezax_mark_of_the_faceless_leech_SpellScript);
PrepareSpellScript(spell_general_vezax_mark_of_the_faceless_leech_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -513,7 +513,7 @@ class spell_general_vezax_saronite_vapors : public SpellScriptLoader
class spell_general_vezax_saronite_vapors_AuraScript : public AuraScript
{
PrepareAuraScript(spell_general_vezax_saronite_vapors_AuraScript);
PrepareAuraScript(spell_general_vezax_saronite_vapors_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -921,7 +921,7 @@ class spell_biting_cold : public SpellScriptLoader
class spell_biting_cold_AuraScript : public AuraScript
{
PrepareAuraScript(spell_biting_cold_AuraScript);
PrepareAuraScript(spell_biting_cold_AuraScript)
void HandleEffectPeriodic(AuraEffect const* /*aurEff*/)
{
@@ -977,7 +977,7 @@ public:
class spell_biting_cold_dot_AuraScript : public AuraScript
{
PrepareAuraScript(spell_biting_cold_dot_AuraScript);
PrepareAuraScript(spell_biting_cold_dot_AuraScript)
void HandleEffectPeriodic(AuraEffect const* /*aurEff*/)
{
@@ -430,7 +430,7 @@ class spell_ignis_slag_pot : public SpellScriptLoader
class spell_ignis_slag_pot_AuraScript : public AuraScript
{
PrepareAuraScript(spell_ignis_slag_pot_AuraScript);
PrepareAuraScript(spell_ignis_slag_pot_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -331,7 +331,7 @@ class spell_ulduar_rubble_summon : public SpellScriptLoader
class spell_ulduar_rubble_summonSpellScript : public SpellScript
{
PrepareSpellScript(spell_ulduar_rubble_summonSpellScript);
PrepareSpellScript(spell_ulduar_rubble_summonSpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -385,7 +385,7 @@ class spell_ulduar_stone_grip_cast_target : public SpellScriptLoader
class spell_ulduar_stone_grip_cast_target_SpellScript : public SpellScript
{
PrepareSpellScript(spell_ulduar_stone_grip_cast_target_SpellScript);
PrepareSpellScript(spell_ulduar_stone_grip_cast_target_SpellScript)
bool Load() override
{
@@ -445,7 +445,7 @@ class spell_ulduar_cancel_stone_grip : public SpellScriptLoader
class spell_ulduar_cancel_stone_gripSpellScript : public SpellScript
{
PrepareSpellScript(spell_ulduar_cancel_stone_gripSpellScript);
PrepareSpellScript(spell_ulduar_cancel_stone_gripSpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -485,7 +485,7 @@ class spell_ulduar_squeezed_lifeless : public SpellScriptLoader
class spell_ulduar_squeezed_lifeless_SpellScript : public SpellScript
{
PrepareSpellScript(spell_ulduar_squeezed_lifeless_SpellScript);
PrepareSpellScript(spell_ulduar_squeezed_lifeless_SpellScript)
void HandleInstaKill(SpellEffIndex /*effIndex*/)
{
@@ -523,7 +523,7 @@ class spell_ulduar_stone_grip_absorb : public SpellScriptLoader
class spell_ulduar_stone_grip_absorb_AuraScript : public AuraScript
{
PrepareAuraScript(spell_ulduar_stone_grip_absorb_AuraScript);
PrepareAuraScript(spell_ulduar_stone_grip_absorb_AuraScript)
//! This will be called when Right Arm (vehicle) has sustained a specific amount of damage depending on instance mode
//! What we do here is remove all harmful aura's related and teleport to safe spot.
@@ -560,7 +560,7 @@ class spell_ulduar_stone_grip : public SpellScriptLoader
class spell_ulduar_stone_grip_AuraScript : public AuraScript
{
PrepareAuraScript(spell_ulduar_stone_grip_AuraScript);
PrepareAuraScript(spell_ulduar_stone_grip_AuraScript)
void OnRemoveStun(AuraEffect const* aurEff, AuraEffectHandleModes /*mode*/)
{
@@ -613,7 +613,7 @@ class spell_kologarn_stone_shout : public SpellScriptLoader
class spell_kologarn_stone_shout_SpellScript : public SpellScript
{
PrepareSpellScript(spell_kologarn_stone_shout_SpellScript);
PrepareSpellScript(spell_kologarn_stone_shout_SpellScript)
void FilterTargets(std::list<WorldObject*>& unitList)
{
@@ -639,7 +639,7 @@ class spell_kologarn_summon_focused_eyebeam : public SpellScriptLoader
class spell_kologarn_summon_focused_eyebeam_SpellScript : public SpellScript
{
PrepareSpellScript(spell_kologarn_summon_focused_eyebeam_SpellScript);
PrepareSpellScript(spell_kologarn_summon_focused_eyebeam_SpellScript)
void HandleForceCast(SpellEffIndex effIndex)
{
@@ -1014,7 +1014,7 @@ class spell_razorscale_devouring_flame : public SpellScriptLoader
class spell_razorscale_devouring_flame_SpellScript : public SpellScript
{
PrepareSpellScript(spell_razorscale_devouring_flame_SpellScript);
PrepareSpellScript(spell_razorscale_devouring_flame_SpellScript)
void HandleSummon(SpellEffIndex effIndex)
{
@@ -1047,7 +1047,7 @@ class spell_razorscale_flame_breath : public SpellScriptLoader
class spell_razorscale_flame_breath_SpellScript : public SpellScript
{
PrepareSpellScript(spell_razorscale_flame_breath_SpellScript);
PrepareSpellScript(spell_razorscale_flame_breath_SpellScript)
void CheckDamage()
{
@@ -767,7 +767,7 @@ class spell_xt002_searing_light_spawn_life_spark : public SpellScriptLoader
class spell_xt002_searing_light_spawn_life_spark_AuraScript : public AuraScript
{
PrepareAuraScript(spell_xt002_searing_light_spawn_life_spark_AuraScript);
PrepareAuraScript(spell_xt002_searing_light_spawn_life_spark_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -803,7 +803,7 @@ class spell_xt002_gravity_bomb_aura : public SpellScriptLoader
class spell_xt002_gravity_bomb_aura_AuraScript : public AuraScript
{
PrepareAuraScript(spell_xt002_gravity_bomb_aura_AuraScript);
PrepareAuraScript(spell_xt002_gravity_bomb_aura_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -855,7 +855,7 @@ class spell_xt002_gravity_bomb_damage : public SpellScriptLoader
class spell_xt002_gravity_bomb_damage_SpellScript : public SpellScript
{
PrepareSpellScript(spell_xt002_gravity_bomb_damage_SpellScript);
PrepareSpellScript(spell_xt002_gravity_bomb_damage_SpellScript)
void HandleScript(SpellEffIndex /*eff*/)
{
@@ -887,7 +887,7 @@ class spell_xt002_heart_overload_periodic : public SpellScriptLoader
class spell_xt002_heart_overload_periodic_SpellScript : public SpellScript
{
PrepareSpellScript(spell_xt002_heart_overload_periodic_SpellScript);
PrepareSpellScript(spell_xt002_heart_overload_periodic_SpellScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -954,7 +954,7 @@ class spell_xt002_tympanic_tantrum : public SpellScriptLoader
class spell_xt002_tympanic_tantrum_SpellScript : public SpellScript
{
PrepareSpellScript(spell_xt002_tympanic_tantrum_SpellScript);
PrepareSpellScript(spell_xt002_tympanic_tantrum_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -987,7 +987,7 @@ class spell_xt002_submerged : public SpellScriptLoader
class spell_xt002_submerged_SpellScript : public SpellScript
{
PrepareSpellScript(spell_xt002_submerged_SpellScript);
PrepareSpellScript(spell_xt002_submerged_SpellScript)
void HandleScript(SpellEffIndex /*eff*/)
{
@@ -1018,7 +1018,7 @@ class spell_xt002_stand : public SpellScriptLoader
class spell_xt002_stand_SpellScript : public SpellScript
{
PrepareSpellScript(spell_xt002_stand_SpellScript);
PrepareSpellScript(spell_xt002_stand_SpellScript)
void HandleScript(SpellEffIndex /*eff*/)
{
@@ -1930,7 +1930,7 @@ class spell_yogg_saron_target_selectors : public SpellScriptLoader // 63744,
class spell_yogg_saron_target_selectors_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_target_selectors_SpellScript);
PrepareSpellScript(spell_yogg_saron_target_selectors_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -1988,7 +1988,7 @@ class spell_yogg_saron_psychosis : public SpellScriptLoader // 63795, 65301
class spell_yogg_saron_psychosis_SpellScript : public SanityReduction
{
PrepareSpellScript(spell_yogg_saron_psychosis_SpellScript);
PrepareSpellScript(spell_yogg_saron_psychosis_SpellScript)
bool Load() override
{
@@ -2026,7 +2026,7 @@ class spell_yogg_saron_malady_of_the_mind : public SpellScriptLoader // 63830
public:
spell_yogg_saron_malady_of_the_mind_SpellScript() : SanityReduction(3) { }
PrepareSpellScript(spell_yogg_saron_malady_of_the_mind_SpellScript);
PrepareSpellScript(spell_yogg_saron_malady_of_the_mind_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -2049,7 +2049,7 @@ class spell_yogg_saron_malady_of_the_mind : public SpellScriptLoader // 63830
class spell_yogg_saron_malady_of_the_mind_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_malady_of_the_mind_AuraScript);
PrepareAuraScript(spell_yogg_saron_malady_of_the_mind_AuraScript)
bool Validate(SpellInfo const* /*spell*/) override
{
@@ -2097,7 +2097,7 @@ class spell_yogg_saron_brain_link : public SpellScriptLoader // 63802
class spell_yogg_saron_brain_link_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_brain_link_SpellScript);
PrepareSpellScript(spell_yogg_saron_brain_link_SpellScript)
void FilterTargets(std::list<WorldObject*>& targets)
{
@@ -2121,7 +2121,7 @@ class spell_yogg_saron_brain_link : public SpellScriptLoader // 63802
class spell_yogg_saron_brain_link_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_brain_link_AuraScript);
PrepareAuraScript(spell_yogg_saron_brain_link_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2198,7 +2198,7 @@ class spell_yogg_saron_brain_link_damage : public SpellScriptLoader // 6380
public:
spell_yogg_saron_brain_link_damage_SpellScript() : SanityReduction(2) { }
PrepareSpellScript(spell_yogg_saron_brain_link_damage_SpellScript);
PrepareSpellScript(spell_yogg_saron_brain_link_damage_SpellScript)
void Register() override
{
@@ -2219,7 +2219,7 @@ class spell_yogg_saron_boil_ominously : public SpellScriptLoader // 63030
class spell_yogg_saron_boil_ominously_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_boil_ominously_SpellScript);
PrepareSpellScript(spell_yogg_saron_boil_ominously_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2259,7 +2259,7 @@ class spell_yogg_saron_shadow_beacon : public SpellScriptLoader // 64465
class spell_yogg_saron_shadow_beacon_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_shadow_beacon_AuraScript);
PrepareAuraScript(spell_yogg_saron_shadow_beacon_AuraScript)
void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -2293,7 +2293,7 @@ class spell_yogg_saron_empowering_shadows_range_check : public SpellScriptLoader
class spell_yogg_saron_empowering_shadows_range_check_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_empowering_shadows_range_check_SpellScript);
PrepareSpellScript(spell_yogg_saron_empowering_shadows_range_check_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -2320,7 +2320,7 @@ class spell_yogg_saron_empowering_shadows_missile : public SpellScriptLoader
class spell_yogg_saron_empowering_shadows_missile_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_empowering_shadows_missile_SpellScript);
PrepareSpellScript(spell_yogg_saron_empowering_shadows_missile_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2355,7 +2355,7 @@ class spell_yogg_saron_constrictor_tentacle : public SpellScriptLoader // 64
class spell_yogg_saron_constrictor_tentacle_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_constrictor_tentacle_AuraScript);
PrepareAuraScript(spell_yogg_saron_constrictor_tentacle_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2388,7 +2388,7 @@ class spell_yogg_saron_lunge : public SpellScriptLoader // 64131
class spell_yogg_saron_lunge_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_lunge_SpellScript);
PrepareSpellScript(spell_yogg_saron_lunge_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2425,7 +2425,7 @@ class spell_yogg_saron_squeeze : public SpellScriptLoader // 64125
class spell_yogg_saron_squeeze_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_squeeze_AuraScript);
PrepareAuraScript(spell_yogg_saron_squeeze_AuraScript)
void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -2453,7 +2453,7 @@ class spell_yogg_saron_diminsh_power : public SpellScriptLoader // 64148
class spell_yogg_saron_diminsh_power_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_diminsh_power_AuraScript);
PrepareAuraScript(spell_yogg_saron_diminsh_power_AuraScript)
void HandleProc(AuraEffect const* /*aurEff*/, ProcEventInfo& /*eventInfo*/)
{
@@ -2483,7 +2483,7 @@ class spell_yogg_saron_empowered : public SpellScriptLoader // 64161
class spell_yogg_saron_empowered_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_empowered_AuraScript);
PrepareAuraScript(spell_yogg_saron_empowered_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2534,7 +2534,7 @@ class spell_yogg_saron_match_health : public SpellScriptLoader // 64069
class spell_yogg_saron_match_health_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_match_health_SpellScript);
PrepareSpellScript(spell_yogg_saron_match_health_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -2561,7 +2561,7 @@ class spell_yogg_saron_shattered_illusion : public SpellScriptLoader // 65238
class spell_yogg_saron_shattered_illusion_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_shattered_illusion_SpellScript);
PrepareSpellScript(spell_yogg_saron_shattered_illusion_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -2588,7 +2588,7 @@ class spell_yogg_saron_death_ray_warning_visual : public SpellScriptLoader /
class spell_yogg_saron_death_ray_warning_visual_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_death_ray_warning_visual_AuraScript);
PrepareAuraScript(spell_yogg_saron_death_ray_warning_visual_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2629,7 +2629,7 @@ class spell_yogg_saron_cancel_illusion_room_aura : public SpellScriptLoader /
class spell_yogg_saron_cancel_illusion_room_aura_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_cancel_illusion_room_aura_SpellScript);
PrepareSpellScript(spell_yogg_saron_cancel_illusion_room_aura_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2666,7 +2666,7 @@ class spell_yogg_saron_nondescript : public SpellScriptLoader // 64010, 6401
class spell_yogg_saron_nondescript_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_nondescript_AuraScript);
PrepareAuraScript(spell_yogg_saron_nondescript_AuraScript)
void OnRemove(AuraEffect const* aurEff, AuraEffectHandleModes /*mode*/)
{
@@ -2692,7 +2692,7 @@ class spell_yogg_saron_revealed_tentacle : public SpellScriptLoader // 64012
class spell_yogg_saron_revealed_tentacle_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_revealed_tentacle_SpellScript);
PrepareSpellScript(spell_yogg_saron_revealed_tentacle_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2732,7 +2732,7 @@ class spell_yogg_saron_grim_reprisal : public SpellScriptLoader // 63305
class spell_yogg_saron_grim_reprisal_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_grim_reprisal_AuraScript);
PrepareAuraScript(spell_yogg_saron_grim_reprisal_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2766,7 +2766,7 @@ class spell_yogg_saron_induce_madness : public SpellScriptLoader // 64059
class spell_yogg_saron_induce_madness_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_induce_madness_SpellScript);
PrepareSpellScript(spell_yogg_saron_induce_madness_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2816,7 +2816,7 @@ class spell_yogg_saron_sanity : public SpellScriptLoader // 63050
class spell_yogg_saron_sanity_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_sanity_SpellScript);
PrepareSpellScript(spell_yogg_saron_sanity_SpellScript)
// don't target players outside of room or handle it in SPELL_INSANE_PERIODIC?
@@ -2833,7 +2833,7 @@ class spell_yogg_saron_sanity : public SpellScriptLoader // 63050
class spell_yogg_saron_sanity_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_sanity_AuraScript);
PrepareAuraScript(spell_yogg_saron_sanity_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2892,7 +2892,7 @@ class spell_yogg_saron_insane : public SpellScriptLoader // 63120
class spell_yogg_saron_insane_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_insane_AuraScript);
PrepareAuraScript(spell_yogg_saron_insane_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2936,7 +2936,7 @@ class spell_yogg_saron_insane_periodic : public SpellScriptLoader // 64555
class spell_yogg_saron_insane_periodic_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_insane_periodic_SpellScript);
PrepareSpellScript(spell_yogg_saron_insane_periodic_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -2977,7 +2977,7 @@ class spell_yogg_saron_lunatic_gaze : public SpellScriptLoader // 64164, 64
class spell_yogg_saron_lunatic_gaze_SpellScript : public SanityReduction
{
PrepareSpellScript(spell_yogg_saron_lunatic_gaze_SpellScript);
PrepareSpellScript(spell_yogg_saron_lunatic_gaze_SpellScript)
bool Load() override
{
@@ -3011,7 +3011,7 @@ class spell_yogg_saron_keeper_aura : public SpellScriptLoader // 62650, 6267
class spell_yogg_saron_keeper_aura_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_keeper_aura_AuraScript);
PrepareAuraScript(spell_yogg_saron_keeper_aura_AuraScript)
bool CanApply(Unit* target)
{
@@ -3039,7 +3039,7 @@ class spell_yogg_saron_hate_to_zero : public SpellScriptLoader // 63984
class spell_yogg_saron_hate_to_zero_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_hate_to_zero_SpellScript);
PrepareSpellScript(spell_yogg_saron_hate_to_zero_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -3067,7 +3067,7 @@ class spell_yogg_saron_in_the_maws_of_the_old_god : public SpellScriptLoader
class spell_yogg_saron_in_the_maws_of_the_old_god_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_in_the_maws_of_the_old_god_SpellScript);
PrepareSpellScript(spell_yogg_saron_in_the_maws_of_the_old_god_SpellScript)
SpellCastResult CheckRequirement()
{
@@ -3103,7 +3103,7 @@ class spell_yogg_saron_titanic_storm : public SpellScriptLoader // 64172
class spell_yogg_saron_titanic_storm_SpellScript : public SpellScript
{
PrepareSpellScript(spell_yogg_saron_titanic_storm_SpellScript);
PrepareSpellScript(spell_yogg_saron_titanic_storm_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -3130,7 +3130,7 @@ class spell_yogg_saron_hodirs_protective_gaze : public SpellScriptLoader //
class spell_yogg_saron_hodirs_protective_gaze_AuraScript : public AuraScript
{
PrepareAuraScript(spell_yogg_saron_hodirs_protective_gaze_AuraScript);
PrepareAuraScript(spell_yogg_saron_hodirs_protective_gaze_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -395,7 +395,7 @@ class spell_ingvar_summon_banshee : public SpellScriptLoader
class spell_ingvar_summon_banshee_SpellScript : public SpellScript
{
PrepareSpellScript(spell_ingvar_summon_banshee_SpellScript);
PrepareSpellScript(spell_ingvar_summon_banshee_SpellScript)
void SetDest(SpellDestination& dest)
{
@@ -422,7 +422,7 @@ class spell_ingvar_woe_strike : public SpellScriptLoader
class spell_ingvar_woe_strike_AuraScript : public AuraScript
{
PrepareAuraScript(spell_ingvar_woe_strike_AuraScript);
PrepareAuraScript(spell_ingvar_woe_strike_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -325,7 +325,7 @@ class spell_frost_tomb : public SpellScriptLoader
class spell_frost_tomb_AuraScript : public AuraScript
{
PrepareAuraScript(spell_frost_tomb_AuraScript);
PrepareAuraScript(spell_frost_tomb_AuraScript)
void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
{
@@ -126,7 +126,7 @@ class spell_ticking_time_bomb : public SpellScriptLoader
class spell_ticking_time_bomb_AuraScript : public AuraScript
{
PrepareAuraScript(spell_ticking_time_bomb_AuraScript);
PrepareAuraScript(spell_ticking_time_bomb_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -165,7 +165,7 @@ class spell_fixate : public SpellScriptLoader
class spell_fixate_SpellScript : public SpellScript
{
PrepareSpellScript(spell_fixate_SpellScript);
PrepareSpellScript(spell_fixate_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -488,7 +488,7 @@ class spell_paralyze_pinnacle : public SpellScriptLoader
class spell_paralyze_pinnacle_SpellScript : public SpellScript
{
PrepareSpellScript(spell_paralyze_pinnacle_SpellScript);
PrepareSpellScript(spell_paralyze_pinnacle_SpellScript)
void FilterTargets(std::list<WorldObject*>& unitList)
{
@@ -217,7 +217,7 @@ class spell_archavon_rock_shards : public SpellScriptLoader
class spell_archavon_rock_shards_SpellScript : public SpellScript
{
PrepareSpellScript(spell_archavon_rock_shards_SpellScript);
PrepareSpellScript(spell_archavon_rock_shards_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -189,7 +189,7 @@ class spell_koralon_meteor_fists : public SpellScriptLoader
class spell_koralon_meteor_fists_AuraScript : public AuraScript
{
PrepareAuraScript(spell_koralon_meteor_fists_AuraScript);
PrepareAuraScript(spell_koralon_meteor_fists_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -223,7 +223,7 @@ class spell_koralon_meteor_fists_damage : public SpellScriptLoader
class spell_koralon_meteor_fists_damage_SpellScript : public SpellScript
{
PrepareSpellScript(spell_koralon_meteor_fists_damage_SpellScript);
PrepareSpellScript(spell_koralon_meteor_fists_damage_SpellScript)
bool Load() override
{
@@ -265,7 +265,7 @@ class spell_flame_warder_meteor_fists : public SpellScriptLoader
class spell_flame_warder_meteor_fists_AuraScript : public AuraScript
{
PrepareAuraScript(spell_flame_warder_meteor_fists_AuraScript);
PrepareAuraScript(spell_flame_warder_meteor_fists_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -2548,7 +2548,7 @@ public:
class spell_windsoul_totem_aura_AuraScript : public AuraScript
{
PrepareAuraScript(spell_windsoul_totem_aura_AuraScript);
PrepareAuraScript(spell_windsoul_totem_aura_AuraScript)
void OnRemove(AuraEffect const*, AuraEffectHandleModes)
{
@@ -432,7 +432,7 @@ public:
class spell_q12096_q12092_dummy_SpellScript : public SpellScript
{
PrepareSpellScript(spell_q12096_q12092_dummy_SpellScript);
PrepareSpellScript(spell_q12096_q12092_dummy_SpellScript)
void HandleDummy(SpellEffIndex /*effIndex*/)
{
@@ -479,7 +479,7 @@ public:
class spell_q12096_q12092_bark_SpellScript : public SpellScript
{
PrepareSpellScript(spell_q12096_q12092_bark_SpellScript);
PrepareSpellScript(spell_q12096_q12092_bark_SpellScript)
void HandleDummy(SpellEffIndex /*effIndex*/)
{
@@ -761,7 +761,7 @@ class spell_shredder_delivery : public SpellScriptLoader
class spell_shredder_delivery_SpellScript : public SpellScript
{
PrepareSpellScript(spell_shredder_delivery_SpellScript);
PrepareSpellScript(spell_shredder_delivery_SpellScript)
bool Load() override
{
@@ -443,7 +443,7 @@ class spell_mindless_abomination_explosion_fx_master : public SpellScriptLoader
class spell_mindless_abomination_explosion_fx_master_SpellScript : public SpellScript
{
PrepareSpellScript(spell_mindless_abomination_explosion_fx_master_SpellScript);
PrepareSpellScript(spell_mindless_abomination_explosion_fx_master_SpellScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -762,7 +762,7 @@ public:
class spell_q12620_the_lifewarden_wrath_SpellScript : public SpellScript
{
PrepareSpellScript(spell_q12620_the_lifewarden_wrath_SpellScript);
PrepareSpellScript(spell_q12620_the_lifewarden_wrath_SpellScript)
void HandleSendEvent(SpellEffIndex effIndex)
{
@@ -850,7 +850,7 @@ public:
class spell_q12589_shoot_rjr_SpellScript : public SpellScript
{
PrepareSpellScript(spell_q12589_shoot_rjr_SpellScript);
PrepareSpellScript(spell_q12589_shoot_rjr_SpellScript)
SpellCastResult CheckCast()
{
@@ -1109,7 +1109,7 @@ public:
class spell_shango_tracks_SpellScript : public SpellScript
{
PrepareSpellScript(spell_shango_tracks_SpellScript);
PrepareSpellScript(spell_shango_tracks_SpellScript)
void HandleScript(SpellEffIndex /*effIndex*/)
{
@@ -732,7 +732,7 @@ class spell_jokkum_scriptcast : public SpellScriptLoader
class spell_jokkum_scriptcast_AuraScript : public AuraScript
{
PrepareAuraScript(spell_jokkum_scriptcast_AuraScript);
PrepareAuraScript(spell_jokkum_scriptcast_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -765,7 +765,7 @@ class spell_veranus_summon : public SpellScriptLoader
class spell_veranus_summon_AuraScript : public AuraScript
{
PrepareAuraScript(spell_veranus_summon_AuraScript);
PrepareAuraScript(spell_veranus_summon_AuraScript)
bool Validate(SpellInfo const* /*spellInfo*/) override
{
@@ -804,7 +804,7 @@ class spell_close_rift : public SpellScriptLoader
class spell_close_rift_AuraScript : public AuraScript
{
PrepareAuraScript(spell_close_rift_AuraScript);
PrepareAuraScript(spell_close_rift_AuraScript)
bool Load() override
{

Some files were not shown because too many files have changed in this diff Show More