aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKillyana <morphone1@gmail.com>2015-11-23 19:37:37 +0100
committerKillyana <morphone1@gmail.com>2015-11-23 19:37:37 +0100
commit0d3ba0a79c1cdd281f57a6fd905036d5c68c1027 (patch)
tree9d0f2cedbec14b3c9934b40c028a0eeee2d9eb28
parent1461634e698561b55dd65a6c0e23b20379631b4c (diff)
DB/Loot: Fix Skinning Loot for Mottled Boar and Scorpid Worker
By @tkrokli Closes #15773 Closes #15772
-rw-r--r--sql/updates/world/2015_11_23_03_world_335.sql13
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/2015_11_23_03_world_335.sql b/sql/updates/world/2015_11_23_03_world_335.sql
new file mode 100644
index 00000000000..9ef011f551e
--- /dev/null
+++ b/sql/updates/world/2015_11_23_03_world_335.sql
@@ -0,0 +1,13 @@
+-- Mottled Boar - Skinning Loot
+UPDATE `creature_template` SET `skinloot`= 3098 WHERE `entry` = 3098;
+DELETE FROM `skinning_loot_template` WHERE `Entry`=3098;
+INSERT INTO `skinning_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
+(3098, 2318, 0, 10, 0, 1, 1, 1, 1, NULL), -- Light Leather, 10% chance
+(3098, 2934, 0, 88, 0, 1, 1, 1, 1, NULL); -- Ruined Leather Scraps, 88% chance
+
+-- Scorpid Worker - Skinning Loot
+UPDATE `creature_template` SET `skinloot`= 3124 WHERE `entry` = 3124;
+DELETE FROM `skinning_loot_template` WHERE `Entry`= 3124;
+INSERT INTO `skinning_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
+(3124, 2318, 0, 10, 0, 1, 1, 1, 1, NULL), -- Light Leather, 10% chance
+(3124, 2934, 0, 88, 0, 1, 1, 1, 1, NULL); -- Ruined Leather Scraps, 88% chance