mirror of
https://github.com/mangosfour/server.git
synced 2025-12-25 13:37:02 +00:00
Update spell_chain to 3.1.2 state
This commit is contained in:
parent
afd82229d7
commit
7ee675cd71
2 changed files with 226 additions and 62 deletions
138
sql/310/3_mangos_spell_chain.sql
Normal file
138
sql/310/3_mangos_spell_chain.sql
Normal file
|
|
@ -0,0 +1,138 @@
|
|||
DELETE FROM spell_chain WHERE first_spell IN (
|
||||
704, /* Curse of Recklessness removed */
|
||||
770, /* Faerie Fire non ranked now */
|
||||
16857, /* Faerie Fire (Feral) non ranked now */
|
||||
17962, /* Conflagrate non ranked now */
|
||||
18265, /* Siphon Life removed (replaced by different talent */
|
||||
26090, /* Thunderstomp non ranked now (rank 6 only O.o) */
|
||||
49184, /* Howling Blast skip old rank 2 */
|
||||
49224 /* Magic Suppression lost 2 ranks */
|
||||
);
|
||||
|
||||
INSERT INTO spell_chain VALUES
|
||||
/*------------------
|
||||
--(8)Fire
|
||||
------------------*/
|
||||
/*Fiery Payback*/
|
||||
(64353,0,64353,1,0),
|
||||
(64357,64353,64353,2,0),
|
||||
/*------------------
|
||||
-- (56) Holy (Priest)
|
||||
------------------*/
|
||||
/*Body and Soul*/
|
||||
(64127,0,64127,1,0),
|
||||
(64129,64127,64127,2,0),
|
||||
/*Empowered Renew*/
|
||||
(63534,0,63534,1,0),
|
||||
(63542,63534,63534,2,0),
|
||||
(63543,63542,63534,3,0),
|
||||
/*Serendipity*/
|
||||
(63730,0,63730,1,0),
|
||||
(63733,63730,63730,2,0),
|
||||
(63737,63733,63730,3,0),
|
||||
/*------------------
|
||||
-- (78) Shadow Magic
|
||||
------------------*/
|
||||
/*Improved Devouring Plague*/
|
||||
(63625,0,63625,1,0),
|
||||
(63626,63625,63625,2,0),
|
||||
(63627,63626,63625,3,0),
|
||||
/*------------------
|
||||
-- (267) Protection (Paladin)
|
||||
------------------*/
|
||||
/*Divinity*/
|
||||
(63646,0,63646,1,0),
|
||||
(63647,63646,63646,2,0),
|
||||
(63648,63647,63646,3,0),
|
||||
(63649,63648,63646,4,0),
|
||||
(63650,63649,63646,5,0),
|
||||
/*------------------
|
||||
--(270)Pet-GenericHunter
|
||||
------------------*/
|
||||
/*Shark Attack*/
|
||||
(62759,0,62759,1,0),
|
||||
(62760,62759,62759,2,0),
|
||||
/*Silverback*/
|
||||
(62764,0,62764,1,0),
|
||||
(62765,62764,62764,2,0),
|
||||
/*Wild Hunt*/
|
||||
(62758,0,62758,1,0),
|
||||
(62762,62758,62758,2,0),
|
||||
/*------------------
|
||||
--(354)Demonology
|
||||
------------------*/
|
||||
/*Decimation*/
|
||||
(63156,0,63156,1,0),
|
||||
(63158,63156,63156,2,0),
|
||||
/*Nemesis*/
|
||||
(63117,0,63117,1,0),
|
||||
(63121,63117,63117,2,0),
|
||||
(63123,63121,63117,3,0),
|
||||
/*------------------
|
||||
--(373) Enhancement
|
||||
------------------*/
|
||||
/*Frozen Power*/
|
||||
(63373,0,63373,1,0),
|
||||
(63374,63373,63373,2,0),
|
||||
/*------------------
|
||||
-- (375) Elemental Combat
|
||||
------------------*/
|
||||
/*Booming Echoes*/
|
||||
(63370,0,63370,1,0),
|
||||
(63372,63370,63370,2,0),
|
||||
/*------------------
|
||||
--(573)Restoration
|
||||
------------------*/
|
||||
/*Improved Barkskin*/
|
||||
(63410,0,63410,1,0),
|
||||
(63411,63410,63410,2,0),
|
||||
/*------------------
|
||||
--(593)Destruction
|
||||
------------------*/
|
||||
/*Molten Skin*/
|
||||
(63349,0,63349,1,0),
|
||||
(63350,63349,63349,2,0),
|
||||
(63351,63350,63349,3,0),
|
||||
/*------------------
|
||||
--(613)Discipline
|
||||
------------------*/
|
||||
/*Improved Flash Heal*/
|
||||
(63504,0,63504,1,0),
|
||||
(63505,63504,63504,2,0),
|
||||
(63506,63505,63504,3,0),
|
||||
/*------------------
|
||||
--(770)Blood
|
||||
------------------*/
|
||||
/*Death Coil*/
|
||||
(62900,0,62900,1,0),
|
||||
(62901,62900,62900,2,0),
|
||||
(62902,62901,62900,3,0),
|
||||
(62903,62902,62900,4,0),
|
||||
(62904,62903,62900,5,0),
|
||||
/*Improved Blood Presence*/
|
||||
(50365,0,50365,1,0),
|
||||
(50371,50365,50365,2,0),
|
||||
/*Improved Death Strike*/
|
||||
(62905,0,62905,1,0),
|
||||
(62908,62905,62905,2,0),
|
||||
/*------------------
|
||||
--(771)Frost
|
||||
------------------*/
|
||||
/*Howling Blast*/
|
||||
(49184,0,49184,1,0),
|
||||
(51409,49184,49184,2,0),
|
||||
(51410,51409,49184,3,0),
|
||||
(51411,51410,49184,4,0),
|
||||
/*Improved Frost Presence*/
|
||||
(50384,0,50384,1,0),
|
||||
(50385,50384,50384,2,0),
|
||||
/*------------------
|
||||
--(772)Unholy
|
||||
------------------*/
|
||||
/*Improved Unholy Presence*/
|
||||
(50391,0,50391,1,0),
|
||||
(50392,50391,50391,2,0),
|
||||
/*Magic Suppression*/
|
||||
(49224,0,49224,1,0),
|
||||
(49610,49224,49224,2,0),
|
||||
(49611,49610,49224,3,0);
|
||||
Loading…
Add table
Add a link
Reference in a new issue