aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2024_01_01_01_world.sql15
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/master/2024_01_01_01_world.sql b/sql/updates/world/master/2024_01_01_01_world.sql
new file mode 100644
index 00000000000..e054e010b82
--- /dev/null
+++ b/sql/updates/world/master/2024_01_01_01_world.sql
@@ -0,0 +1,15 @@
+-- Delete all existing Rockjaw Invader spawns
+DELETE FROM `creature` WHERE `id`=37070;
+-- Add coin to Rockjaw Invader
+UPDATE `creature_template_difficulty` SET `GoldMin`=1, `GoldMax`=7 WHERE `Entry`=37070;
+-- Prevent Coldridge Mountaineer from entering combat with Rockjaw Invaders
+UPDATE `creature_template` SET `flags_extra`=2 WHERE `entry`=853;
+-- Add Script to Joren Ironstock
+UPDATE `creature_template` SET `ScriptName`='npc_joren_ironstock' WHERE `entry`=37081;
+
+-- Add spairing to Rockjaw Invaders, Coldridge Defenders, and Joren Ironstock
+DELETE FROM `creature_template_sparring` WHERE `Entry` IN (37070,37177,37081);
+INSERT INTO `creature_template_sparring` (`Entry`,`NoNPCDamageBelowHealthPct`) VALUES
+(37070,85),
+(37177,85),
+(37081,85);