aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/updates/world/master/2021_01_09_13_world_2017_10_24_01_world.sql15
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_01_09_13_world_2017_10_24_01_world.sql b/sql/updates/world/master/2021_01_09_13_world_2017_10_24_01_world.sql
new file mode 100644
index 00000000000..e1578119b46
--- /dev/null
+++ b/sql/updates/world/master/2021_01_09_13_world_2017_10_24_01_world.sql
@@ -0,0 +1,15 @@
+-- Add pool of Borgoth the Bloodletter
+SET @CGUID := 52139; -- Need new GUID
+SET @POOLENTRY := 380; -- Need new POOLENTRY
+
+DELETE FROM `creature` WHERE `guid`=@CGUID;
+INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES
+(@CGUID, 16247, 530, 0, 0, '0', 0, 0, 0, 6439.692, -6643.391, 107.431, 1.7330, 300, 0, 0, 629, 0, 0, 0, 0, 0, 0);
+
+DELETE FROM `pool_template` WHERE `entry`=@POOLENTRY;
+INSERT INTO `pool_template` VALUES (@POOLENTRY, 1, "Borgoth the Bloodletter");
+
+DELETE FROM `pool_creature` WHERE `guid` IN (@CGUID, 82889);
+INSERT INTO `pool_creature` VALUES
+(@CGUID, @POOLENTRY, 0, "Borgoth the Bloodletter #1"),
+(82889, @POOLENTRY, 0, "Borgoth the Bloodletter #2");