From 74c529a2b0498b23a59d5d5418bdf7d8fe69acaa Mon Sep 17 00:00:00 2001 From: Ben Carter Date: Thu, 21 Aug 2025 01:30:34 -0400 Subject: [PATCH] Added sql for molten core raid and rebalance of low ilevel gear --- data/sql/db-world/base/13a-gear-rebalance.sql | 172 + .../base/16_molten_core_mythic_gear.sql | 10344 ++++++++++++++++ 2 files changed, 10516 insertions(+) create mode 100644 data/sql/db-world/base/13a-gear-rebalance.sql create mode 100644 data/sql/db-world/base/16_molten_core_mythic_gear.sql diff --git a/data/sql/db-world/base/13a-gear-rebalance.sql b/data/sql/db-world/base/13a-gear-rebalance.sql new file mode 100644 index 0000000..8a54de7 --- /dev/null +++ b/data/sql/db-world/base/13a-gear-rebalance.sql @@ -0,0 +1,172 @@ +-- This rebalances lower level iLevel gear +UPDATE item_template +SET + stat_value1 = CASE + WHEN stat_type1 IN (38, 45) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value1 * 0.75) + WHEN stat_type1 IN (38, 45) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value1 * 0.80) + WHEN stat_type1 IN (38, 45) AND ItemLevel > 315 AND ItemLevel <= 325 THEN FLOOR(stat_value1 * 0.90) + ELSE stat_value1 + END, + stat_value2 = CASE + WHEN stat_type2 IN (38, 45) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value2 * 0.75) + WHEN stat_type2 IN (38, 45) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value2 * 0.80) + WHEN stat_type2 IN (38, 45) AND ItemLevel > 315 AND ItemLevel <= 325 THEN FLOOR(stat_value2 * 0.90) + ELSE stat_value2 + END, + stat_value3 = CASE + WHEN stat_type3 IN (38, 45) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value3 * 0.75) + WHEN stat_type3 IN (38, 45) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value3 * 0.80) + WHEN stat_type3 IN (38, 45) AND ItemLevel > 315 AND ItemLevel <= 325 THEN FLOOR(stat_value3 * 0.90) + ELSE stat_value3 + END, + stat_value4 = CASE + WHEN stat_type4 IN (38, 45) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value4 * 0.75) + WHEN stat_type4 IN (38, 45) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value4 * 0.80) + WHEN stat_type4 IN (38, 45) AND ItemLevel > 315 AND ItemLevel <= 325 THEN FLOOR(stat_value4 * 0.90) + ELSE stat_value4 + END, + stat_value5 = CASE + WHEN stat_type5 IN (38, 45) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value5 * 0.75) + WHEN stat_type5 IN (38, 45) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value5 * 0.80) + WHEN stat_type5 IN (38, 45) AND ItemLevel > 315 AND ItemLevel <= 325 THEN FLOOR(stat_value5 * 0.90) + ELSE stat_value5 + END, + stat_value6 = CASE + WHEN stat_type6 IN (38, 45) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value6 * 0.75) + WHEN stat_type6 IN (38, 45) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value6 * 0.80) + WHEN stat_type6 IN (38, 45) AND ItemLevel > 315 AND ItemLevel <= 325 THEN FLOOR(stat_value6 * 0.90) + ELSE stat_value6 + END, + stat_value7 = CASE + WHEN stat_type7 IN (38, 45) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value7 * 0.75) + WHEN stat_type7 IN (38, 45) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value7 * 0.80) + WHEN stat_type7 IN (38, 45) AND ItemLevel > 315 AND ItemLevel <= 325 THEN FLOOR(stat_value7 * 0.90) ELSE stat_value7 + END, + stat_value8 = CASE + WHEN stat_type8 IN (38, 45) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value8 * 0.75) + WHEN stat_type8 IN (38, 45) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value8 * 0.80) + WHEN stat_type8 IN (38, 45) AND ItemLevel > 315 AND ItemLevel <= 325 THEN FLOOR(stat_value8 * 0.90) + ELSE stat_value8 + END +WHERE + entry BETWEEN 20000000 and 21000000; + +-- Rebalance primary strength, agi, intellect down for lower ilvl items +UPDATE item_template +SET + stat_value1 = CASE + WHEN stat_type1 IN (3,4,5) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value1 * 0.85) + WHEN stat_type1 IN (3,4,5) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value1 * 0.90) + ELSE stat_value1 + END, + stat_value2 = CASE + WHEN stat_type2 IN (3,4,5) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value2 * 0.85) + WHEN stat_type2 IN (3,4,5) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value2 * 0.90) + ELSE stat_value2 + END, + stat_value3 = CASE + WHEN stat_type3 IN (3,4,5) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value3 * 0.85) + WHEN stat_type3 IN (3,4,5) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value3 * 0.90) + ELSE stat_value3 + END, + stat_value4 = CASE + WHEN stat_type4 IN (3,4,5) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value4 * 0.85) + WHEN stat_type4 IN (3,4,5) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value4 * 0.90) + ELSE stat_value4 + END, + stat_value5 = CASE + WHEN stat_type5 IN (3,4,5) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value5 * 0.85) + WHEN stat_type5 IN (3,4,5) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value5 * 0.90) + ELSE stat_value5 + END, + stat_value6 = CASE + WHEN stat_type6 IN (3,4,5) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value6 * 0.85) + WHEN stat_type6 IN (3,4,5) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value6 * 0.90) + ELSE stat_value6 + END, + stat_value7 = CASE + WHEN stat_type7 IN (3,4,5) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value7 * 0.85) + WHEN stat_type7 IN (3,4,5) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value7 * 0.90) + ELSE stat_value7 + END, + stat_value8 = CASE + WHEN stat_type8 IN (3,4,5) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value8 * 0.85) + WHEN stat_type8 IN (3,4,5) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value8 * 0.90) + ELSE stat_value8 + END +WHERE + entry BETWEEN 20000000 and 21000000; + +-- Nerf hit / spell hit crit rating and others items 300-315 by 15% and 10% +UPDATE item_template +SET + stat_value1 = CASE + WHEN (stat_type1 BETWEEN 16 AND 37 OR stat_type1 = 44) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value1 * 0.85) + WHEN (stat_type1 BETWEEN 16 AND 37 OR stat_type1 = 44) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value1 * 0.90) + ELSE stat_value1 + END, + stat_value2 = CASE + WHEN (stat_type2 BETWEEN 16 AND 37 OR stat_type2 = 44) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value2 * 0.85) + WHEN (stat_type2 BETWEEN 16 AND 37 OR stat_type2 = 44) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value2 * 0.90) + ELSE stat_value2 + END, + stat_value3 = CASE + WHEN (stat_type3 BETWEEN 16 AND 37 OR stat_type3 = 44) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value3 * 0.85) + WHEN (stat_type3 BETWEEN 16 AND 37 OR stat_type3 = 44) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value3 * 0.90) + ELSE stat_value3 + END, + stat_value4 = CASE + WHEN (stat_type4 BETWEEN 16 AND 37 OR stat_type4 = 44) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value4 * 0.85) + WHEN (stat_type4 BETWEEN 16 AND 37 OR stat_type4 = 44) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value4 * 0.90) + ELSE stat_value4 + END, + stat_value5 = CASE + WHEN (stat_type5 BETWEEN 16 AND 37 OR stat_type5 = 44) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value5 * 0.85) + WHEN (stat_type5 BETWEEN 16 AND 37 OR stat_type5 = 44) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value5 * 0.90) + ELSE stat_value5 + END, + stat_value6 = CASE + WHEN (stat_type6 BETWEEN 16 AND 37 OR stat_type6 = 44) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value6 * 0.85) + WHEN (stat_type6 BETWEEN 16 AND 37 OR stat_type6 = 44) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value6 * 0.90) + ELSE stat_value6 + END, + stat_value7 = CASE + WHEN (stat_type7 BETWEEN 16 AND 37 OR stat_type7 = 44) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value7 * 0.85) + WHEN (stat_type7 BETWEEN 16 AND 37 OR stat_type7 = 44) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value7 * 0.90) + ELSE stat_value7 + END, + stat_value8 = CASE + WHEN (stat_type8 BETWEEN 16 AND 37 OR stat_type8 = 44) AND ItemLevel BETWEEN 300 AND 305 THEN FLOOR(stat_value8 * 0.85) + WHEN (stat_type8 BETWEEN 16 AND 37 OR stat_type8 = 44) AND ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(stat_value8 * 0.90) + ELSE stat_value8 + END +WHERE + entry BETWEEN 20000000 and 21000000; + +-- reduce damage on lower level items +UPDATE item_template +SET + dmg_min1 = CASE + WHEN ItemLevel BETWEEN 300 AND 305 THEN FLOOR(dmg_min1 * 0.85) + WHEN ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(dmg_min1 * 0.90) + ELSE dmg_min1 + END, + dmg_max1 = CASE + WHEN ItemLevel BETWEEN 300 AND 305 THEN FLOOR(dmg_max1 * 0.85) + WHEN ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(dmg_max1 * 0.90) + ELSE dmg_max1 + END, + dmg_min2 = CASE + WHEN ItemLevel BETWEEN 300 AND 305 THEN FLOOR(dmg_min2 * 0.85) + WHEN ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(dmg_min2 * 0.90) + ELSE dmg_min2 + END, + dmg_max2 = CASE + WHEN ItemLevel BETWEEN 300 AND 305 THEN FLOOR(dmg_max2 * 0.85) + WHEN ItemLevel > 305 AND ItemLevel <= 315 THEN FLOOR(dmg_max2 * 0.90) + ELSE dmg_max2 + END +WHERE + entry BETWEEN 20000000 and 21000000; + + diff --git a/data/sql/db-world/base/16_molten_core_mythic_gear.sql b/data/sql/db-world/base/16_molten_core_mythic_gear.sql new file mode 100644 index 0000000..d06279d --- /dev/null +++ b/data/sql/db-world/base/16_molten_core_mythic_gear.sql @@ -0,0 +1,10344 @@ +-- Molten Core Generated Items SQL +-- Generated on: 2025-08-17 12:42:29 +-- Item Level: 325 +-- Quality: 4 (Epic) + + DELETE FROM acore_world.item_template WHERE entry = 20016901; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16901 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Venerated Stormrage Legguards', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 6, + stat_value1 = 244, + stat_type2 = 36, + stat_value2 = 103, + stat_type3 = 45, + stat_value3 = 599, + stat_type4 = 7, + stat_value4 = 248, + stat_type5 = 5, + stat_value5 = 234, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 4, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016901; + + DELETE FROM acore_world.item_template WHERE entry = 20016909; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16909 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Bloodfang Pants', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 248, + stat_type2 = 32, + stat_value2 = 237, + stat_type3 = 37, + stat_value3 = 135, + stat_type4 = 38, + stat_value4 = 396, + stat_type5 = 3, + stat_value5 = 321, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016909; + + DELETE FROM acore_world.item_template WHERE entry = 20016915; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16915 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Netherwind Pants', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 248, + stat_type2 = 5, + stat_value2 = 228, + stat_type3 = 6, + stat_value3 = 186, + stat_type4 = 32, + stat_value4 = 181, + stat_type5 = 45, + stat_value5 = 612, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016915; + + DELETE FROM acore_world.item_template WHERE entry = 20016922; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16922 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Leggings of Transcendence', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 612, + stat_type2 = 7, + stat_value2 = 248, + stat_type3 = 5, + stat_value3 = 228, + stat_type4 = 6, + stat_value4 = 186, + stat_type5 = 32, + stat_value5 = 181, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016922; + + DELETE FROM acore_world.item_template WHERE entry = 20016930; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16930 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Venerated Nemesis Leggings', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 5, + stat_value1 = 228, + stat_type2 = 6, + stat_value2 = 186, + stat_type3 = 32, + stat_value3 = 181, + stat_type4 = 45, + stat_value4 = 612, + stat_type5 = 7, + stat_value5 = 248, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016930; + + DELETE FROM acore_world.item_template WHERE entry = 20016938; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16938 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Dragonstalker''s Legguards', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 37, + stat_value1 = 135, + stat_type2 = 38, + stat_value2 = 396, + stat_type3 = 3, + stat_value3 = 321, + stat_type4 = 7, + stat_value4 = 248, + stat_type5 = 32, + stat_value5 = 237, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016938; + + DELETE FROM acore_world.item_template WHERE entry = 20016954; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16954 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Venerated Judgement Legplates', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 248, + stat_type2 = 5, + stat_value2 = 247, + stat_type3 = 36, + stat_value3 = 174, + stat_type4 = 45, + stat_value4 = 306, + stat_type5 = 43, + stat_value5 = 60, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016954; + + DELETE FROM acore_world.item_template WHERE entry = 20016962; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16962 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Legplates of Wrath', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 4, + stat_type1 = 12, + stat_value1 = 78, + stat_type2 = 15, + stat_value2 = 129, + stat_type3 = 4, + stat_value3 = 260, + stat_type4 = 7, + stat_value4 = 409, + stat_type5 = 38, + stat_value5 = 1323, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 31042038, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 1, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016962; + + DELETE FROM acore_world.item_template WHERE entry = 20018814; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18814 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Choker of the Fire Lord', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 178, + stat_type2 = 31, + stat_value2 = 41, + stat_type3 = 32, + stat_value3 = 122, + stat_type4 = 45, + stat_value4 = 374, + stat_type5 = 5, + stat_value5 = 135, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20018814; + + DELETE FROM acore_world.item_template WHERE entry = 20018817; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18817 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Crown of Destruction', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 6, + stat_type1 = 38, + stat_value1 = 1423, + stat_type2 = 3, + stat_value2 = 170, + stat_type3 = 7, + stat_value3 = 287, + stat_type4 = 5, + stat_value4 = 170, + stat_type5 = 32, + stat_value5 = 169, + stat_type6 = 36, + stat_value6 = 87, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 1, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20018817; + + DELETE FROM acore_world.item_template WHERE entry = 20019138; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 19138 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Band of Sulfuras', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 32, + stat_value1 = 116, + stat_type2 = 45, + stat_value2 = 412, + stat_type3 = 43, + stat_value3 = 37, + stat_type4 = 7, + stat_value4 = 139, + stat_type5 = 5, + stat_value5 = 138, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20019138; + + DELETE FROM acore_world.item_template WHERE entry = 20016946; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16946 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Legplates of Ten Storms', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 36, + stat_value1 = 182, + stat_type2 = 45, + stat_value2 = 599, + stat_type3 = 43, + stat_value3 = 44, + stat_type4 = 7, + stat_value4 = 248, + stat_type5 = 5, + stat_value5 = 247, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 4, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016946; + + DELETE FROM acore_world.item_template WHERE entry = 20017063; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 17063 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Band of Accuria', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 38, + stat_value1 = 280, + stat_type2 = 3, + stat_value2 = 68, + stat_type3 = 7, + stat_value3 = 218, + stat_type4 = 32, + stat_value4 = 133, + stat_type5 = 44, + stat_value5 = 91, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 8, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20017063; + + DELETE FROM acore_world.item_template WHERE entry = 20017102; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 17102 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Cloak of the Shrouded Mists', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 44, + stat_value1 = 76, + stat_type2 = 3, + stat_value2 = 106, + stat_type3 = 7, + stat_value3 = 201, + stat_type4 = 36, + stat_value4 = 111, + stat_type5 = 38, + stat_value5 = 315, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20017102; + + DELETE FROM acore_world.item_template WHERE entry = 20017106; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 17106 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Malistar''s Defender', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 36, + stat_value1 = 82, + stat_type2 = 45, + stat_value2 = 425, + stat_type3 = 7, + stat_value3 = 116, + stat_type4 = 5, + stat_value4 = 141, + stat_type5 = 32, + stat_value5 = 125, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 9750 + WHERE entry = 20017106; + + DELETE FROM acore_world.item_template WHERE entry = 20017107; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 17107 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Dragon''s Blood Cape', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 37, + stat_value1 = 55, + stat_type2 = 4, + stat_value2 = 129, + stat_type3 = 7, + stat_value3 = 234, + stat_type4 = 12, + stat_value4 = 45, + stat_type5 = 13, + stat_value5 = 54, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 4, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20017107; + + DELETE FROM acore_world.item_template WHERE entry = 20019137; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 19137 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Onslaught Girdle', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 4, + stat_type1 = 4, + stat_value1 = 241, + stat_type2 = 7, + stat_value2 = 356, + stat_type3 = 31, + stat_value3 = 68, + stat_type4 = 32, + stat_value4 = 116, + stat_type5 = 38, + stat_value5 = 992, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20019137; + + DELETE FROM acore_world.item_template WHERE entry = 20016796; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16796 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Venerated Arcanist Leggings', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 32, + stat_value1 = 181, + stat_type2 = 45, + stat_value2 = 612, + stat_type3 = 7, + stat_value3 = 248, + stat_type4 = 5, + stat_value4 = 228, + stat_type5 = 6, + stat_value5 = 186, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016796; + + DELETE FROM acore_world.item_template WHERE entry = 20016810; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16810 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Felheart Pants', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 612, + stat_type2 = 7, + stat_value2 = 248, + stat_type3 = 5, + stat_value3 = 228, + stat_type4 = 6, + stat_value4 = 186, + stat_type5 = 32, + stat_value5 = 181, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016810; + + DELETE FROM acore_world.item_template WHERE entry = 20016814; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16814 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Pants of Prophecy', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 211, + stat_type2 = 5, + stat_value2 = 215, + stat_type3 = 6, + stat_value3 = 257, + stat_type4 = 36, + stat_value4 = 119, + stat_type5 = 45, + stat_value5 = 618, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 4, + socketContent_1 = 0, + socketColor_2 = 2, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016814; + + DELETE FROM acore_world.item_template WHERE entry = 20016822; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16822 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Venerated Nightslayer Pants', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 3, + stat_value1 = 321, + stat_type2 = 7, + stat_value2 = 248, + stat_type3 = 32, + stat_value3 = 237, + stat_type4 = 37, + stat_value4 = 135, + stat_type5 = 38, + stat_value5 = 396, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016822; + + DELETE FROM acore_world.item_template WHERE entry = 20017069; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 17069 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Striker''s Mark', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 508, + dmg_max1 = 1209, + dmg_min2 = 551, + dmg_max2 = 793, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 73, + stat_type2 = 36, + stat_value2 = 61, + stat_type3 = 31, + stat_value3 = 23, + stat_type4 = 38, + stat_value4 = 126, + stat_type5 = 3, + stat_value5 = 103, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20017069; + + DELETE FROM acore_world.item_template WHERE entry = 20016835; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16835 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Cenarion Leggings', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 6, + stat_value1 = 186, + stat_type2 = 32, + stat_value2 = 181, + stat_type3 = 45, + stat_value3 = 599, + stat_type4 = 7, + stat_value4 = 248, + stat_type5 = 5, + stat_value5 = 234, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 8, + socketContent_1 = 0, + socketColor_2 = 4, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016835; + + DELETE FROM acore_world.item_template WHERE entry = 20016843; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16843 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Earthfury Legguards', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 248, + stat_type2 = 5, + stat_value2 = 247, + stat_type3 = 36, + stat_value3 = 182, + stat_type4 = 45, + stat_value4 = 599, + stat_type5 = 43, + stat_value5 = 44, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 4, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016843; + + DELETE FROM acore_world.item_template WHERE entry = 20016847; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16847 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Venerated Giantstalker''s Leggings', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 3, + stat_value1 = 321, + stat_type2 = 7, + stat_value2 = 248, + stat_type3 = 32, + stat_value3 = 237, + stat_type4 = 37, + stat_value4 = 135, + stat_type5 = 38, + stat_value5 = 396, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016847; + + DELETE FROM acore_world.item_template WHERE entry = 20016855; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16855 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Lawbringer Legplates', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 43, + stat_value1 = 60, + stat_type2 = 7, + stat_value2 = 248, + stat_type3 = 5, + stat_value3 = 247, + stat_type4 = 36, + stat_value4 = 174, + stat_type5 = 45, + stat_value5 = 306, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016855; + + DELETE FROM acore_world.item_template WHERE entry = 20016867; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16867 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Legplates of Might', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 4, + stat_type1 = 4, + stat_value1 = 260, + stat_type2 = 7, + stat_value2 = 409, + stat_type3 = 12, + stat_value3 = 78, + stat_type4 = 15, + stat_value4 = 129, + stat_type5 = 38, + stat_value5 = 997, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 31042038, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 1, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016867; + + DELETE FROM acore_world.item_template WHERE entry = 20017065; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 17065 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Medallion of Steadfast Might', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 4, + stat_type1 = 7, + stat_value1 = 277, + stat_type2 = 12, + stat_value2 = 35, + stat_type3 = 13, + stat_value3 = 46, + stat_type4 = 4, + stat_value4 = 180, + stat_type5 = 0, + stat_value5 = 0, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 350 + WHERE entry = 20017065; + + DELETE FROM acore_world.item_template WHERE entry = 20018203; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18203 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Eskhandar''s Right Claw', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 385, + dmg_max1 = 663, + dmg_min2 = 118, + dmg_max2 = 322, + StatsCount = 5, + stat_type1 = 38, + stat_value1 = 247, + stat_type2 = 7, + stat_value2 = 109, + stat_type3 = 3, + stat_value3 = 71, + stat_type4 = 31, + stat_value4 = 38, + stat_type5 = 32, + stat_value5 = 78, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20018203; + + DELETE FROM acore_world.item_template WHERE entry = 20018821; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18821 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Quick Strike Ring', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 4, + stat_type1 = 4, + stat_value1 = 180, + stat_type2 = 7, + stat_value2 = 188, + stat_type3 = 37, + stat_value3 = 85, + stat_type4 = 32, + stat_value4 = 172, + stat_type5 = 0, + stat_value5 = 0, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20018821; + + DELETE FROM acore_world.item_template WHERE entry = 20018822; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18822 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Obsidian Edged Blade', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 1276, + dmg_max1 = 2316, + dmg_min2 = 279, + dmg_max2 = 707, + StatsCount = 4, + stat_type1 = 31, + stat_value1 = 77, + stat_type2 = 4, + stat_value2 = 330, + stat_type3 = 7, + stat_value3 = 384, + stat_type4 = 32, + stat_value4 = 287, + stat_type5 = 0, + stat_value5 = 0, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20018822; + + DELETE FROM acore_world.item_template WHERE entry = 20018823; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18823 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Aged Core Leather Gloves', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 3, + stat_value1 = 209, + stat_type2 = 7, + stat_value2 = 211, + stat_type3 = 37, + stat_value3 = 85, + stat_type4 = 36, + stat_value4 = 116, + stat_type5 = 38, + stat_value5 = 321, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 4, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20018823; + + DELETE FROM acore_world.item_template WHERE entry = 20018824; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18824 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Magma Tempered Boots', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 32, + stat_value1 = 153, + stat_type2 = 45, + stat_value2 = 542, + stat_type3 = 43, + stat_value3 = 54, + stat_type4 = 7, + stat_value4 = 182, + stat_type5 = 5, + stat_value5 = 183, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20018824; + + DELETE FROM acore_world.item_template WHERE entry = 20018829; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18829 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Deep Earth Spaulders', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 542, + stat_type2 = 43, + stat_value2 = 35, + stat_type3 = 7, + stat_value3 = 178, + stat_type4 = 5, + stat_value4 = 180, + stat_type5 = 36, + stat_value5 = 153, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20018829; + + DELETE FROM acore_world.item_template WHERE entry = 20018861; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18861 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Flamewaker Legplates', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 4, + stat_type1 = 7, + stat_value1 = 491, + stat_type2 = 32, + stat_value2 = 125, + stat_type3 = 36, + stat_value3 = 185, + stat_type4 = 4, + stat_value4 = 266, + stat_type5 = 38, + stat_value5 = 1194, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 4, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20018861; + + DELETE FROM acore_world.item_template WHERE entry = 20019136; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 19136 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Venerated Mana Igniting Cord', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 5, + stat_value1 = 186, + stat_type2 = 6, + stat_value2 = 173, + stat_type3 = 36, + stat_value3 = 111, + stat_type4 = 45, + stat_value4 = 534, + stat_type5 = 7, + stat_value5 = 182, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20019136; + + DELETE FROM acore_world.item_template WHERE entry = 20019142; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 19142 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Fire Runed Grimoire', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 412, + stat_type2 = 43, + stat_value2 = 37, + stat_type3 = 7, + stat_value3 = 136, + stat_type4 = 5, + stat_value4 = 122, + stat_type5 = 32, + stat_value5 = 131, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20019142; + + DELETE FROM acore_world.item_template WHERE entry = 20019144; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 19144 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Sabatons of the Flamewalker', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 6, + stat_type1 = 32, + stat_value1 = 153, + stat_type2 = 38, + stat_value2 = 416, + stat_type3 = 3, + stat_value3 = 138, + stat_type4 = 7, + stat_value4 = 178, + stat_type5 = 5, + stat_value5 = 109, + stat_type6 = 36, + stat_value6 = 85, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20019144; + + DELETE FROM acore_world.item_template WHERE entry = 20016820; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16820 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Nightslayer Chestpiece', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 36, + stat_value1 = 124, + stat_type2 = 38, + stat_value2 = 464, + stat_type3 = 3, + stat_value3 = 215, + stat_type4 = 7, + stat_value4 = 323, + stat_type5 = 31, + stat_value5 = 81, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 4, + socketContent_1 = 0, + socketColor_2 = 4, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016820; + + DELETE FROM acore_world.item_template WHERE entry = 20016845; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16845 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Giantstalker''s Breastplate', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 6, + stat_type1 = 5, + stat_value1 = 171, + stat_type2 = 32, + stat_value2 = 230, + stat_type3 = 31, + stat_value3 = 47, + stat_type4 = 38, + stat_value4 = 496, + stat_type5 = 3, + stat_value5 = 192, + stat_type6 = 7, + stat_value6 = 266, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016845; + + DELETE FROM acore_world.item_template WHERE entry = 20016853; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16853 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Lawbringer Chestguard', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 599, + stat_type2 = 7, + stat_value2 = 248, + stat_type3 = 5, + stat_value3 = 247, + stat_type4 = 36, + stat_value4 = 185, + stat_type5 = 32, + stat_value5 = 125, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016853; + + DELETE FROM acore_world.item_template WHERE entry = 20016865; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16865 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Breastplate of Might', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 4, + stat_value1 = 244, + stat_type2 = 7, + stat_value2 = 498, + stat_type3 = 12, + stat_value3 = 72, + stat_type4 = 14, + stat_value4 = 167, + stat_type5 = 37, + stat_value5 = 113, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016865; + + DELETE FROM acore_world.item_template WHERE entry = 20017103; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 17103 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Azuresong Mageblade', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 777, + dmg_max1 = 1498, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 1199, + stat_type2 = 7, + stat_value2 = 122, + stat_type3 = 5, + stat_value3 = 145, + stat_type4 = 32, + stat_value4 = 128, + stat_type5 = 36, + stat_value5 = 79, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20017103; + + DELETE FROM acore_world.item_template WHERE entry = 20018842; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18842 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Staff of Dominance', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 1375, + dmg_max1 = 2652, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 36, + stat_value1 = 256, + stat_type2 = 45, + stat_value2 = 1199, + stat_type3 = 7, + stat_value3 = 248, + stat_type4 = 5, + stat_value4 = 244, + stat_type5 = 6, + stat_value5 = 321, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20018842; + + DELETE FROM acore_world.item_template WHERE entry = 20016836; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16836 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Cenarion Spaulders', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 192, + stat_type2 = 5, + stat_value2 = 177, + stat_type3 = 6, + stat_value3 = 173, + stat_type4 = 32, + stat_value4 = 131, + stat_type5 = 45, + stat_value5 = 547, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016836; + + DELETE FROM acore_world.item_template WHERE entry = 20016844; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16844 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Venerated Earthfury Epaulets', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 178, + stat_type2 = 5, + stat_value2 = 180, + stat_type3 = 36, + stat_value3 = 153, + stat_type4 = 45, + stat_value4 = 542, + stat_type5 = 43, + stat_value5 = 35, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016844; + + DELETE FROM acore_world.item_template WHERE entry = 20016856; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16856 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Lawbringer Spaulders', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 182, + stat_type2 = 5, + stat_value2 = 186, + stat_type3 = 36, + stat_value3 = 137, + stat_type4 = 45, + stat_value4 = 534, + stat_type5 = 43, + stat_value5 = 44, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016856; + + DELETE FROM acore_world.item_template WHERE entry = 20016797; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16797 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Arcanist Mantle', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 542, + stat_type2 = 43, + stat_value2 = 54, + stat_type3 = 7, + stat_value3 = 192, + stat_type4 = 5, + stat_value4 = 189, + stat_type5 = 36, + stat_value5 = 127, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016797; + + DELETE FROM acore_world.item_template WHERE entry = 20016807; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16807 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Felheart Shoulder Pads', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 542, + stat_type2 = 7, + stat_value2 = 211, + stat_type3 = 5, + stat_value3 = 173, + stat_type4 = 6, + stat_value4 = 154, + stat_type5 = 32, + stat_value5 = 156, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016807; + + DELETE FROM acore_world.item_template WHERE entry = 20017110; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 17110 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Seal of the Archmagus', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 32, + stat_value1 = 125, + stat_type2 = 45, + stat_value2 = 412, + stat_type3 = 7, + stat_value3 = 139, + stat_type4 = 5, + stat_value4 = 138, + stat_type5 = 6, + stat_value5 = 103, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20017110; + + DELETE FROM acore_world.item_template WHERE entry = 20016834; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16834 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Cenarion Helm', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 5, + stat_value1 = 234, + stat_type2 = 6, + stat_value2 = 186, + stat_type3 = 36, + stat_value3 = 103, + stat_type4 = 45, + stat_value4 = 599, + stat_type5 = 7, + stat_value5 = 248, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 1, + socketContent_1 = 0, + socketColor_2 = 4, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016834; + + DELETE FROM acore_world.item_template WHERE entry = 20016842; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16842 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Earthfury Helmet', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 5, + stat_value1 = 215, + stat_type2 = 32, + stat_value2 = 169, + stat_type3 = 36, + stat_value3 = 103, + stat_type4 = 45, + stat_value4 = 599, + stat_type5 = 7, + stat_value5 = 333, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 1, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016842; + + DELETE FROM acore_world.item_template WHERE entry = 20016846; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16846 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Giantstalker''s Helmet', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 6, + stat_type1 = 5, + stat_value1 = 170, + stat_type2 = 32, + stat_value2 = 169, + stat_type3 = 36, + stat_value3 = 87, + stat_type4 = 38, + stat_value4 = 464, + stat_type5 = 3, + stat_value5 = 170, + stat_type6 = 7, + stat_value6 = 287, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 1, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016846; + + DELETE FROM acore_world.item_template WHERE entry = 20016854; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16854 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Lawbringer Helm', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 36, + stat_value1 = 103, + stat_type2 = 7, + stat_value2 = 248, + stat_type3 = 5, + stat_value3 = 247, + stat_type4 = 45, + stat_value4 = 593, + stat_type5 = 32, + stat_value5 = 172, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 1, + socketContent_1 = 0, + socketColor_2 = 2, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016854; + + DELETE FROM acore_world.item_template WHERE entry = 20017066; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 17066 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Drillborer Disk', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 4, + stat_type1 = 4, + stat_value1 = 180, + stat_type2 = 7, + stat_value2 = 277, + stat_type3 = 12, + stat_value3 = 39, + stat_type4 = 15, + stat_value4 = 81, + stat_type5 = 38, + stat_value5 = 1070, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 31035075, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 1, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 9750 + WHERE entry = 20017066; + + DELETE FROM acore_world.item_template WHERE entry = 20016795; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16795 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Arcanist Crown', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 32, + stat_value1 = 130, + stat_type2 = 45, + stat_value2 = 274, + stat_type3 = 7, + stat_value3 = 227, + stat_type4 = 5, + stat_value4 = 206, + stat_type5 = 6, + stat_value5 = 259, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 1, + socketContent_1 = 0, + socketColor_2 = 4, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016795; + + DELETE FROM acore_world.item_template WHERE entry = 20016808; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16808 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Felheart Horns', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 274, + stat_type2 = 7, + stat_value2 = 227, + stat_type3 = 5, + stat_value3 = 206, + stat_type4 = 6, + stat_value4 = 259, + stat_type5 = 32, + stat_value5 = 130, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 1, + socketContent_1 = 0, + socketColor_2 = 4, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016808; + + DELETE FROM acore_world.item_template WHERE entry = 20016813; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16813 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Circlet of Prophecy', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 6, + stat_value1 = 161, + stat_type2 = 32, + stat_value2 = 125, + stat_type3 = 45, + stat_value3 = 612, + stat_type4 = 7, + stat_value4 = 323, + stat_type5 = 5, + stat_value5 = 215, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 1, + socketContent_1 = 0, + socketColor_2 = 4, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016813; + + DELETE FROM acore_world.item_template WHERE entry = 20016821; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16821 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Nightslayer Cover', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 3, + stat_value1 = 266, + stat_type2 = 7, + stat_value2 = 287, + stat_type3 = 31, + stat_value3 = 58, + stat_type4 = 36, + stat_value4 = 137, + stat_type5 = 38, + stat_value5 = 378, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 1, + socketContent_1 = 0, + socketColor_2 = 2, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016821; + + DELETE FROM acore_world.item_template WHERE entry = 20017105; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 17105 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Aurastone Hammer', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 874, + dmg_max1 = 1685, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 122, + stat_type2 = 5, + stat_value2 = 135, + stat_type3 = 36, + stat_value3 = 116, + stat_type4 = 45, + stat_value4 = 1199, + stat_type5 = 43, + stat_value5 = 35, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20017105; + + DELETE FROM acore_world.item_template WHERE entry = 20018832; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18832 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Brutality Blade', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 706, + dmg_max1 = 1291, + dmg_min2 = 122, + dmg_max2 = 317, + StatsCount = 5, + stat_type1 = 4, + stat_value1 = 106, + stat_type2 = 7, + stat_value2 = 211, + stat_type3 = 12, + stat_value3 = 35, + stat_type4 = 31, + stat_value4 = 27, + stat_type5 = 13, + stat_value5 = 44, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20018832; + + DELETE FROM acore_world.item_template WHERE entry = 20016823; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16823 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Nightslayer Shoulder Pads', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 38, + stat_value1 = 416, + stat_type2 = 3, + stat_value2 = 173, + stat_type3 = 7, + stat_value3 = 254, + stat_type4 = 31, + stat_value4 = 51, + stat_type5 = 32, + stat_value5 = 147, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016823; + + DELETE FROM acore_world.item_template WHERE entry = 20016868; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16868 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Pauldrons of Might', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 31, + stat_value1 = 38, + stat_type2 = 4, + stat_value2 = 189, + stat_type3 = 7, + stat_value3 = 320, + stat_type4 = 12, + stat_value4 = 53, + stat_type5 = 13, + stat_value5 = 65, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016868; + + DELETE FROM acore_world.item_template WHERE entry = 20017077; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 17077 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Crimson Shocker', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 733, + dmg_max1 = 1414, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 76, + stat_type2 = 5, + stat_value2 = 71, + stat_type3 = 6, + stat_value3 = 80, + stat_type4 = 36, + stat_value4 = 55, + stat_type5 = 45, + stat_value5 = 249, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20017077; + + DELETE FROM acore_world.item_template WHERE entry = 20018870; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18870 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Helm of the Lifegiver', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 599, + stat_type2 = 7, + stat_value2 = 333, + stat_type3 = 5, + stat_value3 = 215, + stat_type4 = 32, + stat_value4 = 169, + stat_type5 = 36, + stat_value5 = 103, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 1, + socketContent_1 = 0, + socketColor_2 = 8, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20018870; + + DELETE FROM acore_world.item_template WHERE entry = 20018872; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18872 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Manastorm Leggings', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 211, + stat_type2 = 5, + stat_value2 = 215, + stat_type3 = 6, + stat_value3 = 257, + stat_type4 = 36, + stat_value4 = 119, + stat_type5 = 45, + stat_value5 = 618, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 4, + socketContent_1 = 0, + socketColor_2 = 2, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20018872; + + DELETE FROM acore_world.item_template WHERE entry = 20018875; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18875 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Salamander Scale Pants', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 599, + stat_type2 = 7, + stat_value2 = 248, + stat_type3 = 5, + stat_value3 = 234, + stat_type4 = 6, + stat_value4 = 244, + stat_type5 = 36, + stat_value5 = 103, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 4, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20018875; + + DELETE FROM acore_world.item_template WHERE entry = 20018878; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18878 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Sorcerous Dagger', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 453, + dmg_max1 = 874, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 32, + stat_value1 = 141, + stat_type2 = 36, + stat_value2 = 79, + stat_type3 = 45, + stat_value3 = 1199, + stat_type4 = 7, + stat_value4 = 116, + stat_type5 = 5, + stat_value5 = 138, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20018878; + + DELETE FROM acore_world.item_template WHERE entry = 20018879; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18879 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Heavy Dark Iron Ring', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 277, + stat_type2 = 12, + stat_value2 = 39, + stat_type3 = 31, + stat_value3 = 34, + stat_type4 = 13, + stat_value4 = 58, + stat_type5 = 4, + stat_value5 = 138, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20018879; + + DELETE FROM acore_world.item_template WHERE entry = 20019145; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 19145 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Robe of Volatile Power', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 793, + stat_type2 = 7, + stat_value2 = 333, + stat_type3 = 5, + stat_value3 = 244, + stat_type4 = 36, + stat_value4 = 169, + stat_type5 = 31, + stat_value5 = 62, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20019145; + + DELETE FROM acore_world.item_template WHERE entry = 20019146; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 19146 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Wristguards of Stability', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 32, + stat_value1 = 113, + stat_type2 = 38, + stat_value2 = 315, + stat_type3 = 44, + stat_value3 = 78, + stat_type4 = 3, + stat_value4 = 138, + stat_type5 = 7, + stat_value5 = 182, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20019146; + + DELETE FROM acore_world.item_template WHERE entry = 20019147; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 19147 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Ring of Spell Power', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 182, + stat_type2 = 5, + stat_value2 = 122, + stat_type3 = 31, + stat_value3 = 66, + stat_type4 = 36, + stat_value4 = 95, + stat_type5 = 45, + stat_value5 = 323, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20019147; + + DELETE FROM acore_world.item_template WHERE entry = 20016816; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16816 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Mantle of Prophecy', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 542, + stat_type2 = 7, + stat_value2 = 211, + stat_type3 = 5, + stat_value3 = 173, + stat_type4 = 6, + stat_value4 = 154, + stat_type5 = 32, + stat_value5 = 156, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016816; + + DELETE FROM acore_world.item_template WHERE entry = 20016848; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16848 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Giantstalker''s Epaulets', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 254, + stat_type2 = 31, + stat_value2 = 51, + stat_type3 = 32, + stat_value3 = 147, + stat_type4 = 38, + stat_value4 = 416, + stat_type5 = 3, + stat_value5 = 173, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016848; + + DELETE FROM acore_world.item_template WHERE entry = 20016805; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16805 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Felheart Gloves', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 477, + stat_type2 = 7, + stat_value2 = 182, + stat_type3 = 5, + stat_value3 = 186, + stat_type4 = 6, + stat_value4 = 180, + stat_type5 = 31, + stat_value5 = 34, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016805; + + DELETE FROM acore_world.item_template WHERE entry = 20016863; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16863 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Gauntlets of Might', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 31, + stat_value1 = 45, + stat_type2 = 4, + stat_value2 = 183, + stat_type3 = 7, + stat_value3 = 366, + stat_type4 = 12, + stat_value4 = 53, + stat_type5 = 13, + stat_value5 = 77, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016863; + + DELETE FROM acore_world.item_template WHERE entry = 20016800; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16800 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Arcanist Boots', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 182, + stat_type2 = 5, + stat_value2 = 183, + stat_type3 = 6, + stat_value3 = 183, + stat_type4 = 36, + stat_value4 = 95, + stat_type5 = 45, + stat_value5 = 542, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016800; + + DELETE FROM acore_world.item_template WHERE entry = 20016829; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16829 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Cenarion Boots', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 542, + stat_type2 = 7, + stat_value2 = 139, + stat_type3 = 5, + stat_value3 = 157, + stat_type4 = 6, + stat_value4 = 238, + stat_type5 = 36, + stat_value5 = 93, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016829; + + DELETE FROM acore_world.item_template WHERE entry = 20016837; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16837 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Venerated Earthfury Boots', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 5, + stat_value1 = 186, + stat_type2 = 32, + stat_value2 = 175, + stat_type3 = 45, + stat_value3 = 542, + stat_type4 = 43, + stat_value4 = 37, + stat_type5 = 7, + stat_value5 = 182, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016837; + + DELETE FROM acore_world.item_template WHERE entry = 20016859; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16859 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Lawbringer Boots', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 182, + stat_type2 = 5, + stat_value2 = 183, + stat_type3 = 32, + stat_value3 = 153, + stat_type4 = 45, + stat_value4 = 542, + stat_type5 = 43, + stat_value5 = 54, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016859; + + DELETE FROM acore_world.item_template WHERE entry = 20017109; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 17109 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Choker of Enlightenment', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 5, + stat_value1 = 138, + stat_type2 = 6, + stat_value2 = 122, + stat_type3 = 36, + stat_value3 = 95, + stat_type4 = 45, + stat_value4 = 412, + stat_type5 = 7, + stat_value5 = 136, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20017109; + + DELETE FROM acore_world.item_template WHERE entry = 20016849; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16849 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Giantstalker''s Boots', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 6, + stat_type1 = 36, + stat_value1 = 85, + stat_type2 = 32, + stat_value2 = 153, + stat_type3 = 38, + stat_value3 = 416, + stat_type4 = 3, + stat_value4 = 138, + stat_type5 = 7, + stat_value5 = 178, + stat_type6 = 5, + stat_value6 = 109, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016849; + + DELETE FROM acore_world.item_template WHERE entry = 20016862; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16862 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Sabatons of Might', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 12, + stat_value1 = 62, + stat_type2 = 14, + stat_value2 = 88, + stat_type3 = 13, + stat_value3 = 44, + stat_type4 = 4, + stat_value4 = 234, + stat_type5 = 7, + stat_value5 = 366, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016862; + + DELETE FROM acore_world.item_template WHERE entry = 20016812; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16812 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Gloves of Prophecy', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 211, + stat_type2 = 5, + stat_value2 = 173, + stat_type3 = 36, + stat_value3 = 127, + stat_type4 = 45, + stat_value4 = 477, + stat_type5 = 6, + stat_value5 = 126, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 4, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016812; + + DELETE FROM acore_world.item_template WHERE entry = 20016826; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16826 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Nightslayer Gloves', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 211, + stat_type2 = 37, + stat_value2 = 85, + stat_type3 = 36, + stat_value3 = 116, + stat_type4 = 38, + stat_value4 = 321, + stat_type5 = 3, + stat_value5 = 209, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 4, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016826; + + DELETE FROM acore_world.item_template WHERE entry = 20016839; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16839 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Earthfury Gauntlets', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 5, + stat_value1 = 177, + stat_type2 = 32, + stat_value2 = 169, + stat_type3 = 36, + stat_value3 = 114, + stat_type4 = 45, + stat_value4 = 534, + stat_type5 = 7, + stat_value5 = 192, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016839; + + DELETE FROM acore_world.item_template WHERE entry = 20016860; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16860 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Lawbringer Gauntlets', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 45, + stat_value1 = 542, + stat_type2 = 43, + stat_value2 = 44, + stat_type3 = 7, + stat_value3 = 182, + stat_type4 = 5, + stat_value4 = 183, + stat_type5 = 36, + stat_value5 = 137, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20016860; + + DELETE FROM acore_world.item_template WHERE entry = 20016803; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16803 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Felheart Slippers', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 6, + stat_value1 = 138, + stat_type2 = 32, + stat_value2 = 169, + stat_type3 = 45, + stat_value3 = 534, + stat_type4 = 7, + stat_value4 = 178, + stat_type5 = 5, + stat_value5 = 180, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016803; + + DELETE FROM acore_world.item_template WHERE entry = 20016811; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16811 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Boots of Prophecy', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 36, + stat_value1 = 95, + stat_type2 = 45, + stat_value2 = 542, + stat_type3 = 7, + stat_value3 = 182, + stat_type4 = 5, + stat_value4 = 183, + stat_type5 = 6, + stat_value5 = 183, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016811; + + DELETE FROM acore_world.item_template WHERE entry = 20016824; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16824 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Venerated Nightslayer Boots', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 36, + stat_value1 = 148, + stat_type2 = 32, + stat_value2 = 131, + stat_type3 = 38, + stat_value3 = 301, + stat_type4 = 3, + stat_value4 = 238, + stat_type5 = 7, + stat_value5 = 182, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016824; + + DELETE FROM acore_world.item_template WHERE entry = 20016801; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16801 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Arcanist Gloves', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 211, + stat_type2 = 5, + stat_value2 = 173, + stat_type3 = 36, + stat_value3 = 127, + stat_type4 = 45, + stat_value4 = 477, + stat_type5 = 43, + stat_value5 = 42, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 4, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20016801; + + DELETE FROM acore_world.item_template WHERE entry = 20016831; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16831 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Cenarion Gloves', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 32, + stat_value1 = 169, + stat_type2 = 45, + stat_value2 = 542, + stat_type3 = 7, + stat_value3 = 182, + stat_type4 = 5, + stat_value4 = 183, + stat_type5 = 6, + stat_value5 = 138, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20016831; + + DELETE FROM acore_world.item_template WHERE entry = 20016852; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 16852 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Giantstalker''s Gloves', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 6, + stat_type1 = 5, + stat_value1 = 129, + stat_type2 = 32, + stat_value2 = 106, + stat_type3 = 31, + stat_value3 = 47, + stat_type4 = 38, + stat_value4 = 364, + stat_type5 = 3, + stat_value5 = 173, + stat_type6 = 7, + stat_value6 = 188, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20016852; + + DELETE FROM acore_world.item_template WHERE entry = 20019140; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 19140 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Cauterizing Band', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 31, + stat_value1 = 66, + stat_type2 = 36, + stat_value2 = 95, + stat_type3 = 45, + stat_value3 = 323, + stat_type4 = 7, + stat_value4 = 182, + stat_type5 = 5, + stat_value5 = 122, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20019140; + + DELETE FROM acore_world.item_template WHERE entry = 20019139; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 19139 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Stalwart Fireguard Shoulders', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 38, + stat_value1 = 416, + stat_type2 = 3, + stat_value2 = 173, + stat_type3 = 7, + stat_value3 = 254, + stat_type4 = 31, + stat_value4 = 51, + stat_type5 = 32, + stat_value5 = 147, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20019139; + + DELETE FROM acore_world.item_template WHERE entry = 20018812; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18812 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Venerated Wristguards of True Flight', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 6, + stat_type1 = 38, + stat_value1 = 215, + stat_type2 = 3, + stat_value2 = 138, + stat_type3 = 7, + stat_value3 = 182, + stat_type4 = 5, + stat_value4 = 106, + stat_type5 = 32, + stat_value5 = 125, + stat_type6 = 31, + stat_value6 = 34, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 2316 + WHERE entry = 20018812; + + DELETE FROM acore_world.item_template WHERE entry = 20018811; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18811 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Fireproof Cloak', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 155, + stat_type2 = 5, + stat_value2 = 138, + stat_type3 = 36, + stat_value3 = 72, + stat_type4 = 45, + stat_value4 = 412, + stat_type5 = 43, + stat_value5 = 42, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20018811; + + DELETE FROM acore_world.item_template WHERE entry = 20018810; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18810 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Wild Growth Spaulders', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 6, + stat_value1 = 173, + stat_type2 = 32, + stat_value2 = 131, + stat_type3 = 45, + stat_value3 = 547, + stat_type4 = 7, + stat_value4 = 192, + stat_type5 = 5, + stat_value5 = 177, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 1073 + WHERE entry = 20018810; + + DELETE FROM acore_world.item_template WHERE entry = 20018809; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18809 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Powerful Sash of Whispered Secrets', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 36, + stat_value1 = 111, + stat_type2 = 45, + stat_value2 = 534, + stat_type3 = 7, + stat_value3 = 182, + stat_type4 = 5, + stat_value4 = 186, + stat_type5 = 6, + stat_value5 = 173, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20018809; + + DELETE FROM acore_world.item_template WHERE entry = 20018808; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18808 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mighty Gloves of the Hypnotic Flame', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 6, + stat_value1 = 180, + stat_type2 = 31, + stat_value2 = 34, + stat_type3 = 45, + stat_value3 = 477, + stat_type4 = 7, + stat_value4 = 182, + stat_type5 = 5, + stat_value5 = 186, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 2, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 585 + WHERE entry = 20018808; + + DELETE FROM acore_world.item_template WHERE entry = 20018806; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18806 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Venerated Core Forged Greaves', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 0, + dmg_max1 = 0, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 14, + stat_value1 = 88, + stat_type2 = 13, + stat_value2 = 44, + stat_type3 = 4, + stat_value3 = 234, + stat_type4 = 7, + stat_value4 = 366, + stat_type5 = 12, + stat_value5 = 62, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 4388 + WHERE entry = 20018806; + + DELETE FROM acore_world.item_template WHERE entry = 20018805; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18805 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Mythic Core Hound Tooth', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 518, + dmg_max1 = 999, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 7, + stat_value1 = 139, + stat_type2 = 32, + stat_value2 = 103, + stat_type3 = 36, + stat_value3 = 77, + stat_type4 = 38, + stat_value4 = 247, + stat_type5 = 3, + stat_value5 = 71, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20018805; + + DELETE FROM acore_world.item_template WHERE entry = 20018803; + + INSERT INTO acore_world.item_template ( + entry, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + ) + SELECT + entry + 20000000, class, subclass, SoundOverrideSubclass, name, displayid, Quality, Flags, FlagsExtra, BuyCount, + BuyPrice, SellPrice, InventoryType, AllowableClass, AllowableRace, ItemLevel, RequiredLevel, + RequiredSkill, RequiredSkillRank, requiredspell, requiredhonorrank, RequiredCityRank, + RequiredReputationFaction, RequiredReputationRank, maxcount, stackable, ContainerSlots, StatsCount, + stat_type1, stat_value1, stat_type2, stat_value2, stat_type3, stat_value3, stat_type4, stat_value4, + stat_type5, stat_value5, stat_type6, stat_value6, stat_type7, stat_value7, stat_type8, stat_value8, + stat_type9, stat_value9, stat_type10, stat_value10, ScalingStatDistribution, ScalingStatValue, + dmg_min1, dmg_max1, dmg_type1, dmg_min2, dmg_max2, dmg_type2, armor, holy_res, fire_res, nature_res, + frost_res, shadow_res, arcane_res, delay, ammo_type, RangedModRange, spellid_1, spelltrigger_1, + spellcharges_1, spellppmRate_1, spellcooldown_1, spellcategory_1, spellcategorycooldown_1, spellid_2, + spelltrigger_2, spellcharges_2, spellppmRate_2, spellcooldown_2, spellcategory_2, spellcategorycooldown_2, + spellid_3, spelltrigger_3, spellcharges_3, spellppmRate_3, spellcooldown_3, spellcategory_3, + spellcategorycooldown_3, spellid_4, spelltrigger_4, spellcharges_4, spellppmRate_4, spellcooldown_4, + spellcategory_4, spellcategorycooldown_4, spellid_5, spelltrigger_5, spellcharges_5, spellppmRate_5, + spellcooldown_5, spellcategory_5, spellcategorycooldown_5, bonding, description, PageText, LanguageID, + PageMaterial, startquest, lockid, Material, sheath, RandomProperty, RandomSuffix, block, itemset, + MaxDurability, area, Map, BagFamily, TotemCategory, socketColor_1, socketContent_1, socketColor_2, + socketContent_2, socketColor_3, socketContent_3, socketBonus, GemProperties, RequiredDisenchantSkill, + ArmorDamageModifier, duration, ItemLimitCategory, HolidayId, ScriptName, DisenchantID, FoodType, + minMoneyLoot, maxMoneyLoot, flagsCustom, VerifiedBuild + FROM acore_world.item_template as src + WHERE src.entry = 18803 ON DUPLICATE KEY UPDATE entry = src.entry + 20000000; + + + UPDATE acore_world.item_template + SET + Quality = 4, + name = 'Unyielding Finkle''s Lava Dredger', + ItemLevel = 325, + RequiredLevel = 83, + dmg_min1 = 1375, + dmg_max1 = 2652, + dmg_min2 = 0, + dmg_max2 = 0, + StatsCount = 5, + stat_type1 = 31, + stat_value1 = 79, + stat_type2 = 45, + stat_value2 = 1199, + stat_type3 = 7, + stat_value3 = 333, + stat_type4 = 5, + stat_value4 = 321, + stat_type5 = 6, + stat_value5 = 318, + stat_type6 = 0, + stat_value6 = 0, + stat_type7 = 0, + stat_value7 = 0, + stat_type8 = 0, + stat_value8 = 0, + stat_type9 = 0, + stat_value9 = 0, + stat_type10 = 0, + stat_value10 = 0, + spellid_1 = 0, + spellid_2 = 0, + spellid_3 = 0, + spelltrigger_1 = 0, + spelltrigger_2 = 0, + spelltrigger_3 = 0, + socketColor_1 = 0, + socketContent_1 = 0, + socketColor_2 = 0, + socketContent_2 = 0, + socketColor_3 = 0, + socketContent_3 = 0, + socketBonus = 0, + GemProperties = 0, + RequiredDisenchantSkill = 375, + DisenchantID = 68, + SellPrice = FLOOR(100000 + (RAND() * 400001)), + Armor = 0 + WHERE entry = 20018803; + +DELETE FROM `item_template` WHERE (`entry` = 20016852); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(20016852, 4, 3, -1, 'Unyielding Giantstalker''s Gloves', 32024, 4, 0, 0, 1, 112268, 376014, 10, 4, -1, 325, 83, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 44, 101, 31, 25, 5, 145, 3, 260, 7, 245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2150, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 206, 50, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 375, 0, 0, 0, 0, '', 68, 0, 0, 0, 0, 12340); + +DELETE FROM `item_template` WHERE (`entry` = 20016821); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(20016821, 4, 2, -1, 'Powerful Nightslayer Cover', 31514, 4, 0, 0, 1, 131332, 184768, 1, 8, -1, 325, 85, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 7, 311, 31, 67, 3, 234, 32, 119, 38, 327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 925, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 204, 70, 0, 0, 0, 0, 8, 0, 2, 0, 0, 0, 0, 0, 375, 0, 0, 0, 0, '', 68, 0, 0, 0, 0, 12340); + +DELETE FROM `item_template` WHERE (`entry` = 20018823); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(20018823, 4, 2, -1, 'Powerful Aged Core Leather Gloves', 31290, 4, 0, 0, 1, 96177, 243248, 10, -1, -1, 325, 80, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 38, 314, 3, 290, 7, 241, 44, 141, 36, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 925, 0, 28, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 1, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 375, 0, 0, 0, 0, '', 68, 0, 0, 0, 0, 12340); + +DELETE FROM `item_template` WHERE (`entry` = 20018832); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(20018832, 2, 7, -1, 'Stalwart Brutality Blade', 31309, 4, 524288, 0, 1, 364162, 154089, 13, -1, -1, 325, 85, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 38, 301, 7, 218, 32, 54, 3, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 589, 945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2500, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 105, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 375, 0, 0, 0, 0, '', 68, 0, 0, 0, 0, 12340); + +DELETE FROM `item_template` WHERE (`entry` = 20019143); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(20019143, 4, 4, -1, 'Unyielding Flameguard Gauntlets', 31660, 4, 0, 0, 1, 135917, 380457, 10, -1, -1, 325, 85, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 4, 280, 7, 393, 12, 37, 16, 74, 38, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3780, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 55, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 375, 0, 0, 0, 0, '', 68, 0, 0, 0, 0, 12340); + +DELETE FROM `item_template` WHERE (`entry` = 20017074); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(20017074, 2, 6, -1, 'Mighty Shadowstrike', 29176, 4, 1088, 0, 1, 443341, 151858, 17, -1, -1, 325, 85, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 38, 678, 7, 240, 32, 162, 4, 398, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1112, 1975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3100, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 120, 0, 0, 0, 0, 2, 0, 8, 0, 0, 0, 0, 0, 375, 0, 0, 0, 0, '', 68, 0, 0, 0, 0, 12340); + +DELETE FROM `item_template` WHERE (`entry` = 20017073); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(20017073, 2, 5, -1, 'Powerful Earthshaker', 32162, 4, 0, 0, 1, 459518, 196365, 17, -1, -1, 325, 85, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 4, 428, 7, 102, 31, 45, 38, 598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1642, 1867, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 3500, 0, 0, 21152, 2, 0, 1, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 120, 0, 0, 0, 0, 2, 0, 4, 0, 8, 0, 0, 0, 375, 0, 0, 0, 0, '', 68, 0, 0, 0, 0, 12340); + +DELETE FROM `item_template` WHERE (`entry` = 20018842); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(20018842, 2, 10, -1, 'Unyielding Staff of Dominance', 34114, 4, 0, 0, 1, 485061, 380470, 17, -1, -1, 325, 85, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 31, 42, 45, 1689, 7, 247, 5, 340, 32, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 520, 1145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2900, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 120, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 375, -10, 0, 0, 0, '', 68, 0, 0, 0, 0, 12340); + +DELETE FROM `item_template` WHERE (`entry` = 20016826); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(20016826, 4, 2, -1, 'Powerful Nightslayer Gloves', 31503, 4, 0, 0, 1, 89199, 285885, 10, 8, -1, 325, 85, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 13, 89, 31, 32, 38, 268, 7, 215, 3, 312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1350, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 204, 65, 0, 0, 0, 0, 8, 0, 4, 0, 0, 0, 0, 0, 375, 0, 0, 0, 0, '', 68, 0, 0, 0, 0, 12340); + +DELETE FROM `item_template` WHERE (`entry` = 20017077); +INSERT INTO `item_template` (`entry`, `class`, `subclass`, `SoundOverrideSubclass`, `name`, `displayid`, `Quality`, `Flags`, `FlagsExtra`, `BuyCount`, `BuyPrice`, `SellPrice`, `InventoryType`, `AllowableClass`, `AllowableRace`, `ItemLevel`, `RequiredLevel`, `RequiredSkill`, `RequiredSkillRank`, `requiredspell`, `requiredhonorrank`, `RequiredCityRank`, `RequiredReputationFaction`, `RequiredReputationRank`, `maxcount`, `stackable`, `ContainerSlots`, `StatsCount`, `stat_type1`, `stat_value1`, `stat_type2`, `stat_value2`, `stat_type3`, `stat_value3`, `stat_type4`, `stat_value4`, `stat_type5`, `stat_value5`, `stat_type6`, `stat_value6`, `stat_type7`, `stat_value7`, `stat_type8`, `stat_value8`, `stat_type9`, `stat_value9`, `stat_type10`, `stat_value10`, `ScalingStatDistribution`, `ScalingStatValue`, `dmg_min1`, `dmg_max1`, `dmg_type1`, `dmg_min2`, `dmg_max2`, `dmg_type2`, `armor`, `holy_res`, `fire_res`, `nature_res`, `frost_res`, `shadow_res`, `arcane_res`, `delay`, `ammo_type`, `RangedModRange`, `spellid_1`, `spelltrigger_1`, `spellcharges_1`, `spellppmRate_1`, `spellcooldown_1`, `spellcategory_1`, `spellcategorycooldown_1`, `spellid_2`, `spelltrigger_2`, `spellcharges_2`, `spellppmRate_2`, `spellcooldown_2`, `spellcategory_2`, `spellcategorycooldown_2`, `spellid_3`, `spelltrigger_3`, `spellcharges_3`, `spellppmRate_3`, `spellcooldown_3`, `spellcategory_3`, `spellcategorycooldown_3`, `spellid_4`, `spelltrigger_4`, `spellcharges_4`, `spellppmRate_4`, `spellcooldown_4`, `spellcategory_4`, `spellcategorycooldown_4`, `spellid_5`, `spelltrigger_5`, `spellcharges_5`, `spellppmRate_5`, `spellcooldown_5`, `spellcategory_5`, `spellcategorycooldown_5`, `bonding`, `description`, `PageText`, `LanguageID`, `PageMaterial`, `startquest`, `lockid`, `Material`, `sheath`, `RandomProperty`, `RandomSuffix`, `block`, `itemset`, `MaxDurability`, `area`, `Map`, `BagFamily`, `TotemCategory`, `socketColor_1`, `socketContent_1`, `socketColor_2`, `socketContent_2`, `socketColor_3`, `socketContent_3`, `socketBonus`, `GemProperties`, `RequiredDisenchantSkill`, `ArmorDamageModifier`, `duration`, `ItemLimitCategory`, `HolidayId`, `ScriptName`, `DisenchantID`, `FoodType`, `minMoneyLoot`, `maxMoneyLoot`, `flagsCustom`, `VerifiedBuild`) VALUES +(20017077, 2, 19, -1, 'Mythic Crimson Shocker', 29195, 4, 0, 0, 1, 268855, 266465, 26, -1, -1, 325, 85, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4, 5, 179, 7, 256, 6, 145, 36, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 415, 814, 2, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 2000, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1, 0, -1, 1, '', 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 0, 0, 0, 0, '', 68, 0, 0, 0, 0, 12340);