Skip to content

Commit 36acf8c

Browse files
committed
Disable TBC raid buffs and add Naxxramas tuning
Commented out all TBC and Vanilla raid, heroic, battleground, and arena zone difficulty entries in zone_difficulty_info_content.sql, and disabled all TBC raid boss HP overrides in zone_difficulty_mythicmode_creatureoverrides.sql. Added new entries for Naxxramas zone and boss HP buffs (+20% HP) for both 10-man and 25-man modes.
1 parent 54be37b commit 36acf8c

File tree

2 files changed

+139
-101
lines changed

2 files changed

+139
-101
lines changed
Lines changed: 50 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,75 @@
11
DELETE FROM `zone_difficulty_info`;
22
INSERT INTO `zone_difficulty_info` (`MapId`, `PhaseMask`, `HealingNerfValue`, `AbsorbNerfValue`, `MeleeDmgBuffValue`, `SpellDmgBuffValue`, `Enabled`, `Comment`) VALUES
33
-- Vanilla Raids
4-
(531, 0, '0.50', '0.50', '1.50', '1.30', 0, 'AQ40 Healing 50% / Absorb 50% Nerf / 50% physical & 30% spell damage buff'),
5-
(509, 0, '0.50', '0.50', '1.60', '1.30', 0, 'AQ20 Healing 50% / Absorb 50% Nerf / 60% physical & 30% spell damage buff'),
6-
(309, 0, '0.50', '0.50', '1.50', '1.10', 0, 'ZG20 Healing 50% / Absorb 50% Nerf / 50% physical & 10% spell damage buff'),
7-
(469, 0, '0.50', '0.50', '1.50', '1.50', 0, 'BWL Healing 50% / Absorb 50% Nerf / 50% physical & 50% spell damage buff'),
8-
(249, 0, '0.50', '0.50', '1.40', '1.40', 0, 'ONY Healing 50% / Absorb 50% Nerf / 40% physical & 40% spell damage buff'),
9-
(409, 0, '0.50', '0.50', '1.50', '1.50', 0, 'MC Healing 50% / Absorb 50% Nerf / 50% physical & 50% spell damage buff'),
4+
-- (531, 0, '0.50', '0.50', '1.50', '1.30', 0, 'AQ40 Healing 50% / Absorb 50% Nerf / 50% physical & 30% spell damage buff'),
5+
-- (509, 0, '0.50', '0.50', '1.60', '1.30', 0, 'AQ20 Healing 50% / Absorb 50% Nerf / 60% physical & 30% spell damage buff'),
6+
-- (309, 0, '0.50', '0.50', '1.50', '1.10', 0, 'ZG20 Healing 50% / Absorb 50% Nerf / 50% physical & 10% spell damage buff'),
7+
-- (469, 0, '0.50', '0.50', '1.50', '1.50', 0, 'BWL Healing 50% / Absorb 50% Nerf / 50% physical & 50% spell damage buff'),
8+
-- (249, 0, '0.50', '0.50', '1.40', '1.40', 0, 'ONY Healing 50% / Absorb 50% Nerf / 40% physical & 40% spell damage buff'),
9+
-- (409, 0, '0.50', '0.50', '1.50', '1.50', 0, 'MC Healing 50% / Absorb 50% Nerf / 50% physical & 50% spell damage buff'),
1010
-- TBC Raids
11-
(565, 0, 0.90, 0.90, 1.10, 1.10, 1, 'Normal Mode Gruul Healing 90% / Absorb 90% Nerf / 10% physical & 10% spell damage buff'),
12-
(565, 0, 0.80, 0.80, 1.20, 1.20, 64, 'Mythic Mode Gruul Healing 80% / Absorb 80% Nerf / 20% physical & 20% spell damage buff'),
13-
(544, 0, 0.90, 0.90, 1.10, 1.10, 1, 'Normal Mode Magtheridon Healing 90% / Absorb 90% Nerf / 10% physical & 10% spell damage buff'),
14-
(544, 0, 0.80, 0.80, 1.20, 1.20, 64, 'Mythic Mode Magtheridon Healing 80% / Absorb 80% Nerf / 20% physical & 20% spell damage buff'),
15-
(532, 0, 0.75, 0.75, 1.15, 1.15, 1, 'Karazhan'),
16-
(548, 0, 0.75, 0.75, 1.20, 1.15, 1, 'Normal SSC Healing 75% / Absorb 75% Nerf / 20% physical & 15% spell damage buff'),
17-
(548, 0, 0.75, 0.75, 1.34, 1.32, 64, 'Mythic SSC Healing 75% / Absorb 75% Nerf / 34% physical & 32% spell damage buff'),
18-
(534, 0, 0.75, 0.75, 1.35, 1.2, 1, 'The Battle For Mount Hyjal'),
19-
(534, 0, 0.75, 0.75, 1.48, 1.35, 64, 'Mythic The Battle For Mount Hyjal'),
20-
(550, 0, 0.75, 0.75, 1.30, 1.30, 1, 'Tempest Keep'),
21-
(564, 0, 0.75, 0.75, 1.20, 1.15, 1, 'Normal Mode Black Temple Healing 75% / Absorb 75% Nerf / 20% physical & 15% spell damage buff'),
22-
(564, 0, 0.75, 0.75, 1.34, 1.32, 64, 'Mythic Mode Black Temple Healing 75% / Absorb 75% Nerf / 34% physical & 32% spell damage buff'),
23-
(568, 0, 0.75, 0.75, 1.20, 1.15, 1, 'Normal ZA Healing 75% / Absorb 75% Nerf / 20% physical & 15% spell damage buff'),
24-
(568, 0, 0.75, 0.75, 1.34, 1.32, 64, 'Mythic ZA Healing 75% / Absorb 75% Nerf / 34% physical & 32% spell damage buff'),
25-
(580, 0, 0.75, 0.75, 1.20, 1.15, 1, 'Normal SWP Healing 75% / Absorb 75% Nerf / 20% physical & 15% spell damage buff'),
26-
(580, 0, 0.75, 0.75, 1.34, 1.32, 64, 'Mythic SWP Healing 75% / Absorb 75% Nerf / 34% physical & 32% spell damage buff'),
11+
-- (565, 0, 0.90, 0.90, 1.10, 1.10, 1, 'Normal Mode Gruul Healing 90% / Absorb 90% Nerf / 10% physical & 10% spell damage buff'),
12+
-- (565, 0, 0.80, 0.80, 1.20, 1.20, 64, 'Mythic Mode Gruul Healing 80% / Absorb 80% Nerf / 20% physical & 20% spell damage buff'),
13+
-- (544, 0, 0.90, 0.90, 1.10, 1.10, 1, 'Normal Mode Magtheridon Healing 90% / Absorb 90% Nerf / 10% physical & 10% spell damage buff'),
14+
-- (544, 0, 0.80, 0.80, 1.20, 1.20, 64, 'Mythic Mode Magtheridon Healing 80% / Absorb 80% Nerf / 20% physical & 20% spell damage buff'),
15+
-- (532, 0, 0.75, 0.75, 1.15, 1.15, 1, 'Karazhan'),
16+
-- (548, 0, 0.75, 0.75, 1.20, 1.15, 1, 'Normal SSC Healing 75% / Absorb 75% Nerf / 20% physical & 15% spell damage buff'),
17+
-- (548, 0, 0.75, 0.75, 1.34, 1.32, 64, 'Mythic SSC Healing 75% / Absorb 75% Nerf / 34% physical & 32% spell damage buff'),
18+
-- (534, 0, 0.75, 0.75, 1.35, 1.2, 1, 'The Battle For Mount Hyjal'),
19+
-- (534, 0, 0.75, 0.75, 1.48, 1.35, 64, 'Mythic The Battle For Mount Hyjal'),
20+
-- (550, 0, 0.75, 0.75, 1.30, 1.30, 1, 'Tempest Keep'),
21+
-- (564, 0, 0.75, 0.75, 1.20, 1.15, 1, 'Normal Mode Black Temple Healing 75% / Absorb 75% Nerf / 20% physical & 15% spell damage buff'),
22+
-- (564, 0, 0.75, 0.75, 1.34, 1.32, 64, 'Mythic Mode Black Temple Healing 75% / Absorb 75% Nerf / 34% physical & 32% spell damage buff'),
23+
-- (568, 0, 0.75, 0.75, 1.20, 1.15, 1, 'Normal ZA Healing 75% / Absorb 75% Nerf / 20% physical & 15% spell damage buff'),
24+
-- (568, 0, 0.75, 0.75, 1.34, 1.32, 64, 'Mythic ZA Healing 75% / Absorb 75% Nerf / 34% physical & 32% spell damage buff'),
25+
-- (580, 0, 0.75, 0.75, 1.20, 1.15, 1, 'Normal SWP Healing 75% / Absorb 75% Nerf / 20% physical & 15% spell damage buff'),
26+
-- (580, 0, 0.75, 0.75, 1.34, 1.32, 64, 'Mythic SWP Healing 75% / Absorb 75% Nerf / 34% physical & 32% spell damage buff'),
2727

2828
-- TBC Heroics
29-
(269, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Black Morass Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
29+
-- (269, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Black Morass Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
3030
-- (269, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode Black Morass Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
31-
(540, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Shattered Halls Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
31+
-- (540, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Shattered Halls Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
3232
-- (540, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode Shattered Halls Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
33-
(542, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Blood Furnace Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
33+
-- (542, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Blood Furnace Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
3434
-- (542, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode Blood Furnace Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
35-
(543, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Hellfire Ramparts Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
35+
-- (543, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Hellfire Ramparts Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
3636
-- (543, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode Hellfire Ramparts Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
37-
(545, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode The Steamvault Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
37+
-- (545, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode The Steamvault Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
3838
-- (545, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode The Steamvault Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
39-
(546, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode The Underbog Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
39+
-- (546, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode The Underbog Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
4040
-- (546, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode The Underbog Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
41-
(547, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Slave Pens Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
41+
-- (547, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Slave Pens Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
4242
-- (547, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode Slave Pens Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
43-
(552, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode The Arcatraz Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
43+
-- (552, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode The Arcatraz Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
4444
-- (552, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode The Arcatraz Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
45-
(553, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode The Botanica Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
45+
-- (553, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode The Botanica Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
4646
-- (553, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode The Botanica Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
47-
(554, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode The Mechanar Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
47+
-- (554, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode The Mechanar Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
4848
-- (554, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode The Mechanar Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
49-
(555, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Shadow Labyrinth Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
49+
-- (555, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Shadow Labyrinth Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
5050
-- (555, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode Shadow Labyrinth Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
51-
(556, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Sethekk Halls Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
51+
-- (556, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Sethekk Halls Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
5252
-- (556, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode Sethekk Halls Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
53-
(557, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Mana Tombs Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
53+
-- (557, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Mana Tombs Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
5454
-- (557, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode Mana Tombs Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
55-
(558, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Auchenai Crypts Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
55+
-- (558, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Auchenai Crypts Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
5656
-- (558, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode Auchenai Crypts Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
57-
(560, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode The Escape From Durnholde Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
57+
-- (560, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode The Escape From Durnholde Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
5858
-- (560, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode The Escape From Durnholde Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
59-
(585, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Magister\'s Terrace Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
59+
-- (585, 0, '0.90', '0.90', '1.20', '1.10', 0, 'Heroic Mode Magister\'s Terrace Healing 90% / Absorb 90% Nerf / 20% physical & 10% spell damage buff'),
6060
-- (585, 0, '0.80', '0.80', '1.30', '1.20', 64, 'Mythic Mode Magister\'s Terrace Healing 80% / Absorb 80% Nerf / 30% physical & 20% spell damage buff'),
6161
-- Battlegrounds
62-
(30, 0, '0.80', '0.80', '0.70', '0.70', 0, 'AV Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
63-
(489, 0, '0.80', '0.80', '0.70', '0.70', 0, 'WSG Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
64-
(529, 0, '0.80', '0.80', '0.70', '0.70', 0, 'AB Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
65-
(566, 0, '0.80', '0.80', '0.70', '0.70', 0, 'EotS Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
62+
-- (30, 0, '0.80', '0.80', '0.70', '0.70', 0, 'AV Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
63+
-- (489, 0, '0.80', '0.80', '0.70', '0.70', 0, 'WSG Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
64+
-- (529, 0, '0.80', '0.80', '0.70', '0.70', 0, 'AB Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
65+
-- (566, 0, '0.80', '0.80', '0.70', '0.70', 0, 'EotS Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
6666
-- arenas
67-
(559, 0, '0.80', '0.80', '0.70', '0.70', 0, 'Ring of Trials Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
68-
(562, 0, '0.80', '0.80', '0.70', '0.70', 0, 'Blades Edge Arena Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
69-
(572, 0, '0.80', '0.80', '0.70', '0.70', 0, 'Ruins of Lordaeron Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
70-
(617, 0, '0.80', '0.80', '0.70', '0.70', 0, 'Dalaran Arena Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
71-
(618, 0, '0.80', '0.80', '0.70', '0.70', 0, 'Ring of Valor Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
67+
-- (559, 0, '0.80', '0.80', '0.70', '0.70', 0, 'Ring of Trials Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
68+
-- (562, 0, '0.80', '0.80', '0.70', '0.70', 0, 'Blades Edge Arena Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
69+
-- (572, 0, '0.80', '0.80', '0.70', '0.70', 0, 'Ruins of Lordaeron Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
70+
-- (617, 0, '0.80', '0.80', '0.70', '0.70', 0, 'Dalaran Arena Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
71+
-- (618, 0, '0.80', '0.80', '0.70', '0.70', 0, 'Ring of Valor Healing 20% / Absorb 20% / 30% physical & spell damage nerf'),
7272
-- Duels in Forbidding Sea (Wetlands)
73-
(2147483647, 0, '0.80', '0.80', '0.70', '0.70', 1, 'Zone 2402 Duel Healing 20% / Absorb 20% Nerf / 30% physical & spell damage nerf');
73+
-- (2147483647, 0, '0.80', '0.80', '0.70', '0.70', 1, 'Zone 2402 Duel Healing 20% / Absorb 20% Nerf / 30% physical & spell damage nerf');
74+
-- Naxxramas
75+
(533, 0, 1.0, 1.0, 1.20, 1.15, 1, 'Naxxramas 20% physical & 15% spell damage buff');

0 commit comments

Comments
 (0)