fix(DB/Conditions): Unfired Plate Gauntlets should only require blacksmithing 225 to loot. (#11510)
* Fix(DB/Loot): Unfired Plate Gauntlets does not require a quest to be obtained * Update rev_1650790172951548882.sql * Update rev_1650790172951548882.sql
This commit is contained in:
parent
54ebdfcfc1
commit
14f10bdf60
1 changed files with 9 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1650790172951548882');
|
||||
|
||||
DELETE FROM `gameobject_loot_template` WHERE (`Entry` = 13574) AND (`Item` IN (12812));
|
||||
INSERT INTO `gameobject_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(13574, 12812, 0, 100, 0, 1, 0, 1, 1, 'Unfired Plate Gauntlets - Unfired Plate Gauntlets');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=4 AND `SourceGroup`=13574;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(4, 13574, 12812, 0, 0, 7, 0, 164, 225, 0, 0, 0, 0, '', 'Unfired Plate Gauntlets while having Blacksmithing skill 225');
|
||||
Loading…
Add table
Add a link
Reference in a new issue