Spell Scripts:

* add new file spell_item.cpp for spells used by items (but not by quests)
* move some dummy effects of generic spells to scripts
* implement spell for quest 12937 Relief for the Fallen. Closes issue #3070

--HG--
branch : trunk
This commit is contained in:
azazel
2010-08-29 22:40:23 +06:00
parent 9648cf7f39
commit d952c90754
7 changed files with 632 additions and 184 deletions

View File

@@ -537,6 +537,7 @@ void AddSC_shaman_spell_scripts();
void AddSC_warlock_spell_scripts();
void AddSC_warrior_spell_scripts();
void AddSC_quest_spell_scripts();
void AddSC_item_spell_scripts();
void AddSC_example_spell_scripts();
// battlegrounds
@@ -595,6 +596,7 @@ void AddSpellScripts()
AddSC_warlock_spell_scripts();
AddSC_warrior_spell_scripts();
AddSC_quest_spell_scripts();
AddSC_item_spell_scripts();
AddSC_example_spell_scripts();
#endif
}