diff options
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/1755_world.sql | 6 | ||||
-rw-r--r-- | sql/updates/1912_world.sql | 5 | ||||
-rw-r--r-- | sql/updates/2013_world.sql | 11 | ||||
-rw-r--r-- | sql/updates/CMakeLists.txt | 1 |
4 files changed, 13 insertions, 10 deletions
diff --git a/sql/updates/1755_world.sql b/sql/updates/1755_world.sql index 83ec323985e..bd4bb50aad2 100644 --- a/sql/updates/1755_world.sql +++ b/sql/updates/1755_world.sql @@ -7,12 +7,6 @@ INSERT INTO `spell_proc_event` VALUES (47538, 0x00, 6, 0x1800, 0x10000, 0x000000 INSERT INTO `spell_proc_event` VALUES (47539, 0x00, 6, 0x1800, 0x10000, 0x00000000, 0x00014010, 0x00000000, 0.000000, 0.000000, 0); -- Aspect of the viper INSERT INTO `spell_proc_event` VALUES (34074, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000003, 0.000000, 0.000000, 0); --- Overkill -INSERT INTO `spell_proc_event` VALUES (58426, 0x00, 8, 0x400000, 0x00000000, 0x00000000, 0x00014000, 0x00000000, 0.000000, 0.000000, 0); --- Master of subtlety -INSERT INTO `spell_proc_event` VALUES (31221, 0x00, 8, 0x400000, 0x00000000, 0x00000000, 0x00014000, 0x00000000, 0.000000, 0.000000, 0); -INSERT INTO `spell_proc_event` VALUES (31222, 0x00, 8, 0x400000, 0x00000000, 0x00000000, 0x00014000, 0x00000000, 0.000000, 0.000000, 0); -INSERT INTO `spell_proc_event` VALUES (31223, 0x00, 8, 0x400000, 0x00000000, 0x00000000, 0x00014000, 0x00000000, 0.000000, 0.000000, 0); DELETE FROM `spell_bonus_data` WHERE entry=2944; INSERT INTO `spell_bonus_data` VALUES ('2944', '0', '0.1849', '0', 'Priest - Devouring Plague');
\ No newline at end of file diff --git a/sql/updates/1912_world.sql b/sql/updates/1912_world.sql index 39b405c32c3..defcec0ee70 100644 --- a/sql/updates/1912_world.sql +++ b/sql/updates/1912_world.sql @@ -1,8 +1,5 @@ --- Shattered Barrier -- Improved Fear -DELETE FROM `spell_proc_event` WHERE `entry` IN (44745, 54787, 53754, 53759); +DELETE FROM `spell_proc_event` WHERE `entry` IN (53754, 53759); INSERT INTO `spell_proc_event` VALUES -(44745, 0x00, 3, 0x00000000, 0x00000001, 0x00000000, 0x00008000, 0x0006000, 0.000000, 0.000000, 0), -(54787, 0x00, 3, 0x00000000, 0x00000001, 0x00000000, 0x00008000, 0x0006000, 0.000000, 0.000000, 0), (53754, 0x00, 5, 0x00000000, 1024, 0x00000000, 0x00000000, 0x0006000, 0.000000, 0.000000, 0), (53759, 0x00, 5, 0x00000000, 1024, 0x00000000, 0x00000000, 0x0006000, 0.000000, 0.000000, 0); diff --git a/sql/updates/2013_world.sql b/sql/updates/2013_world.sql new file mode 100644 index 00000000000..9fd2a1fc7fe --- /dev/null +++ b/sql/updates/2013_world.sql @@ -0,0 +1,11 @@ +-- Shattered Barrier +DELETE FROM `spell_proc_event` WHERE `entry` IN (44745, 54787, 58426, 31221, 31222, 31223); +INSERT INTO `spell_proc_event` VALUES +(44745, 0x00, 3, 0x00000000, 0x00000001, 0x00000000, 0x00008000, 0x0002000, 0.000000, 0.000000, 0), +(54787, 0x00, 3, 0x00000000, 0x00000001, 0x00000000, 0x00008000, 0x0002000, 0.000000, 0.000000, 0), +-- Overkill +(58426, 0x00, 8, 0x400000, 0x00000000, 0x00000000, 0x00014000, 0x0004001, 0.000000, 0.000000, 0), +-- Master of subtlety +(31221, 0x00, 8, 0x400000, 0x00000000, 0x00000000, 0x00014000, 0x0004001, 0.000000, 0.000000, 0), +(31222, 0x00, 8, 0x400000, 0x00000000, 0x00000000, 0x00014000, 0x0004001, 0.000000, 0.000000, 0), +(31223, 0x00, 8, 0x400000, 0x00000000, 0x00000000, 0x00014000, 0x0004001, 0.000000, 0.000000, 0); diff --git a/sql/updates/CMakeLists.txt b/sql/updates/CMakeLists.txt index 86e515fdd60..83d237c5eb2 100644 --- a/sql/updates/CMakeLists.txt +++ b/sql/updates/CMakeLists.txt @@ -86,4 +86,5 @@ INSTALL(FILES 1927_world.sql 1939_word.sql 1957_word.sql +2013_world.sql DESTINATION share/trinity/sql/updates)
\ No newline at end of file |