diff options
author | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2012-02-21 20:21:31 +0100 |
---|---|---|
committer | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2012-02-21 20:21:57 +0100 |
commit | a6bfce2e1a6fbb969ff870873175b70d7556fd3f (patch) | |
tree | 76521681dee9673c0bcdd442de17bddb175b6f37 | |
parent | 18948755ca025e2ded03443e0812efd7e02598ad (diff) |
DB/Loot: Add loot to Crown <name>
Closes #5248
-rw-r--r-- | sql/updates/world/2012_02_21_01_world_creature_loot_template.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/2012_02_21_01_world_creature_loot_template.sql b/sql/updates/world/2012_02_21_01_world_creature_loot_template.sql new file mode 100644 index 00000000000..32fce3ab187 --- /dev/null +++ b/sql/updates/world/2012_02_21_01_world_creature_loot_template.sql @@ -0,0 +1,11 @@ +UPDATE `creature_template` SET `lootid`=`entry` WHERE `entry` IN (38340,38341,38342,38032,37917,38016,38023,37214,38030,38006,37984); +DELETE FROM `creature_loot_template` WHERE `entry`IN (38032,37917,38016,38023,37214,38030,38006,37984); +INSERT INTO `creature_loot_template` (`entry`, `item`, `ChanceOrQuestChance`, `lootmode`, `groupid`, `mincountOrRef`, `maxcount`) VALUES +(38032,1,100,1,0,-45009,1), -- Crown Sprayer +(37917,1,100,1,0,-45009,1), -- Crown Thug +(38016,1,100,1,0,-45009,1), -- Crown Agent +(38023,1,100,1,0,-45009,1), -- Crown Sprinkler +(37214,1,100,1,0,-45009,1), -- Crown Lackey +(38030,1,100,1,0,-45009,1), -- Crown Underling +(38006,1,100,1,0,-45009,1), -- Crown Hoodlum (level 1??) +(37984,1,100,1,0,-45009,1); -- Crown Duster (level 1??) |