From 00111e8359c1d72191f36abd1904f7593739423a Mon Sep 17 00:00:00 2001 From: Asthalor <87535580+Asthalor@users.noreply.github.com> Date: Fri, 30 Jul 2021 19:43:33 +0200 Subject: [PATCH] fix(DB/Creature): Changed skinning loot and movement speed of Deatheye (#7116) Changed the skinning loot table and reduced his movement speed Co-authored-by: Lukas Volgger <55922592+LukasVolgger@users.noreply.github.com> --- .../pending_db_world/rev_1627234127883337100.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1627234127883337100.sql diff --git a/data/sql/updates/pending_db_world/rev_1627234127883337100.sql b/data/sql/updates/pending_db_world/rev_1627234127883337100.sql new file mode 100644 index 000000000..cfea618d3 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1627234127883337100.sql @@ -0,0 +1,15 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1627234127883337100'); + +-- Slowed down the movement speed +UPDATE `creature_template` SET `speed_walk` = 1 WHERE (`entry` = 8302); + +-- Delete previous skinning loots of deatheye +DELETE FROM `skinning_loot_template` WHERE `Entry` = 100003; + +-- Added new ones from the template of a Redstone Crystalhide (id: 5991) +INSERT INTO `skinning_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(100003, 4304, 0, 40, 0, 1, 1, 1, 1, ''), -- Thick leather +(100003, 8169, 0, 5, 0, 1, 1, 1, 1, ''), -- Thick hide +(100003, 8170, 0, 50, 0, 1, 1, 1, 1, ''), -- Rugged Leather +(100003, 8171, 0, 5, 0, 1, 1, 1, 1, ''); -- Rugged Hide +