mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-26 11:52:32 +01:00
DB/Spells: added stacking rules for debuffs on targets
This commit is contained in:
72
sql/updates/world/custom/custom_2019_02_09_00_world.sql
Normal file
72
sql/updates/world/custom/custom_2019_02_09_00_world.sql
Normal file
@@ -0,0 +1,72 @@
|
||||
DELETE FROM `spell_group` WHERE `id` BETWEEN 1139 AND 1147;
|
||||
DELETE FROM `spell_group_stack_rules` WHERE `group_id` BETWEEN 1139 AND 1147;
|
||||
|
||||
INSERT INTO `spell_group` (`id`, `spell_id`) VALUES
|
||||
-- Armor
|
||||
(1139, 770),
|
||||
(1139, 8647),
|
||||
(1139, 58567),
|
||||
(1139, 95466),
|
||||
(1139, 95467),
|
||||
-- Attack Speed
|
||||
(1140, 55095),
|
||||
(1140, 58179),
|
||||
(1140, 58180),
|
||||
(1140, 68055),
|
||||
(1140, 8042),
|
||||
(1140, 6343),
|
||||
(1140, 54404),
|
||||
-- Bleed Damage
|
||||
(1141, 33876),
|
||||
(1141, 16511),
|
||||
(1141, 35290),
|
||||
(1141, 50271),
|
||||
(1141, 57386),
|
||||
-- Casting Speed
|
||||
(1142, 73975),
|
||||
(1142, 1714),
|
||||
(1142, 31589),
|
||||
(1142, 5760),
|
||||
(1142, 58604),
|
||||
-- Crit Chance
|
||||
(1143, 22959),
|
||||
(1143, 17800),
|
||||
-- Damage Done
|
||||
(1144, 81130),
|
||||
(1144, 1160),
|
||||
(1144, 702),
|
||||
(1144, 99),
|
||||
(1144, 50256),
|
||||
-- Damage Taken (Magic)
|
||||
-- (1145, 40515), -- Blood Plague (serverside spell)
|
||||
(1145, 93068),
|
||||
(1145, 1490),
|
||||
(1145, 34889),
|
||||
(1145, 24844),
|
||||
-- Damage Taken (Physical)
|
||||
(1146, 81325),
|
||||
(1146, 81326),
|
||||
(1146, 58684),
|
||||
(1146, 58683),
|
||||
(1146, 30069),
|
||||
(1146, 30070),
|
||||
(1146, 50518),
|
||||
(1146, 55749),
|
||||
-- Healing Taken
|
||||
(1147, 82654),
|
||||
(1147, 48301),
|
||||
(1147, 95410),
|
||||
(1147, 13218),
|
||||
(1147, 56112),
|
||||
(1147, 54680);
|
||||
|
||||
INSERT INTO `spell_group_stack_rules` (`group_id`, `stack_rule`) VALUES
|
||||
(1139, 3),
|
||||
(1140, 3),
|
||||
(1141, 3),
|
||||
(1142, 3),
|
||||
(1143, 3),
|
||||
(1144, 3),
|
||||
(1145, 3),
|
||||
(1146, 3),
|
||||
(1147, 3);
|
||||
Reference in New Issue
Block a user