diff options
| author | Shauren <shauren.trinity@gmail.com> | 2011-01-31 11:54:29 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2011-01-31 11:54:29 +0100 |
| commit | 5004f409d8075915d73e87e543c9dd20b1cadb9b (patch) | |
| tree | d8e69154732a45f2cdfd145bdc3acd1ff2e8200e | |
| parent | 058ef9b8352c60e753235553ad2562dd86e027dd (diff) | |
Core/Spells: Added cooldown for Purified Lunar Dust trinket (item 50358)
| -rw-r--r-- | sql/base/world_database.sql | 1 | ||||
| -rw-r--r-- | sql/updates/2011_01_31_0_world_spell_proc_event.sql | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index f6ff8c6953b..6c1fe2b0e7a 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -19395,6 +19395,7 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 71564, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Nevermelting Ice Crystal ( 71545, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 50, 0), -- Tiny Abomination in a Jar (Heroic) ( 71406, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 50, 0), -- Tiny Abomination in a Jar +( 71585, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Purified Lunar Dust ( 71903, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 20, 0), -- Item - Shadowmourne Legendary ( 70215, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 100, 0), -- Gaseous Bloat ( 72858, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 100, 0), -- Gaseous Bloat diff --git a/sql/updates/2011_01_31_0_world_spell_proc_event.sql b/sql/updates/2011_01_31_0_world_spell_proc_event.sql new file mode 100644 index 00000000000..10d9309c907 --- /dev/null +++ b/sql/updates/2011_01_31_0_world_spell_proc_event.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_proc_event` WHERE `entry`=71585; +INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`procFlags`,`procEx`,`ppmRate`,`CustomChance`,`Cooldown`) VALUES +(71585,0x00,0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0,0,45); -- Purified Lunar Dust |
