aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiberate <tbaart@gmail.com>2010-08-31 23:04:43 +0200
committerLiberate <tbaart@gmail.com>2010-08-31 23:04:43 +0200
commitcdaedef3c1dd39eea30b32e4bc8ac053f42cae60 (patch)
treee0720ea9ae7c1828352ebf98f12ffaea90b2a54d
parent6c3b39ac015d294d9b51eeb3aac235fffe50ade8 (diff)
*Fix: Lacerate should scale with AP only, and not from SP.
--HG-- branch : trunk
-rw-r--r--sql/base/world_database.sql4
-rw-r--r--sql/updates/9701_world_spell_bonus_data.sql5
2 files changed, 8 insertions, 1 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql
index d15a5dd59c5..d1b7332fef9 100644
--- a/sql/base/world_database.sql
+++ b/sql/base/world_database.sql
@@ -5073,7 +5073,9 @@ INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`a
(5185, 1.611, -1, -1, -1, 'Druid - Healing Touch'),
(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)'),
+(33745,0,0,0,0.01,'Druid - Lacerate Rank 1($AP*0.05/number of ticks)'),
+(48567,0,0,0,0.01,'Druid - Lacerate Rank 2($AP*0.05/number of ticks)'),
+(48568,0,0,0,0.01,'Druid - Lacerate Rank 3($AP*0.05/number of ticks)'),
(33778, 0.589714, 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)'),
diff --git a/sql/updates/9701_world_spell_bonus_data.sql b/sql/updates/9701_world_spell_bonus_data.sql
new file mode 100644
index 00000000000..894478ccedc
--- /dev/null
+++ b/sql/updates/9701_world_spell_bonus_data.sql
@@ -0,0 +1,5 @@
+DELETE FROM `spell_bonus_data` WHERE `entry` IN (48568,48567,33745);
+INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES
+(48568,0,0,0,0.01,'Druid - Lacerate Rank 3($AP*0.05/number of ticks)'),
+(48567,0,0,0,0.01,'Druid - Lacerate Rank 2($AP*0.05/number of ticks)'),
+(33745,0,0,0,0.01,'Druid - Lacerate Rank 1($AP*0.05/number of ticks)');