设置物品掉落

目录

creature_loot_template | gameobject_loot_template | item_loot_template:掉落表

reference_loot_template:掉落池

应用举例


creature_loot_template | gameobject_loot_template | item_loot_template 掉落表

creature_loot_template 用于设置生物(creature)的物品掉落
gameobject_loot_template 用于设置游戏对象(gameobject)的物品掉落
item_loot_template 用于设置除前两者之外的物品掉落(如箱子、袋子等)

  • Entry 物品(掉落池)掉落编号
    • creature_loot_template 为 creature 的 Entry 或 GUID
    • gameobject_loot_template 为gameobject 的 Entry 或 GUID
    • item_loot_template 为item 的 Entry,或 reference_loot_template 的 Entry
  • Item 物品编号
    • 6.0以前为 item_template.entry,6.0以后item数据封装到Item.db2中
    • 设置为掉落池时为 reference_loot_template.Entry
  • Reference 掉落池编号(10.2.7以前适用)
    • reference_loot_template 表读取掉落数据合并到当前的掉落列表
  • ItemType 掉落类型(11.0以后适用)
    • 0:Item
    • 1:Reference
    • 2:Currency
  • Chance 掉落几率(0-100)
    • 当 groupId = 0 时为当前物品掉落几率
    • 当 groupId>0 时为每组掉落组的掉落几率
    • 特别注意:此处 Chance = 0 时,无论掉落池内 Chance 字段设置为多少,当前物品(掉落池内物品)均无法掉落
  • QuestRequired
    • 字段值为 0 时表示非任务所需物品
    • 字段值为 1 时表示任务所需物品
    • 当设置为1时,未接到任务前,此任务物品不会掉落,只有在接到任务且该任务 quest_template.RequiredItemId[1-6] 字段(高版本为 quest_objectives.ObjectID 字段,quest_objectives.type=1)里包含该任务物品的编号,且已收集的物品数量比任务目标数量少时,掉落才会生效
  • LootMode 掉落模式,取值参考源码 SharedDefines.hLootModes 定义
LootModeMaskValueComment

LOOT_MODE_DEFAULT

0x11默认值
LOOT_MODE_HARD_MODE_10x22
LOOT_MODE_HARD_MODE_20x44
LOOT_MODE_HARD_MODE_30x88
LOOT_MODE_HARD_MODE_40x1016
LOOT_MODE_JUNK_FISH0x800032768
  • GroupId 掉落组
    • GroupId = 0 时,为独立掉落,GroupId>0时,为分组掉落
    • 分组掉落时,相同 GroupId 内所有 chance 加起来不能超过100,否则服务端红字报错
    • 服务端隐藏设定,一个对象掉落的物品最多不能超过16,超过部分不会掉落
  • MinCount 最小掉落数量

    • groupId = 0 时,为当前物品(掉落池)掉落的最小数量
    • groupId>0 时,为每组掉落组内物品掉落的最小数量
  • MaxCount 最大掉落数量

    • groupId = 0 时为当前物品(掉落池)掉落的最大数量
    • groupId>0 时为每组掉落组内物品掉落的最大数量

reference_loot_template 掉落池

  • Entry 掉落池编号
  • Reference 掉落池编号,可嵌套其他掉落池数据合并到当前的掉落池列表(10.2.7以前适用)
  • Chance 物品相对掉落池的掉落(0-100)
  • GroupId 掉落组
    • GroupId = 0时,为独立掉落,GroupId>0时,为分组掉落
    • 分组掉落时,相同 GroupId 内所有 chance 加起来不能超过100,否则服务端红字报错

应用举例

例1(11.0之前适用)

以艾索雷葛斯为例,其 creature_templete.entry = 6109,如想按以下设定掉落

  • 独立掉落1件任务物品,掉落几率为60%
  • 分组掉落:30%几率在两个紫色图纸中随机掉落1个紫色图纸,60%几率在6件紫色装备中随机掉落1-2件紫装,100%几率在6件蓝色装备中随机掉落1-2件蓝装
  • creature_loot_template 表设置:
  • ItemReferenceEntryChanceQuestRequiredLootModeGroupIdMinCountMaxCountComment
    18704061096011011任务物品
    3400434004610910001012蓝装
    340053400561096001012紫装
    340063400661093001011图纸
  • reference_loot_template 表设置:
  • EntryItemReferenceChanceQuestRequiredLootModeGroupIdMinCountMaxCountComment
    34004130000001111蓝装
    34004130010001111蓝装
    34004130020001111蓝装
    34004130040001111蓝装
    34004130060001111蓝装
    34004130070001111蓝装
    34005182020001111紫装
    34005182080001111紫装
    34005185410001111紫装
    34005185420001111紫装
    34005185450001111紫装
    34005185470001111紫装
    34006127170001111图纸
    34006127280001111图纸
例2(11.0之后适用)
  • 实例1:掉落组中设置单个任务物品掉落
DELETE FROM `world`.`gameobject_loot_template` WHERE `Entry` IN (27556,27557) AND `Item` IN (49100,49102);
INSERT INTO `world`.`gameobject_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(27556, 0, 49100, 65, 0, 1, 1, 1, 1, 'Illegible Tablet Fragment - Ancient Tablet Fragment'),
(27556, 0, 49102, 35, 1, 1, 1, 1, 1, 'Ancient Tablet Fragment - Ancient Tablet Fragment');
  • 实例2:利用掉落池设置多个任务物品掉落
DELETE FROM `world`.`creature_loot_template` WHERE `Entry` = 46773 AND `Item` IN (62594,62595,62596,62597);
INSERT INTO `world`.`creature_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(46773, 1, 46773, 85, 1, 1, 0, 1, 1, 'Explorers\' League Excavator');
INSERT INTO `world`.`reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(46773, 0, 62594, 0, 1, 1, 1, 1, 1, 'Broken Chalice - Explorers\' League Excavator'),
(46773, 0, 62595, 0, 1, 1, 1, 1, 1, 'Broken Chalice - Explorers\' League Excavator'),
(46773, 0, 62596, 0, 1, 1, 1, 1, 1, 'Broken Chalice - Explorers\' League Excavator'),
(46773, 0, 62597, 0, 1, 1, 1, 1, 1, 'Broken Chalice - Explorers\' League Excavator');
  • 实例3:熔火之心掉落修复(TC master branch)
-- 409 MoltenCore (DIFFICULTY_40 = 9)

DELETE FROM `world`.`creature_loot_template` WHERE `Entry` IN (12118,11982,12259,12057,12264,12056,12098,11988,12018,11502);
DELETE FROM `world`.`reference_loot_template` WHERE `Entry` IN (34002,34011,34012,34013,34014,34015,34026,34027,34028,34029,34030);
DELETE FROM `world`.`reference_loot_template` WHERE `Entry` BETWEEN 30001 AND 30039;
UPDATE `world`.`creature` SET `zoneId` = 2717, `areaId` = 2717 WHERE `id` IN (11658,11659,11661,11662,11665,11666,11667,11668,11669,11671,11672,11673,12076,12099,12100,12101,12119);
UPDATE `world`.`creature` SET `zoneId` = 2717, `areaId` = 2717 WHERE `id` IN (12118,11982,12259,12057,12264,12056,12098,11988,12018,11502);
UPDATE `world`.`creature_template_difficulty` SET `DifficultyID` = 9, `ContentTuningID` = 1004 WHERE `DifficultyID` = 1 AND `Entry` IN (11658,11659,11661,11662,11665,11666,11667,11668,11669,11671,11672,11673,12076,12099,12100,12101,12119);
UPDATE `world`.`creature_template_difficulty` SET `DifficultyID` = 9, `ContentTuningID` = 1004 WHERE `DifficultyID` = 1 AND `Entry` IN (12118,11982,12259,12057,12264,12056,12098,11988,12018,11502);
 -- Reference
INSERT INTO `world`.`reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(34011, 0, 18252, 0, 0, 1, 1, 1, 1, 'MoltenCore - Blueprint - Pattern: Core Armor Kit'),
(34011, 0, 18257, 0, 0, 1, 1, 1, 1, 'MoltenCore - Blueprint - Recipe: Major Rejuvenation Potion'),
(34011, 0, 18259, 0, 0, 1, 1, 1, 1, 'MoltenCore - Blueprint - Formula: Enchant Weapon - Spellpower'),
(34011, 0, 18260, 0, 0, 1, 1, 1, 1, 'MoltenCore - Blueprint - Formula: Enchant Weapon - Healing Power'),
(34011, 0, 18264, 0, 0, 1, 1, 1, 1, 'MoltenCore - Blueprint - Plans: Elemental Sharpening Stone'),
(34011, 0, 18265, 0, 0, 1, 1, 1, 1, 'MoltenCore - Blueprint - Pattern: Flarecore Wraps'),
(34011, 0, 18290, 0, 0, 1, 1, 1, 1, 'MoltenCore - Blueprint - Schematic: Biznicks 247x128 Accurascope'),
(34011, 0, 18291, 0, 0, 1, 1, 1, 1, 'MoltenCore - Blueprint - Schematic: Force Reactive Disk'),
(34011, 0, 18292, 0, 0, 1, 1, 1, 1, 'MoltenCore - Blueprint - Schematic: Core Marksman Rifle'),
(34011, 0, 21371, 0, 0, 1, 1, 1, 1, 'MoltenCore - Blueprint - Pattern: Core Felcloth Bag');
 -- Boss 01 Lucifron (12118)
INSERT INTO `world`.`creature_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(12118, 0, 17329, 100, 1, 1, 0, 1, 1, 'Lucifron - Quest - Hand of Lucifron'),
(12118, 0, 20951, 100, 1, 1, 0, 1, 1, 'Lucifron - Quest - Narain\'s Scrying Goggles'),
(12118, 1, 30001, 100, 0, 1, 0, 1, 1, 'Lucifron - Armor'),
(12118, 1, 30001, 50, 0, 1, 0, 1, 1, 'Lucifron - Armor'),
(12118, 1, 30002, 100, 0, 1, 0, 1, 1, 'Lucifron - Armor - Set'),
(12118, 1, 30002, 50, 0, 1, 0, 1, 1, 'Lucifron - Armor - Set'),
(12118, 1, 30003, 25, 0, 1, 0, 1, 1, 'Lucifron - Weapon'),
(12118, 1, 30004, 25, 0, 1, 0, 1, 1, 'Lucifron - Jewelry'),
(12118, 1, 34011, 5, 0, 1, 0, 1, 1, 'Lucifron - Blueprint');
INSERT INTO `world`.`reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(30001, 0, 18861, 0, 0, 1, 1, 1, 1, 'Lucifron - Armor - Flamewaker Legplates'),
(30001, 0, 18870, 0, 0, 1, 1, 1, 1, 'Lucifron - Armor - Helm of the Lifegiver'),
(30001, 0, 18872, 0, 0, 1, 1, 1, 1, 'Lucifron - Armor - Manastorm Leggings'),
(30001, 0, 18875, 0, 0, 1, 1, 1, 1, 'Lucifron - Armor - Salamander Scale Pants'),
(30001, 0, 19145, 0, 0, 1, 1, 1, 1, 'Lucifron - Armor - Robe of Volatile Power'),
(30001, 0, 19146, 0, 0, 1, 1, 1, 1, 'Lucifron - Armor - Wristguards of Stability'),
(30002, 0, 16800, 0, 0, 1, 1, 1, 1, 'Lucifron - Armor - Set - Arcanist Boots'),
(30002, 0, 16805, 0, 0, 1, 1, 1, 1, 'Lucifron - Armor - Set - Felheart Gloves'),
(30002, 0, 16829, 0, 0, 1, 1, 1, 1, 'Lucifron - Armor - Set - Cenarion Boots'),
(30002, 0, 16837, 0, 0, 1, 1, 1, 1, 'Lucifron - Armor - Set - Earthfury Boots'),
(30002, 0, 16859, 0, 0, 1, 1, 1, 1, 'Lucifron - Armor - Set - Lawbringer Boots'),
(30002, 0, 16863, 0, 0, 1, 1, 1, 1, 'Lucifron - Armor - Set - Gauntlets of Might'),
(30003, 0, 17077, 0, 0, 1, 1, 1, 1, 'Lucifron - Weapon - Crimson Shocker'),
(30003, 0, 18878, 0, 0, 1, 1, 1, 1, 'Lucifron - Weapon - Sorcerous Dagger'),
(30004, 0, 17109, 0, 0, 1, 1, 1, 1, 'Lucifron - Jewelry - Choker of Enlightenment'),
(30004, 0, 18879, 0, 0, 1, 1, 1, 1, 'Lucifron - Jewelry - Heavy Dark Iron Ring'),
(30004, 0, 19147, 0, 0, 1, 1, 1, 1, 'Lucifron - Jewelry - Ring of Spell Power');
 -- Boss 02 Magmadar (11982)
INSERT INTO `world`.`creature_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(11982, 0, 20951, 100, 1, 1, 0, 1, 1, 'Magmadar - Quest - Narain\'s Scrying Goggles'),
(11982, 0, 93034, 20, 0, 1, 0, 1, 1, 'Magmadar - Battle Pets - Blazing Rune'),
(11982, 1, 30005, 100, 0, 1, 0, 1, 1, 'Magmadar - Armor'),
(11982, 1, 30005, 50, 0, 1, 0, 1, 1, 'Magmadar - Armor'),
(11982, 1, 30006, 100, 0, 1, 0, 1, 1, 'Magmadar - Armor - Set'),
(11982, 1, 30006, 50, 0, 1, 0, 1, 1, 'Magmadar - Armor - Set'),
(11982, 1, 30007, 25, 0, 1, 0, 1, 1, 'Magmadar - Weapon'),
(11982, 1, 30008, 25, 0, 1, 0, 1, 1, 'Magmadar - Jewelry'),
(11982, 1, 34011, 5, 0, 1, 0, 1, 1, 'Magmadar - Blueprint');
INSERT INTO `world`.`reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(30005, 0, 18823, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Aged Core Leather Gloves'),
(30005, 0, 18824, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Magma Tempered Boots'),
(30005, 0, 18829, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Deep Earth Spaulders'),
(30005, 0, 18861, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Flamewaker Legplates'),
(30005, 0, 19136, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Mana Igniting Cord'),
(30005, 0, 19143, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Flameguard Gauntlets'),
(30005, 0, 19144, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Sabatons of the Flamewalker'),
(30006, 0, 16796, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Set - Arcanist Leggings'),
(30006, 0, 16810, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Set - Felheart Pants'),
(30006, 0, 16814, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Set - Pants of Prophecy'),
(30006, 0, 16822, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Set - Nightslayer Pants'),
(30006, 0, 16835, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Set - Cenarion Leggings'),
(30006, 0, 16843, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Set - Earthfury Legguards'),
(30006, 0, 16847, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Set - Giantstalker\'s Leggings'),
(30006, 0, 16855, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Set - Lawbringer Legplates'),
(30006, 0, 16867, 0, 0, 1, 1, 1, 1, 'Magmadar - Armor - Set - Legplates of Might'),
(30007, 0, 17069, 0, 0, 1, 1, 1, 1, 'Magmadar - Weapon - Striker\'s Mark'),
(30007, 0, 17073, 0, 0, 1, 1, 1, 1, 'Magmadar - Weapon - Earthshaker'),
(30007, 0, 18202, 0, 0, 1, 1, 1, 1, 'Magmadar - Weapon - Eskhandar\'s Left Claw'),
(30007, 0, 18203, 0, 0, 1, 1, 1, 1, 'Magmadar - Weapon - Eskhandar\'s Right Claw'),
(30007, 0, 18822, 0, 0, 1, 1, 1, 1, 'Magmadar - Weapon - Obsidian Edged Blade'),
(30007, 0, 19142, 0, 0, 1, 1, 1, 1, 'Magmadar - Weapon - Fire Runed Grimoire'),
(30008, 0, 17065, 0, 0, 1, 1, 1, 1, 'Magmadar - Jewelry - Medallion of Steadfast Might'),
(30008, 0, 18820, 0, 0, 1, 1, 1, 1, 'Magmadar - Jewelry - Talisman of Ephemeral Power'),
(30008, 0, 18821, 0, 0, 1, 1, 1, 1, 'Magmadar - Jewelry - Quick Strike Ring');
 -- Boss 03 Gehennas (12259)
INSERT INTO `world`.`creature_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(12259, 0, 17331, 100, 1, 1, 0, 1, 1, 'Gehennas - Quest - Hand of Gehennas'),
(12259, 0, 20951, 100, 1, 1, 0, 1, 1, 'Gehennas - Quest - Narain\'s Scrying Goggles'),
(12259, 1, 30009, 100, 0, 1, 0, 1, 1, 'Gehennas - Armor'),
(12259, 1, 30009, 50, 0, 1, 0, 1, 1, 'Gehennas - Armor'),
(12259, 1, 30010, 100, 0, 1, 0, 1, 1, 'Gehennas - Armor - Set'),
(12259, 1, 30010, 50, 0, 1, 0, 1, 1, 'Gehennas - Armor - Set'),
(12259, 1, 30011, 25, 0, 1, 0, 1, 1, 'Gehennas - Weapon'),
(12259, 1, 30012, 25, 0, 1, 0, 1, 1, 'Gehennas - Jewelry'),
(12259, 1, 34011, 5, 0, 1, 0, 1, 1, 'Gehennas - Blueprint');
INSERT INTO `world`.`reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(30009, 0, 19146, 0, 0, 1, 1, 1, 1, 'Gehennas - Armor - Wristguards of Stability'),
(30009, 0, 18861, 0, 0, 1, 1, 1, 1, 'Gehennas - Armor - Flamewaker Legplates'),
(30009, 0, 18870, 0, 0, 1, 1, 1, 1, 'Gehennas - Armor - Helm of the Lifegiver'),
(30009, 0, 18872, 0, 0, 1, 1, 1, 1, 'Gehennas - Armor - Manastorm Leggings'),
(30009, 0, 18875, 0, 0, 1, 1, 1, 1, 'Gehennas - Armor - Salamander Scale Pants'),
(30009, 0, 19145, 0, 0, 1, 1, 1, 1, 'Gehennas - Armor - Robe of Volatile Power'),
(30010, 0, 16812, 0, 0, 1, 1, 1, 1, 'Gehennas - Armor - Set - Gloves of Prophecy'),
(30010, 0, 16826, 0, 0, 1, 1, 1, 1, 'Gehennas - Armor - Set - Nightslayer Gloves'),
(30010, 0, 16839, 0, 0, 1, 1, 1, 1, 'Gehennas - Armor - Set - Earthfury Gauntlets'),
(30010, 0, 16849, 0, 0, 1, 1, 1, 1, 'Gehennas - Armor - Set - Giantstalker\'s Boots'),
(30010, 0, 16860, 0, 0, 1, 1, 1, 1, 'Gehennas - Armor - Set - Lawbringer Gauntlets'),
(30010, 0, 16862, 0, 0, 1, 1, 1, 1, 'Gehennas - Armor - Set - Sabatons of Might'),
(30011, 0, 17077, 0, 0, 1, 1, 1, 1, 'Gehennas - Weapon - Crimson Shocker'),
(30011, 0, 18878, 0, 0, 1, 1, 1, 1, 'Gehennas - Weapon - Sorcerous Dagger'),
(30012, 0, 18879, 0, 0, 1, 1, 1, 1, 'Gehennas - Jewelry - Heavy Dark Iron Ring'),
(30012, 0, 19147, 0, 0, 1, 1, 1, 1, 'Gehennas - Jewelry - Ring of Spell Power');
 -- Boss 04 Garr (12057)
INSERT INTO `world`.`creature_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(12057, 0, 18564, 2, 0, 1, 0, 1, 1, 'Garr - Quest - Bindings of the Windseeker (The Right Half of Thunderaan\'s Eternal Prison)'),
(12057, 0, 20951, 100, 1, 1, 0, 1, 1, 'Garr - Quest - Narain\'s Scrying Goggles'),
(12057, 1, 30013, 100, 0, 1, 0, 1, 1, 'Garr - Armor'),
(12057, 1, 30013, 50, 0, 1, 0, 1, 1, 'Garr - Armor'),
(12057, 1, 30014, 100, 0, 1, 0, 1, 1, 'Garr - Armor - Set'),
(12057, 1, 30014, 50, 0, 1, 0, 1, 1, 'Garr - Armor - Set'),
(12057, 1, 30015, 25, 0, 1, 0, 1, 1, 'Garr - Weapon'),
(12057, 1, 30016, 25, 0, 1, 0, 1, 1, 'Garr - Jewelry'),
(12057, 1, 34011, 5, 0, 1, 0, 1, 1, 'Garr - Blueprint');
INSERT INTO `world`.`reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(30013, 0, 18823, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Aged Core Leather Gloves'),
(30013, 0, 18824, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Magma Tempered Boots'),
(30013, 0, 18829, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Deep Earth Spaulders'),
(30013, 0, 18861, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Flamewaker Legplates'),
(30013, 0, 19136, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Mana Igniting Cord'),
(30013, 0, 19143, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Flameguard Gauntlets'),
(30013, 0, 19144, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Sabatons of the Flamewalker'),
(30014, 0, 16795, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Set - Arcanist Crown'),
(30014, 0, 16808, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Set - Felheart Horns'),
(30014, 0, 16813, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Set - Circlet of Prophecy'),
(30014, 0, 16821, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Set - Nightslayer Cover'),
(30014, 0, 16834, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Set - Cenarion Helm'),
(30014, 0, 16842, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Set - Earthfury Helmet'),
(30014, 0, 16846, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Set - Giantstalker\'s Helmet'),
(30014, 0, 16854, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Set - Lawbringer Helm'),
(30014, 0, 16866, 0, 0, 1, 1, 1, 1, 'Garr - Armor - Set - Helm of Might'),
(30015, 0, 17066, 0, 0, 1, 1, 1, 1, 'Garr - Weapon - Drillborer Disk'),
(30015, 0, 17071, 0, 0, 1, 1, 1, 1, 'Garr - Weapon - Gutgore Ripper'),
(30015, 0, 17105, 0, 0, 1, 1, 1, 1, 'Garr - Weapon - Aurastone Hammer'),
(30015, 0, 18822, 0, 0, 1, 1, 1, 1, 'Garr - Weapon - Obsidian Edged Blade'),
(30015, 0, 18832, 0, 0, 1, 1, 1, 1, 'Garr - Weapon - Brutality Blade'),
(30015, 0, 19142, 0, 0, 1, 1, 1, 1, 'Garr - Weapon - Fire Runed Grimoire'),
(30016, 0, 18820, 0, 0, 1, 1, 1, 1, 'Garr - Jewelry - Talisman of Ephemeral Power'),
(30016, 0, 18821, 0, 0, 1, 1, 1, 1, 'Garr - Jewelry - Quick Strike Ring');
 -- Boss 05 Shazzrah (12264)
INSERT INTO `world`.`creature_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(12264, 0, 17332, 100, 1, 1, 0, 1, 1, 'Shazzrah - Quest - Hand of Shazzrah'),
(12264, 0, 20951, 100, 1, 1, 0, 1, 1, 'Shazzrah - Quest - Narain\'s Scrying Goggles'),
(12264, 1, 30017, 100, 0, 1, 0, 1, 1, 'Shazzrah - Armor'),
(12264, 1, 30017, 50, 0, 1, 0, 1, 1, 'Shazzrah - Armor'),
(12264, 1, 30018, 100, 0, 1, 0, 1, 1, 'Shazzrah - Armor - Set'),
(12264, 1, 30018, 50, 0, 1, 0, 1, 1, 'Shazzrah - Armor - Set'),
(12264, 1, 30019, 25, 0, 1, 0, 1, 1, 'Shazzrah - Weapon'),
(12264, 1, 30020, 25, 0, 1, 0, 1, 1, 'Shazzrah - Jewelry'),
(12264, 1, 34011, 5, 0, 1, 0, 1, 1, 'Shazzrah - Blueprint');
INSERT INTO `world`.`reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(30017, 0, 18861, 0, 0, 1, 1, 1, 1, 'Shazzrah - Armor - Flamewaker Legplates'),
(30017, 0, 18870, 0, 0, 1, 1, 1, 1, 'Shazzrah - Armor - Helm of the Lifegiver'),
(30017, 0, 18872, 0, 0, 1, 1, 1, 1, 'Shazzrah - Armor - Manastorm Leggings'),
(30017, 0, 18875, 0, 0, 1, 1, 1, 1, 'Shazzrah - Armor - Salamander Scale Pants'),
(30017, 0, 19145, 0, 0, 1, 1, 1, 1, 'Shazzrah - Armor - Robe of Volatile Power'),
(30017, 0, 19146, 0, 0, 1, 1, 1, 1, 'Shazzrah - Armor - Wristguards of Stability'),
(30018, 0, 16801, 0, 0, 1, 1, 1, 1, 'Shazzrah - Armor - Set - Arcanist Gloves'),
(30018, 0, 16803, 0, 0, 1, 1, 1, 1, 'Shazzrah - Armor - Set - Felheart Slippers'),
(30018, 0, 16811, 0, 0, 1, 1, 1, 1, 'Shazzrah - Armor - Set - Boots of Prophecy'),
(30018, 0, 16824, 0, 0, 1, 1, 1, 1, 'Shazzrah - Armor - Set - Nightslayer Boots'),
(30018, 0, 16831, 0, 0, 1, 1, 1, 1, 'Shazzrah - Armor - Set - Cenarion Gloves'),
(30018, 0, 16852, 0, 0, 1, 1, 1, 1, 'Shazzrah - Armor - Set - Giantstalker\'s Gloves'),
(30019, 0, 17077, 0, 0, 1, 1, 1, 1, 'Shazzrah - Weapon - Crimson Shocker'),
(30019, 0, 18878, 0, 0, 1, 1, 1, 1, 'Shazzrah - Weapon - Sorcerous Dagger'),
(30020, 0, 18879, 0, 0, 1, 1, 1, 1, 'Shazzrah - Jewelry - Heavy Dark Iron Ring'),
(30020, 0, 19147, 0, 0, 1, 1, 1, 1, 'Shazzrah - Jewelry - Ring of Spell Power');
 -- Boss 06 Baron Geddon (12056)
INSERT INTO `world`.`creature_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(12056, 0, 20951, 100, 1, 1, 0, 1, 1, 'Baron Geddon - Quest - Narain\'s Scrying Goggles'),
(12056, 0, 18563, 2, 0, 1, 0, 1, 1, 'Baron Geddon - Quest - Bindings of the Windseeker (The Left Half of Thunderaan\'s Eternal Prison)'),
(12056, 1, 30021, 100, 0, 1, 0, 1, 1, 'Baron Geddon - Armor'),
(12056, 1, 30021, 50, 0, 1, 0, 1, 1, 'Baron Geddon - Armor'),
(12056, 1, 30022, 100, 0, 1, 0, 1, 1, 'Baron Geddon - Armor - Set'),
(12056, 1, 30022, 50, 0, 1, 0, 1, 1, 'Baron Geddon - Armor - Set'),
(12056, 1, 30023, 25, 0, 1, 0, 1, 1, 'Baron Geddon - Weapon'),
(12056, 1, 30024, 25, 0, 1, 0, 1, 1, 'Baron Geddon - Jewelry'),
(12056, 1, 34011, 5, 0, 1, 0, 1, 1, 'Baron Geddon - Blueprint');
INSERT INTO `world`.`reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(30021, 0, 18823, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Armor - Aged Core Leather Gloves'),
(30021, 0, 18824, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Armor - Magma Tempered Boots'),
(30021, 0, 18829, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Armor - Deep Earth Spaulders'),
(30021, 0, 18861, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Armor - Flamewaker Legplates'),
(30021, 0, 19136, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Armor - Mana Igniting Cord'),
(30021, 0, 19143, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Armor - Flameguard Gauntlets'),
(30021, 0, 19144, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Armor - Sabatons of the Flamewalker'),
(30022, 0, 16797, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Armor - Set - Arcanist Mantle'),
(30022, 0, 16807, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Armor - Set - Felheart Shoulder Pads'),
(30022, 0, 16836, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Armor - Set - Cenarion Spaulders'),
(30022, 0, 16844, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Armor - Set - Earthfury Epaulets'),
(30022, 0, 16856, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Armor - Set - Lawbringer Spaulders'),
(30023, 0, 18822, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Weapon - Obsidian Edged Blade'),
(30023, 0, 19142, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Weapon - Fire Runed Grimoire'),
(30024, 0, 17110, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Jewelry - Seal of the Archmagus'),
(30024, 0, 18820, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Jewelry - Talisman of Ephemeral Power'),
(30024, 0, 18821, 0, 0, 1, 1, 1, 1, 'Baron Geddon - Jewelry - Quick Strike Ring');
 -- Boss 07 Sulfuron Harbinger (12098)
INSERT INTO `world`.`creature_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(12098, 0, 17330, 100, 1, 1, 0, 1, 1, 'Sulfuron Harbinger - Quest - Hand of Sulfuron'),
(12098, 0, 20951, 100, 1, 1, 0, 1, 1, 'Sulfuron Harbinger - Quest - Narain\'s Scrying Goggles'),
(12098, 0, 93033, 20, 0, 1, 0, 1, 1, 'Sulfuron Harbinger - Battle Pets - Mark of Flame'),
(12098, 1, 30025, 100, 0, 1, 0, 1, 1, 'Sulfuron Harbinger - Armor'),
(12098, 1, 30025, 50, 0, 1, 0, 1, 1, 'Sulfuron Harbinger - Armor'),
(12098, 1, 30026, 100, 0, 1, 0, 1, 1, 'Sulfuron Harbinger - Armor - Set'),
(12098, 1, 30026, 50, 0, 1, 0, 1, 1, 'Sulfuron Harbinger - Armor - Set'),
(12098, 1, 30027, 25, 0, 1, 0, 1, 1, 'Sulfuron Harbinger - Weapon'),
(12098, 1, 30028, 25, 0, 1, 0, 1, 1, 'Sulfuron Harbinger - Jewelry');
INSERT INTO `world`.`reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(30025, 0, 18861, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Armor - Flamewaker Legplates'),
(30025, 0, 18870, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Armor - Helm of the Lifegiver'),
(30025, 0, 18872, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Armor - Manastorm Leggings'),
(30025, 0, 18875, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Armor - Salamander Scale Pants'),
(30025, 0, 19145, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Armor - Robe of Volatile Power'),
(30025, 0, 19146, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Armor - Wristguards of Stability'),
(30026, 0, 16816, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Armor - Set - Mantle of Prophecy'),
(30026, 0, 16823, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Armor - Set - Nightslayer Shoulder Pads'),
(30026, 0, 16848, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Armor - Set - Giantstalker\'s Epaulets'),
(30026, 0, 16868, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Armor - Set - Pauldrons of Might'),
(30027, 0, 17074, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Weapon - Shadowstrike'),
(30027, 0, 17077, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Weapon - Crimson Shocker'),
(30027, 0, 18878, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Weapon - Sorcerous Dagger'),
(30028, 0, 18879, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Jewelry - Heavy Dark Iron Ring'),
(30028, 0, 19147, 0, 0, 1, 1, 1, 1, 'Sulfuron Harbinger - Jewelry - Ring of Spell Power');
 -- Boss 08 Golemagg the Incinerator (11988)
INSERT INTO `world`.`creature_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(11988, 0, 20951, 100, 1, 1, 0, 1, 1, 'Golemagg the Incinerator - Quest - Narain\'s Scrying Goggles'),
(11988, 0, 17203, 30, 0, 1, 0, 1, 1, 'Golemagg the Incinerator - Consumable - Sulfuron Ingot'),
(11988, 1, 30029, 100, 0, 1, 0, 1, 1, 'Golemagg the Incinerator - Armor'),
(11988, 1, 30029, 50, 0, 1, 0, 1, 1, 'Golemagg the Incinerator - Armor'),
(11988, 1, 30030, 100, 0, 1, 0, 1, 1, 'Golemagg the Incinerator - Armor - Set'),
(11988, 1, 30030, 50, 0, 1, 0, 1, 1, 'Golemagg the Incinerator - Armor - Set'),
(11988, 1, 30031, 25, 0, 1, 0, 1, 1, 'Golemagg the Incinerator - Weapon'),
(11988, 1, 30032, 25, 0, 1, 0, 1, 1, 'Golemagg the Incinerator - Jewelry'),
(11988, 1, 34011, 5, 0, 1, 0, 1, 1, 'Golemagg the Incinerator - Blueprint');
INSERT INTO `world`.`reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(30029, 0, 18823, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Aged Core Leather Gloves'),
(30029, 0, 18824, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Magma Tempered Boots'),
(30029, 0, 18829, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Deep Earth Spaulders'),
(30029, 0, 18861, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Flamewaker Legplates'),
(30029, 0, 19136, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Mana Igniting Cord'),
(30029, 0, 19143, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Flameguard Gauntlets'),
(30029, 0, 19144, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Sabatons of the Flamewalker'),
(30030, 0, 16798, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Set - Arcanist Robes'),
(30030, 0, 16809, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Set - Felheart Robes'),
(30030, 0, 16815, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Set - Robes of Prophecy'),
(30030, 0, 16820, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Set - Nightslayer Chestpiece'),
(30030, 0, 16833, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Set - Cenarion Vestments'),
(30030, 0, 16841, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Set - Earthfury Vestments'),
(30030, 0, 16845, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Set - Giantstalker\'s Breastplate'),
(30030, 0, 16853, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Set - Lawbringer Chestguard'),
(30030, 0, 16865, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Armor - Set - Breastplate of Might'),
(30031, 0, 17072, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Weapon - Blastershot Launcher'),
(30031, 0, 17103, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Weapon - Azuresong Mageblade'),
(30031, 0, 18822, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Weapon - Obsidian Edged Blade'),
(30031, 0, 18842, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Weapon - Staff of Dominance'),
(30031, 0, 19142, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Weapon - Fire Runed Grimoire'),
(30032, 0, 18820, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Jewelry - Talisman of Ephemeral Power'),
(30032, 0, 18821, 0, 0, 1, 1, 1, 1, 'Golemagg the Incinerator - Jewelry - Quick Strike Ring');
 -- Boss 09 Majordomo Executus (12018)
UPDATE `world`.`gameobject_template` SET `Data1` = 86190, `Data30` = 0 WHERE `entry` = 179703;
DELETE FROM `world`.`gameobject_loot_template` WHERE `Entry` = 86190;
INSERT INTO `world`.`gameobject_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(86190, 1, 30033, 100, 0, 1, 0, 1, 1, 'Cache of the Firelord - Armor'),
(86190, 1, 30033, 50, 0, 1, 0, 1, 1, 'Cache of the Firelord - Armor'),
(86190, 1, 30034, 25, 0, 1, 0, 1, 1, 'Cache of the Firelord - Weapon'),
(86190, 1, 30035, 25, 0, 1, 0, 1, 1, 'Cache of the Firelord - Jewelry');
INSERT INTO `world`.`reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(30033, 0, 18806, 0, 0, 1, 1, 1, 1, 'Cache of the Firelord - Armor - Core Forged Greaves'),
(30033, 0, 18808, 0, 0, 1, 1, 1, 1, 'Cache of the Firelord - Armor - Gloves of the Hypnotic Flame'),
(30033, 0, 18809, 0, 0, 1, 1, 1, 1, 'Cache of the Firelord - Armor - Sash of Whispered Secrets'),
(30033, 0, 18810, 0, 0, 1, 1, 1, 1, 'Cache of the Firelord - Armor - Wild Growth Spaulders'),
(30033, 0, 18811, 0, 0, 1, 1, 1, 1, 'Cache of the Firelord - Armor - Fireproof Cloak'),
(30033, 0, 18812, 0, 0, 1, 1, 1, 1, 'Cache of the Firelord - Armor - Wristguards of True Flight'),
(30033, 0, 19139, 0, 0, 1, 1, 1, 1, 'Cache of the Firelord - Armor - Fireguard Shoulders'),
(30034, 0, 18803, 0, 0, 1, 1, 1, 1, 'Cache of the Firelord - Weapon - Hyperthermically Insulated Lava Dredger'),
(30034, 0, 18805, 0, 0, 1, 1, 1, 1, 'Cache of the Firelord - Weapon - Core Hound Tooth'),
(30035, 0, 19140, 0, 0, 1, 1, 1, 1, 'Cache of the Firelord - Jewelry - Cauterizing Band');
 -- Boss 10 Ragnaros (11502)
INSERT INTO `world`.`creature_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(11502, 0, 19017, 100, 1, 1, 0, 1, 1, 'Ragnaros - Quest - Essence of the Firelord'),
(11502, 0, 20951, 100, 1, 1, 0, 1, 1, 'Ragnaros - Quest - Narain\'s Scrying Goggles'),
(11502, 0, 17204, 2, 0, 1, 0, 1, 1, 'Ragnaros - Quest - Eye of Sulfuras'),
(11502, 0, 138833, 20, 0, 1, 0, 1, 1, 'Ragnaros - Item Enhancement - Illusion: Flametongue'),
(11502, 1, 30036, 100, 0, 1, 0, 1, 1, 'Ragnaros - Armor'),
(11502, 1, 30036, 50, 0, 1, 0, 1, 1, 'Ragnaros - Armor'),
(11502, 1, 30037, 100, 0, 1, 0, 1, 1, 'Ragnaros - Armor - Set'),
(11502, 1, 30037, 50, 0, 1, 0, 1, 1, 'Ragnaros - Armor - Set'),
(11502, 1, 30038, 25, 0, 1, 0, 1, 2, 'Ragnaros - Weapon'),
(11502, 1, 30039, 25, 0, 1, 0, 1, 2, 'Ragnaros - Jewelry');
INSERT INTO `world`.`reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES 
(30036, 0, 17102, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Cloak of the Shrouded Mists'),
(30036, 0, 17107, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Dragon\'s Blood Cape'),
(30036, 0, 18817, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Crown of Destruction'),
(30036, 0, 19137, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Onslaught Girdle'),
(30037, 0, 16901, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Set - Stormrage Legguards'),
(30037, 0, 16909, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Set - Bloodfang Pants'),
(30037, 0, 16915, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Set - Netherwind Pants'),
(30037, 0, 16922, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Set - Leggings of Transcendence'),
(30037, 0, 16930, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Set - Nemesis Leggings'),
(30037, 0, 16938, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Set - Dragonstalker\'s Legguards'),
(30037, 0, 16946, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Set - Legplates of Ten Storms'),
(30037, 0, 16954, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Set - Judgment Legplates'),
(30037, 0, 16962, 0, 0, 1, 1, 1, 1, 'Ragnaros - Armor - Set - Legplates of Wrath'),
(30038, 0, 17076, 0, 0, 1, 1, 1, 1, 'Ragnaros - Weapon - Bonereaver\'s Edge'),
(30038, 0, 17104, 0, 0, 1, 1, 1, 1, 'Ragnaros - Weapon - Spinal Reaper'),
(30038, 0, 17106, 0, 0, 1, 1, 1, 1, 'Ragnaros - Weapon - Malistar\'s Defender'),
(30038, 0, 18816, 0, 0, 1, 1, 1, 1, 'Ragnaros - Weapon - Perdition\'s Blade'),
(30039, 0, 17063, 0, 0, 1, 1, 1, 1, 'Ragnaros - Jewelry - Band of Accuria'),
(30039, 0, 17082, 0, 0, 1, 1, 1, 1, 'Ragnaros - Jewelry - Shard of the Flame'),
(30039, 0, 18814, 0, 0, 1, 1, 1, 1, 'Ragnaros - Jewelry - Choker of the Fire Lord'),
(30039, 0, 18815, 0, 0, 1, 1, 1, 1, 'Ragnaros - Jewelry - Essence of the Pure Flame'),
(30039, 0, 19138, 0, 0, 1, 1, 1, 1, 'Ragnaros - Jewelry - Band of Sulfuras');
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值