-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ACID] Freezing Ghoul into spell_list and increase timer for Flash Feeze
- Loading branch information
Showing
2 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |