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>
This commit is contained in:
Asthalor
2021-07-30 19:43:33 +02:00
committed by GitHub
parent 34af82464c
commit 00111e8359

View File

@@ -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