diff options
author | Serpaa <Serpaa@users.noreply.github.com> | 2017-10-24 18:56:55 +0200 |
---|---|---|
committer | funjoker <funjoker109@gmail.com> | 2021-01-13 22:04:52 +0100 |
commit | 1c64a7fbf4c45d01e3bdf33f2664c214aeb24293 (patch) | |
tree | 3dc8fe4cd61de5649b67f42dc1f56fa407f09b61 | |
parent | 2cccef803889539873321e5971b57cb39a6af527 (diff) |
DB/Creature: Borgoth the Bloodletter
Closes #20707
(cherry picked from commit acdd66d9c21a2d7f98650d5bfa99c30500f78379)
-rw-r--r-- | sql/updates/world/master/2021_01_09_13_world_2017_10_24_01_world.sql | 15 |
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"); |