Skip to content

Commit

Permalink
[ACID] Freezing Ghoul into spell_list and increase timer for Flash Feeze
Browse files Browse the repository at this point in the history
  • Loading branch information
miraco committed Jan 29, 2025
1 parent b30c633 commit 1841cb7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
3 changes: 1 addition & 2 deletions ACID/acid_tbc.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down
12 changes: 12 additions & 0 deletions Updates/0552_freezing_ghoul.sql
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 1841cb7

Please sign in to comment.