From 1c64a7fbf4c45d01e3bdf33f2664c214aeb24293 Mon Sep 17 00:00:00 2001 From: Serpaa Date: Tue, 24 Oct 2017 18:56:55 +0200 Subject: DB/Creature: Borgoth the Bloodletter Closes #20707 (cherry picked from commit acdd66d9c21a2d7f98650d5bfa99c30500f78379) --- .../master/2021_01_09_13_world_2017_10_24_01_world.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sql/updates/world/master/2021_01_09_13_world_2017_10_24_01_world.sql (limited to 'sql/updates') 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"); -- cgit v1.2.3