chore(DB): import pending files

Referenced commit(s): e043f0356d
This commit is contained in:
github-actions[bot]
2026-04-29 00:37:40 +00:00
parent 5beb53e7b5
commit ace204810f
2 changed files with 2 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
-- DB update 2026_04_29_03 -> 2026_04_29_04
--
-- Unit flags observed: 8, 2304 (256 | 2048)
-- +256 IMMUNE_TO_PC - disables combat/assistance with PlayerCharacters (PC)
-- +2048 PET_IN_COMBAT
UPDATE `creature_template` SET `faction` = 2101, `unit_flags` = 256, `unit_flags2` = 2048 WHERE (`entry` IN (32343, 32342, 32324, 32321));
UPDATE `creature_template` SET `faction` = 1770, `unit_flags` = 256, `unit_flags2` = 2048 WHERE (`entry` IN (32322, 32341, 32340, 32325));

View File

@@ -0,0 +1,13 @@
-- DB update 2026_04_29_04 -> 2026_04_29_05
--
-- Sartharion 25M drops 2x T7.5 Gloves
SET @REF := 34377;
DELETE FROM `creature_loot_template` WHERE (`Entry` = 31311) AND (`Item` IN (5, 40628, 40629, 40630));
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(31311, 5, -@REF, 100, 0, 1, 0, 2, 2, 'Sartharion (1) - (ReferenceTable)');
DELETE FROM `reference_loot_template` WHERE (`Entry` = @REF) AND (`Item` IN (40752, 40628, 40629, 40630));
INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(@REF, 40628, 0, 0, 0, 1, 1, 1, 1, 'T7.5 Gloves Token'),
(@REF, 40629, 0, 0, 0, 1, 1, 1, 1, 'T7.5 Gloves Token'),
(@REF, 40630, 0, 0, 0, 1, 1, 1, 1, 'T7.5 Gloves Token');