fix(DB/Quest): Gruesome, But Necessary correct giblet and conditions (#23852)

Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
Co-authored-by: Ryan Turner <16946913+TheSCREWEDSoftware@users.noreply.github.com>
Co-authored-by: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com>
This commit is contained in:
blinkysc
2025-12-26 14:28:21 -06:00
committed by GitHub
parent 807c1135c4
commit 6d8d61a8a0

View File

@@ -0,0 +1,11 @@
-- Winterskorn Vrykul Dismembering Bunny should only be giblet
DELETE FROM `creature_template_model` WHERE `CreatureID` = 24095;
INSERT INTO `creature_template_model` (`CreatureID`, `Idx`, `CreatureDisplayID`, `DisplayScale`, `Probability`, `VerifiedBuild`) VALUES
(24095, 0, 1126, 1, 0, 51831),
(24095, 1, 25628, 1, 1, 51831);
-- Conditions
DELETE FROM `conditions` WHERE `SourceEntry` = 43036 AND `SourceTypeOrReferenceId` = 17;
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(17, 0, 43036, 0, 0, 1, 1, 43059, 0, 0, 1, 0, 0, '', 'Spell 43036 (Dismembering Corpse) - Target must not already be transformed'),
(17, 0, 43036, 0, 0, 36, 1, 0, 0, 0, 1, 0, 0, '', 'Spell 43036 (Dismembering Corpse) - Explicit target must be dead');