diff options
| author | Aokromes <Aokromes@users.noreply.github.com> | 2021-11-27 15:16:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-27 15:16:01 +0100 |
| commit | b4ded1cf28685609acf5ba8a5dad106fdd114394 (patch) | |
| tree | 75cc1110c28d2f3af3b2fc30cb1650b84829053e | |
| parent | aeece162b9d93c9d248ea8ba464cf28ae532f034 (diff) | |
DB/Spawns: Spawned Kragwa for Revenge of Kragwa worldquest
closes #27317 by mdx7
| -rw-r--r-- | sql/updates/world/master/2021_11_27_09_world.sql | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_11_27_09_world.sql b/sql/updates/world/master/2021_11_27_09_world.sql new file mode 100644 index 00000000000..bd204adce87 --- /dev/null +++ b/sql/updates/world/master/2021_11_27_09_world.sql @@ -0,0 +1,18 @@ +-- +SET @CGUID := 850184; + +DELETE FROM `creature` WHERE `guid`=@CGUID+0; +INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnDifficulties`, `PhaseId`, `PhaseGroup`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES +(@CGUID+0, 134976, 1642, 8500, 8942, '0', 10613, 0, 0, 0, 1693.6458740234375, 93.3506927490234375, -0.05085717886686325, 1.774286270141601562, 120, 0, 0, 114475, 0, 0, 0, 0, 0, 41079); -- Krag'wa the Huge (Area: Zal'amak - Difficulty: 0) + +DELETE FROM `creature_template_scaling` WHERE (`DifficultyID`=0 AND `Entry` IN (134976)); +INSERT INTO `creature_template_scaling` (`Entry`, `DifficultyID`, `LevelScalingDeltaMin`, `LevelScalingDeltaMax`, `ContentTuningID`, `VerifiedBuild`) VALUES +(134976, 0, 1, 1, 805, 41079); + +UPDATE `gossip_menu` SET `VerifiedBuild`=41079 WHERE (`MenuId`=22338 AND `TextId`=34297); +UPDATE `npc_text` SET `VerifiedBuild`=41079 WHERE `ID`=34297; +UPDATE `gossip_menu_option` SET `VerifiedBuild`=41079 WHERE (`MenuId`=22338 AND `OptionIndex`=0); + +UPDATE `creature_template` SET `minlevel`=51, `maxlevel`=51, `VerifiedBuild`=41079 WHERE `entry`=134976; -- Krag'wa the Huge +UPDATE `creature_template_model` SET `VerifiedBuild`=41079 WHERE (`Idx`=0 AND `CreatureID`=134976); +UPDATE `creature_model_info` SET `VerifiedBuild`=41079 WHERE `DisplayID`=77323; |
