mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
DB/Spell: Arm Dead Damage Kologarn
Closes #24577
(cherry picked from commit 9170567218)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
-- Ulduar - Arm Dead Damage Kologarn difficult modes
|
||||
-- DELETE FROM `spelldifficulty_dbc` WHERE `id` =63629;
|
||||
-- INSERT INTO `spelldifficulty_dbc`(`id`,`spellid0`,`spellid1`) VALUES
|
||||
-- (63629,63629,63979);
|
||||
-- Ulduar - Arm Dead Damage Kologarn should ignore armor
|
||||
DELETE FROM `spell_custom_attr` WHERE `entry` IN (63629,63979);
|
||||
INSERT INTO `spell_custom_attr` (`entry`, `attributes`) VALUES
|
||||
(63629, 32768), -- 10
|
||||
(63979, 32768); -- 25
|
||||
@@ -35,7 +35,6 @@ EndScriptData */
|
||||
|
||||
enum Spells
|
||||
{
|
||||
SPELL_ARM_DEAD_DAMAGE = 63629,
|
||||
SPELL_TWO_ARM_SMASH = 63356,
|
||||
SPELL_ONE_ARM_SMASH = 63573,
|
||||
SPELL_ARM_SWEEP = 63766,
|
||||
@@ -62,6 +61,8 @@ enum Spells
|
||||
SPELL_BERSERK = 47008 // guess
|
||||
};
|
||||
|
||||
#define SPELL_ARM_DEAD_DAMAGE RAID_MODE<uint32>(63629,63979)
|
||||
|
||||
enum NPCs
|
||||
{
|
||||
NPC_RUBBLE_STALKER = 33809,
|
||||
|
||||
Reference in New Issue
Block a user