diff --git a/ACID/acid_tbc.sql b/ACID/acid_tbc.sql index 614e1d08d..780c51dbe 100644 --- a/ACID/acid_tbc.sql +++ b/ACID/acid_tbc.sql @@ -7505,9 +7505,8 @@ INSERT INTO `creature_ai_scripts` (`id`,`creature_id`,`event_type`,`event_invers ('179501','1795','11','0','100','0','0','0','0','0','0','0','11','26047','0','0','11','13377','0','34','0','0','0','0','Searing Ghoul - Cast Birth, Fire Shield on Spawn'), ('179502','1795','0','0','100','1025','6000','9000','17000','23000','0','0','11','23038','1','0','0','0','0','0','0','0','0','0','Searing Ghoul - Cast Flame Shock'), ('179503','1795','0','0','100','1025','12000','15000','12000','18000','0','0','11','23039','0','0','0','0','0','0','0','0','0','0','Searing Ghoul - Cast Blast Wave'), --- Freezing Ghoul 1796 +-- Freezing Ghoul 1796 - spell_list ('179601','1796','11','0','100','0','0','0','0','0','0','0','11','26047','0','0','11','12556','0','34','0','0','0','0','Freezing Ghoul - Cast Birth, Frost Armor on Spawn'), -('179602','1796','0','0','100','1025','5000','20000','11000','22000','0','0','11','16803','17','0','0','0','0','0','0','0','0','0','Freezing Ghoul - Cast Flash Freeze'), -- Hungering Wraith 1802 ('180201','1802','0','0','100','1025','0','10000','20000','40000','0','0','11','16333','1','0','0','0','0','0','0','0','0','0','Hungering Wraith - Cast Debilitating Touch'), ('180202','1802','2','0','100','1024','30','0','0','0','0','0','11','8269','0','0','1','1191','0','0','0','0','0','0','Hungering Wraith - Cast Frenzy at 30% HP'), diff --git a/Updates/0552_freezing_ghoul.sql b/Updates/0552_freezing_ghoul.sql new file mode 100644 index 000000000..a6fed3276 --- /dev/null +++ b/Updates/0552_freezing_ghoul.sql @@ -0,0 +1,12 @@ +-- Freezing Ghoul spell_list +DELETE FROM `creature_template_spells` WHERE `entry` = 1796; + +DELETE FROM `creature_spell_list_entry` WHERE `Id`= 179601; +INSERT INTO `creature_spell_list_entry` (`Id`, `Name`, `ChanceSupportAction`, `ChanceRangedAttack`) VALUES +(179601, 'Western Plaguelands - Freezing Ghoul', 0, 0); + +DELETE FROM `creature_spell_list` WHERE `Id` IN (179601); +INSERT INTO `creature_spell_list` (`Id`, `Position`, `SpellId`, `Flags`, `CombatCondition`, `TargetId`, `ScriptId`, `Availability`, `Probability`, `InitialMin`, `InitialMax`, `RepeatMin`, `RepeatMax`, `Comments`) VALUES +(179601, 1, 16803, 0, -1, 0, 0, 100, 0, 10000, 22000, 17000, 26000, 'Freezing Ghoul - Flash Freeze - none'); + +UPDATE `creature_template` SET `SpellList` = 179601 WHERE `entry` = 1796;