aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortobmaps <spambot42@yandex.ru>2011-05-12 16:44:48 +0700
committertobmaps <spambot42@yandex.ru>2011-05-12 16:44:48 +0700
commit28c002f77ebe0d93eef3649e7dd3e7ac9f33b301 (patch)
tree6275e29cbf9f7b4188f67cc4cc73752111765282
parent4b1e16ec0da5fc5a37240542a90230c73e154fe0 (diff)
Core/Spells: Fix talent Desolation
Closes #325
-rw-r--r--sql/base/world_database.sql5
-rw-r--r--sql/updates/world/2011_05_12_04_world_spell_proc_event.sql7
2 files changed, 12 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql
index db5c8e9992d..a2ba11b3c1e 100644
--- a/sql/base/world_database.sql
+++ b/sql/base/world_database.sql
@@ -19396,6 +19396,11 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam
( 65661, 0x00, 15, 0x00400011, 0x20020004, 0x00000000, 0x00000010, 0x00000000, 0, 100, 0), -- Threat of Thassarian (Rank 1)
( 66191, 0x00, 15, 0x00400011, 0x20020004, 0x00000000, 0x00000010, 0x00000000, 0, 100, 0), -- Threat of Thassarian (Rank 2)
( 66192, 0x00, 15, 0x00400011, 0x20020004, 0x00000000, 0x00000010, 0x00000000, 0, 100, 0), -- Threat of Thassarian (Rank 3)
+( 66799, 0x00, 15, 0x00400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Desolation (Rank 1)
+( 66814, 0x00, 15, 0x00400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Desolation (Rank 2)
+( 66815, 0x00, 15, 0x00400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Desolation (Rank 3)
+( 66816, 0x00, 15, 0x00400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Desolation (Rank 4)
+( 66817, 0x00, 15, 0x00400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Desolation (Rank 5)
( 53601, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0, 0, 6), -- Sacred Shield (Rank 1)
( 58375, 0x00, 4, 0x00000000, 0x00000200, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Glyph of Blocking
( 58387, 0x00, 4, 0x00004000, 0x00000040, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Glyph of Sunder Armor
diff --git a/sql/updates/world/2011_05_12_04_world_spell_proc_event.sql b/sql/updates/world/2011_05_12_04_world_spell_proc_event.sql
new file mode 100644
index 00000000000..bc8ad894d8c
--- /dev/null
+++ b/sql/updates/world/2011_05_12_04_world_spell_proc_event.sql
@@ -0,0 +1,7 @@
+DELETE FROM `spell_proc_event` WHERE `entry` IN (66799,66814,66815,66816,66817);
+INSERT INTO `spell_proc_event` VALUES
+(66799,0x00,15,0x00400000,0x00000000,0x00000000,0x00000000,0x00000000,0,0,0),
+(66814,0x00,15,0x00400000,0x00000000,0x00000000,0x00000000,0x00000000,0,0,0),
+(66815,0x00,15,0x00400000,0x00000000,0x00000000,0x00000000,0x00000000,0,0,0),
+(66816,0x00,15,0x00400000,0x00000000,0x00000000,0x00000000,0x00000000,0,0,0),
+(66817,0x00,15,0x00400000,0x00000000,0x00000000,0x00000000,0x00000000,0,0,0);