fix(DB/Creature): Added auras to some creatures (#7883)

This commit is contained in:
Asthalor
2021-09-20 13:37:40 +02:00
committed by GitHub
parent 99529627fa
commit 6673db407e

View File

@@ -0,0 +1,32 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1631643504019542275');
-- Add aura of slowing poison to Defias Night Blade and remove the casting of wrong spell
UPDATE `creature_template_addon` SET `auras` = '8601' WHERE (`entry` = 909);
DELETE FROM `smart_scripts` WHERE (`entryorguid` = 909) AND (`source_type` = 0) AND (`id` IN (1));
-- Add aura of Weak Poison Proc to Webwood Spider
UPDATE `creature_template_addon` SET `auras` = '6752' WHERE (`entry` = 1986);
-- Add aura of Slowing Poison and Poison Proc to Shadra
UPDATE `creature_template_addon` SET `auras` = '8601 13299' WHERE (`entry` = 2707);
-- Add aura of Fevered Fatigue to Mangy Silvermane and remove the casting of Fevered Fatigue
UPDATE `creature_template_addon` SET `auras` = '18847' WHERE (`entry` = 2923);
DELETE FROM `smart_scripts` WHERE (`entryorguid` = 2923) AND (`source_type` = 0);
-- Add aura of Nature Channeling to Lady Anacondra
UPDATE `creature_template_addon` SET `auras` = '13236' WHERE (`entry` = 3671);
-- Add aura of Curse of the Bleakheart Proc to Bleakheart Satyr
UPDATE `creature_template_addon` SET `auras` = '6947' WHERE (`entry` = 3765);
-- Add aura of Thrash to Fardel Dabyrie and removed the casting of Thrash
UPDATE `creature_template_addon` SET `auras` = '8876' WHERE (`entry` = 4479);
DELETE FROM `smart_scripts` WHERE (`entryorguid` = 4479) AND (`source_type` = 0) AND (`id` IN (0));
-- Add aura of Shield Spike to Nightmare Scalebane
UPDATE `creature_template_addon` SET `auras` = '12099' WHERE (`entry` = 5277);
-- Add aura of Azrethoc's Flight and enrage to Lord Azrethoc
UPDATE `creature_template_addon` SET `auras` = '7974 15097' WHERE (`entry` = 5760);