From 6673db407ebb7d00de73e9b68bcdfafae74b5dd8 Mon Sep 17 00:00:00 2001 From: Asthalor <87535580+Asthalor@users.noreply.github.com> Date: Mon, 20 Sep 2021 13:37:40 +0200 Subject: [PATCH] fix(DB/Creature): Added auras to some creatures (#7883) --- .../rev_1631643504019542275.sql | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1631643504019542275.sql diff --git a/data/sql/updates/pending_db_world/rev_1631643504019542275.sql b/data/sql/updates/pending_db_world/rev_1631643504019542275.sql new file mode 100644 index 000000000..9fab2fcc8 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1631643504019542275.sql @@ -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); +