From 9d76ec6c0930d43ec0fecf8f8c9b5e9ec8d44c5b Mon Sep 17 00:00:00 2001 From: Grimdhex <176165533+Grimdhex@users.noreply.github.com> Date: Tue, 20 Aug 2024 00:08:39 +0200 Subject: [PATCH] fix(DB/SAI): Hemathion spells and timers (#19621) * fix(DB/SAI): Hemathion spells and timers * correct the devour spell cast condition * forget to delete the old devour line --- .../updates/pending_db_world/rev_1723613411731670300.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1723613411731670300.sql diff --git a/data/sql/updates/pending_db_world/rev_1723613411731670300.sql b/data/sql/updates/pending_db_world/rev_1723613411731670300.sql new file mode 100644 index 000000000..ca7359676 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1723613411731670300.sql @@ -0,0 +1,6 @@ +-- Fix spells timers for Hemathion (18692) +DELETE FROM `smart_scripts` WHERE (`entryorguid` = 18692) AND (`source_type` = 0) AND (`id` IN (0, 1, 2)); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `event_param6`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(18692, 0, 0, 0, 0, 0, 100, 0, 5000, 15000, 5000, 35000, 0, 0, 11, 9573, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Hemathion - In Combat - Cast Flame Breath'), +(18692, 0, 1, 0, 0, 0, 100, 0, 5000, 15000, 40000, 60000, 0, 0, 11, 14100, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Hemathion - In Combat - Cast Terrifying Roar'), +(18692, 0, 2, 0, 12, 0, 100, 1, 0, 20, 0, 0, 0, 0, 11, 38895, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Hemathion - Between 0-20% Health - Cast Devour (No Repeat)');