diff options
author | DanVS <DanVS@users.noreply.github.com> | 2018-09-24 16:38:44 +0200 |
---|---|---|
committer | Killyana <morphone1@gmail.com> | 2018-09-24 16:38:44 +0200 |
commit | 917b04be699e6b4df64af065264fdb40019969b7 (patch) | |
tree | 4875eea6089209d4477e87999254154276d970e3 | |
parent | 135aed62a844d1af62fa1034b81173b8c1af811a (diff) |
DB/Loot: Frenzied Geist and Tunneling Ghoul
Closes #22509
Closes #22508
-rw-r--r-- | sql/updates/world/3.3.5/2018_09_24_00_world.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2018_09_24_00_world.sql b/sql/updates/world/3.3.5/2018_09_24_00_world.sql new file mode 100644 index 00000000000..dedea198f7a --- /dev/null +++ b/sql/updates/world/3.3.5/2018_09_24_00_world.sql @@ -0,0 +1,15 @@ +-- Frenzied Geist (28419) +DELETE FROM `creature_loot_template` WHERE `Entry`=28419 AND `Item` IN (43507,43508,43509,43510); +INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`,`Comment`) VALUES +(28419,43507,0,0.1,0,1,0,1,1,''), +(28419,43508,0,0.1,0,1,0,1,1,''), +(28419,43509,0,0.1,0,1,0,1,1,''), +(28419,43510,0,0.1,0,1,0,1,1,''); + +-- Tunneling Ghoul (24084) +DELETE FROM `creature_loot_template` WHERE `Entry`=24084 AND `Item` IN (43507,43508,43509,43510); +INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`,`Comment`) VALUES +(24084,43507,0,0.1,0,1,0,1,1,''), +(24084,43508,0,0.1,0,1,0,1,1,''), +(24084,43509,0,0.1,0,1,0,1,1,''), +(24084,43510,0,0.1,0,1,0,1,1,''); |