mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 17:54:48 +01:00
*Partial Lifebloom spell bonus fix, by clotza
--HG-- branch : trunk
This commit is contained in:
@@ -1638,7 +1638,10 @@ INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`
|
||||
(42231, 0.12898, -1, -1, -1, 'Druid - Hurricane Triggered'),
|
||||
(5570, -1, 0.2, -1, -1, 'Druid - Insect Swarm'),
|
||||
(33745, -1, -1, -1, 0.01, 'Druid - Lacerate($AP*0.05 / number of ticks)'),
|
||||
(33763, 0.6453, 0.09518, -1, -1, 'Druid - Lifebloom'),
|
||||
(33778, 0.516, 0, 0, 0, 'Druid - Lifebloom final heal'),
|
||||
(33763, 0, 0.09518, 0, 0, 'Druid - Lifebloom HoT(rank 1)'),
|
||||
(48450, 0, 0.09518, 0, 0, 'Druid - Lifebloom HoT(rank 2)'),
|
||||
(48451, 0, 0.09518, 0, 0, 'Druid - Lifebloom HoT(rank 3)'),
|
||||
(48628, -1, -1, -1, 0.15, 'Druid - Lock Jaw'),
|
||||
(8921, 0.1515, 0.13, -1, -1, 'Druid - Moonfire'),
|
||||
(50464, 0.67305, -1, -1, -1, 'Druid - Nourish'),
|
||||
|
||||
9
sql/updates/5920_world_spells.sql
Normal file
9
sql/updates/5920_world_spells.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
-- Lifebloom Spell Bonus Data
|
||||
DELETE FROM `spell_bonus_data` WHERE `entry` IN (33763,33778,48450,48451);
|
||||
|
||||
INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`, `ap_dot_bonus`, `comments`) VALUES
|
||||
(33778, 0.516, 0, 0, 0, 'Druid - Lifebloom final heal'),
|
||||
(33763, 0, 0.09518, 0, 0, 'Druid - Lifebloom HoT(rank 1)'),
|
||||
(48450, 0, 0.09518, 0, 0, 'Druid - Lifebloom HoT(rank 2)'),
|
||||
(48451, 0, 0.09518, 0, 0, 'Druid - Lifebloom HoT(rank 3)');
|
||||
Reference in New Issue
Block a user