diff options
author | Rat <none@none> | 2009-08-01 00:12:04 +0200 |
---|---|---|
committer | Rat <none@none> | 2009-08-01 00:12:04 +0200 |
commit | 0db1fd6c26b90241cfe039f2e2b3e35d10cb9cbd (patch) | |
tree | 871febdd673579b93b639d3fe175cd014f8504db | |
parent | 91d7f59cf7e9a2aa5fa322147bde7a8964506eb2 (diff) |
*add 6 secs cooldown for warrior talent 56636 (Taste for Blood) and ranks, sql by HP1
--HG--
branch : trunk
-rw-r--r-- | sql/updates/4696_world_spell_proc_event.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/4696_world_spell_proc_event.sql b/sql/updates/4696_world_spell_proc_event.sql new file mode 100644 index 00000000000..766ec484cce --- /dev/null +++ b/sql/updates/4696_world_spell_proc_event.sql @@ -0,0 +1,5 @@ +DELETE FROM `spell_proc_event` WHERE `entry` IN (56636,56637,56638); +INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES +( 56636, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Taste for Blood (Rank 1) +( 56637, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Taste for Blood (Rank 2) +( 56638, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6); -- Taste for Blood (Rank 3)
\ No newline at end of file |