diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2014-03-04 18:20:31 +0100 |
---|---|---|
committer | Aokromes <Aokromes@users.noreply.github.com> | 2014-03-04 18:20:31 +0100 |
commit | db3c4b3072a7b49652a2ef8876a59b62c9ce017f (patch) | |
tree | 9171ecfd847f4bff3847bef7d20e8d5883ba5700 | |
parent | 437b97fe73d536bc049813e61a97a8f6d58b65af (diff) |
DB/Loot: Harbinger Skyriss
By MitchesD, closes #11670
-rw-r--r-- | sql/updates/world/2014_03_04_00_creature_loot_template.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/2014_03_04_00_creature_loot_template.sql b/sql/updates/world/2014_03_04_00_creature_loot_template.sql new file mode 100644 index 00000000000..4f67d98b4ac --- /dev/null +++ b/sql/updates/world/2014_03_04_00_creature_loot_template.sql @@ -0,0 +1,13 @@ +-- +DELETE FROM `creature_loot_template` WHERE `entry` IN(21601,21599); +INSERT INTO `creature_loot_template` VALUES +(21601, 23572, 100, 1, 0, 1, 1), +(21601, 25004, 100, 1, 2, -25004, 1), +(21601, 25005, 100, 1, 3, -25005, 1), +(21601, 29434, 100, 1, 0, 1, 1), +(21601, 33861, -100, 1, 0, 1, 1), +(21601, 43000, 10, 1, 1, -43000, 1), +(21601, 43003, 100, 1, 4, -43003, 1); + +UPDATE `creature_template` SET `lootid`=21601, `questItem1`=33861 WHERE `entry`=21601; +UPDATE `creature_template` SET `lootid`=0, `questItem1`=0 WHERE `entry`=21599; |