aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoroffl <11556157+offl@users.noreply.github.com>2021-11-21 23:18:10 +0200
committerShauren <shauren.trinity@gmail.com>2022-03-22 23:50:20 +0100
commitd3c9c14f83078736b1500e303da5ec575aaf22dc (patch)
tree16ee4a467002c035cb11441054228ccf2e8b00ca /src
parent12ae55df6c720f21b64ee2b530a6b461c20b86f7 (diff)
Scripts/Misc: Migrate world event scripts to separate files (#27284)
(cherry picked from commit 542c10094f8660302708e24cf3c8b2903ac25607)
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Events/brewfest.cpp465
-rw-r--r--src/server/scripts/Events/events_script_loader.cpp14
-rw-r--r--src/server/scripts/Events/hallows_end.cpp380
-rw-r--r--src/server/scripts/Events/love_is_in_the_air.cpp111
-rw-r--r--src/server/scripts/Events/lunar_festival.cpp175
-rw-r--r--src/server/scripts/Events/midsummer.cpp461
-rw-r--r--src/server/scripts/Events/pilgrims_bounty.cpp563
-rw-r--r--src/server/scripts/Events/winter_veil.cpp113
-rw-r--r--src/server/scripts/Kalimdor/zone_moonglade.cpp148
-rw-r--r--src/server/scripts/Spells/spell_holiday.cpp1974
-rw-r--r--src/server/scripts/Spells/spell_script_loader.cpp2
11 files changed, 2282 insertions, 2124 deletions
diff --git a/src/server/scripts/Events/brewfest.cpp b/src/server/scripts/Events/brewfest.cpp
new file mode 100644
index 00000000000..6cc75729ce7
--- /dev/null
+++ b/src/server/scripts/Events/brewfest.cpp
@@ -0,0 +1,465 @@
+/*
+ * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "ScriptMgr.h"
+#include "CreatureAIImpl.h"
+#include "Player.h"
+#include "SpellAuraEffects.h"
+#include "SpellScript.h"
+#include "World.h"
+
+enum RamBlaBla
+{
+ SPELL_GIDDYUP = 42924,
+ SPELL_RENTAL_RACING_RAM = 43883,
+ SPELL_SWIFT_WORK_RAM = 43880,
+ SPELL_RENTAL_RACING_RAM_AURA = 42146,
+ SPELL_RAM_LEVEL_NEUTRAL = 43310,
+ SPELL_RAM_TROT = 42992,
+ SPELL_RAM_CANTER = 42993,
+ SPELL_RAM_GALLOP = 42994,
+ SPELL_RAM_FATIGUE = 43052,
+ SPELL_EXHAUSTED_RAM = 43332,
+ SPELL_RELAY_RACE_TURN_IN = 44501,
+
+ // Quest
+ SPELL_BREWFEST_QUEST_SPEED_BUNNY_GREEN = 43345,
+ SPELL_BREWFEST_QUEST_SPEED_BUNNY_YELLOW = 43346,
+ SPELL_BREWFEST_QUEST_SPEED_BUNNY_RED = 43347
+};
+
+// 42924 - Giddyup!
+class spell_brewfest_giddyup : public SpellScriptLoader
+{
+ public:
+ spell_brewfest_giddyup() : SpellScriptLoader("spell_brewfest_giddyup") { }
+
+ class spell_brewfest_giddyup_AuraScript : public AuraScript
+ {
+ PrepareAuraScript(spell_brewfest_giddyup_AuraScript);
+
+ void OnChange(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
+ {
+ Unit* target = GetTarget();
+ if (!target->HasAura(SPELL_RENTAL_RACING_RAM) && !target->HasAura(SPELL_SWIFT_WORK_RAM))
+ {
+ target->RemoveAura(GetId());
+ return;
+ }
+
+ if (target->HasAura(SPELL_EXHAUSTED_RAM))
+ return;
+
+ switch (GetStackAmount())
+ {
+ case 1: // green
+ target->RemoveAura(SPELL_RAM_LEVEL_NEUTRAL);
+ target->RemoveAura(SPELL_RAM_CANTER);
+ target->CastSpell(target, SPELL_RAM_TROT, true);
+ break;
+ case 6: // yellow
+ target->RemoveAura(SPELL_RAM_TROT);
+ target->RemoveAura(SPELL_RAM_GALLOP);
+ target->CastSpell(target, SPELL_RAM_CANTER, true);
+ break;
+ case 11: // red
+ target->RemoveAura(SPELL_RAM_CANTER);
+ target->CastSpell(target, SPELL_RAM_GALLOP, true);
+ break;
+ default:
+ break;
+ }
+
+ if (GetTargetApplication()->GetRemoveMode() == AURA_REMOVE_BY_DEFAULT)
+ {
+ target->RemoveAura(SPELL_RAM_TROT);
+ target->CastSpell(target, SPELL_RAM_LEVEL_NEUTRAL, true);
+ }
+ }
+
+ void OnPeriodic(AuraEffect const* /*aurEff*/)
+ {
+ GetTarget()->RemoveAuraFromStack(GetId());
+ }
+
+ void Register() override
+ {
+ AfterEffectApply += AuraEffectApplyFn(spell_brewfest_giddyup_AuraScript::OnChange, EFFECT_0, SPELL_AURA_PERIODIC_DUMMY, AURA_EFFECT_HANDLE_CHANGE_AMOUNT_MASK);
+ OnEffectRemove += AuraEffectRemoveFn(spell_brewfest_giddyup_AuraScript::OnChange, EFFECT_0, SPELL_AURA_PERIODIC_DUMMY, AURA_EFFECT_HANDLE_CHANGE_AMOUNT_MASK);
+ OnEffectPeriodic += AuraEffectPeriodicFn(spell_brewfest_giddyup_AuraScript::OnPeriodic, EFFECT_0, SPELL_AURA_PERIODIC_DUMMY);
+ }
+ };
+
+ AuraScript* GetAuraScript() const override
+ {
+ return new spell_brewfest_giddyup_AuraScript();
+ }
+};
+
+// 43310 - Ram Level - Neutral
+// 42992 - Ram - Trot
+// 42993 - Ram - Canter
+// 42994 - Ram - Gallop
+class spell_brewfest_ram : public SpellScriptLoader
+{
+ public:
+ spell_brewfest_ram() : SpellScriptLoader("spell_brewfest_ram") { }
+
+ class spell_brewfest_ram_AuraScript : public AuraScript
+ {
+ PrepareAuraScript(spell_brewfest_ram_AuraScript);
+
+ void OnPeriodic(AuraEffect const* aurEff)
+ {
+ Unit* target = GetTarget();
+ if (target->HasAura(SPELL_EXHAUSTED_RAM))
+ return;
+
+ switch (GetId())
+ {
+ case SPELL_RAM_LEVEL_NEUTRAL:
+ if (Aura* aura = target->GetAura(SPELL_RAM_FATIGUE))
+ aura->ModStackAmount(-4);
+ break;
+ case SPELL_RAM_TROT: // green
+ if (Aura* aura = target->GetAura(SPELL_RAM_FATIGUE))
+ aura->ModStackAmount(-2);
+ if (aurEff->GetTickNumber() == 4)
+ target->CastSpell(target, SPELL_BREWFEST_QUEST_SPEED_BUNNY_GREEN, true);
+ break;
+ case SPELL_RAM_CANTER:
+ {
+ CastSpellExtraArgs args(TRIGGERED_FULL_MASK);
+ args.AddSpellMod(SPELLVALUE_AURA_STACK, 1);
+ target->CastSpell(target, SPELL_RAM_FATIGUE, args);
+ if (aurEff->GetTickNumber() == 8)
+ target->CastSpell(target, SPELL_BREWFEST_QUEST_SPEED_BUNNY_YELLOW, true);
+ break;
+ }
+ case SPELL_RAM_GALLOP:
+ {
+ CastSpellExtraArgs args(TRIGGERED_FULL_MASK);
+ args.AddSpellMod(SPELLVALUE_AURA_STACK, target->HasAura(SPELL_RAM_FATIGUE) ? 4 : 5 /*Hack*/);
+ target->CastSpell(target, SPELL_RAM_FATIGUE, args);
+ if (aurEff->GetTickNumber() == 8)
+ target->CastSpell(target, SPELL_BREWFEST_QUEST_SPEED_BUNNY_RED, true);
+ break;
+ }
+ default:
+ break;
+ }
+
+ }
+
+ void Register() override
+ {
+ OnEffectPeriodic += AuraEffectPeriodicFn(spell_brewfest_ram_AuraScript::OnPeriodic, EFFECT_1, SPELL_AURA_PERIODIC_DUMMY);
+ }
+ };
+
+ AuraScript* GetAuraScript() const override
+ {
+ return new spell_brewfest_ram_AuraScript();
+ }
+};
+
+// 43052 - Ram Fatigue
+class spell_brewfest_ram_fatigue : public SpellScriptLoader
+{
+ public:
+ spell_brewfest_ram_fatigue() : SpellScriptLoader("spell_brewfest_ram_fatigue") { }
+
+ class spell_brewfest_ram_fatigue_AuraScript : public AuraScript
+ {
+ PrepareAuraScript(spell_brewfest_ram_fatigue_AuraScript);
+
+ void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
+ {
+ Unit* target = GetTarget();
+
+ if (GetStackAmount() == 101)
+ {
+ target->RemoveAura(SPELL_RAM_LEVEL_NEUTRAL);
+ target->RemoveAura(SPELL_RAM_TROT);
+ target->RemoveAura(SPELL_RAM_CANTER);
+ target->RemoveAura(SPELL_RAM_GALLOP);
+ target->RemoveAura(SPELL_GIDDYUP);
+
+ target->CastSpell(target, SPELL_EXHAUSTED_RAM, true);
+ }
+ }
+
+ void Register() override
+ {
+ AfterEffectApply += AuraEffectApplyFn(spell_brewfest_ram_fatigue_AuraScript::OnApply, EFFECT_0, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAL_OR_REAPPLY_MASK);
+ }
+ };
+
+ AuraScript* GetAuraScript() const override
+ {
+ return new spell_brewfest_ram_fatigue_AuraScript();
+ }
+};
+
+// 43450 - Brewfest - apple trap - friendly DND
+class spell_brewfest_apple_trap : public SpellScriptLoader
+{
+ public:
+ spell_brewfest_apple_trap() : SpellScriptLoader("spell_brewfest_apple_trap") { }
+
+ class spell_brewfest_apple_trap_AuraScript : public AuraScript
+ {
+ PrepareAuraScript(spell_brewfest_apple_trap_AuraScript);
+
+ void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
+ {
+ GetTarget()->RemoveAura(SPELL_RAM_FATIGUE);
+ }
+
+ void Register() override
+ {
+ OnEffectApply += AuraEffectApplyFn(spell_brewfest_apple_trap_AuraScript::OnApply, EFFECT_0, SPELL_AURA_FORCE_REACTION, AURA_EFFECT_HANDLE_REAL);
+ }
+ };
+
+ AuraScript* GetAuraScript() const override
+ {
+ return new spell_brewfest_apple_trap_AuraScript();
+ }
+};
+
+// 43332 - Exhausted Ram
+class spell_brewfest_exhausted_ram : public SpellScriptLoader
+{
+ public:
+ spell_brewfest_exhausted_ram() : SpellScriptLoader("spell_brewfest_exhausted_ram") { }
+
+ class spell_brewfest_exhausted_ram_AuraScript : public AuraScript
+ {
+ PrepareAuraScript(spell_brewfest_exhausted_ram_AuraScript);
+
+ void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
+ {
+ Unit* target = GetTarget();
+ target->CastSpell(target, SPELL_RAM_LEVEL_NEUTRAL, true);
+ }
+
+ void Register() override
+ {
+ OnEffectRemove += AuraEffectApplyFn(spell_brewfest_exhausted_ram_AuraScript::OnRemove, EFFECT_0, SPELL_AURA_MOD_DECREASE_SPEED, AURA_EFFECT_HANDLE_REAL);
+ }
+ };
+
+ AuraScript* GetAuraScript() const override
+ {
+ return new spell_brewfest_exhausted_ram_AuraScript();
+ }
+};
+
+// 43714 - Brewfest - Relay Race - Intro - Force - Player to throw- DND
+class spell_brewfest_relay_race_intro_force_player_to_throw : public SpellScriptLoader
+{
+ public:
+ spell_brewfest_relay_race_intro_force_player_to_throw() : SpellScriptLoader("spell_brewfest_relay_race_intro_force_player_to_throw") { }
+
+ class spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript : public SpellScript
+ {
+ PrepareSpellScript(spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript);
+
+ void HandleForceCast(SpellEffIndex effIndex)
+ {
+ PreventHitDefaultEffect(effIndex);
+ // All this spells trigger a spell that requires reagents; if the
+ // triggered spell is cast as "triggered", reagents are not consumed
+ GetHitUnit()->CastSpell(nullptr, GetEffectInfo().TriggerSpell, TriggerCastFlags(TRIGGERED_FULL_MASK & ~TRIGGERED_IGNORE_POWER_AND_REAGENT_COST));
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript::HandleForceCast, EFFECT_0, SPELL_EFFECT_FORCE_CAST);
+ }
+ };
+
+ SpellScript* GetSpellScript() const override
+ {
+ return new spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript();
+ }
+};
+
+// 43755 - Brewfest - Daily - Relay Race - Player - Increase Mount Duration - DND
+class spell_brewfest_relay_race_turn_in : public SpellScriptLoader
+{
+public:
+ spell_brewfest_relay_race_turn_in() : SpellScriptLoader("spell_brewfest_relay_race_turn_in") { }
+
+ class spell_brewfest_relay_race_turn_in_SpellScript : public SpellScript
+ {
+ PrepareSpellScript(spell_brewfest_relay_race_turn_in_SpellScript);
+
+ void HandleDummy(SpellEffIndex effIndex)
+ {
+ PreventHitDefaultEffect(effIndex);
+
+ if (Aura* aura = GetHitUnit()->GetAura(SPELL_SWIFT_WORK_RAM))
+ {
+ aura->SetDuration(aura->GetDuration() + 30 * IN_MILLISECONDS);
+ GetCaster()->CastSpell(GetHitUnit(), SPELL_RELAY_RACE_TURN_IN, TRIGGERED_FULL_MASK);
+ }
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_brewfest_relay_race_turn_in_SpellScript::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
+ }
+ };
+
+ SpellScript* GetSpellScript() const override
+ {
+ return new spell_brewfest_relay_race_turn_in_SpellScript();
+ }
+};
+
+// 43876 - Dismount Ram
+class spell_brewfest_dismount_ram : public SpellScriptLoader
+{
+ public:
+ spell_brewfest_dismount_ram() : SpellScriptLoader("spell_brewfest_dismount_ram") { }
+
+ class spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript : public SpellScript
+ {
+ PrepareSpellScript(spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript);
+
+ void HandleScript(SpellEffIndex /*effIndex*/)
+ {
+ GetCaster()->RemoveAura(SPELL_RENTAL_RACING_RAM);
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
+ }
+ };
+
+ SpellScript* GetSpellScript() const override
+ {
+ return new spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript();
+ }
+};
+
+enum RamBlub
+{
+ // Horde
+ QUEST_BARK_FOR_DROHNS_DISTILLERY = 11407,
+ QUEST_BARK_FOR_TCHALIS_VOODOO_BREWERY = 11408,
+
+ // Alliance
+ QUEST_BARK_BARLEYBREW = 11293,
+ QUEST_BARK_FOR_THUNDERBREWS = 11294,
+
+ // Bark for Drohn's Distillery!
+ SAY_DROHN_DISTILLERY_1 = 23520,
+ SAY_DROHN_DISTILLERY_2 = 23521,
+ SAY_DROHN_DISTILLERY_3 = 23522,
+ SAY_DROHN_DISTILLERY_4 = 23523,
+
+ // Bark for T'chali's Voodoo Brewery!
+ SAY_TCHALIS_VOODOO_1 = 23524,
+ SAY_TCHALIS_VOODOO_2 = 23525,
+ SAY_TCHALIS_VOODOO_3 = 23526,
+ SAY_TCHALIS_VOODOO_4 = 23527,
+
+ // Bark for the Barleybrews!
+ SAY_BARLEYBREW_1 = 23464,
+ SAY_BARLEYBREW_2 = 23465,
+ SAY_BARLEYBREW_3 = 23466,
+ SAY_BARLEYBREW_4 = 22941,
+
+ // Bark for the Thunderbrews!
+ SAY_THUNDERBREWS_1 = 23467,
+ SAY_THUNDERBREWS_2 = 23468,
+ SAY_THUNDERBREWS_3 = 23469,
+ SAY_THUNDERBREWS_4 = 22942
+};
+
+// 43259 Brewfest - Barker Bunny 1
+// 43260 Brewfest - Barker Bunny 2
+// 43261 Brewfest - Barker Bunny 3
+// 43262 Brewfest - Barker Bunny 4
+class spell_brewfest_barker_bunny : public SpellScriptLoader
+{
+ public:
+ spell_brewfest_barker_bunny() : SpellScriptLoader("spell_brewfest_barker_bunny") { }
+
+ class spell_brewfest_barker_bunny_AuraScript : public AuraScript
+ {
+ PrepareAuraScript(spell_brewfest_barker_bunny_AuraScript);
+
+ bool Load() override
+ {
+ return GetUnitOwner()->GetTypeId() == TYPEID_PLAYER;
+ }
+
+ void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
+ {
+ Player* target = GetTarget()->ToPlayer();
+
+ uint32 BroadcastTextId = 0;
+
+ if (target->GetQuestStatus(QUEST_BARK_FOR_DROHNS_DISTILLERY) == QUEST_STATUS_INCOMPLETE ||
+ target->GetQuestStatus(QUEST_BARK_FOR_DROHNS_DISTILLERY) == QUEST_STATUS_COMPLETE)
+ BroadcastTextId = RAND(SAY_DROHN_DISTILLERY_1, SAY_DROHN_DISTILLERY_2, SAY_DROHN_DISTILLERY_3, SAY_DROHN_DISTILLERY_4);
+
+ if (target->GetQuestStatus(QUEST_BARK_FOR_TCHALIS_VOODOO_BREWERY) == QUEST_STATUS_INCOMPLETE ||
+ target->GetQuestStatus(QUEST_BARK_FOR_TCHALIS_VOODOO_BREWERY) == QUEST_STATUS_COMPLETE)
+ BroadcastTextId = RAND(SAY_TCHALIS_VOODOO_1, SAY_TCHALIS_VOODOO_2, SAY_TCHALIS_VOODOO_3, SAY_TCHALIS_VOODOO_4);
+
+ if (target->GetQuestStatus(QUEST_BARK_BARLEYBREW) == QUEST_STATUS_INCOMPLETE ||
+ target->GetQuestStatus(QUEST_BARK_BARLEYBREW) == QUEST_STATUS_COMPLETE)
+ BroadcastTextId = RAND(SAY_BARLEYBREW_1, SAY_BARLEYBREW_2, SAY_BARLEYBREW_3, SAY_BARLEYBREW_4);
+
+ if (target->GetQuestStatus(QUEST_BARK_FOR_THUNDERBREWS) == QUEST_STATUS_INCOMPLETE ||
+ target->GetQuestStatus(QUEST_BARK_FOR_THUNDERBREWS) == QUEST_STATUS_COMPLETE)
+ BroadcastTextId = RAND(SAY_THUNDERBREWS_1, SAY_THUNDERBREWS_2, SAY_THUNDERBREWS_3, SAY_THUNDERBREWS_4);
+
+ if (BroadcastTextId)
+ target->Talk(BroadcastTextId, CHAT_MSG_SAY, sWorld->getFloatConfig(CONFIG_LISTEN_RANGE_SAY), target);
+ }
+
+ void Register() override
+ {
+ OnEffectApply += AuraEffectApplyFn(spell_brewfest_barker_bunny_AuraScript::OnApply, EFFECT_1, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAL);
+ }
+ };
+
+ AuraScript* GetAuraScript() const override
+ {
+ return new spell_brewfest_barker_bunny_AuraScript();
+ }
+};
+
+void AddSC_event_brewfest()
+{
+ new spell_brewfest_giddyup();
+ new spell_brewfest_ram();
+ new spell_brewfest_ram_fatigue();
+ new spell_brewfest_apple_trap();
+ new spell_brewfest_exhausted_ram();
+ new spell_brewfest_relay_race_intro_force_player_to_throw();
+ new spell_brewfest_relay_race_turn_in();
+ new spell_brewfest_dismount_ram();
+ new spell_brewfest_barker_bunny();
+}
diff --git a/src/server/scripts/Events/events_script_loader.cpp b/src/server/scripts/Events/events_script_loader.cpp
index a6c1e6d2448..2095b537cfa 100644
--- a/src/server/scripts/Events/events_script_loader.cpp
+++ b/src/server/scripts/Events/events_script_loader.cpp
@@ -16,17 +16,31 @@
*/
// This is where scripts' loading functions should be declared:
+void AddSC_event_brewfest();
void AddSC_event_childrens_week();
void AddSC_event_fireworks();
+void AddSC_event_hallows_end();
+void AddSC_event_love_is_in_the_air();
+void AddSC_event_lunar_festival();
+void AddSC_event_midsummer();
void AddSC_event_operation_gnomeregan();
+void AddSC_event_pilgrims_bounty();
+void AddSC_event_winter_veil();
void AddSC_event_zalazane_fall();
// The name of this function should match:
// void Add${NameOfDirectory}Scripts()
void AddEventsScripts()
{
+ AddSC_event_brewfest();
AddSC_event_childrens_week();
AddSC_event_fireworks();
+ AddSC_event_hallows_end();
+ AddSC_event_love_is_in_the_air();
+ AddSC_event_lunar_festival();
+ AddSC_event_midsummer();
AddSC_event_operation_gnomeregan();
+ AddSC_event_pilgrims_bounty();
+ AddSC_event_winter_veil();
AddSC_event_zalazane_fall();
}
diff --git a/src/server/scripts/Events/hallows_end.cpp b/src/server/scripts/Events/hallows_end.cpp
new file mode 100644
index 00000000000..e9ee27259e7
--- /dev/null
+++ b/src/server/scripts/Events/hallows_end.cpp
@@ -0,0 +1,380 @@
+/*
+ * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "ScriptMgr.h"
+#include "CreatureAIImpl.h"
+#include "Player.h"
+#include "SpellAuraEffects.h"
+#include "SpellScript.h"
+
+enum HallowEndCandysSpells
+{
+ SPELL_HALLOWS_END_CANDY_ORANGE_GIANT = 24924, // Effect 1: Apply Aura: Mod Size, Value: 30%
+ SPELL_HALLOWS_END_CANDY_SKELETON = 24925, // Effect 1: Apply Aura: Change Model (Skeleton). Effect 2: Apply Aura: Underwater Breathing
+ SPELL_HALLOWS_END_CANDY_PIRATE = 24926, // Effect 1: Apply Aura: Increase Swim Speed, Value: 50%
+ SPELL_HALLOWS_END_CANDY_GHOST = 24927, // Effect 1: Apply Aura: Levitate / Hover. Effect 2: Apply Aura: Slow Fall, Effect 3: Apply Aura: Water Walking
+ SPELL_HALLOWS_END_CANDY_FEMALE_DEFIAS_PIRATE = 44742, // Effect 1: Apply Aura: Change Model (Defias Pirate, Female). Effect 2: Increase Swim Speed, Value: 50%
+ SPELL_HALLOWS_END_CANDY_MALE_DEFIAS_PIRATE = 44743 // Effect 1: Apply Aura: Change Model (Defias Pirate, Male). Effect 2: Increase Swim Speed, Value: 50%
+};
+
+// 24930 - Hallow's End Candy
+class spell_hallow_end_candy : public SpellScriptLoader
+{
+ public:
+ spell_hallow_end_candy() : SpellScriptLoader("spell_hallow_end_candy") { }
+
+ class spell_hallow_end_candy_SpellScript : public SpellScript
+ {
+ PrepareSpellScript(spell_hallow_end_candy_SpellScript);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo(spells);
+ }
+
+ void HandleDummy(SpellEffIndex /*effIndex*/)
+ {
+ GetCaster()->CastSpell(GetCaster(), spells[urand(0, 3)], true);
+ }
+
+ void Register() override
+ {
+ OnEffectHit += SpellEffectFn(spell_hallow_end_candy_SpellScript::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
+ }
+
+ private:
+ static uint32 const spells[4];
+ };
+
+ SpellScript* GetSpellScript() const override
+ {
+ return new spell_hallow_end_candy_SpellScript();
+ }
+};
+
+uint32 const spell_hallow_end_candy::spell_hallow_end_candy_SpellScript::spells[4] =
+{
+ SPELL_HALLOWS_END_CANDY_ORANGE_GIANT,
+ SPELL_HALLOWS_END_CANDY_SKELETON,
+ SPELL_HALLOWS_END_CANDY_PIRATE,
+ SPELL_HALLOWS_END_CANDY_GHOST
+};
+
+// 24926 - Hallow's End Candy
+class spell_hallow_end_candy_pirate : public SpellScriptLoader
+{
+ public:
+ spell_hallow_end_candy_pirate() : SpellScriptLoader("spell_hallow_end_candy_pirate") { }
+
+ class spell_hallow_end_candy_pirate_AuraScript : public AuraScript
+ {
+ PrepareAuraScript(spell_hallow_end_candy_pirate_AuraScript);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo(
+ {
+ SPELL_HALLOWS_END_CANDY_FEMALE_DEFIAS_PIRATE,
+ SPELL_HALLOWS_END_CANDY_MALE_DEFIAS_PIRATE
+ });
+ }
+
+ void HandleApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
+ {
+ uint32 spell = GetTarget()->GetNativeGender() == GENDER_FEMALE ? SPELL_HALLOWS_END_CANDY_FEMALE_DEFIAS_PIRATE : SPELL_HALLOWS_END_CANDY_MALE_DEFIAS_PIRATE;
+ GetTarget()->CastSpell(GetTarget(), spell, true);
+ }
+
+ void HandleRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
+ {
+ uint32 spell = GetTarget()->GetNativeGender() == GENDER_FEMALE ? SPELL_HALLOWS_END_CANDY_FEMALE_DEFIAS_PIRATE : SPELL_HALLOWS_END_CANDY_MALE_DEFIAS_PIRATE;
+ GetTarget()->RemoveAurasDueToSpell(spell);
+ }
+
+ void Register() override
+ {
+ AfterEffectApply += AuraEffectApplyFn(spell_hallow_end_candy_pirate_AuraScript::HandleApply, EFFECT_0, SPELL_AURA_MOD_INCREASE_SWIM_SPEED, AURA_EFFECT_HANDLE_REAL);
+ AfterEffectRemove += AuraEffectRemoveFn(spell_hallow_end_candy_pirate_AuraScript::HandleRemove, EFFECT_0, SPELL_AURA_MOD_INCREASE_SWIM_SPEED, AURA_EFFECT_HANDLE_REAL);
+ }
+ };
+
+ AuraScript* GetAuraScript() const override
+ {
+ return new spell_hallow_end_candy_pirate_AuraScript();
+ }
+};
+
+enum TrickSpells
+{
+ SPELL_PIRATE_COSTUME_MALE = 24708,
+ SPELL_PIRATE_COSTUME_FEMALE = 24709,
+ SPELL_NINJA_COSTUME_MALE = 24710,
+ SPELL_NINJA_COSTUME_FEMALE = 24711,
+ SPELL_LEPER_GNOME_COSTUME_MALE = 24712,
+ SPELL_LEPER_GNOME_COSTUME_FEMALE = 24713,
+ SPELL_SKELETON_COSTUME = 24723,
+ SPELL_GHOST_COSTUME_MALE = 24735,
+ SPELL_GHOST_COSTUME_FEMALE = 24736,
+ SPELL_TRICK_BUFF = 24753,
+};
+
+// 24750 - Trick
+class spell_hallow_end_trick : public SpellScriptLoader
+{
+ public:
+ spell_hallow_end_trick() : SpellScriptLoader("spell_hallow_end_trick") { }
+
+ class spell_hallow_end_trick_SpellScript : public SpellScript
+ {
+ PrepareSpellScript(spell_hallow_end_trick_SpellScript);
+
+ bool Validate(SpellInfo const* /*spell*/) override
+ {
+ return ValidateSpellInfo(
+ {
+ SPELL_PIRATE_COSTUME_MALE,
+ SPELL_PIRATE_COSTUME_FEMALE,
+ SPELL_NINJA_COSTUME_MALE,
+ SPELL_NINJA_COSTUME_FEMALE,
+ SPELL_LEPER_GNOME_COSTUME_MALE,
+ SPELL_LEPER_GNOME_COSTUME_FEMALE,
+ SPELL_SKELETON_COSTUME,
+ SPELL_GHOST_COSTUME_MALE,
+ SPELL_GHOST_COSTUME_FEMALE,
+ SPELL_TRICK_BUFF
+ });
+ }
+
+ void HandleScript(SpellEffIndex /*effIndex*/)
+ {
+ Unit* caster = GetCaster();
+ if (Player* target = GetHitPlayer())
+ {
+ uint8 gender = target->GetNativeGender();
+ uint32 spellId = SPELL_TRICK_BUFF;
+ switch (urand(0, 5))
+ {
+ case 1:
+ spellId = gender == GENDER_FEMALE ? SPELL_LEPER_GNOME_COSTUME_FEMALE : SPELL_LEPER_GNOME_COSTUME_MALE;
+ break;
+ case 2:
+ spellId = gender == GENDER_FEMALE ? SPELL_PIRATE_COSTUME_FEMALE : SPELL_PIRATE_COSTUME_MALE;
+ break;
+ case 3:
+ spellId = gender == GENDER_FEMALE ? SPELL_GHOST_COSTUME_FEMALE : SPELL_GHOST_COSTUME_MALE;
+ break;
+ case 4:
+ spellId = gender == GENDER_FEMALE ? SPELL_NINJA_COSTUME_FEMALE : SPELL_NINJA_COSTUME_MALE;
+ break;
+ case 5:
+ spellId = SPELL_SKELETON_COSTUME;
+ break;
+ default:
+ break;
+ }
+
+ caster->CastSpell(target, spellId, true);
+ }
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_hallow_end_trick_SpellScript::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
+ }
+ };
+
+ SpellScript* GetSpellScript() const override
+ {
+ return new spell_hallow_end_trick_SpellScript();
+ }
+};
+
+enum TrickOrTreatSpells
+{
+ SPELL_TRICK = 24714,
+ SPELL_TREAT = 24715,
+ SPELL_TRICKED_OR_TREATED = 24755,
+ SPELL_TRICKY_TREAT_SPEED = 42919,
+ SPELL_TRICKY_TREAT_TRIGGER = 42965,
+ SPELL_UPSET_TUMMY = 42966
+};
+
+// 24751 - Trick or Treat
+class spell_hallow_end_trick_or_treat : public SpellScriptLoader
+{
+ public:
+ spell_hallow_end_trick_or_treat() : SpellScriptLoader("spell_hallow_end_trick_or_treat") { }
+
+ class spell_hallow_end_trick_or_treat_SpellScript : public SpellScript
+ {
+ PrepareSpellScript(spell_hallow_end_trick_or_treat_SpellScript);
+
+ bool Validate(SpellInfo const* /*spell*/) override
+ {
+ return ValidateSpellInfo({ SPELL_TRICK, SPELL_TREAT, SPELL_TRICKED_OR_TREATED });
+ }
+
+ void HandleScript(SpellEffIndex /*effIndex*/)
+ {
+ Unit* caster = GetCaster();
+ if (Player* target = GetHitPlayer())
+ {
+ caster->CastSpell(target, roll_chance_i(50) ? SPELL_TRICK : SPELL_TREAT, true);
+ caster->CastSpell(target, SPELL_TRICKED_OR_TREATED, true);
+ }
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_hallow_end_trick_or_treat_SpellScript::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
+ }
+ };
+
+ SpellScript* GetSpellScript() const override
+ {
+ return new spell_hallow_end_trick_or_treat_SpellScript();
+ }
+};
+
+// 44436 - Tricky Treat
+class spell_hallow_end_tricky_treat : public SpellScriptLoader
+{
+ public:
+ spell_hallow_end_tricky_treat() : SpellScriptLoader("spell_hallow_end_tricky_treat") { }
+
+ class spell_hallow_end_tricky_treat_SpellScript : public SpellScript
+ {
+ PrepareSpellScript(spell_hallow_end_tricky_treat_SpellScript);
+
+ bool Validate(SpellInfo const* /*spell*/) override
+ {
+ return ValidateSpellInfo(
+ {
+ SPELL_TRICKY_TREAT_SPEED,
+ SPELL_TRICKY_TREAT_TRIGGER,
+ SPELL_UPSET_TUMMY
+ });
+ }
+
+ void HandleScript(SpellEffIndex /*effIndex*/)
+ {
+ Unit* caster = GetCaster();
+ if (caster->HasAura(SPELL_TRICKY_TREAT_TRIGGER) && caster->GetAuraCount(SPELL_TRICKY_TREAT_SPEED) > 3 && roll_chance_i(33))
+ caster->CastSpell(caster, SPELL_UPSET_TUMMY, true);
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_hallow_end_tricky_treat_SpellScript::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
+ }
+ };
+
+ SpellScript* GetSpellScript() const override
+ {
+ return new spell_hallow_end_tricky_treat_SpellScript();
+ }
+};
+
+enum HallowendData
+{
+ SPELL_HALLOWED_WAND_PIRATE = 24717,
+ SPELL_HALLOWED_WAND_NINJA = 24718,
+ SPELL_HALLOWED_WAND_LEPER_GNOME = 24719,
+ SPELL_HALLOWED_WAND_RANDOM = 24720,
+ SPELL_HALLOWED_WAND_SKELETON = 24724,
+ SPELL_HALLOWED_WAND_WISP = 24733,
+ SPELL_HALLOWED_WAND_GHOST = 24737,
+ SPELL_HALLOWED_WAND_BAT = 24741
+};
+
+// 24717, 24718, 24719, 24720, 24724, 24733, 24737, 24741
+class spell_hallow_end_wand : public SpellScriptLoader
+{
+public:
+ spell_hallow_end_wand() : SpellScriptLoader("spell_hallow_end_wand") {}
+
+ class spell_hallow_end_wand_SpellScript : public SpellScript
+ {
+ PrepareSpellScript(spell_hallow_end_wand_SpellScript);
+
+ bool Validate(SpellInfo const* /*spellEntry*/) override
+ {
+ return ValidateSpellInfo(
+ {
+ SPELL_PIRATE_COSTUME_MALE,
+ SPELL_PIRATE_COSTUME_FEMALE,
+ SPELL_NINJA_COSTUME_MALE,
+ SPELL_NINJA_COSTUME_FEMALE,
+ SPELL_LEPER_GNOME_COSTUME_MALE,
+ SPELL_LEPER_GNOME_COSTUME_FEMALE,
+ SPELL_GHOST_COSTUME_MALE,
+ SPELL_GHOST_COSTUME_FEMALE
+ });
+ }
+
+ void HandleScriptEffect()
+ {
+ Unit* caster = GetCaster();
+ Unit* target = GetHitUnit();
+
+ uint32 spellId = 0;
+ uint8 gender = target->GetNativeGender();
+
+ switch (GetSpellInfo()->Id)
+ {
+ case SPELL_HALLOWED_WAND_LEPER_GNOME:
+ spellId = gender ? SPELL_LEPER_GNOME_COSTUME_FEMALE : SPELL_LEPER_GNOME_COSTUME_MALE;
+ break;
+ case SPELL_HALLOWED_WAND_PIRATE:
+ spellId = gender ? SPELL_PIRATE_COSTUME_FEMALE : SPELL_PIRATE_COSTUME_MALE;
+ break;
+ case SPELL_HALLOWED_WAND_GHOST:
+ spellId = gender ? SPELL_GHOST_COSTUME_FEMALE : SPELL_GHOST_COSTUME_MALE;
+ break;
+ case SPELL_HALLOWED_WAND_NINJA:
+ spellId = gender ? SPELL_NINJA_COSTUME_FEMALE : SPELL_NINJA_COSTUME_MALE;
+ break;
+ case SPELL_HALLOWED_WAND_RANDOM:
+ spellId = RAND(SPELL_HALLOWED_WAND_PIRATE, SPELL_HALLOWED_WAND_NINJA, SPELL_HALLOWED_WAND_LEPER_GNOME, SPELL_HALLOWED_WAND_SKELETON, SPELL_HALLOWED_WAND_WISP, SPELL_HALLOWED_WAND_GHOST, SPELL_HALLOWED_WAND_BAT);
+ break;
+ default:
+ return;
+ }
+ caster->CastSpell(target, spellId, true);
+ }
+
+ void Register() override
+ {
+ AfterHit += SpellHitFn(spell_hallow_end_wand_SpellScript::HandleScriptEffect);
+ }
+ };
+
+ SpellScript* GetSpellScript() const override
+ {
+ return new spell_hallow_end_wand_SpellScript();
+ }
+};
+
+void AddSC_event_hallows_end()
+{
+ new spell_hallow_end_candy();
+ new spell_hallow_end_candy_pirate();
+ new spell_hallow_end_trick();
+ new spell_hallow_end_trick_or_treat();
+ new spell_hallow_end_tricky_treat();
+ new spell_hallow_end_wand();
+}
diff --git a/src/server/scripts/Events/love_is_in_the_air.cpp b/src/server/scripts/Events/love_is_in_the_air.cpp
new file mode 100644
index 00000000000..c01c21058a4
--- /dev/null
+++ b/src/server/scripts/Events/love_is_in_the_air.cpp
@@ -0,0 +1,111 @@
+/*
+ * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "ScriptMgr.h"
+#include "CellImpl.h"
+#include "CreatureAIImpl.h"
+#include "GridNotifiersImpl.h"
+#include "Player.h"
+#include "SpellAuraEffects.h"
+#include "SpellScript.h"
+
+enum SpellsPicnic
+{
+ SPELL_BASKET_CHECK = 45119, // Holiday - Valentine - Romantic Picnic Near Basket Check
+ SPELL_MEAL_PERIODIC = 45103, // Holiday - Valentine - Romantic Picnic Meal Periodic - effect dummy
+ SPELL_MEAL_EAT_VISUAL = 45120, // Holiday - Valentine - Romantic Picnic Meal Eat Visual
+ // SPELL_MEAL_PARTICLE = 45114, // Holiday - Valentine - Romantic Picnic Meal Particle - unused
+ SPELL_DRINK_VISUAL = 45121, // Holiday - Valentine - Romantic Picnic Drink Visual
+ SPELL_ROMANTIC_PICNIC_ACHIEV = 45123, // Romantic Picnic periodic = 5000
+};
+
+// 45102 - Romantic Picnic
+class spell_love_is_in_the_air_romantic_picnic : public AuraScript
+{
+ PrepareAuraScript(spell_love_is_in_the_air_romantic_picnic);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo(
+ {
+ SPELL_BASKET_CHECK,
+ SPELL_MEAL_PERIODIC,
+ SPELL_MEAL_EAT_VISUAL,
+ SPELL_DRINK_VISUAL,
+ SPELL_ROMANTIC_PICNIC_ACHIEV
+ });
+ }
+
+ void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
+ {
+ Unit* target = GetTarget();
+ target->SetStandState(UNIT_STAND_STATE_SIT);
+ target->CastSpell(target, SPELL_MEAL_PERIODIC);
+ }
+
+ void OnPeriodic(AuraEffect const* /*aurEff*/)
+ {
+ // Every 5 seconds
+ Unit* target = GetTarget();
+
+ // If our player is no longer sit, remove all auras
+ if (target->GetStandState() != UNIT_STAND_STATE_SIT)
+ {
+ target->RemoveAurasDueToSpell(SPELL_ROMANTIC_PICNIC_ACHIEV);
+ target->RemoveAura(GetAura());
+ return;
+ }
+
+ target->CastSpell(target, SPELL_BASKET_CHECK); // unknown use, it targets Romantic Basket
+ target->CastSpell(target, RAND(SPELL_MEAL_EAT_VISUAL, SPELL_DRINK_VISUAL));
+
+ bool foundSomeone = false;
+ // For nearby players, check if they have the same aura. If so, cast Romantic Picnic (45123)
+ // required by achievement and "hearts" visual
+ std::list<Player*> playerList;
+ Trinity::AnyPlayerInObjectRangeCheck checker(target, INTERACTION_DISTANCE*2);
+ Trinity::PlayerListSearcher<Trinity::AnyPlayerInObjectRangeCheck> searcher(target, playerList, checker);
+ Cell::VisitWorldObjects(target, searcher, INTERACTION_DISTANCE * 2);
+ for (std::list<Player*>::const_iterator itr = playerList.begin(); itr != playerList.end(); ++itr)
+ {
+ if (Player* playerFound = (*itr))
+ {
+ if (target != playerFound && playerFound->HasAura(GetId()))
+ {
+ playerFound->CastSpell(playerFound, SPELL_ROMANTIC_PICNIC_ACHIEV, true);
+ target->CastSpell(target, SPELL_ROMANTIC_PICNIC_ACHIEV, true);
+ foundSomeone = true;
+ break;
+ }
+ }
+ }
+
+ if (!foundSomeone && target->HasAura(SPELL_ROMANTIC_PICNIC_ACHIEV))
+ target->RemoveAurasDueToSpell(SPELL_ROMANTIC_PICNIC_ACHIEV);
+ }
+
+ void Register() override
+ {
+ AfterEffectApply += AuraEffectApplyFn(spell_love_is_in_the_air_romantic_picnic::OnApply, EFFECT_0, SPELL_AURA_PERIODIC_DUMMY, AURA_EFFECT_HANDLE_REAL);
+ OnEffectPeriodic += AuraEffectPeriodicFn(spell_love_is_in_the_air_romantic_picnic::OnPeriodic, EFFECT_0, SPELL_AURA_PERIODIC_DUMMY);
+ }
+};
+
+void AddSC_event_love_is_in_the_air()
+{
+ RegisterSpellScript(spell_love_is_in_the_air_romantic_picnic);
+}
diff --git a/src/server/scripts/Events/lunar_festival.cpp b/src/server/scripts/Events/lunar_festival.cpp
new file mode 100644
index 00000000000..cb11738aaca
--- /dev/null
+++ b/src/server/scripts/Events/lunar_festival.cpp
@@ -0,0 +1,175 @@
+/*
+ * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "GameObject.h"
+#include "ScriptMgr.h"
+#include "MotionMaster.h"
+#include "Player.h"
+#include "ScriptedCreature.h"
+#include "SpellInfo.h"
+
+/*####
+# npc_omen
+####*/
+
+enum Omen
+{
+ NPC_OMEN = 15467,
+
+ SPELL_OMEN_CLEAVE = 15284,
+ SPELL_OMEN_STARFALL = 26540,
+ SPELL_OMEN_SUMMON_SPOTLIGHT = 26392,
+ SPELL_ELUNE_CANDLE = 26374,
+
+ GO_ELUNE_TRAP_1 = 180876,
+ GO_ELUNE_TRAP_2 = 180877,
+
+ EVENT_CAST_CLEAVE = 1,
+ EVENT_CAST_STARFALL = 2,
+ EVENT_DESPAWN = 3,
+};
+
+class npc_omen : public CreatureScript
+{
+public:
+ npc_omen() : CreatureScript("npc_omen") { }
+
+ struct npc_omenAI : public ScriptedAI
+ {
+ npc_omenAI(Creature* creature) : ScriptedAI(creature)
+ {
+ me->SetImmuneToPC(true);
+ me->GetMotionMaster()->MovePoint(1, 7549.977f, -2855.137f, 456.9678f);
+ }
+
+ EventMap events;
+
+ void MovementInform(uint32 type, uint32 pointId) override
+ {
+ if (type != POINT_MOTION_TYPE)
+ return;
+
+ if (pointId == 1)
+ {
+ me->SetHomePosition(me->GetPositionX(), me->GetPositionY(), me->GetPositionZ(), me->GetOrientation());
+ me->SetImmuneToPC(false);
+ if (Player* player = me->SelectNearestPlayer(40.0f))
+ AttackStart(player);
+ }
+ }
+
+ void JustEngagedWith(Unit* /*attacker*/) override
+ {
+ events.Reset();
+ events.ScheduleEvent(EVENT_CAST_CLEAVE, 3s, 5s);
+ events.ScheduleEvent(EVENT_CAST_STARFALL, 8s, 10s);
+ }
+
+ void JustDied(Unit* /*killer*/) override
+ {
+ DoCast(SPELL_OMEN_SUMMON_SPOTLIGHT);
+ }
+
+ void SpellHit(WorldObject* /*caster*/, SpellInfo const* spellInfo) override
+ {
+ if (spellInfo->Id == SPELL_ELUNE_CANDLE)
+ {
+ if (me->HasAura(SPELL_OMEN_STARFALL))
+ me->RemoveAurasDueToSpell(SPELL_OMEN_STARFALL);
+
+ events.RescheduleEvent(EVENT_CAST_STARFALL, 14s, 16s);
+ }
+ }
+
+ void UpdateAI(uint32 diff) override
+ {
+ if (!UpdateVictim())
+ return;
+
+ events.Update(diff);
+
+ switch (events.ExecuteEvent())
+ {
+ case EVENT_CAST_CLEAVE:
+ DoCastVictim(SPELL_OMEN_CLEAVE);
+ events.ScheduleEvent(EVENT_CAST_CLEAVE, 8s, 10s);
+ break;
+ case EVENT_CAST_STARFALL:
+ if (Unit* target = SelectTarget(SelectTargetMethod::Random, 0))
+ DoCast(target, SPELL_OMEN_STARFALL);
+ events.ScheduleEvent(EVENT_CAST_STARFALL, 14s, 16s);
+ break;
+ }
+
+ DoMeleeAttackIfReady();
+ }
+ };
+
+ CreatureAI* GetAI(Creature* creature) const override
+ {
+ return new npc_omenAI(creature);
+ }
+};
+
+class npc_giant_spotlight : public CreatureScript
+{
+public:
+ npc_giant_spotlight() : CreatureScript("npc_giant_spotlight") { }
+
+ struct npc_giant_spotlightAI : public ScriptedAI
+ {
+ npc_giant_spotlightAI(Creature* creature) : ScriptedAI(creature) { }
+
+ EventMap events;
+
+ void Reset() override
+ {
+ events.Reset();
+ events.ScheduleEvent(EVENT_DESPAWN, 5min);
+ }
+
+ void UpdateAI(uint32 diff) override
+ {
+ events.Update(diff);
+
+ if (events.ExecuteEvent() == EVENT_DESPAWN)
+ {
+ if (GameObject* trap = me->FindNearestGameObject(GO_ELUNE_TRAP_1, 5.0f))
+ trap->RemoveFromWorld();
+
+ if (GameObject* trap = me->FindNearestGameObject(GO_ELUNE_TRAP_2, 5.0f))
+ trap->RemoveFromWorld();
+
+ if (Creature* omen = me->FindNearestCreature(NPC_OMEN, 5.0f, false))
+ omen->DespawnOrUnsummon();
+
+ me->DespawnOrUnsummon();
+ }
+ }
+ };
+
+ CreatureAI* GetAI(Creature* creature) const override
+ {
+ return new npc_giant_spotlightAI(creature);
+ }
+};
+
+void AddSC_event_lunar_festival()
+{
+ new npc_omen();
+ new npc_giant_spotlight();
+}
diff --git a/src/server/scripts/Events/midsummer.cpp b/src/server/scripts/Events/midsummer.cpp
new file mode 100644
index 00000000000..2e28d3f18c3
--- /dev/null
+++ b/src/server/scripts/Events/midsummer.cpp
@@ -0,0 +1,461 @@
+/*
+ * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "ScriptMgr.h"
+#include "CreatureAIImpl.h"
+#include "Player.h"
+#include "SpellAuraEffects.h"
+#include "SpellScript.h"
+
+enum TorchSpells
+{
+ SPELL_TORCH_TOSSING_TRAINING = 45716,
+ SPELL_TORCH_TOSSING_PRACTICE = 46630,
+ SPELL_TORCH_TOSSING_TRAINING_SUCCESS_ALLIANCE = 45719,
+ SPELL_TORCH_TOSSING_TRAINING_SUCCESS_HORDE = 46651,
+ SPELL_TARGET_INDICATOR_COSMETIC = 46901,
+ SPELL_TARGET_INDICATOR = 45723,
+ SPELL_BRAZIERS_HIT = 45724
+};
+
+// 45724 - Braziers Hit!
+class spell_midsummer_braziers_hit : public AuraScript
+{
+ PrepareAuraScript(spell_midsummer_braziers_hit);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo(
+ {
+ SPELL_TORCH_TOSSING_TRAINING,
+ SPELL_TORCH_TOSSING_PRACTICE,
+ SPELL_TORCH_TOSSING_TRAINING_SUCCESS_ALLIANCE,
+ SPELL_TORCH_TOSSING_TRAINING_SUCCESS_HORDE
+ });
+ }
+
+ void HandleEffectApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
+ {
+ Player* player = GetTarget()->ToPlayer();
+ if (!player)
+ return;
+
+ if ((player->HasAura(SPELL_TORCH_TOSSING_TRAINING) && GetStackAmount() == 8) || (player->HasAura(SPELL_TORCH_TOSSING_PRACTICE) && GetStackAmount() == 20))
+ {
+ if (player->GetTeam() == ALLIANCE)
+ player->CastSpell(player, SPELL_TORCH_TOSSING_TRAINING_SUCCESS_ALLIANCE, true);
+ else if (player->GetTeam() == HORDE)
+ player->CastSpell(player, SPELL_TORCH_TOSSING_TRAINING_SUCCESS_HORDE, true);
+ Remove();
+ }
+ }
+
+ void Register() override
+ {
+ AfterEffectApply += AuraEffectApplyFn(spell_midsummer_braziers_hit::HandleEffectApply, EFFECT_0, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAPPLY);
+ }
+};
+
+// 45907 - Torch Target Picker
+class spell_midsummer_torch_target_picker : public SpellScript
+{
+ PrepareSpellScript(spell_midsummer_torch_target_picker);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo({ SPELL_TARGET_INDICATOR_COSMETIC, SPELL_TARGET_INDICATOR });
+ }
+
+ void HandleScript(SpellEffIndex /*effIndex*/)
+ {
+ Unit* target = GetHitUnit();
+ target->CastSpell(target, SPELL_TARGET_INDICATOR_COSMETIC, true);
+ target->CastSpell(target, SPELL_TARGET_INDICATOR, true);
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_midsummer_torch_target_picker::HandleScript, EFFECT_0, SPELL_EFFECT_DUMMY);
+ }
+};
+
+// 46054 - Torch Toss (land)
+class spell_midsummer_torch_toss_land : public SpellScript
+{
+ PrepareSpellScript(spell_midsummer_torch_toss_land);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo({ SPELL_BRAZIERS_HIT });
+ }
+
+ void HandleScript(SpellEffIndex /*effIndex*/)
+ {
+ GetHitUnit()->CastSpell(GetCaster(), SPELL_BRAZIERS_HIT, true);
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_midsummer_torch_toss_land::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
+ }
+};
+
+enum RibbonPoleData
+{
+ SPELL_HAS_FULL_MIDSUMMER_SET = 58933,
+ SPELL_BURNING_HOT_POLE_DANCE = 58934,
+ SPELL_RIBBON_POLE_PERIODIC_VISUAL = 45406,
+ SPELL_RIBBON_DANCE = 29175,
+ SPELL_TEST_RIBBON_POLE_1 = 29705,
+ SPELL_TEST_RIBBON_POLE_2 = 29726,
+ SPELL_TEST_RIBBON_POLE_3 = 29727
+};
+
+// 29705, 29726, 29727 - Test Ribbon Pole Channel
+class spell_midsummer_test_ribbon_pole_channel : public AuraScript
+{
+ PrepareAuraScript(spell_midsummer_test_ribbon_pole_channel);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo(
+ {
+ SPELL_RIBBON_POLE_PERIODIC_VISUAL,
+ SPELL_BURNING_HOT_POLE_DANCE,
+ SPELL_HAS_FULL_MIDSUMMER_SET,
+ SPELL_RIBBON_DANCE
+ });
+ }
+
+ void HandleRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
+ {
+ GetTarget()->RemoveAurasDueToSpell(SPELL_RIBBON_POLE_PERIODIC_VISUAL);
+ }
+
+ void PeriodicTick(AuraEffect const* /*aurEff*/)
+ {
+ Unit* target = GetTarget();
+ target->CastSpell(target, SPELL_RIBBON_POLE_PERIODIC_VISUAL, true);
+
+ if (Aura* aur = target->GetAura(SPELL_RIBBON_DANCE))
+ {
+ aur->SetMaxDuration(std::min(3600000, aur->GetMaxDuration() + 180000));
+ aur->RefreshDuration();
+
+ if (aur->GetMaxDuration() == 3600000 && target->HasAura(SPELL_HAS_FULL_MIDSUMMER_SET))
+ target->CastSpell(target, SPELL_BURNING_HOT_POLE_DANCE, true);
+ }
+ else
+ target->CastSpell(target, SPELL_RIBBON_DANCE, true);
+ }
+
+ void Register() override
+ {
+ AfterEffectRemove += AuraEffectRemoveFn(spell_midsummer_test_ribbon_pole_channel::HandleRemove, EFFECT_1, SPELL_AURA_PERIODIC_TRIGGER_SPELL, AURA_EFFECT_HANDLE_REAL);
+ OnEffectPeriodic += AuraEffectPeriodicFn(spell_midsummer_test_ribbon_pole_channel::PeriodicTick, EFFECT_1, SPELL_AURA_PERIODIC_TRIGGER_SPELL);
+ }
+};
+
+// 45406 - Holiday - Midsummer, Ribbon Pole Periodic Visual
+class spell_midsummer_ribbon_pole_periodic_visual : public AuraScript
+{
+ PrepareAuraScript(spell_midsummer_ribbon_pole_periodic_visual);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo(
+ {
+ SPELL_TEST_RIBBON_POLE_1,
+ SPELL_TEST_RIBBON_POLE_2,
+ SPELL_TEST_RIBBON_POLE_3
+ });
+ }
+
+ void PeriodicTick(AuraEffect const* /*aurEff*/)
+ {
+ Unit* target = GetTarget();
+ if (!target->HasAura(SPELL_TEST_RIBBON_POLE_1) && !target->HasAura(SPELL_TEST_RIBBON_POLE_2) && !target->HasAura(SPELL_TEST_RIBBON_POLE_3))
+ Remove();
+ }
+
+ void Register() override
+ {
+ OnEffectPeriodic += AuraEffectPeriodicFn(spell_midsummer_ribbon_pole_periodic_visual::PeriodicTick, EFFECT_0, SPELL_AURA_PERIODIC_DUMMY);
+ }
+};
+
+enum JugglingTorch
+{
+ SPELL_JUGGLE_TORCH_SLOW = 45792,
+ SPELL_JUGGLE_TORCH_MEDIUM = 45806,
+ SPELL_JUGGLE_TORCH_FAST = 45816,
+ SPELL_JUGGLE_TORCH_SELF = 45638,
+
+ SPELL_JUGGLE_TORCH_SHADOW_SLOW = 46120,
+ SPELL_JUGGLE_TORCH_SHADOW_MEDIUM = 46118,
+ SPELL_JUGGLE_TORCH_SHADOW_FAST = 46117,
+ SPELL_JUGGLE_TORCH_SHADOW_SELF = 46121,
+
+ SPELL_GIVE_TORCH = 45280,
+ QUEST_TORCH_CATCHING_A = 11657,
+ QUEST_TORCH_CATCHING_H = 11923,
+ QUEST_MORE_TORCH_CATCHING_A = 11924,
+ QUEST_MORE_TORCH_CATCHING_H = 11925
+};
+
+// 45819 - Throw Torch
+class spell_midsummer_juggle_torch : public SpellScript
+{
+ PrepareSpellScript(spell_midsummer_juggle_torch);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo({
+ SPELL_JUGGLE_TORCH_SLOW, SPELL_JUGGLE_TORCH_MEDIUM, SPELL_JUGGLE_TORCH_FAST,
+ SPELL_JUGGLE_TORCH_SELF, SPELL_JUGGLE_TORCH_SHADOW_SLOW, SPELL_JUGGLE_TORCH_SHADOW_MEDIUM,
+ SPELL_JUGGLE_TORCH_SHADOW_FAST, SPELL_JUGGLE_TORCH_SHADOW_SELF
+ });
+ }
+
+ void HandleDummy(SpellEffIndex /*effIndex*/)
+ {
+ if (!GetExplTargetDest())
+ return;
+
+ Position spellDest = *GetExplTargetDest();
+ float distance = GetCaster()->GetExactDist2d(spellDest.GetPositionX(), spellDest.GetPositionY());
+
+ uint32 torchSpellID = 0;
+ uint32 torchShadowSpellID = 0;
+
+ if (distance <= 1.5f)
+ {
+ torchSpellID = SPELL_JUGGLE_TORCH_SELF;
+ torchShadowSpellID = SPELL_JUGGLE_TORCH_SHADOW_SELF;
+ spellDest = GetCaster()->GetPosition();
+ }
+ else if (distance <= 10.0f)
+ {
+ torchSpellID = SPELL_JUGGLE_TORCH_SLOW;
+ torchShadowSpellID = SPELL_JUGGLE_TORCH_SHADOW_SLOW;
+ }
+ else if (distance <= 20.0f)
+ {
+ torchSpellID = SPELL_JUGGLE_TORCH_MEDIUM;
+ torchShadowSpellID = SPELL_JUGGLE_TORCH_SHADOW_MEDIUM;
+ }
+ else
+ {
+ torchSpellID = SPELL_JUGGLE_TORCH_FAST;
+ torchShadowSpellID = SPELL_JUGGLE_TORCH_SHADOW_FAST;
+ }
+
+ GetCaster()->CastSpell(spellDest, torchSpellID);
+ GetCaster()->CastSpell(spellDest, torchShadowSpellID);
+ }
+
+ void Register() override
+ {
+ OnEffectHit += SpellEffectFn(spell_midsummer_juggle_torch::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
+ }
+};
+
+// 45644 - Juggle Torch (Catch)
+class spell_midsummer_torch_catch : public SpellScript
+{
+ PrepareSpellScript(spell_midsummer_torch_catch);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo({ SPELL_GIVE_TORCH });
+ }
+
+ void HandleDummy(SpellEffIndex /*effIndex*/)
+ {
+ Player* player = GetHitPlayer();
+ if (!player)
+ return;
+
+ if (player->GetQuestStatus(QUEST_TORCH_CATCHING_A) == QUEST_STATUS_REWARDED || player->GetQuestStatus(QUEST_TORCH_CATCHING_H) == QUEST_STATUS_REWARDED)
+ player->CastSpell(player, SPELL_GIVE_TORCH);
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_midsummer_torch_catch::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
+ }
+};
+
+enum FlingTorch
+{
+ SPELL_FLING_TORCH_TRIGGERED = 45669,
+ SPELL_FLING_TORCH_SHADOW = 46105,
+ SPELL_JUGGLE_TORCH_MISSED = 45676,
+ SPELL_TORCHES_CAUGHT = 45693,
+ SPELL_TORCH_CATCHING_SUCCESS_ALLIANCE = 46081,
+ SPELL_TORCH_CATCHING_SUCCESS_HORDE = 46654,
+ SPELL_TORCH_CATCHING_REMOVE_TORCHES = 46084
+};
+
+// 46747 - Fling torch
+class spell_midsummer_fling_torch : public SpellScript
+{
+ PrepareSpellScript(spell_midsummer_fling_torch);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo({ SPELL_FLING_TORCH_TRIGGERED, SPELL_FLING_TORCH_SHADOW });
+ }
+
+ void HandleDummy(SpellEffIndex /*effIndex*/)
+ {
+ Position dest = GetCaster()->GetFirstCollisionPosition(30.0f, (float)rand_norm() * static_cast<float>(2 * M_PI));
+ GetCaster()->CastSpell(dest, SPELL_FLING_TORCH_TRIGGERED, true);
+ GetCaster()->CastSpell(dest, SPELL_FLING_TORCH_SHADOW);
+ }
+
+ void Register() override
+ {
+ OnEffectHit += SpellEffectFn(spell_midsummer_fling_torch::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
+ }
+};
+
+// 45669 - Fling Torch
+class spell_midsummer_fling_torch_triggered : public SpellScript
+{
+ PrepareSpellScript(spell_midsummer_fling_torch_triggered);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo({ SPELL_JUGGLE_TORCH_MISSED });
+ }
+
+ void HandleTriggerMissile(SpellEffIndex effIndex)
+ {
+ if (Position const* pos = GetHitDest())
+ {
+ if (GetCaster()->GetExactDist2d(pos) > 3.0f)
+ {
+ PreventHitEffect(effIndex);
+ GetCaster()->CastSpell(*GetExplTargetDest(), SPELL_JUGGLE_TORCH_MISSED);
+ GetCaster()->RemoveAura(SPELL_TORCHES_CAUGHT);
+ }
+ }
+ }
+
+ void Register() override
+ {
+ OnEffectHit += SpellEffectFn(spell_midsummer_fling_torch_triggered::HandleTriggerMissile, EFFECT_0, SPELL_EFFECT_TRIGGER_MISSILE);
+ }
+};
+
+// 45671 - Juggle Torch (Catch, Quest)
+class spell_midsummer_fling_torch_catch : public SpellScript
+{
+ PrepareSpellScript(spell_midsummer_fling_torch_catch);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo({
+ SPELL_FLING_TORCH_TRIGGERED,
+ SPELL_TORCH_CATCHING_SUCCESS_ALLIANCE,
+ SPELL_TORCH_CATCHING_SUCCESS_HORDE,
+ SPELL_TORCH_CATCHING_REMOVE_TORCHES,
+ SPELL_FLING_TORCH_SHADOW
+ });
+ }
+
+ void HandleScriptEffect(SpellEffIndex /*effIndex*/)
+ {
+ Player* player = GetHitPlayer();
+ if (!player)
+ return;
+
+ if (!GetExplTargetDest())
+ return;
+
+ // Only the caster can catch the torch
+ if (player->GetGUID() != GetCaster()->GetGUID())
+ return;
+
+ uint8 requiredCatches = 0;
+ // Number of required catches depends on quest - 4 for the normal quest, 10 for the daily version
+ if (player->GetQuestStatus(QUEST_TORCH_CATCHING_A) == QUEST_STATUS_INCOMPLETE || player->GetQuestStatus(QUEST_TORCH_CATCHING_H) == QUEST_STATUS_INCOMPLETE)
+ requiredCatches = 3;
+ else if (player->GetQuestStatus(QUEST_MORE_TORCH_CATCHING_A) == QUEST_STATUS_INCOMPLETE || player->GetQuestStatus(QUEST_MORE_TORCH_CATCHING_H) == QUEST_STATUS_INCOMPLETE)
+ requiredCatches = 9;
+
+ // Used quest item without being on quest - do nothing
+ if (requiredCatches == 0)
+ return;
+
+ if (player->GetAuraCount(SPELL_TORCHES_CAUGHT) >= requiredCatches)
+ {
+ player->CastSpell(player, (player->GetTeam() == ALLIANCE) ? SPELL_TORCH_CATCHING_SUCCESS_ALLIANCE : SPELL_TORCH_CATCHING_SUCCESS_HORDE);
+ player->CastSpell(player, SPELL_TORCH_CATCHING_REMOVE_TORCHES);
+ player->RemoveAura(SPELL_TORCHES_CAUGHT);
+ }
+ else
+ {
+ Position dest = player->GetFirstCollisionPosition(15.0f, (float)rand_norm() * static_cast<float>(2 * M_PI));
+ player->CastSpell(player, SPELL_TORCHES_CAUGHT);
+ player->CastSpell(dest, SPELL_FLING_TORCH_TRIGGERED, true);
+ player->CastSpell(dest, SPELL_FLING_TORCH_SHADOW);
+ }
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_midsummer_fling_torch_catch::HandleScriptEffect, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
+ }
+};
+
+// 45676 - Juggle Torch (Quest, Missed)
+class spell_midsummer_fling_torch_missed : public SpellScript
+{
+ PrepareSpellScript(spell_midsummer_fling_torch_missed);
+
+ void FilterTargets(std::list<WorldObject*>& targets)
+ {
+ // This spell only hits the caster
+ targets.remove_if([this](WorldObject* obj)
+ {
+ return obj->GetGUID() != GetCaster()->GetGUID();
+ });
+ }
+
+ void Register() override
+ {
+ OnObjectAreaTargetSelect += SpellObjectAreaTargetSelectFn(spell_midsummer_fling_torch_missed::FilterTargets, EFFECT_0, TARGET_UNIT_DEST_AREA_ENTRY);
+ OnObjectAreaTargetSelect += SpellObjectAreaTargetSelectFn(spell_midsummer_fling_torch_missed::FilterTargets, EFFECT_2, TARGET_UNIT_DEST_AREA_ENTRY);
+ }
+};
+
+void AddSC_event_midsummer()
+{
+ RegisterSpellScript(spell_midsummer_braziers_hit);
+ RegisterSpellScript(spell_midsummer_torch_target_picker);
+ RegisterSpellScript(spell_midsummer_torch_toss_land);
+ RegisterSpellScript(spell_midsummer_test_ribbon_pole_channel);
+ RegisterSpellScript(spell_midsummer_ribbon_pole_periodic_visual);
+ RegisterSpellScript(spell_midsummer_juggle_torch);
+ RegisterSpellScript(spell_midsummer_torch_catch);
+ RegisterSpellScript(spell_midsummer_fling_torch);
+ RegisterSpellScript(spell_midsummer_fling_torch_triggered);
+ RegisterSpellScript(spell_midsummer_fling_torch_catch);
+ RegisterSpellScript(spell_midsummer_fling_torch_missed);
+}
diff --git a/src/server/scripts/Events/pilgrims_bounty.cpp b/src/server/scripts/Events/pilgrims_bounty.cpp
new file mode 100644
index 00000000000..40f7301831b
--- /dev/null
+++ b/src/server/scripts/Events/pilgrims_bounty.cpp
@@ -0,0 +1,563 @@
+/*
+ * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "ScriptMgr.h"
+#include "Creature.h"
+#include "CreatureAI.h"
+#include "Player.h"
+#include "SpellAuraEffects.h"
+#include "SpellMgr.h"
+#include "SpellScript.h"
+#include "Vehicle.h"
+
+enum PilgrimsBountyBuffFood
+{
+ // Pilgrims Bounty Buff Food
+ SPELL_WELL_FED_AP_TRIGGER = 65414,
+ SPELL_WELL_FED_ZM_TRIGGER = 65412,
+ SPELL_WELL_FED_HIT_TRIGGER = 65416,
+ SPELL_WELL_FED_HASTE_TRIGGER = 65410,
+ SPELL_WELL_FED_SPIRIT_TRIGGER = 65415
+};
+
+class spell_pilgrims_bounty_buff_food : public SpellScriptLoader
+{
+ private:
+ uint32 const _triggeredSpellId;
+ public:
+ spell_pilgrims_bounty_buff_food(char const* name, uint32 triggeredSpellId) : SpellScriptLoader(name), _triggeredSpellId(triggeredSpellId) { }
+
+ class spell_pilgrims_bounty_buff_food_AuraScript : public AuraScript
+ {
+ PrepareAuraScript(spell_pilgrims_bounty_buff_food_AuraScript);
+ private:
+ uint32 const _triggeredSpellId;
+
+ public:
+ spell_pilgrims_bounty_buff_food_AuraScript(uint32 triggeredSpellId) : AuraScript(), _triggeredSpellId(triggeredSpellId)
+ {
+ _handled = false;
+ }
+
+ void HandleTriggerSpell(AuraEffect const* /*aurEff*/)
+ {
+ PreventDefaultAction();
+ if (_handled)
+ return;
+
+ _handled = true;
+ GetTarget()->CastSpell(GetTarget(), _triggeredSpellId, true);
+ }
+
+ void Register() override
+ {
+ OnEffectPeriodic += AuraEffectPeriodicFn(spell_pilgrims_bounty_buff_food_AuraScript::HandleTriggerSpell, EFFECT_2, SPELL_AURA_PERIODIC_TRIGGER_SPELL);
+ }
+
+ bool _handled;
+ };
+
+ AuraScript* GetAuraScript() const override
+ {
+ return new spell_pilgrims_bounty_buff_food_AuraScript(_triggeredSpellId);
+ }
+};
+
+enum FeastOnSpells
+{
+ FEAST_ON_TURKEY = 61784,
+ FEAST_ON_CRANBERRIES = 61785,
+ FEAST_ON_SWEET_POTATOES = 61786,
+ FEAST_ON_PIE = 61787,
+ FEAST_ON_STUFFING = 61788,
+ SPELL_CRANBERRY_HELPINS = 61841,
+ SPELL_TURKEY_HELPINS = 61842,
+ SPELL_STUFFING_HELPINS = 61843,
+ SPELL_SWEET_POTATO_HELPINS = 61844,
+ SPELL_PIE_HELPINS = 61845,
+ SPELL_ON_PLATE_EAT_VISUAL = 61826
+};
+
+/* 61784 - Feast On Turkey
+ 61785 - Feast On Cranberries
+ 61786 - Feast On Sweet Potatoes
+ 61787 - Feast On Pie
+ 61788 - Feast On Stuffing */
+class spell_pilgrims_bounty_feast_on : public SpellScriptLoader
+{
+ public:
+ spell_pilgrims_bounty_feast_on() : SpellScriptLoader("spell_pilgrims_bounty_feast_on") { }
+
+ class spell_pilgrims_bounty_feast_on_SpellScript : public SpellScript
+ {
+ PrepareSpellScript(spell_pilgrims_bounty_feast_on_SpellScript);
+
+ bool Validate(SpellInfo const* spellInfo) override
+ {
+ return !spellInfo->GetEffects().empty()
+ && ValidateSpellInfo({ uint32(spellInfo->GetEffect(EFFECT_0).CalcValue()) })
+ && !sSpellMgr->AssertSpellInfo(spellInfo->GetEffect(EFFECT_0).CalcValue(), DIFFICULTY_NONE)->GetEffects().empty();
+ }
+
+ void HandleDummy(SpellEffIndex /*effIndex*/)
+ {
+ Unit* caster = GetCaster();
+
+ uint32 _spellId = 0;
+ switch (GetSpellInfo()->Id)
+ {
+ case FEAST_ON_TURKEY:
+ _spellId = SPELL_TURKEY_HELPINS;
+ break;
+ case FEAST_ON_CRANBERRIES:
+ _spellId = SPELL_CRANBERRY_HELPINS;
+ break;
+ case FEAST_ON_SWEET_POTATOES:
+ _spellId = SPELL_SWEET_POTATO_HELPINS;
+ break;
+ case FEAST_ON_PIE:
+ _spellId = SPELL_PIE_HELPINS;
+ break;
+ case FEAST_ON_STUFFING:
+ _spellId = SPELL_STUFFING_HELPINS;
+ break;
+ default:
+ return;
+ }
+
+ if (Vehicle* vehicle = caster->GetVehicleKit())
+ if (Unit* target = vehicle->GetPassenger(0))
+ if (Player* player = target->ToPlayer())
+ {
+ player->CastSpell(player, SPELL_ON_PLATE_EAT_VISUAL, true);
+ caster->CastSpell(player, _spellId, CastSpellExtraArgs(TRIGGERED_FULL_MASK)
+ .SetOriginalCaster(player->GetGUID()));
+ }
+
+ if (Aura* aura = caster->GetAura(GetEffectValue()))
+ {
+ if (aura->GetStackAmount() == 1)
+ caster->RemoveAurasDueToSpell(aura->GetSpellInfo()->GetEffect(EFFECT_0).CalcValue());
+ aura->ModStackAmount(-1);
+ }
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_pilgrims_bounty_feast_on_SpellScript::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
+ }
+ };
+
+ SpellScript* GetSpellScript() const override
+ {
+ return new spell_pilgrims_bounty_feast_on_SpellScript();
+ }
+};
+
+enum TheTurkinator
+{
+ SPELL_KILL_COUNTER_VISUAL = 62015,
+ SPELL_KILL_COUNTER_VISUAL_MAX = 62021,
+ EMOTE_TURKEY_HUNTER = 0,
+ EMOTE_TURKEY_DOMINATION = 1,
+ EMOTE_TURKEY_SLAUGHTER = 2,
+ EMOTE_TURKEY_TRIUMPH = 3
+};
+
+// 62014 - Turkey Tracker
+class spell_pilgrims_bounty_turkey_tracker : public SpellScriptLoader
+{
+ public:
+ spell_pilgrims_bounty_turkey_tracker() : SpellScriptLoader("spell_pilgrims_bounty_turkey_tracker") { }
+
+ class spell_pilgrims_bounty_turkey_tracker_SpellScript : public SpellScript
+ {
+ PrepareSpellScript(spell_pilgrims_bounty_turkey_tracker_SpellScript);
+
+ bool Validate(SpellInfo const* /*spell*/) override
+ {
+ return ValidateSpellInfo({ SPELL_KILL_COUNTER_VISUAL, SPELL_KILL_COUNTER_VISUAL_MAX });
+ }
+
+ void HandleScript(SpellEffIndex /*effIndex*/)
+ {
+ Creature* caster = GetCaster()->ToCreature();
+ Unit* target = GetHitUnit();
+
+ if (!target || !caster)
+ return;
+
+ if (target->HasAura(SPELL_KILL_COUNTER_VISUAL_MAX))
+ return;
+
+ if (Aura const* aura = target->GetAura(GetSpellInfo()->Id))
+ {
+ switch (aura->GetStackAmount())
+ {
+ case 10:
+ caster->AI()->Talk(EMOTE_TURKEY_HUNTER, target);
+ break;
+ case 20:
+ caster->AI()->Talk(EMOTE_TURKEY_DOMINATION, target);
+ break;
+ case 30:
+ caster->AI()->Talk(EMOTE_TURKEY_SLAUGHTER, target);
+ break;
+ case 40:
+ caster->AI()->Talk(EMOTE_TURKEY_TRIUMPH, target);
+ target->CastSpell(target, SPELL_KILL_COUNTER_VISUAL_MAX, true);
+ target->RemoveAurasDueToSpell(GetSpellInfo()->Id);
+ break;
+ default:
+ return;
+ }
+ target->CastSpell(target, SPELL_KILL_COUNTER_VISUAL, true);
+ }
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_pilgrims_bounty_turkey_tracker_SpellScript::HandleScript, EFFECT_1, SPELL_EFFECT_SCRIPT_EFFECT);
+ }
+ };
+
+ SpellScript* GetSpellScript() const override
+ {
+ return new spell_pilgrims_bounty_turkey_tracker_SpellScript();
+ }
+};
+
+enum SpiritOfSharing
+{
+ SPELL_THE_SPIRIT_OF_SHARING = 61849
+};
+
+class spell_pilgrims_bounty_well_fed : public SpellScriptLoader
+{
+ private:
+ uint32 _triggeredSpellId;
+
+ public:
+ spell_pilgrims_bounty_well_fed(char const* name, uint32 triggeredSpellId) : SpellScriptLoader(name), _triggeredSpellId(triggeredSpellId) { }
+
+ class spell_pilgrims_bounty_well_fed_SpellScript : public SpellScript
+ {
+ PrepareSpellScript(spell_pilgrims_bounty_well_fed_SpellScript);
+
+ uint32 _triggeredSpellId;
+
+ public:
+ spell_pilgrims_bounty_well_fed_SpellScript(uint32 triggeredSpellId) : SpellScript(), _triggeredSpellId(triggeredSpellId) { }
+
+ private:
+ bool Validate(SpellInfo const* /*spell*/) override
+ {
+ return ValidateSpellInfo({ _triggeredSpellId });
+ }
+
+ void HandleScript(SpellEffIndex effIndex)
+ {
+ PreventHitDefaultEffect(effIndex);
+ Player* target = GetHitPlayer();
+ if (!target)
+ return;
+
+ if (Aura const* aura = target->GetAura(GetSpellInfo()->Id))
+ {
+ if (aura->GetStackAmount() == 5)
+ target->CastSpell(target, _triggeredSpellId, true);
+ }
+
+ Aura const* turkey = target->GetAura(SPELL_TURKEY_HELPINS);
+ Aura const* cranberies = target->GetAura(SPELL_CRANBERRY_HELPINS);
+ Aura const* stuffing = target->GetAura(SPELL_STUFFING_HELPINS);
+ Aura const* sweetPotatoes = target->GetAura(SPELL_SWEET_POTATO_HELPINS);
+ Aura const* pie = target->GetAura(SPELL_PIE_HELPINS);
+
+ if ((turkey && turkey->GetStackAmount() == 5) && (cranberies && cranberies->GetStackAmount() == 5) && (stuffing && stuffing->GetStackAmount() == 5)
+ && (sweetPotatoes && sweetPotatoes->GetStackAmount() == 5) && (pie && pie->GetStackAmount() == 5))
+ {
+ target->CastSpell(target, SPELL_THE_SPIRIT_OF_SHARING, true);
+ target->RemoveAurasDueToSpell(SPELL_TURKEY_HELPINS);
+ target->RemoveAurasDueToSpell(SPELL_CRANBERRY_HELPINS);
+ target->RemoveAurasDueToSpell(SPELL_STUFFING_HELPINS);
+ target->RemoveAurasDueToSpell(SPELL_SWEET_POTATO_HELPINS);
+ target->RemoveAurasDueToSpell(SPELL_PIE_HELPINS);
+ }
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_pilgrims_bounty_well_fed_SpellScript::HandleScript, EFFECT_1, SPELL_EFFECT_SCRIPT_EFFECT);
+ }
+ };
+
+ SpellScript* GetSpellScript() const override
+ {
+ return new spell_pilgrims_bounty_well_fed_SpellScript(_triggeredSpellId);
+ }
+};
+
+enum BountifulTableMisc
+{
+ SEAT_PLAYER = 0,
+ SEAT_PLATE_HOLDER = 6,
+ NPC_BOUNTIFUL_TABLE = 32823,
+ SPELL_ON_PLATE_TURKEY = 61928,
+ SPELL_ON_PLATE_CRANBERRIES = 61925,
+ SPELL_ON_PLATE_STUFFING = 61927,
+ SPELL_ON_PLATE_SWEET_POTATOES = 61929,
+ SPELL_ON_PLATE_PIE = 61926,
+ SPELL_PASS_THE_TURKEY = 66373,
+ SPELL_PASS_THE_CRANBERRIES = 66372,
+ SPELL_PASS_THE_STUFFING = 66375,
+ SPELL_PASS_THE_SWEET_POTATOES = 66376,
+ SPELL_PASS_THE_PIE = 66374,
+ SPELL_ON_PLATE_VISUAL_PIE = 61825,
+ SPELL_ON_PLATE_VISUAL_CRANBERRIES = 61821,
+ SPELL_ON_PLATE_VISUAL_POTATOES = 61824,
+ SPELL_ON_PLATE_VISUAL_TURKEY = 61822,
+ SPELL_ON_PLATE_VISUAL_STUFFING = 61823,
+ SPELL_A_SERVING_OF_CRANBERRIES_PLATE = 61833,
+ SPELL_A_SERVING_OF_TURKEY_PLATE = 61835,
+ SPELL_A_SERVING_OF_STUFFING_PLATE = 61836,
+ SPELL_A_SERVING_OF_SWEET_POTATOES_PLATE = 61837,
+ SPELL_A_SERVING_OF_PIE_PLATE = 61838,
+ SPELL_A_SERVING_OF_CRANBERRIES_CHAIR = 61804,
+ SPELL_A_SERVING_OF_TURKEY_CHAIR = 61807,
+ SPELL_A_SERVING_OF_STUFFING_CHAIR = 61806,
+ SPELL_A_SERVING_OF_SWEET_POTATOES_CHAIR = 61808,
+ SPELL_A_SERVING_OF_PIE_CHAIR = 61805
+};
+
+/* 66250 - Pass The Turkey
+ 66259 - Pass The Stuffing
+ 66260 - Pass The Pie
+ 66261 - Pass The Cranberries
+ 66262 - Pass The Sweet Potatoes */
+class spell_pilgrims_bounty_on_plate : public SpellScriptLoader
+{
+ private:
+ uint32 _triggeredSpellId1;
+ uint32 _triggeredSpellId2;
+ uint32 _triggeredSpellId3;
+ uint32 _triggeredSpellId4;
+
+ public:
+ spell_pilgrims_bounty_on_plate(char const* name, uint32 triggeredSpellId1, uint32 triggeredSpellId2, uint32 triggeredSpellId3, uint32 triggeredSpellId4) : SpellScriptLoader(name),
+ _triggeredSpellId1(triggeredSpellId1), _triggeredSpellId2(triggeredSpellId2), _triggeredSpellId3(triggeredSpellId3), _triggeredSpellId4(triggeredSpellId4) { }
+
+ class spell_pilgrims_bounty_on_plate_SpellScript : public SpellScript
+ {
+ PrepareSpellScript(spell_pilgrims_bounty_on_plate_SpellScript);
+
+ uint32 _triggeredSpellId1;
+ uint32 _triggeredSpellId2;
+ uint32 _triggeredSpellId3;
+ uint32 _triggeredSpellId4;
+
+ public:
+ spell_pilgrims_bounty_on_plate_SpellScript(uint32 triggeredSpellId1, uint32 triggeredSpellId2, uint32 triggeredSpellId3, uint32 triggeredSpellId4) : SpellScript(),
+ _triggeredSpellId1(triggeredSpellId1), _triggeredSpellId2(triggeredSpellId2), _triggeredSpellId3(triggeredSpellId3), _triggeredSpellId4(triggeredSpellId4) { }
+
+ private:
+ bool Validate(SpellInfo const* /*spell*/) override
+ {
+ return ValidateSpellInfo(
+ {
+ _triggeredSpellId1,
+ _triggeredSpellId2,
+ _triggeredSpellId3,
+ _triggeredSpellId4
+ });
+ }
+
+ Vehicle* GetTable(Unit* target)
+ {
+ if (target->GetTypeId() == TYPEID_PLAYER)
+ {
+ if (Unit* vehBase = target->GetVehicleBase())
+ if (Vehicle* table = vehBase->GetVehicle())
+ if (table->GetCreatureEntry() == NPC_BOUNTIFUL_TABLE)
+ return table;
+ }
+ else if (Vehicle* veh = target->GetVehicle())
+ if (veh->GetCreatureEntry() == NPC_BOUNTIFUL_TABLE)
+ return veh;
+
+ return nullptr;
+ }
+
+ Unit* GetPlateInSeat(Vehicle* table, uint8 seat)
+ {
+ if (Unit* holderUnit = table->GetPassenger(SEAT_PLATE_HOLDER))
+ if (Vehicle* holder = holderUnit->GetVehicleKit())
+ if (Unit* plate = holder->GetPassenger(seat))
+ return plate;
+
+ return nullptr;
+ }
+
+ void HandleDummy(SpellEffIndex /*effIndex*/)
+ {
+ Unit* caster = GetCaster();
+ Unit* target = GetHitUnit();
+ if (!target || caster == target)
+ return;
+
+ Vehicle* table = GetTable(caster);
+ if (!table || table != GetTable(target))
+ return;
+
+ if (Vehicle* casterChair = caster->GetVehicleKit())
+ if (Unit* casterPlr = casterChair->GetPassenger(SEAT_PLAYER))
+ {
+ if (casterPlr == target)
+ return;
+
+ casterPlr->CastSpell(casterPlr, _triggeredSpellId2, true); //Credit for Sharing is Caring(always)
+
+ uint8 seat = target->GetTransSeat();
+ if (target->GetTypeId() == TYPEID_PLAYER && target->GetVehicleBase())
+ seat = target->GetVehicleBase()->GetTransSeat();
+
+ if (Unit* plate = GetPlateInSeat(table, seat))
+ {
+ if (target->GetTypeId() == TYPEID_PLAYER) //Food Fight case
+ {
+ casterPlr->CastSpell(target, _triggeredSpellId1, true);
+ caster->CastSpell(target->GetVehicleBase(), _triggeredSpellId4, true); //CanEat-chair(always)
+ }
+ else
+ {
+ casterPlr->CastSpell(plate, _triggeredSpellId3, true); //Food Visual on plate
+ caster->CastSpell(target, _triggeredSpellId4, true); //CanEat-chair(always)
+ }
+ }
+ }
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_pilgrims_bounty_on_plate_SpellScript::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
+ }
+ };
+
+ SpellScript* GetSpellScript() const override
+ {
+ return new spell_pilgrims_bounty_on_plate_SpellScript(_triggeredSpellId1, _triggeredSpellId2, _triggeredSpellId3, _triggeredSpellId4);
+ }
+};
+
+/* 61804 - A Serving of Cranberries
+ 61805 - A Serving of Pie
+ 61806 - A Serving of Stuffing
+ 61807 - A Serving of Turkey
+ 61808 - A Serving of Sweet Potatoes
+ 61793 - Cranberry Server
+ 61794 - Pie Server
+ 61795 - Stuffing Server
+ 61796 - Turkey Server
+ 61797 - Sweet Potatoes Server */
+class spell_pilgrims_bounty_a_serving_of : public SpellScriptLoader
+{
+ private:
+ uint32 _triggeredSpellId;
+ public:
+ spell_pilgrims_bounty_a_serving_of(char const* name, uint32 triggeredSpellId) : SpellScriptLoader(name), _triggeredSpellId(triggeredSpellId) { }
+
+ class spell_pilgrims_bounty_a_serving_of_AuraScript : public AuraScript
+ {
+ PrepareAuraScript(spell_pilgrims_bounty_a_serving_of_AuraScript);
+
+ uint32 _triggeredSpellId;
+
+ public:
+ spell_pilgrims_bounty_a_serving_of_AuraScript(uint32 triggeredSpellId) : AuraScript(), _triggeredSpellId(triggeredSpellId) { }
+
+ private:
+ bool Validate(SpellInfo const* /*spell*/) override
+ {
+ return ValidateSpellInfo({ _triggeredSpellId });
+ }
+
+ void OnApply(AuraEffect const* aurEff, AuraEffectHandleModes /*mode*/)
+ {
+ Unit* target = GetTarget();
+ target->CastSpell(target, uint32(aurEff->GetAmount()), true);
+ HandlePlate(target, true);
+ }
+
+ void OnRemove(AuraEffect const* aurEff, AuraEffectHandleModes /*mode*/)
+ {
+ Unit* target = GetTarget();
+ target->RemoveAurasDueToSpell(aurEff->GetAmount());
+ HandlePlate(target, false);
+ }
+
+ void HandlePlate(Unit* target, bool apply)
+ {
+ if (Vehicle* table = target->GetVehicle())
+ if (Unit* holderUnit = table->GetPassenger(SEAT_PLATE_HOLDER))
+ if (Vehicle* holder = holderUnit->GetVehicleKit())
+ if (Unit* plate = holder->GetPassenger(target->GetTransSeat()))
+ {
+ if (apply)
+ target->CastSpell(plate, _triggeredSpellId, true);
+ else
+ plate->RemoveAurasDueToSpell(_triggeredSpellId);
+ }
+ }
+
+ void Register() override
+ {
+ AfterEffectApply += AuraEffectApplyFn(spell_pilgrims_bounty_a_serving_of_AuraScript::OnApply, EFFECT_0, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAL);
+ OnEffectRemove += AuraEffectRemoveFn(spell_pilgrims_bounty_a_serving_of_AuraScript::OnRemove, EFFECT_0, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAL);
+ }
+ };
+
+ AuraScript* GetAuraScript() const override
+ {
+ return new spell_pilgrims_bounty_a_serving_of_AuraScript(_triggeredSpellId);
+ }
+};
+
+void AddSC_event_pilgrims_bounty()
+{
+ new spell_pilgrims_bounty_buff_food("spell_gen_slow_roasted_turkey", SPELL_WELL_FED_AP_TRIGGER);
+ new spell_pilgrims_bounty_buff_food("spell_gen_cranberry_chutney", SPELL_WELL_FED_ZM_TRIGGER);
+ new spell_pilgrims_bounty_buff_food("spell_gen_spice_bread_stuffing", SPELL_WELL_FED_HIT_TRIGGER);
+ new spell_pilgrims_bounty_buff_food("spell_gen_pumpkin_pie", SPELL_WELL_FED_SPIRIT_TRIGGER);
+ new spell_pilgrims_bounty_buff_food("spell_gen_candied_sweet_potato", SPELL_WELL_FED_HASTE_TRIGGER);
+ new spell_pilgrims_bounty_feast_on();
+ new spell_pilgrims_bounty_well_fed("spell_pilgrims_bounty_well_fed_turkey", SPELL_WELL_FED_AP_TRIGGER);
+ new spell_pilgrims_bounty_well_fed("spell_pilgrims_bounty_well_fed_cranberry", SPELL_WELL_FED_ZM_TRIGGER);
+ new spell_pilgrims_bounty_well_fed("spell_pilgrims_bounty_well_fed_stuffing", SPELL_WELL_FED_HIT_TRIGGER);
+ new spell_pilgrims_bounty_well_fed("spell_pilgrims_bounty_well_fed_sweet_potatoes", SPELL_WELL_FED_HASTE_TRIGGER);
+ new spell_pilgrims_bounty_well_fed("spell_pilgrims_bounty_well_fed_pie", SPELL_WELL_FED_SPIRIT_TRIGGER);
+ new spell_pilgrims_bounty_turkey_tracker();
+ new spell_pilgrims_bounty_on_plate("spell_pilgrims_bounty_on_plate_turkey", SPELL_ON_PLATE_TURKEY, SPELL_PASS_THE_TURKEY, SPELL_ON_PLATE_VISUAL_TURKEY, SPELL_A_SERVING_OF_TURKEY_CHAIR);
+ new spell_pilgrims_bounty_on_plate("spell_pilgrims_bounty_on_plate_cranberries", SPELL_ON_PLATE_CRANBERRIES, SPELL_PASS_THE_CRANBERRIES, SPELL_ON_PLATE_VISUAL_CRANBERRIES, SPELL_A_SERVING_OF_CRANBERRIES_CHAIR);
+ new spell_pilgrims_bounty_on_plate("spell_pilgrims_bounty_on_plate_stuffing", SPELL_ON_PLATE_STUFFING, SPELL_PASS_THE_STUFFING, SPELL_ON_PLATE_VISUAL_STUFFING, SPELL_A_SERVING_OF_STUFFING_CHAIR);
+ new spell_pilgrims_bounty_on_plate("spell_pilgrims_bounty_on_plate_sweet_potatoes", SPELL_ON_PLATE_SWEET_POTATOES, SPELL_PASS_THE_SWEET_POTATOES, SPELL_ON_PLATE_VISUAL_POTATOES, SPELL_A_SERVING_OF_SWEET_POTATOES_CHAIR);
+ new spell_pilgrims_bounty_on_plate("spell_pilgrims_bounty_on_plate_pie", SPELL_ON_PLATE_PIE, SPELL_PASS_THE_PIE, SPELL_ON_PLATE_VISUAL_PIE, SPELL_A_SERVING_OF_PIE_CHAIR);
+ new spell_pilgrims_bounty_a_serving_of("spell_pilgrims_bounty_a_serving_of_cranberries", SPELL_A_SERVING_OF_CRANBERRIES_PLATE);
+ new spell_pilgrims_bounty_a_serving_of("spell_pilgrims_bounty_a_serving_of_turkey", SPELL_A_SERVING_OF_TURKEY_PLATE);
+ new spell_pilgrims_bounty_a_serving_of("spell_pilgrims_bounty_a_serving_of_stuffing", SPELL_A_SERVING_OF_STUFFING_PLATE);
+ new spell_pilgrims_bounty_a_serving_of("spell_pilgrims_bounty_a_serving_of_potatoes", SPELL_A_SERVING_OF_SWEET_POTATOES_PLATE);
+ new spell_pilgrims_bounty_a_serving_of("spell_pilgrims_bounty_a_serving_of_pie", SPELL_A_SERVING_OF_PIE_PLATE);
+}
diff --git a/src/server/scripts/Events/winter_veil.cpp b/src/server/scripts/Events/winter_veil.cpp
new file mode 100644
index 00000000000..f257813760c
--- /dev/null
+++ b/src/server/scripts/Events/winter_veil.cpp
@@ -0,0 +1,113 @@
+/*
+ * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "ScriptMgr.h"
+#include "Containers.h"
+#include "CreatureAIImpl.h"
+#include "Player.h"
+#include "SpellAuraEffects.h"
+#include "SpellScript.h"
+
+enum Mistletoe
+{
+ SPELL_CREATE_MISTLETOE = 26206,
+ SPELL_CREATE_HOLLY = 26207,
+ SPELL_CREATE_SNOWFLAKES = 45036
+};
+
+// 26218 - Mistletoe
+class spell_winter_veil_mistletoe : public SpellScript
+{
+ PrepareSpellScript(spell_winter_veil_mistletoe);
+
+ bool Validate(SpellInfo const* /*spell*/) override
+ {
+ return ValidateSpellInfo(
+ {
+ SPELL_CREATE_MISTLETOE,
+ SPELL_CREATE_HOLLY,
+ SPELL_CREATE_SNOWFLAKES
+ });
+ }
+
+ void HandleScript(SpellEffIndex /*effIndex*/)
+ {
+ if (Player* target = GetHitPlayer())
+ {
+ uint32 spellId = RAND(SPELL_CREATE_HOLLY, SPELL_CREATE_MISTLETOE, SPELL_CREATE_SNOWFLAKES);
+ GetCaster()->CastSpell(target, spellId, true);
+ }
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_winter_veil_mistletoe::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
+ }
+};
+
+// 26275 - PX-238 Winter Wondervolt TRAP
+enum PX238WinterWondervolt
+{
+ SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_1 = 26157,
+ SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_2 = 26272,
+ SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_3 = 26273,
+ SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_4 = 26274
+};
+
+uint32 const WonderboltTransformSpells[] =
+{
+ SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_1,
+ SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_2,
+ SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_3,
+ SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_4
+};
+
+// 26275 - PX-238 Winter Wondervolt TRAP
+class spell_winter_veil_px_238_winter_wondervolt : public SpellScript
+{
+ PrepareSpellScript(spell_winter_veil_px_238_winter_wondervolt);
+
+ bool Validate(SpellInfo const* /*spellInfo*/) override
+ {
+ return ValidateSpellInfo(WonderboltTransformSpells);
+ }
+
+ void HandleScript(SpellEffIndex effIndex)
+ {
+ PreventHitDefaultEffect(effIndex);
+
+ if (Unit* target = GetHitUnit())
+ {
+ for (uint32 spell : WonderboltTransformSpells)
+ if (target->HasAura(spell))
+ return;
+
+ target->CastSpell(target, Trinity::Containers::SelectRandomContainerElement(WonderboltTransformSpells), true);
+ }
+ }
+
+ void Register() override
+ {
+ OnEffectHitTarget += SpellEffectFn(spell_winter_veil_px_238_winter_wondervolt::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
+ }
+};
+
+void AddSC_event_winter_veil()
+{
+ RegisterSpellScript(spell_winter_veil_mistletoe);
+ RegisterSpellScript(spell_winter_veil_px_238_winter_wondervolt);
+}
diff --git a/src/server/scripts/Kalimdor/zone_moonglade.cpp b/src/server/scripts/Kalimdor/zone_moonglade.cpp
index d664bc8a0d5..bdddccf846d 100644
--- a/src/server/scripts/Kalimdor/zone_moonglade.cpp
+++ b/src/server/scripts/Kalimdor/zone_moonglade.cpp
@@ -22,154 +22,6 @@
#include "ScriptedCreature.h"
#include "SpellInfo.h"
-/*####
-# npc_omen
-####*/
-
-enum Omen
-{
- NPC_OMEN = 15467,
-
- SPELL_OMEN_CLEAVE = 15284,
- SPELL_OMEN_STARFALL = 26540,
- SPELL_OMEN_SUMMON_SPOTLIGHT = 26392,
- SPELL_ELUNE_CANDLE = 26374,
-
- GO_ELUNE_TRAP_1 = 180876,
- GO_ELUNE_TRAP_2 = 180877,
-
- EVENT_CAST_CLEAVE = 1,
- EVENT_CAST_STARFALL = 2,
- EVENT_DESPAWN = 3,
-};
-
-class npc_omen : public CreatureScript
-{
-public:
- npc_omen() : CreatureScript("npc_omen") { }
-
- struct npc_omenAI : public ScriptedAI
- {
- npc_omenAI(Creature* creature) : ScriptedAI(creature)
- {
- me->SetImmuneToPC(true);
- me->GetMotionMaster()->MovePoint(1, 7549.977f, -2855.137f, 456.9678f);
- }
-
- EventMap events;
-
- void MovementInform(uint32 type, uint32 pointId) override
- {
- if (type != POINT_MOTION_TYPE)
- return;
-
- if (pointId == 1)
- {
- me->SetHomePosition(me->GetPositionX(), me->GetPositionY(), me->GetPositionZ(), me->GetOrientation());
- me->SetImmuneToPC(false);
- if (Player* player = me->SelectNearestPlayer(40.0f))
- AttackStart(player);
- }
- }
-
- void JustEngagedWith(Unit* /*attacker*/) override
- {
- events.Reset();
- events.ScheduleEvent(EVENT_CAST_CLEAVE, 3s, 5s);
- events.ScheduleEvent(EVENT_CAST_STARFALL, 8s, 10s);
- }
-
- void JustDied(Unit* /*killer*/) override
- {
- DoCast(SPELL_OMEN_SUMMON_SPOTLIGHT);
- }
-
- void SpellHit(WorldObject* /*caster*/, SpellInfo const* spellInfo) override
- {
- if (spellInfo->Id == SPELL_ELUNE_CANDLE)
- {
- if (me->HasAura(SPELL_OMEN_STARFALL))
- me->RemoveAurasDueToSpell(SPELL_OMEN_STARFALL);
-
- events.RescheduleEvent(EVENT_CAST_STARFALL, 14s, 16s);
- }
- }
-
- void UpdateAI(uint32 diff) override
- {
- if (!UpdateVictim())
- return;
-
- events.Update(diff);
-
- switch (events.ExecuteEvent())
- {
- case EVENT_CAST_CLEAVE:
- DoCastVictim(SPELL_OMEN_CLEAVE);
- events.ScheduleEvent(EVENT_CAST_CLEAVE, 8s, 10s);
- break;
- case EVENT_CAST_STARFALL:
- if (Unit* target = SelectTarget(SelectTargetMethod::Random, 0))
- DoCast(target, SPELL_OMEN_STARFALL);
- events.ScheduleEvent(EVENT_CAST_STARFALL, 14s, 16s);
- break;
- }
-
- DoMeleeAttackIfReady();
- }
- };
-
- CreatureAI* GetAI(Creature* creature) const override
- {
- return new npc_omenAI(creature);
- }
-};
-
-class npc_giant_spotlight : public CreatureScript
-{
-public:
- npc_giant_spotlight() : CreatureScript("npc_giant_spotlight") { }
-
- struct npc_giant_spotlightAI : public ScriptedAI
- {
- npc_giant_spotlightAI(Creature* creature) : ScriptedAI(creature) { }
-
- EventMap events;
-
- void Reset() override
- {
- events.Reset();
- events.ScheduleEvent(EVENT_DESPAWN, 5min);
- }
-
- void UpdateAI(uint32 diff) override
- {
- events.Update(diff);
-
- if (events.ExecuteEvent() == EVENT_DESPAWN)
- {
- if (GameObject* trap = me->FindNearestGameObject(GO_ELUNE_TRAP_1, 5.0f))
- trap->RemoveFromWorld();
-
- if (GameObject* trap = me->FindNearestGameObject(GO_ELUNE_TRAP_2, 5.0f))
- trap->RemoveFromWorld();
-
- if (Creature* omen = me->FindNearestCreature(NPC_OMEN, 5.0f, false))
- omen->DespawnOrUnsummon();
-
- me->DespawnOrUnsummon();
- }
- }
- };
-
- CreatureAI* GetAI(Creature* creature) const override
- {
- return new npc_giant_spotlightAI(creature);
- }
-};
-
void AddSC_moonglade()
{
- new npc_omen();
- new npc_giant_spotlight();
}
diff --git a/src/server/scripts/Spells/spell_holiday.cpp b/src/server/scripts/Spells/spell_holiday.cpp
deleted file mode 100644
index 87bd5d94601..00000000000
--- a/src/server/scripts/Spells/spell_holiday.cpp
+++ /dev/null
@@ -1,1974 +0,0 @@
-/*
- * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation; either version 2 of the License, or (at your
- * option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-/*
- * Spells used in holidays/game events that do not fit any other category.
- * Ordered alphabetically using scriptname.
- * Scriptnames in this file should be prefixed with "spell_#holidayname_".
- */
-
-#include "ScriptMgr.h"
-#include "CellImpl.h"
-#include "CreatureAIImpl.h"
-#include "GridNotifiersImpl.h"
-#include "Player.h"
-#include "ScriptedCreature.h"
-#include "SpellAuraEffects.h"
-#include "SpellMgr.h"
-#include "SpellScript.h"
-#include "Vehicle.h"
-#include "World.h"
-
-enum SpellsPicnic
-{
- SPELL_BASKET_CHECK = 45119, // Holiday - Valentine - Romantic Picnic Near Basket Check
- SPELL_MEAL_PERIODIC = 45103, // Holiday - Valentine - Romantic Picnic Meal Periodic - effect dummy
- SPELL_MEAL_EAT_VISUAL = 45120, // Holiday - Valentine - Romantic Picnic Meal Eat Visual
- // SPELL_MEAL_PARTICLE = 45114, // Holiday - Valentine - Romantic Picnic Meal Particle - unused
- SPELL_DRINK_VISUAL = 45121, // Holiday - Valentine - Romantic Picnic Drink Visual
- SPELL_ROMANTIC_PICNIC_ACHIEV = 45123, // Romantic Picnic periodic = 5000
-};
-
-// 45102 - Romantic Picnic
-class spell_love_is_in_the_air_romantic_picnic : public AuraScript
-{
- PrepareAuraScript(spell_love_is_in_the_air_romantic_picnic);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo(
- {
- SPELL_BASKET_CHECK,
- SPELL_MEAL_PERIODIC,
- SPELL_MEAL_EAT_VISUAL,
- SPELL_DRINK_VISUAL,
- SPELL_ROMANTIC_PICNIC_ACHIEV
- });
- }
-
- void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
- {
- Unit* target = GetTarget();
- target->SetStandState(UNIT_STAND_STATE_SIT);
- target->CastSpell(target, SPELL_MEAL_PERIODIC);
- }
-
- void OnPeriodic(AuraEffect const* /*aurEff*/)
- {
- // Every 5 seconds
- Unit* target = GetTarget();
-
- // If our player is no longer sit, remove all auras
- if (target->GetStandState() != UNIT_STAND_STATE_SIT)
- {
- target->RemoveAurasDueToSpell(SPELL_ROMANTIC_PICNIC_ACHIEV);
- target->RemoveAura(GetAura());
- return;
- }
-
- target->CastSpell(target, SPELL_BASKET_CHECK); // unknown use, it targets Romantic Basket
- target->CastSpell(target, RAND(SPELL_MEAL_EAT_VISUAL, SPELL_DRINK_VISUAL));
-
- bool foundSomeone = false;
- // For nearby players, check if they have the same aura. If so, cast Romantic Picnic (45123)
- // required by achievement and "hearts" visual
- std::list<Player*> playerList;
- Trinity::AnyPlayerInObjectRangeCheck checker(target, INTERACTION_DISTANCE*2);
- Trinity::PlayerListSearcher<Trinity::AnyPlayerInObjectRangeCheck> searcher(target, playerList, checker);
- Cell::VisitWorldObjects(target, searcher, INTERACTION_DISTANCE * 2);
- for (std::list<Player*>::const_iterator itr = playerList.begin(); itr != playerList.end(); ++itr)
- {
- if (Player* playerFound = (*itr))
- {
- if (target != playerFound && playerFound->HasAura(GetId()))
- {
- playerFound->CastSpell(playerFound, SPELL_ROMANTIC_PICNIC_ACHIEV, true);
- target->CastSpell(target, SPELL_ROMANTIC_PICNIC_ACHIEV, true);
- foundSomeone = true;
- break;
- }
- }
- }
-
- if (!foundSomeone && target->HasAura(SPELL_ROMANTIC_PICNIC_ACHIEV))
- target->RemoveAurasDueToSpell(SPELL_ROMANTIC_PICNIC_ACHIEV);
- }
-
- void Register() override
- {
- AfterEffectApply += AuraEffectApplyFn(spell_love_is_in_the_air_romantic_picnic::OnApply, EFFECT_0, SPELL_AURA_PERIODIC_DUMMY, AURA_EFFECT_HANDLE_REAL);
- OnEffectPeriodic += AuraEffectPeriodicFn(spell_love_is_in_the_air_romantic_picnic::OnPeriodic, EFFECT_0, SPELL_AURA_PERIODIC_DUMMY);
- }
-};
-
-enum HallowEndCandysSpells
-{
- SPELL_HALLOWS_END_CANDY_ORANGE_GIANT = 24924, // Effect 1: Apply Aura: Mod Size, Value: 30%
- SPELL_HALLOWS_END_CANDY_SKELETON = 24925, // Effect 1: Apply Aura: Change Model (Skeleton). Effect 2: Apply Aura: Underwater Breathing
- SPELL_HALLOWS_END_CANDY_PIRATE = 24926, // Effect 1: Apply Aura: Increase Swim Speed, Value: 50%
- SPELL_HALLOWS_END_CANDY_GHOST = 24927, // Effect 1: Apply Aura: Levitate / Hover. Effect 2: Apply Aura: Slow Fall, Effect 3: Apply Aura: Water Walking
- SPELL_HALLOWS_END_CANDY_FEMALE_DEFIAS_PIRATE = 44742, // Effect 1: Apply Aura: Change Model (Defias Pirate, Female). Effect 2: Increase Swim Speed, Value: 50%
- SPELL_HALLOWS_END_CANDY_MALE_DEFIAS_PIRATE = 44743 // Effect 1: Apply Aura: Change Model (Defias Pirate, Male). Effect 2: Increase Swim Speed, Value: 50%
-};
-
-// 24930 - Hallow's End Candy
-class spell_hallow_end_candy : public SpellScriptLoader
-{
- public:
- spell_hallow_end_candy() : SpellScriptLoader("spell_hallow_end_candy") { }
-
- class spell_hallow_end_candy_SpellScript : public SpellScript
- {
- PrepareSpellScript(spell_hallow_end_candy_SpellScript);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo(spells);
- }
-
- void HandleDummy(SpellEffIndex /*effIndex*/)
- {
- GetCaster()->CastSpell(GetCaster(), spells[urand(0, 3)], true);
- }
-
- void Register() override
- {
- OnEffectHit += SpellEffectFn(spell_hallow_end_candy_SpellScript::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
- }
-
- private:
- static uint32 const spells[4];
- };
-
- SpellScript* GetSpellScript() const override
- {
- return new spell_hallow_end_candy_SpellScript();
- }
-};
-
-uint32 const spell_hallow_end_candy::spell_hallow_end_candy_SpellScript::spells[4] =
-{
- SPELL_HALLOWS_END_CANDY_ORANGE_GIANT,
- SPELL_HALLOWS_END_CANDY_SKELETON,
- SPELL_HALLOWS_END_CANDY_PIRATE,
- SPELL_HALLOWS_END_CANDY_GHOST
-};
-
-// 24926 - Hallow's End Candy
-class spell_hallow_end_candy_pirate : public SpellScriptLoader
-{
- public:
- spell_hallow_end_candy_pirate() : SpellScriptLoader("spell_hallow_end_candy_pirate") { }
-
- class spell_hallow_end_candy_pirate_AuraScript : public AuraScript
- {
- PrepareAuraScript(spell_hallow_end_candy_pirate_AuraScript);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo(
- {
- SPELL_HALLOWS_END_CANDY_FEMALE_DEFIAS_PIRATE,
- SPELL_HALLOWS_END_CANDY_MALE_DEFIAS_PIRATE
- });
- }
-
- void HandleApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
- {
- uint32 spell = GetTarget()->GetNativeGender() == GENDER_FEMALE ? SPELL_HALLOWS_END_CANDY_FEMALE_DEFIAS_PIRATE : SPELL_HALLOWS_END_CANDY_MALE_DEFIAS_PIRATE;
- GetTarget()->CastSpell(GetTarget(), spell, true);
- }
-
- void HandleRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
- {
- uint32 spell = GetTarget()->GetNativeGender() == GENDER_FEMALE ? SPELL_HALLOWS_END_CANDY_FEMALE_DEFIAS_PIRATE : SPELL_HALLOWS_END_CANDY_MALE_DEFIAS_PIRATE;
- GetTarget()->RemoveAurasDueToSpell(spell);
- }
-
- void Register() override
- {
- AfterEffectApply += AuraEffectApplyFn(spell_hallow_end_candy_pirate_AuraScript::HandleApply, EFFECT_0, SPELL_AURA_MOD_INCREASE_SWIM_SPEED, AURA_EFFECT_HANDLE_REAL);
- AfterEffectRemove += AuraEffectRemoveFn(spell_hallow_end_candy_pirate_AuraScript::HandleRemove, EFFECT_0, SPELL_AURA_MOD_INCREASE_SWIM_SPEED, AURA_EFFECT_HANDLE_REAL);
- }
- };
-
- AuraScript* GetAuraScript() const override
- {
- return new spell_hallow_end_candy_pirate_AuraScript();
- }
-};
-
-enum TrickSpells
-{
- SPELL_PIRATE_COSTUME_MALE = 24708,
- SPELL_PIRATE_COSTUME_FEMALE = 24709,
- SPELL_NINJA_COSTUME_MALE = 24710,
- SPELL_NINJA_COSTUME_FEMALE = 24711,
- SPELL_LEPER_GNOME_COSTUME_MALE = 24712,
- SPELL_LEPER_GNOME_COSTUME_FEMALE = 24713,
- SPELL_SKELETON_COSTUME = 24723,
- SPELL_GHOST_COSTUME_MALE = 24735,
- SPELL_GHOST_COSTUME_FEMALE = 24736,
- SPELL_TRICK_BUFF = 24753,
-};
-
-// 24750 - Trick
-class spell_hallow_end_trick : public SpellScriptLoader
-{
- public:
- spell_hallow_end_trick() : SpellScriptLoader("spell_hallow_end_trick") { }
-
- class spell_hallow_end_trick_SpellScript : public SpellScript
- {
- PrepareSpellScript(spell_hallow_end_trick_SpellScript);
-
- bool Validate(SpellInfo const* /*spell*/) override
- {
- return ValidateSpellInfo(
- {
- SPELL_PIRATE_COSTUME_MALE,
- SPELL_PIRATE_COSTUME_FEMALE,
- SPELL_NINJA_COSTUME_MALE,
- SPELL_NINJA_COSTUME_FEMALE,
- SPELL_LEPER_GNOME_COSTUME_MALE,
- SPELL_LEPER_GNOME_COSTUME_FEMALE,
- SPELL_SKELETON_COSTUME,
- SPELL_GHOST_COSTUME_MALE,
- SPELL_GHOST_COSTUME_FEMALE,
- SPELL_TRICK_BUFF
- });
- }
-
- void HandleScript(SpellEffIndex /*effIndex*/)
- {
- Unit* caster = GetCaster();
- if (Player* target = GetHitPlayer())
- {
- uint8 gender = target->GetNativeGender();
- uint32 spellId = SPELL_TRICK_BUFF;
- switch (urand(0, 5))
- {
- case 1:
- spellId = gender == GENDER_FEMALE ? SPELL_LEPER_GNOME_COSTUME_FEMALE : SPELL_LEPER_GNOME_COSTUME_MALE;
- break;
- case 2:
- spellId = gender == GENDER_FEMALE ? SPELL_PIRATE_COSTUME_FEMALE : SPELL_PIRATE_COSTUME_MALE;
- break;
- case 3:
- spellId = gender == GENDER_FEMALE ? SPELL_GHOST_COSTUME_FEMALE : SPELL_GHOST_COSTUME_MALE;
- break;
- case 4:
- spellId = gender == GENDER_FEMALE ? SPELL_NINJA_COSTUME_FEMALE : SPELL_NINJA_COSTUME_MALE;
- break;
- case 5:
- spellId = SPELL_SKELETON_COSTUME;
- break;
- default:
- break;
- }
-
- caster->CastSpell(target, spellId, true);
- }
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_hallow_end_trick_SpellScript::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
- }
- };
-
- SpellScript* GetSpellScript() const override
- {
- return new spell_hallow_end_trick_SpellScript();
- }
-};
-
-enum TrickOrTreatSpells
-{
- SPELL_TRICK = 24714,
- SPELL_TREAT = 24715,
- SPELL_TRICKED_OR_TREATED = 24755,
- SPELL_TRICKY_TREAT_SPEED = 42919,
- SPELL_TRICKY_TREAT_TRIGGER = 42965,
- SPELL_UPSET_TUMMY = 42966
-};
-
-// 24751 - Trick or Treat
-class spell_hallow_end_trick_or_treat : public SpellScriptLoader
-{
- public:
- spell_hallow_end_trick_or_treat() : SpellScriptLoader("spell_hallow_end_trick_or_treat") { }
-
- class spell_hallow_end_trick_or_treat_SpellScript : public SpellScript
- {
- PrepareSpellScript(spell_hallow_end_trick_or_treat_SpellScript);
-
- bool Validate(SpellInfo const* /*spell*/) override
- {
- return ValidateSpellInfo({ SPELL_TRICK, SPELL_TREAT, SPELL_TRICKED_OR_TREATED });
- }
-
- void HandleScript(SpellEffIndex /*effIndex*/)
- {
- Unit* caster = GetCaster();
- if (Player* target = GetHitPlayer())
- {
- caster->CastSpell(target, roll_chance_i(50) ? SPELL_TRICK : SPELL_TREAT, true);
- caster->CastSpell(target, SPELL_TRICKED_OR_TREATED, true);
- }
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_hallow_end_trick_or_treat_SpellScript::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
- }
- };
-
- SpellScript* GetSpellScript() const override
- {
- return new spell_hallow_end_trick_or_treat_SpellScript();
- }
-};
-
-// 44436 - Tricky Treat
-class spell_hallow_end_tricky_treat : public SpellScriptLoader
-{
- public:
- spell_hallow_end_tricky_treat() : SpellScriptLoader("spell_hallow_end_tricky_treat") { }
-
- class spell_hallow_end_tricky_treat_SpellScript : public SpellScript
- {
- PrepareSpellScript(spell_hallow_end_tricky_treat_SpellScript);
-
- bool Validate(SpellInfo const* /*spell*/) override
- {
- return ValidateSpellInfo(
- {
- SPELL_TRICKY_TREAT_SPEED,
- SPELL_TRICKY_TREAT_TRIGGER,
- SPELL_UPSET_TUMMY
- });
- }
-
- void HandleScript(SpellEffIndex /*effIndex*/)
- {
- Unit* caster = GetCaster();
- if (caster->HasAura(SPELL_TRICKY_TREAT_TRIGGER) && caster->GetAuraCount(SPELL_TRICKY_TREAT_SPEED) > 3 && roll_chance_i(33))
- caster->CastSpell(caster, SPELL_UPSET_TUMMY, true);
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_hallow_end_tricky_treat_SpellScript::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
- }
- };
-
- SpellScript* GetSpellScript() const override
- {
- return new spell_hallow_end_tricky_treat_SpellScript();
- }
-};
-
-enum HallowendData
-{
- SPELL_HALLOWED_WAND_PIRATE = 24717,
- SPELL_HALLOWED_WAND_NINJA = 24718,
- SPELL_HALLOWED_WAND_LEPER_GNOME = 24719,
- SPELL_HALLOWED_WAND_RANDOM = 24720,
- SPELL_HALLOWED_WAND_SKELETON = 24724,
- SPELL_HALLOWED_WAND_WISP = 24733,
- SPELL_HALLOWED_WAND_GHOST = 24737,
- SPELL_HALLOWED_WAND_BAT = 24741
-};
-
-// 24717, 24718, 24719, 24720, 24724, 24733, 24737, 24741
-class spell_hallow_end_wand : public SpellScriptLoader
-{
-public:
- spell_hallow_end_wand() : SpellScriptLoader("spell_hallow_end_wand") {}
-
- class spell_hallow_end_wand_SpellScript : public SpellScript
- {
- PrepareSpellScript(spell_hallow_end_wand_SpellScript);
-
- bool Validate(SpellInfo const* /*spellEntry*/) override
- {
- return ValidateSpellInfo(
- {
- SPELL_PIRATE_COSTUME_MALE,
- SPELL_PIRATE_COSTUME_FEMALE,
- SPELL_NINJA_COSTUME_MALE,
- SPELL_NINJA_COSTUME_FEMALE,
- SPELL_LEPER_GNOME_COSTUME_MALE,
- SPELL_LEPER_GNOME_COSTUME_FEMALE,
- SPELL_GHOST_COSTUME_MALE,
- SPELL_GHOST_COSTUME_FEMALE
- });
- }
-
- void HandleScriptEffect()
- {
- Unit* caster = GetCaster();
- Unit* target = GetHitUnit();
-
- uint32 spellId = 0;
- uint8 gender = target->GetNativeGender();
-
- switch (GetSpellInfo()->Id)
- {
- case SPELL_HALLOWED_WAND_LEPER_GNOME:
- spellId = gender ? SPELL_LEPER_GNOME_COSTUME_FEMALE : SPELL_LEPER_GNOME_COSTUME_MALE;
- break;
- case SPELL_HALLOWED_WAND_PIRATE:
- spellId = gender ? SPELL_PIRATE_COSTUME_FEMALE : SPELL_PIRATE_COSTUME_MALE;
- break;
- case SPELL_HALLOWED_WAND_GHOST:
- spellId = gender ? SPELL_GHOST_COSTUME_FEMALE : SPELL_GHOST_COSTUME_MALE;
- break;
- case SPELL_HALLOWED_WAND_NINJA:
- spellId = gender ? SPELL_NINJA_COSTUME_FEMALE : SPELL_NINJA_COSTUME_MALE;
- break;
- case SPELL_HALLOWED_WAND_RANDOM:
- spellId = RAND(SPELL_HALLOWED_WAND_PIRATE, SPELL_HALLOWED_WAND_NINJA, SPELL_HALLOWED_WAND_LEPER_GNOME, SPELL_HALLOWED_WAND_SKELETON, SPELL_HALLOWED_WAND_WISP, SPELL_HALLOWED_WAND_GHOST, SPELL_HALLOWED_WAND_BAT);
- break;
- default:
- return;
- }
- caster->CastSpell(target, spellId, true);
- }
-
- void Register() override
- {
- AfterHit += SpellHitFn(spell_hallow_end_wand_SpellScript::HandleScriptEffect);
- }
- };
-
- SpellScript* GetSpellScript() const override
- {
- return new spell_hallow_end_wand_SpellScript();
- }
-};
-
-enum PilgrimsBountyBuffFood
-{
- // Pilgrims Bounty Buff Food
- SPELL_WELL_FED_AP_TRIGGER = 65414,
- SPELL_WELL_FED_ZM_TRIGGER = 65412,
- SPELL_WELL_FED_HIT_TRIGGER = 65416,
- SPELL_WELL_FED_HASTE_TRIGGER = 65410,
- SPELL_WELL_FED_SPIRIT_TRIGGER = 65415
-};
-
-class spell_pilgrims_bounty_buff_food : public SpellScriptLoader
-{
- private:
- uint32 const _triggeredSpellId;
- public:
- spell_pilgrims_bounty_buff_food(char const* name, uint32 triggeredSpellId) : SpellScriptLoader(name), _triggeredSpellId(triggeredSpellId) { }
-
- class spell_pilgrims_bounty_buff_food_AuraScript : public AuraScript
- {
- PrepareAuraScript(spell_pilgrims_bounty_buff_food_AuraScript);
- private:
- uint32 const _triggeredSpellId;
-
- public:
- spell_pilgrims_bounty_buff_food_AuraScript(uint32 triggeredSpellId) : AuraScript(), _triggeredSpellId(triggeredSpellId)
- {
- _handled = false;
- }
-
- void HandleTriggerSpell(AuraEffect const* /*aurEff*/)
- {
- PreventDefaultAction();
- if (_handled)
- return;
-
- _handled = true;
- GetTarget()->CastSpell(GetTarget(), _triggeredSpellId, true);
- }
-
- void Register() override
- {
- OnEffectPeriodic += AuraEffectPeriodicFn(spell_pilgrims_bounty_buff_food_AuraScript::HandleTriggerSpell, EFFECT_2, SPELL_AURA_PERIODIC_TRIGGER_SPELL);
- }
-
- bool _handled;
- };
-
- AuraScript* GetAuraScript() const override
- {
- return new spell_pilgrims_bounty_buff_food_AuraScript(_triggeredSpellId);
- }
-};
-
-enum FeastOnSpells
-{
- FEAST_ON_TURKEY = 61784,
- FEAST_ON_CRANBERRIES = 61785,
- FEAST_ON_SWEET_POTATOES = 61786,
- FEAST_ON_PIE = 61787,
- FEAST_ON_STUFFING = 61788,
- SPELL_CRANBERRY_HELPINS = 61841,
- SPELL_TURKEY_HELPINS = 61842,
- SPELL_STUFFING_HELPINS = 61843,
- SPELL_SWEET_POTATO_HELPINS = 61844,
- SPELL_PIE_HELPINS = 61845,
- SPELL_ON_PLATE_EAT_VISUAL = 61826
-};
-
-/* 61784 - Feast On Turkey
- 61785 - Feast On Cranberries
- 61786 - Feast On Sweet Potatoes
- 61787 - Feast On Pie
- 61788 - Feast On Stuffing */
-class spell_pilgrims_bounty_feast_on : public SpellScriptLoader
-{
- public:
- spell_pilgrims_bounty_feast_on() : SpellScriptLoader("spell_pilgrims_bounty_feast_on") { }
-
- class spell_pilgrims_bounty_feast_on_SpellScript : public SpellScript
- {
- PrepareSpellScript(spell_pilgrims_bounty_feast_on_SpellScript);
-
- bool Validate(SpellInfo const* spellInfo) override
- {
- return !spellInfo->GetEffects().empty()
- && ValidateSpellInfo({ uint32(spellInfo->GetEffect(EFFECT_0).CalcValue()) })
- && !sSpellMgr->AssertSpellInfo(spellInfo->GetEffect(EFFECT_0).CalcValue(), DIFFICULTY_NONE)->GetEffects().empty();
- }
-
- void HandleDummy(SpellEffIndex /*effIndex*/)
- {
- Unit* caster = GetCaster();
-
- uint32 _spellId = 0;
- switch (GetSpellInfo()->Id)
- {
- case FEAST_ON_TURKEY:
- _spellId = SPELL_TURKEY_HELPINS;
- break;
- case FEAST_ON_CRANBERRIES:
- _spellId = SPELL_CRANBERRY_HELPINS;
- break;
- case FEAST_ON_SWEET_POTATOES:
- _spellId = SPELL_SWEET_POTATO_HELPINS;
- break;
- case FEAST_ON_PIE:
- _spellId = SPELL_PIE_HELPINS;
- break;
- case FEAST_ON_STUFFING:
- _spellId = SPELL_STUFFING_HELPINS;
- break;
- default:
- return;
- }
-
- if (Vehicle* vehicle = caster->GetVehicleKit())
- if (Unit* target = vehicle->GetPassenger(0))
- if (Player* player = target->ToPlayer())
- {
- player->CastSpell(player, SPELL_ON_PLATE_EAT_VISUAL, true);
- caster->CastSpell(player, _spellId, CastSpellExtraArgs(TRIGGERED_FULL_MASK)
- .SetOriginalCaster(player->GetGUID()));
- }
-
- if (Aura* aura = caster->GetAura(GetEffectValue()))
- {
- if (aura->GetStackAmount() == 1)
- caster->RemoveAurasDueToSpell(aura->GetSpellInfo()->GetEffect(EFFECT_0).CalcValue());
- aura->ModStackAmount(-1);
- }
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_pilgrims_bounty_feast_on_SpellScript::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
- }
- };
-
- SpellScript* GetSpellScript() const override
- {
- return new spell_pilgrims_bounty_feast_on_SpellScript();
- }
-};
-
-enum TheTurkinator
-{
- SPELL_KILL_COUNTER_VISUAL = 62015,
- SPELL_KILL_COUNTER_VISUAL_MAX = 62021,
- EMOTE_TURKEY_HUNTER = 0,
- EMOTE_TURKEY_DOMINATION = 1,
- EMOTE_TURKEY_SLAUGHTER = 2,
- EMOTE_TURKEY_TRIUMPH = 3
-};
-
-// 62014 - Turkey Tracker
-class spell_pilgrims_bounty_turkey_tracker : public SpellScriptLoader
-{
- public:
- spell_pilgrims_bounty_turkey_tracker() : SpellScriptLoader("spell_pilgrims_bounty_turkey_tracker") { }
-
- class spell_pilgrims_bounty_turkey_tracker_SpellScript : public SpellScript
- {
- PrepareSpellScript(spell_pilgrims_bounty_turkey_tracker_SpellScript);
-
- bool Validate(SpellInfo const* /*spell*/) override
- {
- return ValidateSpellInfo({ SPELL_KILL_COUNTER_VISUAL, SPELL_KILL_COUNTER_VISUAL_MAX });
- }
-
- void HandleScript(SpellEffIndex /*effIndex*/)
- {
- Creature* caster = GetCaster()->ToCreature();
- Unit* target = GetHitUnit();
-
- if (!target || !caster)
- return;
-
- if (target->HasAura(SPELL_KILL_COUNTER_VISUAL_MAX))
- return;
-
- if (Aura const* aura = target->GetAura(GetSpellInfo()->Id))
- {
- switch (aura->GetStackAmount())
- {
- case 10:
- caster->AI()->Talk(EMOTE_TURKEY_HUNTER, target);
- break;
- case 20:
- caster->AI()->Talk(EMOTE_TURKEY_DOMINATION, target);
- break;
- case 30:
- caster->AI()->Talk(EMOTE_TURKEY_SLAUGHTER, target);
- break;
- case 40:
- caster->AI()->Talk(EMOTE_TURKEY_TRIUMPH, target);
- target->CastSpell(target, SPELL_KILL_COUNTER_VISUAL_MAX, true);
- target->RemoveAurasDueToSpell(GetSpellInfo()->Id);
- break;
- default:
- return;
- }
- target->CastSpell(target, SPELL_KILL_COUNTER_VISUAL, true);
- }
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_pilgrims_bounty_turkey_tracker_SpellScript::HandleScript, EFFECT_1, SPELL_EFFECT_SCRIPT_EFFECT);
- }
- };
-
- SpellScript* GetSpellScript() const override
- {
- return new spell_pilgrims_bounty_turkey_tracker_SpellScript();
- }
-};
-
-enum SpiritOfSharing
-{
- SPELL_THE_SPIRIT_OF_SHARING = 61849
-};
-
-class spell_pilgrims_bounty_well_fed : public SpellScriptLoader
-{
- private:
- uint32 _triggeredSpellId;
-
- public:
- spell_pilgrims_bounty_well_fed(char const* name, uint32 triggeredSpellId) : SpellScriptLoader(name), _triggeredSpellId(triggeredSpellId) { }
-
- class spell_pilgrims_bounty_well_fed_SpellScript : public SpellScript
- {
- PrepareSpellScript(spell_pilgrims_bounty_well_fed_SpellScript);
-
- uint32 _triggeredSpellId;
-
- public:
- spell_pilgrims_bounty_well_fed_SpellScript(uint32 triggeredSpellId) : SpellScript(), _triggeredSpellId(triggeredSpellId) { }
-
- private:
- bool Validate(SpellInfo const* /*spell*/) override
- {
- return ValidateSpellInfo({ _triggeredSpellId });
- }
-
- void HandleScript(SpellEffIndex effIndex)
- {
- PreventHitDefaultEffect(effIndex);
- Player* target = GetHitPlayer();
- if (!target)
- return;
-
- if (Aura const* aura = target->GetAura(GetSpellInfo()->Id))
- {
- if (aura->GetStackAmount() == 5)
- target->CastSpell(target, _triggeredSpellId, true);
- }
-
- Aura const* turkey = target->GetAura(SPELL_TURKEY_HELPINS);
- Aura const* cranberies = target->GetAura(SPELL_CRANBERRY_HELPINS);
- Aura const* stuffing = target->GetAura(SPELL_STUFFING_HELPINS);
- Aura const* sweetPotatoes = target->GetAura(SPELL_SWEET_POTATO_HELPINS);
- Aura const* pie = target->GetAura(SPELL_PIE_HELPINS);
-
- if ((turkey && turkey->GetStackAmount() == 5) && (cranberies && cranberies->GetStackAmount() == 5) && (stuffing && stuffing->GetStackAmount() == 5)
- && (sweetPotatoes && sweetPotatoes->GetStackAmount() == 5) && (pie && pie->GetStackAmount() == 5))
- {
- target->CastSpell(target, SPELL_THE_SPIRIT_OF_SHARING, true);
- target->RemoveAurasDueToSpell(SPELL_TURKEY_HELPINS);
- target->RemoveAurasDueToSpell(SPELL_CRANBERRY_HELPINS);
- target->RemoveAurasDueToSpell(SPELL_STUFFING_HELPINS);
- target->RemoveAurasDueToSpell(SPELL_SWEET_POTATO_HELPINS);
- target->RemoveAurasDueToSpell(SPELL_PIE_HELPINS);
- }
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_pilgrims_bounty_well_fed_SpellScript::HandleScript, EFFECT_1, SPELL_EFFECT_SCRIPT_EFFECT);
- }
- };
-
- SpellScript* GetSpellScript() const override
- {
- return new spell_pilgrims_bounty_well_fed_SpellScript(_triggeredSpellId);
- }
-};
-
-enum BountifulTableMisc
-{
- SEAT_PLAYER = 0,
- SEAT_PLATE_HOLDER = 6,
- NPC_BOUNTIFUL_TABLE = 32823,
- SPELL_ON_PLATE_TURKEY = 61928,
- SPELL_ON_PLATE_CRANBERRIES = 61925,
- SPELL_ON_PLATE_STUFFING = 61927,
- SPELL_ON_PLATE_SWEET_POTATOES = 61929,
- SPELL_ON_PLATE_PIE = 61926,
- SPELL_PASS_THE_TURKEY = 66373,
- SPELL_PASS_THE_CRANBERRIES = 66372,
- SPELL_PASS_THE_STUFFING = 66375,
- SPELL_PASS_THE_SWEET_POTATOES = 66376,
- SPELL_PASS_THE_PIE = 66374,
- SPELL_ON_PLATE_VISUAL_PIE = 61825,
- SPELL_ON_PLATE_VISUAL_CRANBERRIES = 61821,
- SPELL_ON_PLATE_VISUAL_POTATOES = 61824,
- SPELL_ON_PLATE_VISUAL_TURKEY = 61822,
- SPELL_ON_PLATE_VISUAL_STUFFING = 61823,
- SPELL_A_SERVING_OF_CRANBERRIES_PLATE = 61833,
- SPELL_A_SERVING_OF_TURKEY_PLATE = 61835,
- SPELL_A_SERVING_OF_STUFFING_PLATE = 61836,
- SPELL_A_SERVING_OF_SWEET_POTATOES_PLATE = 61837,
- SPELL_A_SERVING_OF_PIE_PLATE = 61838,
- SPELL_A_SERVING_OF_CRANBERRIES_CHAIR = 61804,
- SPELL_A_SERVING_OF_TURKEY_CHAIR = 61807,
- SPELL_A_SERVING_OF_STUFFING_CHAIR = 61806,
- SPELL_A_SERVING_OF_SWEET_POTATOES_CHAIR = 61808,
- SPELL_A_SERVING_OF_PIE_CHAIR = 61805
-};
-
-/* 66250 - Pass The Turkey
- 66259 - Pass The Stuffing
- 66260 - Pass The Pie
- 66261 - Pass The Cranberries
- 66262 - Pass The Sweet Potatoes */
-class spell_pilgrims_bounty_on_plate : public SpellScriptLoader
-{
- private:
- uint32 _triggeredSpellId1;
- uint32 _triggeredSpellId2;
- uint32 _triggeredSpellId3;
- uint32 _triggeredSpellId4;
-
- public:
- spell_pilgrims_bounty_on_plate(char const* name, uint32 triggeredSpellId1, uint32 triggeredSpellId2, uint32 triggeredSpellId3, uint32 triggeredSpellId4) : SpellScriptLoader(name),
- _triggeredSpellId1(triggeredSpellId1), _triggeredSpellId2(triggeredSpellId2), _triggeredSpellId3(triggeredSpellId3), _triggeredSpellId4(triggeredSpellId4) { }
-
- class spell_pilgrims_bounty_on_plate_SpellScript : public SpellScript
- {
- PrepareSpellScript(spell_pilgrims_bounty_on_plate_SpellScript);
-
- uint32 _triggeredSpellId1;
- uint32 _triggeredSpellId2;
- uint32 _triggeredSpellId3;
- uint32 _triggeredSpellId4;
-
- public:
- spell_pilgrims_bounty_on_plate_SpellScript(uint32 triggeredSpellId1, uint32 triggeredSpellId2, uint32 triggeredSpellId3, uint32 triggeredSpellId4) : SpellScript(),
- _triggeredSpellId1(triggeredSpellId1), _triggeredSpellId2(triggeredSpellId2), _triggeredSpellId3(triggeredSpellId3), _triggeredSpellId4(triggeredSpellId4) { }
-
- private:
- bool Validate(SpellInfo const* /*spell*/) override
- {
- return ValidateSpellInfo(
- {
- _triggeredSpellId1,
- _triggeredSpellId2,
- _triggeredSpellId3,
- _triggeredSpellId4
- });
- }
-
- Vehicle* GetTable(Unit* target)
- {
- if (target->GetTypeId() == TYPEID_PLAYER)
- {
- if (Unit* vehBase = target->GetVehicleBase())
- if (Vehicle* table = vehBase->GetVehicle())
- if (table->GetCreatureEntry() == NPC_BOUNTIFUL_TABLE)
- return table;
- }
- else if (Vehicle* veh = target->GetVehicle())
- if (veh->GetCreatureEntry() == NPC_BOUNTIFUL_TABLE)
- return veh;
-
- return nullptr;
- }
-
- Unit* GetPlateInSeat(Vehicle* table, uint8 seat)
- {
- if (Unit* holderUnit = table->GetPassenger(SEAT_PLATE_HOLDER))
- if (Vehicle* holder = holderUnit->GetVehicleKit())
- if (Unit* plate = holder->GetPassenger(seat))
- return plate;
-
- return nullptr;
- }
-
- void HandleDummy(SpellEffIndex /*effIndex*/)
- {
- Unit* caster = GetCaster();
- Unit* target = GetHitUnit();
- if (!target || caster == target)
- return;
-
- Vehicle* table = GetTable(caster);
- if (!table || table != GetTable(target))
- return;
-
- if (Vehicle* casterChair = caster->GetVehicleKit())
- if (Unit* casterPlr = casterChair->GetPassenger(SEAT_PLAYER))
- {
- if (casterPlr == target)
- return;
-
- casterPlr->CastSpell(casterPlr, _triggeredSpellId2, true); //Credit for Sharing is Caring(always)
-
- uint8 seat = target->GetTransSeat();
- if (target->GetTypeId() == TYPEID_PLAYER && target->GetVehicleBase())
- seat = target->GetVehicleBase()->GetTransSeat();
-
- if (Unit* plate = GetPlateInSeat(table, seat))
- {
- if (target->GetTypeId() == TYPEID_PLAYER) //Food Fight case
- {
- casterPlr->CastSpell(target, _triggeredSpellId1, true);
- caster->CastSpell(target->GetVehicleBase(), _triggeredSpellId4, true); //CanEat-chair(always)
- }
- else
- {
- casterPlr->CastSpell(plate, _triggeredSpellId3, true); //Food Visual on plate
- caster->CastSpell(target, _triggeredSpellId4, true); //CanEat-chair(always)
- }
- }
- }
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_pilgrims_bounty_on_plate_SpellScript::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
- }
- };
-
- SpellScript* GetSpellScript() const override
- {
- return new spell_pilgrims_bounty_on_plate_SpellScript(_triggeredSpellId1, _triggeredSpellId2, _triggeredSpellId3, _triggeredSpellId4);
- }
-};
-
-/* 61804 - A Serving of Cranberries
- 61805 - A Serving of Pie
- 61806 - A Serving of Stuffing
- 61807 - A Serving of Turkey
- 61808 - A Serving of Sweet Potatoes
- 61793 - Cranberry Server
- 61794 - Pie Server
- 61795 - Stuffing Server
- 61796 - Turkey Server
- 61797 - Sweet Potatoes Server */
-class spell_pilgrims_bounty_a_serving_of : public SpellScriptLoader
-{
- private:
- uint32 _triggeredSpellId;
- public:
- spell_pilgrims_bounty_a_serving_of(char const* name, uint32 triggeredSpellId) : SpellScriptLoader(name), _triggeredSpellId(triggeredSpellId) { }
-
- class spell_pilgrims_bounty_a_serving_of_AuraScript : public AuraScript
- {
- PrepareAuraScript(spell_pilgrims_bounty_a_serving_of_AuraScript);
-
- uint32 _triggeredSpellId;
-
- public:
- spell_pilgrims_bounty_a_serving_of_AuraScript(uint32 triggeredSpellId) : AuraScript(), _triggeredSpellId(triggeredSpellId) { }
-
- private:
- bool Validate(SpellInfo const* /*spell*/) override
- {
- return ValidateSpellInfo({ _triggeredSpellId });
- }
-
- void OnApply(AuraEffect const* aurEff, AuraEffectHandleModes /*mode*/)
- {
- Unit* target = GetTarget();
- target->CastSpell(target, uint32(aurEff->GetAmount()), true);
- HandlePlate(target, true);
- }
-
- void OnRemove(AuraEffect const* aurEff, AuraEffectHandleModes /*mode*/)
- {
- Unit* target = GetTarget();
- target->RemoveAurasDueToSpell(aurEff->GetAmount());
- HandlePlate(target, false);
- }
-
- void HandlePlate(Unit* target, bool apply)
- {
- if (Vehicle* table = target->GetVehicle())
- if (Unit* holderUnit = table->GetPassenger(SEAT_PLATE_HOLDER))
- if (Vehicle* holder = holderUnit->GetVehicleKit())
- if (Unit* plate = holder->GetPassenger(target->GetTransSeat()))
- {
- if (apply)
- target->CastSpell(plate, _triggeredSpellId, true);
- else
- plate->RemoveAurasDueToSpell(_triggeredSpellId);
- }
- }
-
- void Register() override
- {
- AfterEffectApply += AuraEffectApplyFn(spell_pilgrims_bounty_a_serving_of_AuraScript::OnApply, EFFECT_0, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAL);
- OnEffectRemove += AuraEffectRemoveFn(spell_pilgrims_bounty_a_serving_of_AuraScript::OnRemove, EFFECT_0, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAL);
- }
- };
-
- AuraScript* GetAuraScript() const override
- {
- return new spell_pilgrims_bounty_a_serving_of_AuraScript(_triggeredSpellId);
- }
-};
-
-enum Mistletoe
-{
- SPELL_CREATE_MISTLETOE = 26206,
- SPELL_CREATE_HOLLY = 26207,
- SPELL_CREATE_SNOWFLAKES = 45036
-};
-
-// 26218 - Mistletoe
-class spell_winter_veil_mistletoe : public SpellScript
-{
- PrepareSpellScript(spell_winter_veil_mistletoe);
-
- bool Validate(SpellInfo const* /*spell*/) override
- {
- return ValidateSpellInfo(
- {
- SPELL_CREATE_MISTLETOE,
- SPELL_CREATE_HOLLY,
- SPELL_CREATE_SNOWFLAKES
- });
- }
-
- void HandleScript(SpellEffIndex /*effIndex*/)
- {
- if (Player* target = GetHitPlayer())
- {
- uint32 spellId = RAND(SPELL_CREATE_HOLLY, SPELL_CREATE_MISTLETOE, SPELL_CREATE_SNOWFLAKES);
- GetCaster()->CastSpell(target, spellId, true);
- }
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_winter_veil_mistletoe::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
- }
-};
-
-// 26275 - PX-238 Winter Wondervolt TRAP
-enum PX238WinterWondervolt
-{
- SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_1 = 26157,
- SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_2 = 26272,
- SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_3 = 26273,
- SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_4 = 26274
-};
-
-uint32 const WonderboltTransformSpells[] =
-{
- SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_1,
- SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_2,
- SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_3,
- SPELL_PX_238_WINTER_WONDERVOLT_TRANSFORM_4
-};
-
-// 26275 - PX-238 Winter Wondervolt TRAP
-class spell_winter_veil_px_238_winter_wondervolt : public SpellScript
-{
- PrepareSpellScript(spell_winter_veil_px_238_winter_wondervolt);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo(WonderboltTransformSpells);
- }
-
- void HandleScript(SpellEffIndex effIndex)
- {
- PreventHitDefaultEffect(effIndex);
-
- if (Unit* target = GetHitUnit())
- {
- for (uint32 spell : WonderboltTransformSpells)
- if (target->HasAura(spell))
- return;
-
- target->CastSpell(target, Trinity::Containers::SelectRandomContainerElement(WonderboltTransformSpells), true);
- }
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_winter_veil_px_238_winter_wondervolt::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
- }
-};
-
-enum RamBlaBla
-{
- SPELL_GIDDYUP = 42924,
- SPELL_RENTAL_RACING_RAM = 43883,
- SPELL_SWIFT_WORK_RAM = 43880,
- SPELL_RENTAL_RACING_RAM_AURA = 42146,
- SPELL_RAM_LEVEL_NEUTRAL = 43310,
- SPELL_RAM_TROT = 42992,
- SPELL_RAM_CANTER = 42993,
- SPELL_RAM_GALLOP = 42994,
- SPELL_RAM_FATIGUE = 43052,
- SPELL_EXHAUSTED_RAM = 43332,
- SPELL_RELAY_RACE_TURN_IN = 44501,
-
- // Quest
- SPELL_BREWFEST_QUEST_SPEED_BUNNY_GREEN = 43345,
- SPELL_BREWFEST_QUEST_SPEED_BUNNY_YELLOW = 43346,
- SPELL_BREWFEST_QUEST_SPEED_BUNNY_RED = 43347
-};
-
-// 42924 - Giddyup!
-class spell_brewfest_giddyup : public SpellScriptLoader
-{
- public:
- spell_brewfest_giddyup() : SpellScriptLoader("spell_brewfest_giddyup") { }
-
- class spell_brewfest_giddyup_AuraScript : public AuraScript
- {
- PrepareAuraScript(spell_brewfest_giddyup_AuraScript);
-
- void OnChange(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
- {
- Unit* target = GetTarget();
- if (!target->HasAura(SPELL_RENTAL_RACING_RAM) && !target->HasAura(SPELL_SWIFT_WORK_RAM))
- {
- target->RemoveAura(GetId());
- return;
- }
-
- if (target->HasAura(SPELL_EXHAUSTED_RAM))
- return;
-
- switch (GetStackAmount())
- {
- case 1: // green
- target->RemoveAura(SPELL_RAM_LEVEL_NEUTRAL);
- target->RemoveAura(SPELL_RAM_CANTER);
- target->CastSpell(target, SPELL_RAM_TROT, true);
- break;
- case 6: // yellow
- target->RemoveAura(SPELL_RAM_TROT);
- target->RemoveAura(SPELL_RAM_GALLOP);
- target->CastSpell(target, SPELL_RAM_CANTER, true);
- break;
- case 11: // red
- target->RemoveAura(SPELL_RAM_CANTER);
- target->CastSpell(target, SPELL_RAM_GALLOP, true);
- break;
- default:
- break;
- }
-
- if (GetTargetApplication()->GetRemoveMode() == AURA_REMOVE_BY_DEFAULT)
- {
- target->RemoveAura(SPELL_RAM_TROT);
- target->CastSpell(target, SPELL_RAM_LEVEL_NEUTRAL, true);
- }
- }
-
- void OnPeriodic(AuraEffect const* /*aurEff*/)
- {
- GetTarget()->RemoveAuraFromStack(GetId());
- }
-
- void Register() override
- {
- AfterEffectApply += AuraEffectApplyFn(spell_brewfest_giddyup_AuraScript::OnChange, EFFECT_0, SPELL_AURA_PERIODIC_DUMMY, AURA_EFFECT_HANDLE_CHANGE_AMOUNT_MASK);
- OnEffectRemove += AuraEffectRemoveFn(spell_brewfest_giddyup_AuraScript::OnChange, EFFECT_0, SPELL_AURA_PERIODIC_DUMMY, AURA_EFFECT_HANDLE_CHANGE_AMOUNT_MASK);
- OnEffectPeriodic += AuraEffectPeriodicFn(spell_brewfest_giddyup_AuraScript::OnPeriodic, EFFECT_0, SPELL_AURA_PERIODIC_DUMMY);
- }
- };
-
- AuraScript* GetAuraScript() const override
- {
- return new spell_brewfest_giddyup_AuraScript();
- }
-};
-
-// 43310 - Ram Level - Neutral
-// 42992 - Ram - Trot
-// 42993 - Ram - Canter
-// 42994 - Ram - Gallop
-class spell_brewfest_ram : public SpellScriptLoader
-{
- public:
- spell_brewfest_ram() : SpellScriptLoader("spell_brewfest_ram") { }
-
- class spell_brewfest_ram_AuraScript : public AuraScript
- {
- PrepareAuraScript(spell_brewfest_ram_AuraScript);
-
- void OnPeriodic(AuraEffect const* aurEff)
- {
- Unit* target = GetTarget();
- if (target->HasAura(SPELL_EXHAUSTED_RAM))
- return;
-
- switch (GetId())
- {
- case SPELL_RAM_LEVEL_NEUTRAL:
- if (Aura* aura = target->GetAura(SPELL_RAM_FATIGUE))
- aura->ModStackAmount(-4);
- break;
- case SPELL_RAM_TROT: // green
- if (Aura* aura = target->GetAura(SPELL_RAM_FATIGUE))
- aura->ModStackAmount(-2);
- if (aurEff->GetTickNumber() == 4)
- target->CastSpell(target, SPELL_BREWFEST_QUEST_SPEED_BUNNY_GREEN, true);
- break;
- case SPELL_RAM_CANTER:
- {
- CastSpellExtraArgs args(TRIGGERED_FULL_MASK);
- args.AddSpellMod(SPELLVALUE_AURA_STACK, 1);
- target->CastSpell(target, SPELL_RAM_FATIGUE, args);
- if (aurEff->GetTickNumber() == 8)
- target->CastSpell(target, SPELL_BREWFEST_QUEST_SPEED_BUNNY_YELLOW, true);
- break;
- }
- case SPELL_RAM_GALLOP:
- {
- CastSpellExtraArgs args(TRIGGERED_FULL_MASK);
- args.AddSpellMod(SPELLVALUE_AURA_STACK, target->HasAura(SPELL_RAM_FATIGUE) ? 4 : 5 /*Hack*/);
- target->CastSpell(target, SPELL_RAM_FATIGUE, args);
- if (aurEff->GetTickNumber() == 8)
- target->CastSpell(target, SPELL_BREWFEST_QUEST_SPEED_BUNNY_RED, true);
- break;
- }
- default:
- break;
- }
-
- }
-
- void Register() override
- {
- OnEffectPeriodic += AuraEffectPeriodicFn(spell_brewfest_ram_AuraScript::OnPeriodic, EFFECT_1, SPELL_AURA_PERIODIC_DUMMY);
- }
- };
-
- AuraScript* GetAuraScript() const override
- {
- return new spell_brewfest_ram_AuraScript();
- }
-};
-
-// 43052 - Ram Fatigue
-class spell_brewfest_ram_fatigue : public SpellScriptLoader
-{
- public:
- spell_brewfest_ram_fatigue() : SpellScriptLoader("spell_brewfest_ram_fatigue") { }
-
- class spell_brewfest_ram_fatigue_AuraScript : public AuraScript
- {
- PrepareAuraScript(spell_brewfest_ram_fatigue_AuraScript);
-
- void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
- {
- Unit* target = GetTarget();
-
- if (GetStackAmount() == 101)
- {
- target->RemoveAura(SPELL_RAM_LEVEL_NEUTRAL);
- target->RemoveAura(SPELL_RAM_TROT);
- target->RemoveAura(SPELL_RAM_CANTER);
- target->RemoveAura(SPELL_RAM_GALLOP);
- target->RemoveAura(SPELL_GIDDYUP);
-
- target->CastSpell(target, SPELL_EXHAUSTED_RAM, true);
- }
- }
-
- void Register() override
- {
- AfterEffectApply += AuraEffectApplyFn(spell_brewfest_ram_fatigue_AuraScript::OnApply, EFFECT_0, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAL_OR_REAPPLY_MASK);
- }
- };
-
- AuraScript* GetAuraScript() const override
- {
- return new spell_brewfest_ram_fatigue_AuraScript();
- }
-};
-
-// 43450 - Brewfest - apple trap - friendly DND
-class spell_brewfest_apple_trap : public SpellScriptLoader
-{
- public:
- spell_brewfest_apple_trap() : SpellScriptLoader("spell_brewfest_apple_trap") { }
-
- class spell_brewfest_apple_trap_AuraScript : public AuraScript
- {
- PrepareAuraScript(spell_brewfest_apple_trap_AuraScript);
-
- void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
- {
- GetTarget()->RemoveAura(SPELL_RAM_FATIGUE);
- }
-
- void Register() override
- {
- OnEffectApply += AuraEffectApplyFn(spell_brewfest_apple_trap_AuraScript::OnApply, EFFECT_0, SPELL_AURA_FORCE_REACTION, AURA_EFFECT_HANDLE_REAL);
- }
- };
-
- AuraScript* GetAuraScript() const override
- {
- return new spell_brewfest_apple_trap_AuraScript();
- }
-};
-
-// 43332 - Exhausted Ram
-class spell_brewfest_exhausted_ram : public SpellScriptLoader
-{
- public:
- spell_brewfest_exhausted_ram() : SpellScriptLoader("spell_brewfest_exhausted_ram") { }
-
- class spell_brewfest_exhausted_ram_AuraScript : public AuraScript
- {
- PrepareAuraScript(spell_brewfest_exhausted_ram_AuraScript);
-
- void OnRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
- {
- Unit* target = GetTarget();
- target->CastSpell(target, SPELL_RAM_LEVEL_NEUTRAL, true);
- }
-
- void Register() override
- {
- OnEffectRemove += AuraEffectApplyFn(spell_brewfest_exhausted_ram_AuraScript::OnRemove, EFFECT_0, SPELL_AURA_MOD_DECREASE_SPEED, AURA_EFFECT_HANDLE_REAL);
- }
- };
-
- AuraScript* GetAuraScript() const override
- {
- return new spell_brewfest_exhausted_ram_AuraScript();
- }
-};
-
-// 43714 - Brewfest - Relay Race - Intro - Force - Player to throw- DND
-class spell_brewfest_relay_race_intro_force_player_to_throw : public SpellScriptLoader
-{
- public:
- spell_brewfest_relay_race_intro_force_player_to_throw() : SpellScriptLoader("spell_brewfest_relay_race_intro_force_player_to_throw") { }
-
- class spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript : public SpellScript
- {
- PrepareSpellScript(spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript);
-
- void HandleForceCast(SpellEffIndex effIndex)
- {
- PreventHitDefaultEffect(effIndex);
- // All this spells trigger a spell that requires reagents; if the
- // triggered spell is cast as "triggered", reagents are not consumed
- GetHitUnit()->CastSpell(nullptr, GetEffectInfo().TriggerSpell, TriggerCastFlags(TRIGGERED_FULL_MASK & ~TRIGGERED_IGNORE_POWER_AND_REAGENT_COST));
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript::HandleForceCast, EFFECT_0, SPELL_EFFECT_FORCE_CAST);
- }
- };
-
- SpellScript* GetSpellScript() const override
- {
- return new spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript();
- }
-};
-
-// 43755 - Brewfest - Daily - Relay Race - Player - Increase Mount Duration - DND
-class spell_brewfest_relay_race_turn_in : public SpellScriptLoader
-{
-public:
- spell_brewfest_relay_race_turn_in() : SpellScriptLoader("spell_brewfest_relay_race_turn_in") { }
-
- class spell_brewfest_relay_race_turn_in_SpellScript : public SpellScript
- {
- PrepareSpellScript(spell_brewfest_relay_race_turn_in_SpellScript);
-
- void HandleDummy(SpellEffIndex effIndex)
- {
- PreventHitDefaultEffect(effIndex);
-
- if (Aura* aura = GetHitUnit()->GetAura(SPELL_SWIFT_WORK_RAM))
- {
- aura->SetDuration(aura->GetDuration() + 30 * IN_MILLISECONDS);
- GetCaster()->CastSpell(GetHitUnit(), SPELL_RELAY_RACE_TURN_IN, TRIGGERED_FULL_MASK);
- }
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_brewfest_relay_race_turn_in_SpellScript::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
- }
- };
-
- SpellScript* GetSpellScript() const override
- {
- return new spell_brewfest_relay_race_turn_in_SpellScript();
- }
-};
-
-// 43876 - Dismount Ram
-class spell_brewfest_dismount_ram : public SpellScriptLoader
-{
- public:
- spell_brewfest_dismount_ram() : SpellScriptLoader("spell_brewfest_dismount_ram") { }
-
- class spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript : public SpellScript
- {
- PrepareSpellScript(spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript);
-
- void HandleScript(SpellEffIndex /*effIndex*/)
- {
- GetCaster()->RemoveAura(SPELL_RENTAL_RACING_RAM);
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
- }
- };
-
- SpellScript* GetSpellScript() const override
- {
- return new spell_brewfest_relay_race_intro_force_player_to_throw_SpellScript();
- }
-};
-
-enum RamBlub
-{
- // Horde
- QUEST_BARK_FOR_DROHNS_DISTILLERY = 11407,
- QUEST_BARK_FOR_TCHALIS_VOODOO_BREWERY = 11408,
-
- // Alliance
- QUEST_BARK_BARLEYBREW = 11293,
- QUEST_BARK_FOR_THUNDERBREWS = 11294,
-
- // Bark for Drohn's Distillery!
- SAY_DROHN_DISTILLERY_1 = 23520,
- SAY_DROHN_DISTILLERY_2 = 23521,
- SAY_DROHN_DISTILLERY_3 = 23522,
- SAY_DROHN_DISTILLERY_4 = 23523,
-
- // Bark for T'chali's Voodoo Brewery!
- SAY_TCHALIS_VOODOO_1 = 23524,
- SAY_TCHALIS_VOODOO_2 = 23525,
- SAY_TCHALIS_VOODOO_3 = 23526,
- SAY_TCHALIS_VOODOO_4 = 23527,
-
- // Bark for the Barleybrews!
- SAY_BARLEYBREW_1 = 23464,
- SAY_BARLEYBREW_2 = 23465,
- SAY_BARLEYBREW_3 = 23466,
- SAY_BARLEYBREW_4 = 22941,
-
- // Bark for the Thunderbrews!
- SAY_THUNDERBREWS_1 = 23467,
- SAY_THUNDERBREWS_2 = 23468,
- SAY_THUNDERBREWS_3 = 23469,
- SAY_THUNDERBREWS_4 = 22942
-};
-
-// 43259 Brewfest - Barker Bunny 1
-// 43260 Brewfest - Barker Bunny 2
-// 43261 Brewfest - Barker Bunny 3
-// 43262 Brewfest - Barker Bunny 4
-class spell_brewfest_barker_bunny : public SpellScriptLoader
-{
- public:
- spell_brewfest_barker_bunny() : SpellScriptLoader("spell_brewfest_barker_bunny") { }
-
- class spell_brewfest_barker_bunny_AuraScript : public AuraScript
- {
- PrepareAuraScript(spell_brewfest_barker_bunny_AuraScript);
-
- bool Load() override
- {
- return GetUnitOwner()->GetTypeId() == TYPEID_PLAYER;
- }
-
- void OnApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
- {
- Player* target = GetTarget()->ToPlayer();
-
- uint32 BroadcastTextId = 0;
-
- if (target->GetQuestStatus(QUEST_BARK_FOR_DROHNS_DISTILLERY) == QUEST_STATUS_INCOMPLETE ||
- target->GetQuestStatus(QUEST_BARK_FOR_DROHNS_DISTILLERY) == QUEST_STATUS_COMPLETE)
- BroadcastTextId = RAND(SAY_DROHN_DISTILLERY_1, SAY_DROHN_DISTILLERY_2, SAY_DROHN_DISTILLERY_3, SAY_DROHN_DISTILLERY_4);
-
- if (target->GetQuestStatus(QUEST_BARK_FOR_TCHALIS_VOODOO_BREWERY) == QUEST_STATUS_INCOMPLETE ||
- target->GetQuestStatus(QUEST_BARK_FOR_TCHALIS_VOODOO_BREWERY) == QUEST_STATUS_COMPLETE)
- BroadcastTextId = RAND(SAY_TCHALIS_VOODOO_1, SAY_TCHALIS_VOODOO_2, SAY_TCHALIS_VOODOO_3, SAY_TCHALIS_VOODOO_4);
-
- if (target->GetQuestStatus(QUEST_BARK_BARLEYBREW) == QUEST_STATUS_INCOMPLETE ||
- target->GetQuestStatus(QUEST_BARK_BARLEYBREW) == QUEST_STATUS_COMPLETE)
- BroadcastTextId = RAND(SAY_BARLEYBREW_1, SAY_BARLEYBREW_2, SAY_BARLEYBREW_3, SAY_BARLEYBREW_4);
-
- if (target->GetQuestStatus(QUEST_BARK_FOR_THUNDERBREWS) == QUEST_STATUS_INCOMPLETE ||
- target->GetQuestStatus(QUEST_BARK_FOR_THUNDERBREWS) == QUEST_STATUS_COMPLETE)
- BroadcastTextId = RAND(SAY_THUNDERBREWS_1, SAY_THUNDERBREWS_2, SAY_THUNDERBREWS_3, SAY_THUNDERBREWS_4);
-
- if (BroadcastTextId)
- target->Talk(BroadcastTextId, CHAT_MSG_SAY, sWorld->getFloatConfig(CONFIG_LISTEN_RANGE_SAY), target);
- }
-
- void Register() override
- {
- OnEffectApply += AuraEffectApplyFn(spell_brewfest_barker_bunny_AuraScript::OnApply, EFFECT_1, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAL);
- }
- };
-
- AuraScript* GetAuraScript() const override
- {
- return new spell_brewfest_barker_bunny_AuraScript();
- }
-};
-
-enum TorchSpells
-{
- SPELL_TORCH_TOSSING_TRAINING = 45716,
- SPELL_TORCH_TOSSING_PRACTICE = 46630,
- SPELL_TORCH_TOSSING_TRAINING_SUCCESS_ALLIANCE = 45719,
- SPELL_TORCH_TOSSING_TRAINING_SUCCESS_HORDE = 46651,
- SPELL_TARGET_INDICATOR_COSMETIC = 46901,
- SPELL_TARGET_INDICATOR = 45723,
- SPELL_BRAZIERS_HIT = 45724
-};
-
-// 45724 - Braziers Hit!
-class spell_midsummer_braziers_hit : public AuraScript
-{
- PrepareAuraScript(spell_midsummer_braziers_hit);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo(
- {
- SPELL_TORCH_TOSSING_TRAINING,
- SPELL_TORCH_TOSSING_PRACTICE,
- SPELL_TORCH_TOSSING_TRAINING_SUCCESS_ALLIANCE,
- SPELL_TORCH_TOSSING_TRAINING_SUCCESS_HORDE
- });
- }
-
- void HandleEffectApply(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
- {
- Player* player = GetTarget()->ToPlayer();
- if (!player)
- return;
-
- if ((player->HasAura(SPELL_TORCH_TOSSING_TRAINING) && GetStackAmount() == 8) || (player->HasAura(SPELL_TORCH_TOSSING_PRACTICE) && GetStackAmount() == 20))
- {
- if (player->GetTeam() == ALLIANCE)
- player->CastSpell(player, SPELL_TORCH_TOSSING_TRAINING_SUCCESS_ALLIANCE, true);
- else if (player->GetTeam() == HORDE)
- player->CastSpell(player, SPELL_TORCH_TOSSING_TRAINING_SUCCESS_HORDE, true);
- Remove();
- }
- }
-
- void Register() override
- {
- AfterEffectApply += AuraEffectApplyFn(spell_midsummer_braziers_hit::HandleEffectApply, EFFECT_0, SPELL_AURA_DUMMY, AURA_EFFECT_HANDLE_REAPPLY);
- }
-};
-
-// 45907 - Torch Target Picker
-class spell_midsummer_torch_target_picker : public SpellScript
-{
- PrepareSpellScript(spell_midsummer_torch_target_picker);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo({ SPELL_TARGET_INDICATOR_COSMETIC, SPELL_TARGET_INDICATOR });
- }
-
- void HandleScript(SpellEffIndex /*effIndex*/)
- {
- Unit* target = GetHitUnit();
- target->CastSpell(target, SPELL_TARGET_INDICATOR_COSMETIC, true);
- target->CastSpell(target, SPELL_TARGET_INDICATOR, true);
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_midsummer_torch_target_picker::HandleScript, EFFECT_0, SPELL_EFFECT_DUMMY);
- }
-};
-
-// 46054 - Torch Toss (land)
-class spell_midsummer_torch_toss_land : public SpellScript
-{
- PrepareSpellScript(spell_midsummer_torch_toss_land);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo({ SPELL_BRAZIERS_HIT });
- }
-
- void HandleScript(SpellEffIndex /*effIndex*/)
- {
- GetHitUnit()->CastSpell(GetCaster(), SPELL_BRAZIERS_HIT, true);
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_midsummer_torch_toss_land::HandleScript, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
- }
-};
-
-enum RibbonPoleData
-{
- SPELL_HAS_FULL_MIDSUMMER_SET = 58933,
- SPELL_BURNING_HOT_POLE_DANCE = 58934,
- SPELL_RIBBON_POLE_PERIODIC_VISUAL = 45406,
- SPELL_RIBBON_DANCE = 29175,
- SPELL_TEST_RIBBON_POLE_1 = 29705,
- SPELL_TEST_RIBBON_POLE_2 = 29726,
- SPELL_TEST_RIBBON_POLE_3 = 29727
-};
-
-// 29705, 29726, 29727 - Test Ribbon Pole Channel
-class spell_midsummer_test_ribbon_pole_channel : public AuraScript
-{
- PrepareAuraScript(spell_midsummer_test_ribbon_pole_channel);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo(
- {
- SPELL_RIBBON_POLE_PERIODIC_VISUAL,
- SPELL_BURNING_HOT_POLE_DANCE,
- SPELL_HAS_FULL_MIDSUMMER_SET,
- SPELL_RIBBON_DANCE
- });
- }
-
- void HandleRemove(AuraEffect const* /*aurEff*/, AuraEffectHandleModes /*mode*/)
- {
- GetTarget()->RemoveAurasDueToSpell(SPELL_RIBBON_POLE_PERIODIC_VISUAL);
- }
-
- void PeriodicTick(AuraEffect const* /*aurEff*/)
- {
- Unit* target = GetTarget();
- target->CastSpell(target, SPELL_RIBBON_POLE_PERIODIC_VISUAL, true);
-
- if (Aura* aur = target->GetAura(SPELL_RIBBON_DANCE))
- {
- aur->SetMaxDuration(std::min(3600000, aur->GetMaxDuration() + 180000));
- aur->RefreshDuration();
-
- if (aur->GetMaxDuration() == 3600000 && target->HasAura(SPELL_HAS_FULL_MIDSUMMER_SET))
- target->CastSpell(target, SPELL_BURNING_HOT_POLE_DANCE, true);
- }
- else
- target->CastSpell(target, SPELL_RIBBON_DANCE, true);
- }
-
- void Register() override
- {
- AfterEffectRemove += AuraEffectRemoveFn(spell_midsummer_test_ribbon_pole_channel::HandleRemove, EFFECT_1, SPELL_AURA_PERIODIC_TRIGGER_SPELL, AURA_EFFECT_HANDLE_REAL);
- OnEffectPeriodic += AuraEffectPeriodicFn(spell_midsummer_test_ribbon_pole_channel::PeriodicTick, EFFECT_1, SPELL_AURA_PERIODIC_TRIGGER_SPELL);
- }
-};
-
-// 45406 - Holiday - Midsummer, Ribbon Pole Periodic Visual
-class spell_midsummer_ribbon_pole_periodic_visual : public AuraScript
-{
- PrepareAuraScript(spell_midsummer_ribbon_pole_periodic_visual);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo(
- {
- SPELL_TEST_RIBBON_POLE_1,
- SPELL_TEST_RIBBON_POLE_2,
- SPELL_TEST_RIBBON_POLE_3
- });
- }
-
- void PeriodicTick(AuraEffect const* /*aurEff*/)
- {
- Unit* target = GetTarget();
- if (!target->HasAura(SPELL_TEST_RIBBON_POLE_1) && !target->HasAura(SPELL_TEST_RIBBON_POLE_2) && !target->HasAura(SPELL_TEST_RIBBON_POLE_3))
- Remove();
- }
-
- void Register() override
- {
- OnEffectPeriodic += AuraEffectPeriodicFn(spell_midsummer_ribbon_pole_periodic_visual::PeriodicTick, EFFECT_0, SPELL_AURA_PERIODIC_DUMMY);
- }
-};
-
-enum JugglingTorch
-{
- SPELL_JUGGLE_TORCH_SLOW = 45792,
- SPELL_JUGGLE_TORCH_MEDIUM = 45806,
- SPELL_JUGGLE_TORCH_FAST = 45816,
- SPELL_JUGGLE_TORCH_SELF = 45638,
-
- SPELL_JUGGLE_TORCH_SHADOW_SLOW = 46120,
- SPELL_JUGGLE_TORCH_SHADOW_MEDIUM = 46118,
- SPELL_JUGGLE_TORCH_SHADOW_FAST = 46117,
- SPELL_JUGGLE_TORCH_SHADOW_SELF = 46121,
-
- SPELL_GIVE_TORCH = 45280,
- QUEST_TORCH_CATCHING_A = 11657,
- QUEST_TORCH_CATCHING_H = 11923,
- QUEST_MORE_TORCH_CATCHING_A = 11924,
- QUEST_MORE_TORCH_CATCHING_H = 11925
-};
-
-// 45819 - Throw Torch
-class spell_midsummer_juggle_torch : public SpellScript
-{
- PrepareSpellScript(spell_midsummer_juggle_torch);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo({
- SPELL_JUGGLE_TORCH_SLOW, SPELL_JUGGLE_TORCH_MEDIUM, SPELL_JUGGLE_TORCH_FAST,
- SPELL_JUGGLE_TORCH_SELF, SPELL_JUGGLE_TORCH_SHADOW_SLOW, SPELL_JUGGLE_TORCH_SHADOW_MEDIUM,
- SPELL_JUGGLE_TORCH_SHADOW_FAST, SPELL_JUGGLE_TORCH_SHADOW_SELF
- });
- }
-
- void HandleDummy(SpellEffIndex /*effIndex*/)
- {
- if (!GetExplTargetDest())
- return;
-
- Position spellDest = *GetExplTargetDest();
- float distance = GetCaster()->GetExactDist2d(spellDest.GetPositionX(), spellDest.GetPositionY());
-
- uint32 torchSpellID = 0;
- uint32 torchShadowSpellID = 0;
-
- if (distance <= 1.5f)
- {
- torchSpellID = SPELL_JUGGLE_TORCH_SELF;
- torchShadowSpellID = SPELL_JUGGLE_TORCH_SHADOW_SELF;
- spellDest = GetCaster()->GetPosition();
- }
- else if (distance <= 10.0f)
- {
- torchSpellID = SPELL_JUGGLE_TORCH_SLOW;
- torchShadowSpellID = SPELL_JUGGLE_TORCH_SHADOW_SLOW;
- }
- else if (distance <= 20.0f)
- {
- torchSpellID = SPELL_JUGGLE_TORCH_MEDIUM;
- torchShadowSpellID = SPELL_JUGGLE_TORCH_SHADOW_MEDIUM;
- }
- else
- {
- torchSpellID = SPELL_JUGGLE_TORCH_FAST;
- torchShadowSpellID = SPELL_JUGGLE_TORCH_SHADOW_FAST;
- }
-
- GetCaster()->CastSpell(spellDest, torchSpellID);
- GetCaster()->CastSpell(spellDest, torchShadowSpellID);
- }
-
- void Register() override
- {
- OnEffectHit += SpellEffectFn(spell_midsummer_juggle_torch::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
- }
-};
-
-// 45644 - Juggle Torch (Catch)
-class spell_midsummer_torch_catch : public SpellScript
-{
- PrepareSpellScript(spell_midsummer_torch_catch);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo({ SPELL_GIVE_TORCH });
- }
-
- void HandleDummy(SpellEffIndex /*effIndex*/)
- {
- Player* player = GetHitPlayer();
- if (!player)
- return;
-
- if (player->GetQuestStatus(QUEST_TORCH_CATCHING_A) == QUEST_STATUS_REWARDED || player->GetQuestStatus(QUEST_TORCH_CATCHING_H) == QUEST_STATUS_REWARDED)
- player->CastSpell(player, SPELL_GIVE_TORCH);
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_midsummer_torch_catch::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
- }
-};
-
-enum FlingTorch
-{
- SPELL_FLING_TORCH_TRIGGERED = 45669,
- SPELL_FLING_TORCH_SHADOW = 46105,
- SPELL_JUGGLE_TORCH_MISSED = 45676,
- SPELL_TORCHES_CAUGHT = 45693,
- SPELL_TORCH_CATCHING_SUCCESS_ALLIANCE = 46081,
- SPELL_TORCH_CATCHING_SUCCESS_HORDE = 46654,
- SPELL_TORCH_CATCHING_REMOVE_TORCHES = 46084
-};
-
-// 46747 - Fling torch
-class spell_midsummer_fling_torch : public SpellScript
-{
- PrepareSpellScript(spell_midsummer_fling_torch);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo({ SPELL_FLING_TORCH_TRIGGERED, SPELL_FLING_TORCH_SHADOW });
- }
-
- void HandleDummy(SpellEffIndex /*effIndex*/)
- {
- Position dest = GetCaster()->GetFirstCollisionPosition(30.0f, (float)rand_norm() * static_cast<float>(2 * M_PI));
- GetCaster()->CastSpell(dest, SPELL_FLING_TORCH_TRIGGERED, true);
- GetCaster()->CastSpell(dest, SPELL_FLING_TORCH_SHADOW);
- }
-
- void Register() override
- {
- OnEffectHit += SpellEffectFn(spell_midsummer_fling_torch::HandleDummy, EFFECT_0, SPELL_EFFECT_DUMMY);
- }
-};
-
-// 45669 - Fling Torch
-class spell_midsummer_fling_torch_triggered : public SpellScript
-{
- PrepareSpellScript(spell_midsummer_fling_torch_triggered);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo({ SPELL_JUGGLE_TORCH_MISSED });
- }
-
- void HandleTriggerMissile(SpellEffIndex effIndex)
- {
- if (Position const* pos = GetHitDest())
- {
- if (GetCaster()->GetExactDist2d(pos) > 3.0f)
- {
- PreventHitEffect(effIndex);
- GetCaster()->CastSpell(*GetExplTargetDest(), SPELL_JUGGLE_TORCH_MISSED);
- GetCaster()->RemoveAura(SPELL_TORCHES_CAUGHT);
- }
- }
- }
-
- void Register() override
- {
- OnEffectHit += SpellEffectFn(spell_midsummer_fling_torch_triggered::HandleTriggerMissile, EFFECT_0, SPELL_EFFECT_TRIGGER_MISSILE);
- }
-};
-
-// 45671 - Juggle Torch (Catch, Quest)
-class spell_midsummer_fling_torch_catch : public SpellScript
-{
- PrepareSpellScript(spell_midsummer_fling_torch_catch);
-
- bool Validate(SpellInfo const* /*spellInfo*/) override
- {
- return ValidateSpellInfo({
- SPELL_FLING_TORCH_TRIGGERED,
- SPELL_TORCH_CATCHING_SUCCESS_ALLIANCE,
- SPELL_TORCH_CATCHING_SUCCESS_HORDE,
- SPELL_TORCH_CATCHING_REMOVE_TORCHES,
- SPELL_FLING_TORCH_SHADOW
- });
- }
-
- void HandleScriptEffect(SpellEffIndex /*effIndex*/)
- {
- Player* player = GetHitPlayer();
- if (!player)
- return;
-
- if (!GetExplTargetDest())
- return;
-
- // Only the caster can catch the torch
- if (player->GetGUID() != GetCaster()->GetGUID())
- return;
-
- uint8 requiredCatches = 0;
- // Number of required catches depends on quest - 4 for the normal quest, 10 for the daily version
- if (player->GetQuestStatus(QUEST_TORCH_CATCHING_A) == QUEST_STATUS_INCOMPLETE || player->GetQuestStatus(QUEST_TORCH_CATCHING_H) == QUEST_STATUS_INCOMPLETE)
- requiredCatches = 3;
- else if (player->GetQuestStatus(QUEST_MORE_TORCH_CATCHING_A) == QUEST_STATUS_INCOMPLETE || player->GetQuestStatus(QUEST_MORE_TORCH_CATCHING_H) == QUEST_STATUS_INCOMPLETE)
- requiredCatches = 9;
-
- // Used quest item without being on quest - do nothing
- if (requiredCatches == 0)
- return;
-
- if (player->GetAuraCount(SPELL_TORCHES_CAUGHT) >= requiredCatches)
- {
- player->CastSpell(player, (player->GetTeam() == ALLIANCE) ? SPELL_TORCH_CATCHING_SUCCESS_ALLIANCE : SPELL_TORCH_CATCHING_SUCCESS_HORDE);
- player->CastSpell(player, SPELL_TORCH_CATCHING_REMOVE_TORCHES);
- player->RemoveAura(SPELL_TORCHES_CAUGHT);
- }
- else
- {
- Position dest = player->GetFirstCollisionPosition(15.0f, (float)rand_norm() * static_cast<float>(2 * M_PI));
- player->CastSpell(player, SPELL_TORCHES_CAUGHT);
- player->CastSpell(dest, SPELL_FLING_TORCH_TRIGGERED, true);
- player->CastSpell(dest, SPELL_FLING_TORCH_SHADOW);
- }
- }
-
- void Register() override
- {
- OnEffectHitTarget += SpellEffectFn(spell_midsummer_fling_torch_catch::HandleScriptEffect, EFFECT_0, SPELL_EFFECT_SCRIPT_EFFECT);
- }
-};
-
-// 45676 - Juggle Torch (Quest, Missed)
-class spell_midsummer_fling_torch_missed : public SpellScript
-{
- PrepareSpellScript(spell_midsummer_fling_torch_missed);
-
- void FilterTargets(std::list<WorldObject*>& targets)
- {
- // This spell only hits the caster
- targets.remove_if([this](WorldObject* obj)
- {
- return obj->GetGUID() != GetCaster()->GetGUID();
- });
- }
-
- void Register() override
- {
- OnObjectAreaTargetSelect += SpellObjectAreaTargetSelectFn(spell_midsummer_fling_torch_missed::FilterTargets, EFFECT_0, TARGET_UNIT_DEST_AREA_ENTRY);
- OnObjectAreaTargetSelect += SpellObjectAreaTargetSelectFn(spell_midsummer_fling_torch_missed::FilterTargets, EFFECT_2, TARGET_UNIT_DEST_AREA_ENTRY);
- }
-};
-
-void AddSC_holiday_spell_scripts()
-{
- // Love is in the Air
- RegisterSpellScript(spell_love_is_in_the_air_romantic_picnic);
- // Hallow's End
- new spell_hallow_end_candy();
- new spell_hallow_end_candy_pirate();
- new spell_hallow_end_trick();
- new spell_hallow_end_trick_or_treat();
- new spell_hallow_end_tricky_treat();
- new spell_hallow_end_wand();
- // Pilgrims Bounty
- new spell_pilgrims_bounty_buff_food("spell_gen_slow_roasted_turkey", SPELL_WELL_FED_AP_TRIGGER);
- new spell_pilgrims_bounty_buff_food("spell_gen_cranberry_chutney", SPELL_WELL_FED_ZM_TRIGGER);
- new spell_pilgrims_bounty_buff_food("spell_gen_spice_bread_stuffing", SPELL_WELL_FED_HIT_TRIGGER);
- new spell_pilgrims_bounty_buff_food("spell_gen_pumpkin_pie", SPELL_WELL_FED_SPIRIT_TRIGGER);
- new spell_pilgrims_bounty_buff_food("spell_gen_candied_sweet_potato", SPELL_WELL_FED_HASTE_TRIGGER);
- new spell_pilgrims_bounty_feast_on();
- new spell_pilgrims_bounty_well_fed("spell_pilgrims_bounty_well_fed_turkey", SPELL_WELL_FED_AP_TRIGGER);
- new spell_pilgrims_bounty_well_fed("spell_pilgrims_bounty_well_fed_cranberry", SPELL_WELL_FED_ZM_TRIGGER);
- new spell_pilgrims_bounty_well_fed("spell_pilgrims_bounty_well_fed_stuffing", SPELL_WELL_FED_HIT_TRIGGER);
- new spell_pilgrims_bounty_well_fed("spell_pilgrims_bounty_well_fed_sweet_potatoes", SPELL_WELL_FED_HASTE_TRIGGER);
- new spell_pilgrims_bounty_well_fed("spell_pilgrims_bounty_well_fed_pie", SPELL_WELL_FED_SPIRIT_TRIGGER);
- new spell_pilgrims_bounty_turkey_tracker();
- new spell_pilgrims_bounty_on_plate("spell_pilgrims_bounty_on_plate_turkey", SPELL_ON_PLATE_TURKEY, SPELL_PASS_THE_TURKEY, SPELL_ON_PLATE_VISUAL_TURKEY, SPELL_A_SERVING_OF_TURKEY_CHAIR);
- new spell_pilgrims_bounty_on_plate("spell_pilgrims_bounty_on_plate_cranberries", SPELL_ON_PLATE_CRANBERRIES, SPELL_PASS_THE_CRANBERRIES, SPELL_ON_PLATE_VISUAL_CRANBERRIES, SPELL_A_SERVING_OF_CRANBERRIES_CHAIR);
- new spell_pilgrims_bounty_on_plate("spell_pilgrims_bounty_on_plate_stuffing", SPELL_ON_PLATE_STUFFING, SPELL_PASS_THE_STUFFING, SPELL_ON_PLATE_VISUAL_STUFFING, SPELL_A_SERVING_OF_STUFFING_CHAIR);
- new spell_pilgrims_bounty_on_plate("spell_pilgrims_bounty_on_plate_sweet_potatoes", SPELL_ON_PLATE_SWEET_POTATOES, SPELL_PASS_THE_SWEET_POTATOES, SPELL_ON_PLATE_VISUAL_POTATOES, SPELL_A_SERVING_OF_SWEET_POTATOES_CHAIR);
- new spell_pilgrims_bounty_on_plate("spell_pilgrims_bounty_on_plate_pie", SPELL_ON_PLATE_PIE, SPELL_PASS_THE_PIE, SPELL_ON_PLATE_VISUAL_PIE, SPELL_A_SERVING_OF_PIE_CHAIR);
- new spell_pilgrims_bounty_a_serving_of("spell_pilgrims_bounty_a_serving_of_cranberries", SPELL_A_SERVING_OF_CRANBERRIES_PLATE);
- new spell_pilgrims_bounty_a_serving_of("spell_pilgrims_bounty_a_serving_of_turkey", SPELL_A_SERVING_OF_TURKEY_PLATE);
- new spell_pilgrims_bounty_a_serving_of("spell_pilgrims_bounty_a_serving_of_stuffing", SPELL_A_SERVING_OF_STUFFING_PLATE);
- new spell_pilgrims_bounty_a_serving_of("spell_pilgrims_bounty_a_serving_of_potatoes", SPELL_A_SERVING_OF_SWEET_POTATOES_PLATE);
- new spell_pilgrims_bounty_a_serving_of("spell_pilgrims_bounty_a_serving_of_pie", SPELL_A_SERVING_OF_PIE_PLATE);
- // Winter Veil
- RegisterSpellScript(spell_winter_veil_mistletoe);
- RegisterSpellScript(spell_winter_veil_px_238_winter_wondervolt);
- // Brewfest
- new spell_brewfest_giddyup();
- new spell_brewfest_ram();
- new spell_brewfest_ram_fatigue();
- new spell_brewfest_apple_trap();
- new spell_brewfest_exhausted_ram();
- new spell_brewfest_relay_race_intro_force_player_to_throw();
- new spell_brewfest_relay_race_turn_in();
- new spell_brewfest_dismount_ram();
- new spell_brewfest_barker_bunny();
- // Midsummer Fire Festival
- RegisterSpellScript(spell_midsummer_braziers_hit);
- RegisterSpellScript(spell_midsummer_torch_target_picker);
- RegisterSpellScript(spell_midsummer_torch_toss_land);
- RegisterSpellScript(spell_midsummer_test_ribbon_pole_channel);
- RegisterSpellScript(spell_midsummer_ribbon_pole_periodic_visual);
- RegisterSpellScript(spell_midsummer_juggle_torch);
- RegisterSpellScript(spell_midsummer_torch_catch);
- RegisterSpellScript(spell_midsummer_fling_torch);
- RegisterSpellScript(spell_midsummer_fling_torch_triggered);
- RegisterSpellScript(spell_midsummer_fling_torch_catch);
- RegisterSpellScript(spell_midsummer_fling_torch_missed);
-}
diff --git a/src/server/scripts/Spells/spell_script_loader.cpp b/src/server/scripts/Spells/spell_script_loader.cpp
index 44aa76ae106..c4c19b292ed 100644
--- a/src/server/scripts/Spells/spell_script_loader.cpp
+++ b/src/server/scripts/Spells/spell_script_loader.cpp
@@ -31,7 +31,6 @@ void AddSC_warlock_spell_scripts();
void AddSC_warrior_spell_scripts();
void AddSC_quest_spell_scripts();
void AddSC_item_spell_scripts();
-void AddSC_holiday_spell_scripts();
// The name of this function should match:
// void Add${NameOfDirectory}Scripts()
@@ -52,5 +51,4 @@ void AddSpellsScripts()
AddSC_warrior_spell_scripts();
AddSC_quest_spell_scripts();
AddSC_item_spell_scripts();
- AddSC_holiday_spell_scripts();
}