diff options
| author | offl <offl@users.noreply.github.com> | 2021-05-29 20:47:46 +0300 |
|---|---|---|
| committer | offl <offl@users.noreply.github.com> | 2021-05-29 20:47:46 +0300 |
| commit | 0e804c95ac1e2ae048682fd3b52a02e8f6a88c82 (patch) | |
| tree | b44b18d86f6303fd8f6b3460239e8c208489825f /src/server/scripts/Spells | |
| parent | df552f790f506d81bb4f0ea149ccc54fb459d03f (diff) | |
Scripts/Spells: Add comments with id & name of spells part 2
Diffstat (limited to 'src/server/scripts/Spells')
| -rw-r--r-- | src/server/scripts/Spells/spell_holiday.cpp | 12 | ||||
| -rw-r--r-- | src/server/scripts/Spells/spell_hunter.cpp | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/server/scripts/Spells/spell_holiday.cpp b/src/server/scripts/Spells/spell_holiday.cpp index 9c369e92aa6..495046810cc 100644 --- a/src/server/scripts/Spells/spell_holiday.cpp +++ b/src/server/scripts/Spells/spell_holiday.cpp @@ -31,17 +31,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); @@ -210,7 +210,6 @@ class spell_hallow_end_candy_pirate : public SpellScriptLoader } }; -// 24750 Trick enum TrickSpells { SPELL_PIRATE_COSTUME_MALE = 24708, @@ -225,6 +224,7 @@ enum TrickSpells SPELL_TRICK_BUFF = 24753, }; +// 24750 - Trick class spell_hallow_end_trick : public SpellScriptLoader { public: @@ -295,7 +295,6 @@ class spell_hallow_end_trick : public SpellScriptLoader } }; -// 24751 Trick or Treat enum TrickOrTreatSpells { SPELL_TRICK = 24714, @@ -306,6 +305,7 @@ enum TrickOrTreatSpells SPELL_UPSET_TUMMY = 42966 }; +// 24751 - Trick or Treat class spell_hallow_end_trick_or_treat : public SpellScriptLoader { public: @@ -342,6 +342,7 @@ class spell_hallow_end_trick_or_treat : public SpellScriptLoader } }; +// 44436 - Tricky Treat class spell_hallow_end_tricky_treat : public SpellScriptLoader { public: @@ -380,10 +381,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, @@ -394,6 +393,7 @@ enum HallowendData SPELL_HALLOWED_WAND_BAT = 24741 }; +// 24717, 24718, 24719, 24720, 24724, 24733, 24737, 24741 class spell_hallow_end_wand : public SpellScriptLoader { public: diff --git a/src/server/scripts/Spells/spell_hunter.cpp b/src/server/scripts/Spells/spell_hunter.cpp index a504362c1df..3d139f44eb1 100644 --- a/src/server/scripts/Spells/spell_hunter.cpp +++ b/src/server/scripts/Spells/spell_hunter.cpp @@ -879,7 +879,7 @@ class spell_hun_pet_heart_of_the_phoenix : public SpellScript } }; -// -53234 - Piercing Shots +// -53234 - Piercing Shots class spell_hun_piercing_shots : public AuraScript { PrepareAuraScript(spell_hun_piercing_shots); @@ -1260,7 +1260,7 @@ class spell_hun_thrill_of_the_hunt : public AuraScript } }; -// 67151 - T9 4P Bonus +// 67151 - Item - Hunter T9 4P Bonus (Steady Shot) class spell_hun_t9_4p_bonus : public AuraScript { PrepareAuraScript(spell_hun_t9_4p_bonus); |
