diff options
author | Drahy <none@none> | 2009-07-27 08:19:08 +0200 |
---|---|---|
committer | Drahy <none@none> | 2009-07-27 08:19:08 +0200 |
commit | 45a1439f4057c46288e40d844e71c727039eb4f5 (patch) | |
tree | ddf9e9c63a66d579d559f5e2ddc6894a5cc90cc0 | |
parent | 67250953ba4e17b6b2e2dbc90448f8607a351387 (diff) |
* Added ap bonus for Druid - Swipe (Bear)
* Correct comment for Pet Skill - Bear (Swipe)
--HG--
branch : trunk
-rw-r--r-- | sql/FULL/world_spell_full.sql | 3 | ||||
-rw-r--r-- | sql/updates/4602_world_spell_bonus_data.txt | 7 |
2 files changed, 9 insertions, 1 deletions
diff --git a/sql/FULL/world_spell_full.sql b/sql/FULL/world_spell_full.sql index fbf97ae488c..58bf124cb51 100644 --- a/sql/FULL/world_spell_full.sql +++ b/sql/FULL/world_spell_full.sql @@ -1574,7 +1574,7 @@ INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus` (53195, 0.0458, -1, -1, -1, 'Druid - Starfall rank 4'), (2912, 1, -1, -1, -1, 'Druid - Starfire'), (18562, 0, 0, 0, 0, 'Druid - Swiftmend'), -(50256, -1, -1, 0.08, -1, 'Druid - Swipe'), +(779, -1, -1, 0.063, -1, 'Druid - Swipe (Bear)'); (44203, 0.538, -1, -1, -1, 'Druid - Tranquility Triggered'), (61391, 0.193, -1, -1, -1, 'Druid - Typhoon'), (48438, -1, 0.11505, -1, -1, 'Druid - Wild Growth'), @@ -1645,6 +1645,7 @@ INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus` (25742, 0.07, -1, 0.039, -1, 'Paladin - Seal of Righteousness Dummy Proc'), (53719, 0, 0, 0, 0, 'Paladin - Seal of the Martyr Proc Enemy'), (53718, 0, 0, 0, 0, 'Paladin - Seal of the Martyr Proc Self'), +(50256, -1, -1, 0.08, -1, 'Pet Skills - Bear (Swipe)'), (32546, 0.8068, -1, -1, -1, 'Priest - Binding Heal'), (27813, 0, 0, 0, 0, 'Priest - Blessed Recovery Rank 1'), (34861, 0.402, -1, -1, -1, 'Priest - Circle of Healing'), diff --git a/sql/updates/4602_world_spell_bonus_data.txt b/sql/updates/4602_world_spell_bonus_data.txt new file mode 100644 index 00000000000..ac604e4624f --- /dev/null +++ b/sql/updates/4602_world_spell_bonus_data.txt @@ -0,0 +1,7 @@ +DELETE FROM `spell_bonus_data` WHERE `entry`=779;
+INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`, `ap_dot_bonus`, `comments`) VALUES
+('779', '-1', '-1', '0.063', '-1', 'Druid - Swipe (Bear)');
+
+DELETE FROM `spell_bonus_data` WHERE `entry`=50256;
+INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`, `ap_dot_bonus`, `comments`) VALUES
+(50256, -1, -1, 0.08, -1, 'Pet Skills - Bear (Swipe)'),
\ No newline at end of file |