DB/Item: Northrend Mystery Gem Pouch (3.3.5)

* This is probably only valid for 3.3.5 as item is marked as no longer available in game and last comment on wowhead is from 4.1.0 saying item is now worthless, was added in 3.2
* Remove northrend rare gems for emblem of heroism from Lhara and replace with this item
This commit is contained in:
Dr-J
2014-10-27 14:05:10 +00:00
parent 4c93ac74da
commit aac03a86f4

View File

@@ -0,0 +1,13 @@
-- Link reference loot to item (using one of the reference loot template ids from icy prism as same 6 loot items
DELETE FROM `item_loot_template` WHERE `Entry`=46812;
INSERT INTO `item_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(46812, 1, 45010, 100, 0, 1, 0, 1, 1, NULL),
(46812, 2, 45010, 50, 0, 1, 0, 1, 1, NULL);
-- Add Northrend Mystery Gem Pouch to Lhara
DELETE FROM `npc_vendor` WHERE `entry`=14846 AND `item`=46812;
INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `incrtime`, `ExtendedCost`, `VerifiedBuild`) VALUES
(14846, 0, 46812, 1, 43200, 0, 0);
-- Delete NR Rare nr gems for Emblem of Heroism from Lhara
DELETE FROM `npc_vendor` WHERE `entry`=14846 AND `item` IN(36927,36918,36933,36921,36924,36930);