Skip to content

Commit

Permalink
[5132] Loot - Remove Highlevel Scrolls from Defias Evoker
Browse files Browse the repository at this point in the history
thx @ Alex C.

Fix some other things while comparing loot tables across cmangos
  • Loading branch information
AnonXS committed Oct 15, 2023
1 parent 6e87a64 commit d832a3f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Updates/5132_i.10305,10306,10307,10308,10309,10310_loot_tables.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
-- From Discord: "Anyone know if https://www.wowhead.com/wotlk/item=10310/scroll-of-strength-iv is normal to drop sometimes from a defias miner or evoker in deadmines?"
-- 10305,10306,10307,10308,10309,10310 - Improve Loot Tables for 1138,1729,1849,6372
DELETE FROM `creature_loot_template` WHERE `item` = 2770 AND `entry` NOT IN (2976,2978,808,475,824,1727,2989,40,327,624,1236,4113,5849,2269,598,4416,4116,4846,1094,4844,4849,3578,1426,2450,674,623,14427,1167,1424,1393,3586); -- only "Digger" npcs if any.
DELETE FROM `creature_loot_template` WHERE `item` = 2771 AND `entry` NOT IN (2976,2978,808,475,824,1727,2989,40,327,624,1236,4113,5849,2269,598,4416,4116,4846,1094,4844,4849,3578,1426,2450,674,623,14427,1167,1424,1393,3586);
DELETE FROM `creature_loot_template` WHERE `item` = 2835 AND `entry` NOT IN (2976,2978,808,475,824,1727,2989,40,327,624,1236,4113,5849,2269,598,4416,4116,4846,1094,4844,4849,3578,1426,2450,674,623,14427,1167,1424,1393,3586);
DELETE FROM `creature_loot_template` WHERE `item` = 2775; -- seemingly none.
DELETE FROM `creature_loot_template` WHERE `item` = 50603 AND `entry` IN ( -- NPC LOOT (White World Drop) - (Scrolls IV) - (NPC Levels 55-62)
1729, -- https://www.wowhead.com/wotlk/npc=1729/defias-evoker - Level: 17 - 18
1849 -- (1523, 1849, 21, 0, 38, 38, 524288, 0, 0, 0, 0), Level 38.
);
DELETE FROM `creature_loot_template` WHERE `item` IN (10305,10306,10307,10308,10309,10310) AND `entry` IN (1138);
UPDATE `creature_template` SET `MinLevel` = 50, `MaxLevel` = 51 WHERE `entry` = 6372; -- 8-9 - hints towards something not correct with wotlk refloots see: SELECT clt.*,ct.name,ct.minlevel,ct.maxlevel FROM creature_loot_template clt left join creature_template ct on clt.entry=ct.entry where item IN (50602,50603) order by ct.minlevel,ct.entry;

UPDATE `reference_loot_template_names` SET `name` = 'NPC LOOT (White World Drop) - (Scrolls I) - (NPC Levels 10-25)' WHERE `entry` = 50600;
UPDATE `reference_loot_template_names` SET `name` = 'NPC LOOT (White World Drop) - (Scrolls II) - (NPC Levels 25-40)' WHERE `entry` = 50601;
UPDATE `reference_loot_template_names` SET `name` = 'NPC LOOT (White World Drop) - (Scrolls III) - (NPC Levels 40-55)' WHERE `entry` = 50602;
UPDATE `reference_loot_template_names` SET `name` = 'NPC LOOT (White World Drop) - (Scrolls IV) - (NPC Levels 55-62)' WHERE `entry` = 50603;
UPDATE `reference_loot_template_names` SET `name` = 'Scrolls V - (NPC Levels 58-72) - TBC' WHERE `entry` = 50604;
UPDATE `reference_loot_template_names` SET `name` = 'Scrolls VI - (NPC Levels 58-72) - WOTLK' WHERE `entry` = 50605;
UPDATE `reference_loot_template_names` SET `name` = 'Scrolls VII - (NPC Levels 68-82) - WOTLK' WHERE `entry` = 50606;

0 comments on commit d832a3f

Please sign in to comment.