fix(DB/loot): Adjust Spellshock Leggings drops (#6288)

Spellshock Leggings (id: 9484) were previously unobtainable. They should
drop from certain high-level mobs in Zul'Farrak according to sources.

- Closes #6026
- Closes chromiecraft/chromiecraft#690
This commit is contained in:
anguaive
2021-06-18 11:31:51 +02:00
committed by GitHub
parent 47b09f2767
commit 364d715d07

View File

@@ -0,0 +1,6 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1623249558553944112');
DELETE FROM `creature_loot_template` WHERE `Item` = 9484 AND `Entry` IN (8127, 7267);
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(8127, 9484, 0, 0.01, 0, 1, 0, 1, 1, 'Antu\'Sul - Spellshock Leggings'),
(7267, 9484, 0, 0.01, 0, 1, 0, 1, 1, 'Cfieg Ukorz Sandscalp - Spellshock Leggings');