mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-21 20:56:23 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user