fix(DB): Dolanar First Aid Trainer Dialogues (#10499)

Dialogues are currently wrong, this PR is "what we know" so far and
should be finished later with a wotlk sniff.

related issue #10459

Co-authored-by: acidmanifesto <joshua.lee.betts@gmail.com>
This commit is contained in:
neifion-00000000
2022-03-01 06:47:03 -06:00
committed by GitHub
parent 743c028e31
commit 313c413eec

View File

@@ -0,0 +1,9 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1643833370324565100');
/* THIS IS A WIP THAT NEEDS INFORMATION FROM WOTLK FOR ACCURACY TO PUSH */
UPDATE `creature_template` SET `gossip_menu_id`='5855' WHERE `entry`=6094;
-- Condition for source Gossip menu condition type Skill
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=5855 AND `SourceEntry` IN (7026,7027,7028) AND `SourceId`=0;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(14, 5855, 7026, 0, 0, 7, 0, 129, 225, 0, 0, 0, 0, '', 'Show gossip menu 5855 text id 7026 if player must have reached 225 on skill First Aid.'),
(14, 5855, 7027, 0, 0, 7, 0, 129, 150, 0, 0, 0, 0, '', 'Show gossip menu 5855 text id 7027 if player must have reached 150 on skill First Aid.'),
(14, 5855, 7028, 0, 0, 7, 0, 129, 150, 0, 1, 0, 0, '', 'Show gossip menu 5855 text id 7028 if player must not have reached 150 on skill First Aid.');