mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-18 11:25:42 +00:00
6224
data/sql/updates/db_world/2025_07_12_01.sql
Normal file
6224
data/sql/updates/db_world/2025_07_12_01.sql
Normal file
File diff suppressed because it is too large
Load Diff
13
data/sql/updates/db_world/2025_07_12_02.sql
Normal file
13
data/sql/updates/db_world/2025_07_12_02.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
-- DB update 2025_07_12_01 -> 2025_07_12_02
|
||||
--
|
||||
-- Creates the reference loot (40110) for Haunted Memento (40110)
|
||||
DELETE FROM `reference_loot_template` WHERE `Entry` = 40110 AND `Item` = 40110;
|
||||
INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(40110, 40110, 0, 100, 0, 1, 1, 1, 1, 'Scourge Invasion Event - Item: Haunted Memento');
|
||||
|
||||
-- Adds the reference loot (40110) above for the Haunted Memento (40110) to Ghoul Berserker (16141), Skeletal Shocktrooper (16298) and Spectral Soldier (16299)
|
||||
DELETE FROM `creature_loot_template` WHERE `Entry` IN (16141, 16298, 16299) AND `Item` = 40110 AND `Reference` = 40110;
|
||||
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(16141, 40110, 40110, 2, 0, 1, 1, 1, 1, 'Reference Loot: Scourge Invasion Event - Item: Haunted Memento'),
|
||||
(16298, 40110, 40110, 2, 0, 1, 1, 1, 1, 'Reference Loot: Scourge Invasion Event - Item: Haunted Memento'),
|
||||
(16299, 40110, 40110, 2, 0, 1, 1, 1, 1, 'Reference Loot: Scourge Invasion Event - Item: Haunted Memento');
|
||||
Reference in New Issue
Block a user