diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/base/world_database.sql | 2 | ||||
| -rw-r--r-- | sql/scripts/world_scripts_full.sql | 1 | ||||
| -rw-r--r-- | sql/updates/2011_01_31_0_spell_bonus_data.sql | 3 | ||||
| -rw-r--r-- | sql/updates/2011_01_31_0_world_spell_script_names.sql | 3 | ||||
| -rw-r--r-- | sql/updates/2011_01_31_1_world_spell_proc_event.sql | 3 |
5 files changed, 12 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 6c1fe2b0e7a..a9c11f9f9ab 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -16902,6 +16902,7 @@ INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`a (61391, 0.193, -1, -1, -1, 'Druid - Typhoon'), (48438, -1, 0.11505, -1, -1, 'Druid - Wild Growth'), (5176, 0.5714, -1, -1, -1, 'Druid - Wrath'), +(70691,0,0,0,0, 'Druid - Rejuvenation T10 4P proc'), (3044, -1, -1, 0.15, -1, 'Hunter - Arcane Shot'), (3674, -1, -1, -1, 0.02, 'Hunter - Black Arrow($RAP*0.1 / number of ticks)'), (19306, -1, -1, 0.2, -1, 'Hunter - Counterattack'), @@ -19356,6 +19357,7 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 67702, 0x01, 0, 0x00000000, 0x00000000, 0x00000000, 0x00851154, 0x00000003, 0, 35, 45), -- Item - Coliseum Melee Trinket 25men ( 70652, 0x00, 15, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Death Knight T10 Tank 4P Bonus ( 70656, 0x00, 15, 0x00000000, 0x00000000, 0x00000000, 0x00014000, 0x00000000, 0, 0, 0), -- Item - Death Knight T10 Melee 4P Bonus +( 70664, 0x00, 7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Druid T10 Restoration 4P Bonus (Rejuvenation) ( 70727, 0x00, 9, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0, 0, 0), -- Item - Hunter T10 2P Bonus ( 70730, 0x00, 9, 0x00004000, 0x00001000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Item - Hunter T10 4P Bonus ( 70748, 0x00, 3, 0x00000000, 0x00200000, 0x00000000, 0x00000400, 0x00000000, 0, 0, 0), -- Item - Mage T10 4P Bonus diff --git a/sql/scripts/world_scripts_full.sql b/sql/scripts/world_scripts_full.sql index c6532376690..eec503383e0 100644 --- a/sql/scripts/world_scripts_full.sql +++ b/sql/scripts/world_scripts_full.sql @@ -2100,6 +2100,7 @@ INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES ( 69366, 'spell_dru_moonkin_form_passive'), (-33851, 'spell_dru_primal_tenacity'), ( 62606, 'spell_dru_savage_defense'), +( 70691, 'spell_dru_t10_restoration_4p_bonus'), -- example ( 66244, 'spell_ex_66244'), ( 5581, 'spell_ex_5581'), diff --git a/sql/updates/2011_01_31_0_spell_bonus_data.sql b/sql/updates/2011_01_31_0_spell_bonus_data.sql new file mode 100644 index 00000000000..a908e227a1d --- /dev/null +++ b/sql/updates/2011_01_31_0_spell_bonus_data.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_bonus_data` WHERE `entry`=70691; +INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES +(70691,0,0,0,0, 'Druid - Rejuvenation T10 4P proc'); diff --git a/sql/updates/2011_01_31_0_world_spell_script_names.sql b/sql/updates/2011_01_31_0_world_spell_script_names.sql new file mode 100644 index 00000000000..1055a1b7b38 --- /dev/null +++ b/sql/updates/2011_01_31_0_world_spell_script_names.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_script_names` WHERE `spell_id`=70691 AND `ScriptName`='spell_dru_t10_restoration_4p_bonus'; +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(70691,'spell_dru_t10_restoration_4p_bonus'); diff --git a/sql/updates/2011_01_31_1_world_spell_proc_event.sql b/sql/updates/2011_01_31_1_world_spell_proc_event.sql new file mode 100644 index 00000000000..b920e1de508 --- /dev/null +++ b/sql/updates/2011_01_31_1_world_spell_proc_event.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_proc_event` WHERE `entry`=70664; +INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`procFlags`,`procEx`,`ppmRate`,`CustomChance`,`Cooldown`) VALUES +(70664,0x00,7,0x00000010,0x00000000,0x00000000,0x00000000,0x00000000,0,0,0); -- Item - Druid T10 Restoration 4P Bonus (Rejuvenation) |
