diff options
| author | offl <offl@users.noreply.github.com> | 2021-05-29 20:47:46 +0300 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-03-10 23:13:25 +0100 |
| commit | cec9718d22c2281f2edfe58e7b3090e947de7763 (patch) | |
| tree | 3b021f8b05c18f138aa1d5794880383aa4f30c36 /src/server/scripts/Spells | |
| parent | 2f0623789c79d1dc715f8a0c77b60913bd21bd10 (diff) | |
Scripts/Spells: Add comments with id & name of spells part 2
(cherry picked from commit 0e804c95ac1e2ae048682fd3b52a02e8f6a88c82)
Diffstat (limited to 'src/server/scripts/Spells')
| -rw-r--r-- | src/server/scripts/Spells/spell_holiday.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/scripts/Spells/spell_holiday.cpp b/src/server/scripts/Spells/spell_holiday.cpp index e00c52cd749..4cb6bf0c309 100644 --- a/src/server/scripts/Spells/spell_holiday.cpp +++ b/src/server/scripts/Spells/spell_holiday.cpp @@ -33,17 +33,17 @@ #include "Vehicle.h" #include "World.h" -// 45102 Romantic Picnic 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_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); @@ -212,7 +212,6 @@ class spell_hallow_end_candy_pirate : public SpellScriptLoader } }; -// 24750 Trick enum TrickSpells { SPELL_PIRATE_COSTUME_MALE = 24708, @@ -227,6 +226,7 @@ enum TrickSpells SPELL_TRICK_BUFF = 24753, }; +// 24750 - Trick class spell_hallow_end_trick : public SpellScriptLoader { public: @@ -297,7 +297,6 @@ class spell_hallow_end_trick : public SpellScriptLoader } }; -// 24751 Trick or Treat enum TrickOrTreatSpells { SPELL_TRICK = 24714, @@ -308,6 +307,7 @@ enum TrickOrTreatSpells SPELL_UPSET_TUMMY = 42966 }; +// 24751 - Trick or Treat class spell_hallow_end_trick_or_treat : public SpellScriptLoader { public: @@ -344,6 +344,7 @@ class spell_hallow_end_trick_or_treat : public SpellScriptLoader } }; +// 44436 - Tricky Treat class spell_hallow_end_tricky_treat : public SpellScriptLoader { public: @@ -382,10 +383,8 @@ class spell_hallow_end_tricky_treat : public SpellScriptLoader } }; -// Hallowed wands enum HallowendData { - //wand spells SPELL_HALLOWED_WAND_PIRATE = 24717, SPELL_HALLOWED_WAND_NINJA = 24718, SPELL_HALLOWED_WAND_LEPER_GNOME = 24719, @@ -396,6 +395,7 @@ enum HallowendData SPELL_HALLOWED_WAND_BAT = 24741 }; +// 24717, 24718, 24719, 24720, 24724, 24733, 24737, 24741 class spell_hallow_end_wand : public SpellScriptLoader { public: |
