diff options
author | Teppic1 <Teppic1@users.noreply.github.com> | 2018-02-08 17:25:03 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-06-19 23:33:24 +0200 |
commit | 51a4b603530284058608330ef3283a4a6a076e96 (patch) | |
tree | 0ca2643cdc8d5fabf46e98f0915fe07bb8b35aae /sql | |
parent | 9b7f3bff9f6759869cfccbc5da4e8959ac1d019c (diff) |
DB/Loot: Reference template 24060 corrections
Closes #21363
(cherry picked from commit c49003ac8b64ca1ca27ee83b7bcd820c75a246b6)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2021_06_19_05_world_2018_02_08_00_world_335.sql | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_06_19_05_world_2018_02_08_00_world_335.sql b/sql/updates/world/master/2021_06_19_05_world_2018_02_08_00_world_335.sql new file mode 100644 index 00000000000..7fa291e2486 --- /dev/null +++ b/sql/updates/world/master/2021_06_19_05_world_2018_02_08_00_world_335.sql @@ -0,0 +1,16 @@ +-- Remove unique items from reference table 24060, as well as removing Agile Boots (4788) which is sold only and does not drop +DELETE FROM `reference_loot_template` WHERE `Entry`=24060 AND `Item` IN (1218, 1220, 1296, 1300, 1448, 1460, 1934, 2021, 2166, 2167, 2168, 3018, 3227, 4788, 4949, 5182, 5183); + +-- Add former items from reference table 24060 to their proper NPCs, as well as removing 4788 which is sold only and does not drop +DELETE FROM `creature_loot_template` WHERE `Item` IN (1218, 1220, 1296, 1300, 1448, 1460, 1934, 2021, 2166, 2167, 2168, 3018, 3227, 4788, 4949, 5182, 5183); +INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Chance`,`GroupId`,`Comment`) VALUES +(580, 1220, 0.1, 0, "Redridge Drudger - Lupine Axe"), +(437, 1296, 0.1, 0, "Blackrock Renegade - Blackrock Mace"), +(4065, 1296, 0.1, 0, "Blackrock Sentry - Blackrock Mace"), +(485, 1448, 0.1, 0, "Blackrock Outrunner - Blackrock Gauntlets"), +(626, 2166, 2, 2, "Foreman Thistlenettle - Foreman's Leggings"), +(626, 2167, 2, 2, "Foreman Thistlenettle - Foreman's Gloves"), +(626, 2168, 2, 2, "Foreman Thistlenettle - Corpse Rompers"), +(7170, 4949, 100, 0, "Thragomm - Orcish Cleaver"), +(3398, 5182, 2, 2, "Gesharahan - Shiver Blade"), +(3398, 5183, 2, 2, "Gesharahan - Pulsating Hydra Heart"); |