V14 Valor and Justice Quartermasters Inventory Update (T11 now as well)

kureji

Gold Supporter
Verified Member
19
2021
40
So I was looking through the VP and JP vendors and realized that their inventory isn't correct for 4.3.4 and also that an NPC was missing from Orgrimmar.

So I decided to work on updating their inventory (and oh boy what a job this is)

First this will add the missing NPC:
SQL:
-- missing NPC Rugok
SELECT MAX(guid)+1 into @var FROM creature;
INSERT INTO `creature` (`guid`, `id`, `map`, `zone`, `area`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `walkmode`, `saiscriptflag`) VALUES (@var, 58155, 1, 1637, 5356, 1, 1, 0, 58155, 1654.37, -4344.4, 64.5368, 5.92166, 300, 0, 0, 2614, 0, 0, 0, 0, 0, 0, 0);

Next up, it looks like the Valor Quartermasters still have their original inventory, so I updated their inventory to the ilvl397 items and tier 13:
SQL:
-- Aliance Valor Quartermaster - Faldren Tillsdale - 44245
-- Horde Valor Quartermaster - Jamus'Vaz - 46556

-- remove stock from valor justice vendors
DELETE FROM npc_vendor WHERE entry=46556 OR entry=44245;

-- insert ilvl 397 valor items

-- 250 conquest points
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES  (46556,1,390,25000,0,3411,2),
  (44245,1,390,25000,0,3411,2),

-- 2200 bones of the damned
  (46556,2,77119,0,0,3557,1),
  (44245,2,77119,0,0,3557,1),

-- 2200 chestplate of the unshakable titan
  (46556,3,77120,0,0,3557,1),
  (44245,3,77120,0,0,3557,1),

-- 2200 dragonflayer vest
  (46556,4,77124,0,0,3557,1),
  (44245,4,77124,0,0,3557,1),

-- 2200 ghostworld chestguard
  (46556,5,77125,0,0,3557,1),
  (44245,5,77125,0,0,3557,1),

-- 2200 shining carapace of glory
  (46556,6,77123,0,0,3557,1),
  (44245,6,77123,0,0,3557,1),

-- 2200 shadowbinder chestguard
  (46556,7,77126,0,0,3557,1),
  (44245,7,77126,0,0,3557,1),

-- 2200 decaying herbalists robes
  (46556,8,77127,0,0,3557,1),
  (44245,8,77127,0,0,3557,1),

-- 1250 dreamcrusher drape
  (46556,9,77097,0,0,3555,1),
  (44245,9,77097,0,0,3555,1),

-- 1250 indefatigable greatclick
  (46556,10,77099,0,0,3555,1),
  (44245,10,77099,0,0,3555,1),

-- 1250 woundlicker cover
  (46556,11,77096,0,0,3555,1),
  (44245,11,77096,0,0,3555,1),

-- 1250 batwing cloak
  (46556,12,77095,0,0,3555,1),
  (44245,12,77095,0,0,3555,1),

-- 1250 nanoprecise cape
  (46556,13,77098,0,0,3555,1),
  (44245,13,77098,0,0,3555,1),

-- 1650 bladeshatter treads
  (46556,14,77171,0,0,3556,1),
  (44245,14,77171,0,0,3556,1),

-- 1650 boneshard boots
  (46556,15,77175,0,0,3556,1),
  (44245,15,77175,0,0,3556,1),

-- 1650 sabatons of the graceful spirit
  (46556,16,77174,0,0,3556,1),
  (44245,16,77174,0,0,3556,1),

-- 1650 silver sabatons of fury
  (46556,17,77169,0,0,3556,1),
  (44245,17,77169,0,0,3556,1),

-- 1650 kneebreaker boots
  (46556,18,77170,0,0,3556,1),
  (44245,18,77170,0,0,3556,1),

-- 1650 rooftop griptoes
  (46556,19,77173,0,0,3556,1),
  (44245,19,77173,0,0,3556,1),

-- 1650 boots of fungoid growth
  (46556,20,77172,0,0,3556,1),
  (44245,20,77172,0,0,3556,1),

-- 1650 kavans forsaken treads
  (46556,21,77176,0,0,3556,1),
  (44245,21,77176,0,0,3556,1),

-- 1650 splinterfoot sandals
  (46556,22,77177,0,0,3556,1),
  (44245,22,77177,0,0,3556,1),

-- 1250 ring of torn flesh
  (46556,23,77110,0,0,3555,1),
  (44245,23,77110,0,0,3555,1),

-- 1250 band of reconstruction
  (46556,24,77109,0,0,3555,1),
  (44245,24,77109,0,0,3555,1),

-- 1250 emergency descent loop
  (46556,25,77111,0,0,3555,1),
  (44245,25,77111,0,0,3555,1),

-- 1650 grimfist crushers
  (46556,26,77165,0,0,3556,1),
  (44245,26,77165,0,0,3556,1),

-- 1650 gauntlets of feathery blows
  (46556,27,77166,0,0,3556,1),
  (44245,27,77166,0,0,3556,1),

-- 1650 arrowflick gauntlets
  (46556,28,77162,0,0,3556,1),
  (44245,28,77162,0,0,3556,1),

-- 1650 gloves of ghostly dreams
  (46556,29,77163,0,0,3556,1),
  (44245,29,77163,0,0,3556,1),

-- 1650 gleaming grips of mending
  (46556,30,77164,0,0,3556,1),
  (44245,30,77164,0,0,3556,1),

-- 1650 lightfinger handwraps
  (46556,31,77161,0,0,3556,1),
  (44245,31,77161,0,0,3556,1),

-- 1650 fungus-born gloves
  (46556,32,77160,0,0,3556,1),
  (44245,32,77160,0,0,3556,1),

-- 1650 clockwinders immaculate gloves
  (46556,33,77159,0,0,3556,1),
  (44245,33,77159,0,0,3556,1),

-- 1650 the hands of gilly
  (46556,34,77157,0,0,3556,1),
  (44245,34,77157,0,0,3556,1),

-- 2200 visage of petrification
  (46556,35,77155,0,0,3557,1),
  (44245,35,77155,0,0,3557,1),

-- 2200 jaw of repudiation
  (46556,37,77156,0,0,3557,1),
  (44245,37,77156,0,0,3557,1),

-- 2200 zeherahs dragonskull crown
  (46556,38,77150,0,0,3557,1),
  (44245,38,77150,0,0,3557,1),

-- 2200 wolfdream circlet
  (46556,39,77151,0,0,3557,1),
  (44245,39,77151,0,0,3557,1),

-- 2200 glowing wings of hope
  (46556,40,77153,0,0,3557,1),
  (44245,40,77153,0,0,3557,1),

-- 2200 nocturnal gaze
  (46556,41,77148,0,0,3557,1),
  (44245,41,77148,0,0,3557,1),

-- 2200 helmet of perpetual rebirth
  (46556,42,77149,0,0,3557,1),
  (44245,42,77149,0,0,3557,1),

-- 2200 hood of hidden flesh
  (46556,43,77147,0,0,3557,1),
  (44245,43,77147,0,0,3557,1),

-- 2200 soulgaze cowl
  (46556,44,77146,0,0,3557,1),
  (44245,44,77146,0,0,3557,1),

-- 1250 necklace of black dragons teeth
  (46556,45,77090,0,0,3555,1),
  (44245,45,77090,0,0,3555,1),

-- 1250 guardspike choker
  (46556,46,77092,0,0,3555,1),
  (44245,46,77092,0,0,3555,1),

-- 1250 opal of the secret order
  (46556,47,77088,0,0,3555,1),
  (44245,47,77088,0,0,3555,1),

-- 1250 threadlinked chain
  (46556,48,77089,0,0,3555,1),
  (44245,48,77089,0,0,3555,1),

-- 1250 cameo of terrible memories
  (46556,49,77091,0,0,3555,1),
  (44245,49,77091,0,0,3555,1),

-- 700 hungermouth wand
  (46556,50,77079,0,0,3553,1),
  (44245,50,77079,0,0,3553,1),

-- 700 scintillating rods
  (46556,51,77078,0,0,3553,1),
  (44245,51,77078,0,0,3553,1),

-- 700 gutripper shard
  (46556,52,77081,0,0,3553,1),
  (44245,52,77081,0,0,3553,1),

-- 700 stoutheart talisman
  (46556,53,77084,0,0,3553,1),
  (44245,53,77084,0,0,3553,1),

-- 700 lightning spirit in a bottle
  (46556,54,77083,0,0,3553,1),
  (44245,54,77083,0,0,3553,1),

-- 700 mindbender lens
  (46556,55,77082,0,0,3553,1),
  (44245,55,77082,0,0,3553,1),

-- 700 ripfang relic
  (46556,56,77080,0,0,3553,1),
  (44245,56,77080,0,0,3553,1),

-- 2200 robes of searing shadow
  (46556,57,77122,0,0,3557,1),
  (44245,57,77122,0,0,3557,1),

-- 2200 lightwarper vestments
  (46556,58,77121,0,0,3557,1),
  (44245,58,77121,0,0,3557,1),

-- 700 unexpected backup
  (46556,59,77085,0,0,3553,1),
  (44245,59,77085,0,0,3553,1),

-- 700 darting chakram
  (46556,60,77087,0,0,3553,1),
  (44245,60,77087,0,0,3553,1),

-- 700 windslicer boomerang
  (46556,61,77086,0,0,3553,1),
  (44245,61,77086,0,0,3553,1),

-- 1650 rotting skull
  (46556,62,77116,0,0,3556,1),
  (44245,62,77116,0,0,3556,1),

-- 1650 fire of the deep
  (46556,63,77117,0,0,3556,1),
  (44245,63,77117,0,0,3556,1),

-- 1650 kiroptyric sigil
  (46556,64,77113,0,0,3556,1),
  (44245,64,77113,0,0,3556,1),

-- 1650 bottled wishes
  (46556,65,77114,0,0,3556,1),
  (44245,65,77114,0,0,3556,1),

-- 1650 reflection of the light
  (46556,66,77115,0,0,3556,1),
  (44245,66,77115,0,0,3556,1),

-- 1650 forgesmelter waistplate
  (46556,67,77186,0,0,3556,1),
  (44245,67,77186,0,0,3556,1),

-- 1650 cord of dragon sinew
  (46556,68,77182,0,0,3556,1),
  (44245,68,77182,0,0,3556,1),

-- 1650 girdle of shamanic fury
  (46556,69,77183,0,0,3556,1),
  (44245,69,77183,0,0,3556,1),

-- 1650 blinding girdle of truth
  (46556,70,77184,0,0,3556,1),
  (44245,70,77184,0,0,3556,1),

-- 1650 demonbone waistguard
  (46556,71,77185,0,0,3556,1),
  (44245,71,77185,0,0,3556,1),

-- 1650 belt of hidden keys
  (46556,72,77180,0,0,3556,1),
  (44245,72,77180,0,0,3556,1),

-- 1650 vestals irrepressible girdle
  (46556,73,77187,0,0,3556,1),
  (44245,73,77187,0,0,3556,1),

-- 1250 bracers of unrelenting excellence
  (46556,74,77318,0,0,3555,1),
  (44245,74,77318,0,0,3555,1),

-- 1250 dragonbelly bracers
  (46556,75,77321,0,0,3555,1),
  (44245,75,77321,0,0,3555,1),

-- 1250 bracers of the spectral wolf
  (46556,76,77319,0,0,3555,1),
  (44245,76,77319,0,0,3555,1),

-- 1250 flashing bracers of warmth
  (46556,77,77316,0,0,3555,1),
  (44245,77,77316,0,0,3555,1),

-- 1250 heartcrusher wristplates
  (46556,78,77317,0,0,3555,1),
  (44245,78,77317,0,0,3555,1),

-- 1250 bracers of manifold pockets
  (46556,79,77322,0,0,3555,1),
  (44245,79,77322,0,0,3555,1),

-- 1250 luminescent bracers
  (46556,80,77320,0,0,3555,1),
  (44245,80,77320,0,0,3555,1),

-- 1250 chronoboost bracers
  (46556,81,77324,0,0,3555,1),
  (44245,81,77324,0,0,3555,1),

-- 1250 bracers of the black dream
  (46556,82,77323,0,0,3555,1),
  (44245,82,77323,0,0,3555,1),

-- raid finder DK DPS Necrotic Boneplate Battlegear
  (46556,83,78765,0,0,3829,1),
  (44245,83,78765,0,0,3829,1),
  (46556,84,78782,0,0,3827,1),
  (44245,84,78782,0,0,3827,1),
  (46556,85,78802,0,0,3828,1),
  (44245,85,78802,0,0,3828,1),
  (46556,86,78754,0,0,3826,1),
  (44245,86,78754,0,0,3826,1),
  (46556,87,78831,0,0,3830,1),
  (44245,87,78831,0,0,3830,1),
-- normal DK DPS
  (46556,88,76975,0,0,3855,1),
  (44245,88,76975,0,0,3855,1),
  (46556,89,76976,0,0,3853,1),
  (44245,89,76976,0,0,3853,1),
  (46556,90,76977,0,0,3852,1),
  (44245,90,79677,0,0,3852,1),
  (46556,91,76974,0,0,3856,1),
  (44245,91,76974,0,0,3856,1),
  (46556,92,76978,0,0,3851,1),
  (44245,92,79678,0,0,3851,1),
-- heroic DK DPS
  (46556,93,78670,0,0,3859,1),
  (44245,93,78670,0,0,3859,1),
  (46556,94,78687,0,0,3858,1),
  (44245,94,78687,0,0,3858,1),
  (46556,95,78707,0,0,3860,1),
  (44245,95,78707,0,0,3860,1),
  (46556,96,78659,0,0,3857,1),
  (44245,96,78659,0,0,3857,1),
  (46556,97,78736,0,0,3861,1),
  (44245,97,78736,0,0,3861,1),
-- raid finder DK Tank Necrotic Boneplate armor
  (46556,98,78773,0,0,3829,1),
  (44245,98,78773,0,0,3829,1),
  (46556,99,78792,0,0,3827,1),
  (44245,99,78792,0,0,3827,1),
  (46556,100,78811,0,0,3828,1),
  (44245,100,78811,0,0,3828,1),
  (46556,101,78758,0,0,3826,1),
  (44245,101,78758,0,0,3826,1),
  (46556,102,78846,0,0,3830,1),
  (44245,102,78846,0,0,3830,1),
-- normal DK tank
  (46556,103,77009,0,0,3855,1),
  (44245,103,77009,0,0,3855,1),
  (46556,104,77010,0,0,3853,1),
  (44245,104,77010,0,0,3853,1),
  (46556,105,77011,0,0,3852,1),
  (44245,105,77011,0,0,3852,1),
  (46556,106,77008,0,0,3856,1),
  (44245,106,77008,0,0,3856,1),
  (46556,107,77012,0,0,3851,1),
  (44245,107,77012,0,0,3851,1),
-- heroic DK tank
  (46556,108,78678,0,0,3859,1),
  (44245,108,78678,0,0,3859,1),
  (46556,109,78697,0,0,3858,1),
  (44245,109,78697,0,0,3858,1),
  (46556,110,78716,0,0,3860,1),
  (44245,110,78716,0,0,3860,1),
  (46556,111,78663,0,0,3857,1),
  (44245,111,78663,0,0,3857,1),
  (46556,112,78751,0,0,3861,1),
  (44245,112,78751,0,0,3861,1),
-- raidfinder rogue blackfang battleweave
  (46556,113,78774,0,0,3829,1),
  (44245,113,78774,0,0,3829,1),
  (46556,114,78794,0,0,3827,1),
  (44245,114,78794,0,0,3827,1),
  (46556,115,78803,0,0,3828,1),
  (44245,115,78803,0,0,3828,1),
  (46556,116,78759,0,0,3826,1),
  (44245,116,78759,0,0,3826,1),
  (46556,117,78833,0,0,3830,1),
  (44245,117,78833,0,0,3830,1),
-- normal rogue
  (46556,118,77024,0,0,3855,1),
  (44245,118,77024,0,0,3855,1),
  (46556,119,77025,0,0,3853,1),
  (44245,119,77025,0,0,3853,1),
  (46556,120,77026,0,0,3852,1),
  (44245,120,77026,0,0,3852,1),
  (46556,121,77023,0,0,3856,1),
  (44245,121,77023,0,0,3856,1),
  (46556,122,77027,0,0,3851,1),
  (44245,122,77027,0,0,3851,1),
-- heroic rogue
  (46556,123,78679,0,0,3859,1),
  (44245,123,78679,0,0,3859,1),
  (46556,124,78699,0,0,3858,1),
  (44245,124,78699,0,0,3858,1),
  (46556,125,78708,0,0,3860,1),
  (44245,125,78708,0,0,3860,1),
  (46556,126,78664,0,0,3857,1),
  (44245,126,78664,0,0,3857,1),
  (46556,127,78738,0,0,3861,1),
  (44245,127,78738,0,0,3861,1),
-- raid finder mage timelords regalia
  (46556,128,78766,0,0,3829,1),
  (44245,128,78766,0,0,3829,1),
  (46556,129,78796,0,0,3827,1),
  (44245,129,78796,0,0,3827,1),
  (46556,130,78815,0,0,3828,1),
  (44245,130,78815,0,0,3828,1),
  (46556,131,78824,0,0,3826,1),
  (44245,131,78824,0,0,3826,1),
  (46556,132,78843,0,0,3830,1),
  (44245,132,78843,0,0,3830,1),
-- normal mage
  (46556,133,76212,0,0,3855,1),
  (44245,133,76212,0,0,3855,1),
  (46556,134,76213,0,0,3853,1),
  (44245,134,76213,0,0,3853,1),
  (46556,135,76214,0,0,3852,1),
  (44245,135,76214,0,0,3852,1),
  (46556,136,76215,0,0,3856,1),
  (44245,136,76215,0,0,3856,1),
  (46556,137,76216,0,0,3851,1),
  (44245,137,76216,0,0,3851,1),
-- heroic mage
  (46556,138,78671,0,0,3859,1),
  (44245,138,78671,0,0,3859,1),
  (46556,139,78701,0,0,3858,1),
  (44245,139,78701,0,0,3858,1),
  (46556,140,78720,0,0,3860,1),
  (44245,140,78720,0,0,3860,1),
  (46556,141,78729,0,0,3857,1),
  (44245,141,78729,0,0,3857,1),
  (46556,142,78748,0,0,3861,1),
  (44245,142,78748,0,0,3861,1),
-- raid finder druid healer deep earth vestments
  (46556,143,78755,0,0,3829,1),
  (44245,143,78755,0,0,3829,1),
  (46556,144,78785,0,0,3827,1),
  (44245,144,78785,0,0,3827,1),
  (46556,145,78805,0,0,3828,1),
  (44245,145,78805,0,0,3828,1),
  (46556,146,78755,0,0,3826,1),
  (44245,146,78755,0,0,3826,1),
  (46556,147,78835,0,0,3830,1),
  (44245,147,78835,0,0,3830,1),
-- normal druid healer
  (46556,148,76749,0,0,3855,1),
  (44245,148,76749,0,0,3855,1),
  (46556,149,76750,0,0,3853,1),
  (44245,149,76750,0,0,3853,1),
  (46556,150,76751,0,0,3852,1),
  (44245,150,76751,0,0,3852,1),
  (46556,151,76752,0,0,3856,1),
  (44245,151,76752,0,0,3856,1),
  (46556,152,76753,0,0,3851,1),
  (44245,152,76753,0,0,3851,1),
-- heroic druid healer
  (46556,153,78680,0,0,3859,1),
  (44245,153,78680,0,0,3859,1),
  (46556,154,78690,0,0,3858,1),
  (44245,154,78690,0,0,3858,1),
  (46556,155,78710,0,0,3860,1),
  (44245,155,78710,0,0,3860,1),
  (46556,156,78660,0,0,3857,1),
  (44245,156,78660,0,0,3857,1),
  (46556,157,78740,0,0,3861,1),
  (44245,157,78740,0,0,3861,1),
-- raid finder druid feral deep earth battlegarb
  (46556,158,78779,0,0,3829,1),
  (44245,158,78779,0,0,3829,1),
  (46556,159,78789,0,0,3827,1),
  (44245,159,78789,0,0,3827,1),
  (46556,160,78808,0,0,3828,1),
  (44245,160,78808,0,0,3828,1),
  (46556,161,78760,0,0,3826,1),
  (44245,161,78760,0,0,3826,1),
  (46556,162,78838,0,0,3830,1),
  (44245,162,78838,0,0,3830,1),
-- normal druid feral
  (46556,163,77014,0,0,3855,1),
  (44245,163,77014,0,0,3855,1),
  (46556,164,77015,0,0,3853,1),
  (44245,164,77015,0,0,3853,1),
  (46556,165,77016,0,0,3852,1),
  (44245,165,77016,0,0,3852,1),
  (46556,166,77013,0,0,3856,1),
  (44245,166,77013,0,0,3856,1),
  (46556,167,77017,0,0,3851,1),
  (44245,167,77017,0,0,3851,1),
-- heroic druid feral
  (46556,168,78684,0,0,3859,1),
  (44245,168,78684,0,0,3859,1),
  (46556,169,78694,0,0,3858,1),
  (44245,169,78694,0,0,3858,1),
  (46556,170,78713,0,0,3860,1),
  (44245,170,78713,0,0,3860,1),
  (46556,171,78665,0,0,3857,1),
  (44245,171,78665,0,0,3857,1),
  (46556,172,78743,0,0,3861,1),
  (44245,172,78743,0,0,3861,1),
-- raid finder druid caster deep earth regalia
  (46556,173,78771,0,0,3829,1),
  (44245,173,78771,0,0,3829,1),
  (46556,174,78791,0,0,3827,1),
  (44245,174,78791,0,0,3827,1),
  (46556,175,78809,0,0,3828,1),
  (44245,175,78809,0,0,3828,1),
  (46556,176,78757,0,0,3826,1),
  (44245,176,78757,0,0,3826,1),
  (46556,177,78839,0,0,3830,1),
  (44245,177,78839,0,0,3830,1),
-- normal druid caster
  (46556,178,77018,0,0,3855,1),
  (44245,178,77018,0,0,3855,1),
  (46556,179,77019,0,0,3853,1),
  (44245,179,77019,0,0,3853,1),
  (46556,180,77020,0,0,3852,1),
  (44245,180,77020,0,0,3852,1),
  (46556,181,77021,0,0,3856,1),
  (44245,181,77021,0,0,3856,1),
  (46556,182,77022,0,0,3851,1),
  (44245,182,77022,0,0,3851,1),
-- heroic druid caster
  (46556,183,78676,0,0,3859,1),
  (44245,183,78676,0,0,3859,1),
  (46556,184,78696,0,0,3858,1),
  (44245,184,78696,0,0,3858,1),
  (46556,185,78714,0,0,3860,1),
  (44245,185,78714,0,0,3860,1),
  (46556,186,78662,0,0,3857,1),
  (44245,186,78662,0,0,3857,1),
  (46556,187,78744,0,0,3861,1),
  (44245,187,78744,0,0,3861,1),
-- raid finder warrior tank colossal dragonplate armor
  (46556,188,78764,0,0,3839,1),
  (44245,188,78764,0,0,3839,1),
  (46556,189,78784,0,0,3837,1),
  (44245,189,78784,0,0,3837,1),
  (46556,190,78800,0,0,3838,1),
  (44245,190,78800,0,0,3838,1),
  (46556,191,78753,0,0,3840,1),
  (44245,191,78753,0,0,3840,1),
  (46556,192,78829,0,0,3836,1),
  (44245,192,78829,0,0,3836,1),
-- normal warrior tank
  (46556,193,76989,0,0,3849,1),
  (44245,193,76989,0,0,3849,1),
  (46556,194,76990,0,0,3848,1),
  (44245,194,76990,0,0,3848,1),
  (46556,195,76991,0,0,3847,1),
  (44245,195,76991,0,0,3847,1),
  (46556,196,76988,0,0,3850,1),
  (44245,196,76988,0,0,3850,1),
  (46556,197,76992,0,0,3846,1),
  (44245,197,76992,0,0,3846,1),
-- heroic warrior tank
  (46556,198,78669,0,0,3869,1),
  (44245,198,78669,0,0,3869,1),
  (46556,199,78689,0,0,3868,1),
  (44245,199,78689,0,0,3868,1),
  (46556,200,78705,0,0,3870,1),
  (44245,200,78705,0,0,3870,1),
  (46556,201,78658,0,0,3867,1),
  (44245,201,78658,0,0,3867,1),
  (46556,202,78734,0,0,3871,1),
  (44245,202,78734,0,0,3871,1),
-- raid finder warrior dps colossal dragonplate battlegear
  (46556,203,78763,0,0,3839,1),
  (44245,203,78763,0,0,3839,1),
  (46556,204,78783,0,0,3837,1),
  (44245,204,78783,0,0,3837,1),
  (46556,205,78801,0,0,3838,1),
  (44245,205,78801,0,0,3838,1),
  (46556,206,78752,0,0,3840,1),
  (44245,206,78752,0,0,3840,1),
  (46556,207,78830,0,0,3836,1),
  (44245,207,78830,0,0,3836,1),
-- normal warrior dps
  (46556,208,76985,0,0,3849,1),
  (44245,208,76985,0,0,3849,1),
  (46556,209,76983,0,0,3848,1),
  (44245,209,76983,0,0,3848,1),
  (46556,210,76986,0,0,3847,1),
  (44245,210,76986,0,0,3847,1),
  (46556,211,76984,0,0,3850,1),
  (44245,211,76984,0,0,3850,1),
  (46556,212,76987,0,0,3846,1),
  (44245,212,76987,0,0,3846,1),
-- heroic warrior dps
  (46556,213,78668,0,0,3869,1),
  (44245,213,78668,0,0,3869,1),
  (46556,214,78688,0,0,3868,1),
  (44245,214,78688,0,0,3868,1),
  (46556,215,78706,0,0,3870,1),
  (44245,215,78706,0,0,3870,1),
  (46556,216,78657,0,0,3867,1),
  (44245,216,78657,0,0,3867,1),
  (46556,217,78735,0,0,3871,1),
  (44245,217,78735,0,0,3871,1),
-- raid finder hunter Wyrmstalker Battlegear
  (46556,218,78769,0,0,3839,1),
  (44245,218,78769,0,0,3839,1),
  (46556,219,78793,0,0,3837,1),
  (44245,219,78793,0,0,3837,1),
  (46556,220,78804,0,0,3838,1),
  (44245,220,78804,0,0,3838,1),
  (46556,221,78756,0,0,3840,1),
  (44245,221,78756,0,0,3840,1),
  (46556,222,78832,0,0,3836,1),
  (44245,222,78832,0,0,3836,1),
-- normal hunter
  (46556,223,77029,0,0,3849,1),
  (44245,223,77029,0,0,3849,1),
  (46556,224,77030,0,0,3848,1),
  (44245,224,77030,0,0,3848,1),
  (46556,225,77031,0,0,3847,1),
  (44245,225,77031,0,0,3847,1),
  (46556,226,77028,0,0,3850,1),
  (44245,226,77028,0,0,3850,1),
  (46556,227,77032,0,0,3846,1),
  (44245,227,77032,0,0,3846,1),
-- heroic hunter
  (46556,228,78674,0,0,3869,1),
  (44245,228,78674,0,0,3869,1),
  (46556,229,78698,0,0,3868,1),
  (44245,229,78698,0,0,3868,1),
  (46556,230,78709,0,0,3870,1),
  (44245,230,78709,0,0,3870,1),
  (46556,231,78661,0,0,3867,1),
  (44245,231,78661,0,0,3867,1),
  (46556,232,78737,0,0,3871,1),
  (44245,232,78737,0,0,3871,1),
-- raid finder shaman healer Spiritwalkers Vestments
  (46556,233,78767,0,0,3839,1),
  (44245,233,78767,0,0,3839,1),
  (46556,234,78786,0,0,3837,1),
  (44245,234,78786,0,0,3837,1),
  (46556,235,78813,0,0,3838,1),
  (44245,235,78813,0,0,3838,1),
  (46556,236,78820,0,0,3840,1),
  (44245,236,78820,0,0,3840,1),
  (46556,237,78834,0,0,3836,1),
  (44245,237,78834,0,0,3836,1),
-- normal shaman healer
  (46556,238,76757,0,0,3849,1),
  (44245,238,76757,0,0,3849,1),
  (46556,239,76758,0,0,3848,1),
  (44245,239,76758,0,0,3848,1),
  (46556,240,76759,0,0,3847,1),
  (44245,240,76759,0,0,3847,1),
  (46556,241,76756,0,0,3850,1),
  (44245,241,76756,0,0,3850,1),
  (46556,242,76760,0,0,3846,1),
  (44245,242,76760,0,0,3846,1),
-- heroic shaman healer
  (46556,243,78672,0,0,3869,1),
  (44245,243,78672,0,0,3869,1),
  (46556,244,78691,0,0,3868,1),
  (44245,244,78691,0,0,3868,1),
  (46556,245,78718,0,0,3870,1),
  (44245,245,78718,0,0,3870,1),
  (46556,246,78725,0,0,3867,1),
  (44245,246,78725,0,0,3867,1),
  (46556,247,78739,0,0,3871,1),
  (44245,247,78739,0,0,3871,1),
-- raid finder shaman melee DPS Spiritwalkers Battlegear
  (46556,248,78762,0,0,3839,1),
  (44245,248,78762,0,0,3839,1),
  (46556,249,78781,0,0,3837,1),
  (44245,249,78781,0,0,3837,1),
  (46556,250,78799,0,0,3838,1),
  (44245,250,78799,0,0,3838,1),
  (46556,251,78819,0,0,3840,1),
  (44245,251,78819,0,0,3840,1),
  (46556,252,78828,0,0,3836,1),
  (44245,252,78828,0,0,3836,1),
-- normal shaman melee
  (46556,253,77041,0,0,3849,1),
  (44245,253,77041,0,0,3849,1),
  (46556,254,77042,0,0,3848,1),
  (44245,254,77042,0,0,3848,1),
  (46556,255,77043,0,0,3847,1),
  (44245,255,77043,0,0,3847,1),
  (46556,256,77040,0,0,3850,1),
  (44245,256,77040,0,0,3850,1),
  (46556,257,77044,0,0,3846,1),
  (44245,257,77044,0,0,3846,1),
-- heroic shaman melee
  (46556,258,78667,0,0,3869,1),
  (44245,258,78667,0,0,3869,1),
  (46556,259,78686,0,0,3868,1),
  (44245,259,78686,0,0,3868,1),
  (46556,260,78704,0,0,3870,1),
  (44245,260,78704,0,0,3870,1),
  (46556,261,78724,0,0,3867,1),
  (44245,261,78724,0,0,3867,1),
  (46556,262,78733,0,0,3871,1),
  (44245,262,78733,0,0,3871,1),
-- raid finder shaman caster Spiritwalkers Regalia
  (46556,263,78761,0,0,3839,1),
  (44245,263,78761,0,0,3839,1),
  (46556,264,78780,0,0,3837,1),
  (44245,264,78780,0,0,3837,1),
  (46556,265,78806,0,0,3838,1),
  (44245,265,78806,0,0,3838,1),
  (46556,266,78818,0,0,3840,1),
  (44245,266,78818,0,0,3840,1),
  (46556,267,78836,0,0,3836,1),
  (44245,267,78836,0,0,3836,1),
-- normal shaman caster
  (46556,268,77038,0,0,3849,1),
  (44245,268,77038,0,0,3849,1),
  (46556,269,77037,0,0,3848,1),
  (44245,269,77037,0,0,3848,1),
  (46556,270,77036,0,0,3847,1),
  (44245,270,77036,0,0,3847,1),
  (46556,271,77039,0,0,3850,1),
  (44245,271,77039,0,0,3850,1),
  (46556,272,77035,0,0,3846,1),
  (44245,272,77035,0,0,3846,1),
-- heroic shaman caster
  (46556,273,78666,0,0,3869,1),
  (44245,273,78666,0,0,3869,1),
  (46556,274,78685,0,0,3868,1),
  (44245,274,78685,0,0,3868,1),
  (46556,275,78711,0,0,3870,1),
  (44245,275,78711,0,0,3870,1),
  (46556,276,78723,0,0,3867,1),
  (44245,276,78723,0,0,3867,1),
  (46556,277,78741,0,0,3871,1),
  (44245,277,78741,0,0,3871,1),
-- raid finder paladin healer Regalia of Radiant Glory
  (46556,278,78768,0,0,3834,1),
  (44245,278,78768,0,0,3834,1),
  (46556,279,78787,0,0,3831,1),
  (44245,279,78787,0,0,3831,1),
  (46556,280,78812,0,0,3833,1),
  (44245,280,78812,0,0,3833,1),
  (46556,281,78821,0,0,3832,1),
  (44245,281,78821,0,0,3832,1),
  (46556,282,78841,0,0,3835,1),
  (44245,282,78841,0,0,3835,1),
-- normal paladin healer
  (46556,283,76766,0,0,3844,1),
  (44245,283,76766,0,0,3844,1),
  (46556,284,76767,0,0,3843,1),
  (44245,284,76767,0,0,3843,1),
  (46556,285,76768,0,0,3842,1),
  (44245,285,76768,0,0,3842,1),
  (46556,286,76765,0,0,3845,1),
  (44245,286,76765,0,0,3845,1),
  (46556,287,76769,0,0,3841,1),
  (44245,287,76769,0,0,3841,1),
-- heroic paladin healer
  (46556,288,78673,0,0,3864,1),
  (44245,288,78673,0,0,3864,1),
  (46556,289,78692,0,0,3863,1),
  (44245,289,78692,0,0,3863,1),
  (46556,290,78717,0,0,3865,1),
  (44245,290,78717,0,0,3865,1),
  (46556,291,78726,0,0,3862,1),
  (44245,291,78726,0,0,3862,1),
  (46556,292,78746,0,0,3866,1),
  (44245,292,78746,0,0,3866,1),
-- raid finder paladin tank Armor of Radiant Glory
  (46556,293,78772,0,0,3834,1),
  (44245,293,78772,0,0,3834,1),
  (46556,294,78790,0,0,3831,1),
  (44245,294,78790,0,0,3831,1),
  (46556,295,78810,0,0,3833,1),
  (44245,295,78810,0,0,3833,1),
  (46556,296,78827,0,0,3832,1),
  (44245,296,78827,0,0,3832,1),
  (46556,297,78840,0,0,3835,1),
  (44245,297,78840,0,0,3835,1),
-- normal paladin tank
  (46556,298,77004,0,0,3844,1),
  (44245,298,77004,0,0,3844,1),
  (46556,299,77005,0,0,3843,1),
  (44245,299,77005,0,0,3843,1),
  (46556,300,77006,0,0,3842,1),
  (44245,300,77006,0,0,3842,1),
  (46556,301,77003,0,0,3845,1),
  (44245,301,77003,0,0,3845,1),
  (46556,302,77007,0,0,3841,1),
  (44245,302,77007,0,0,3841,1),
-- heroic paladin tank
  (46556,303,78677,0,0,3864,1),
  (44245,303,78677,0,0,3864,1),
  (46556,304,78695,0,0,3863,1),
  (44245,304,78695,0,0,3863,1),
  (46556,305,78715,0,0,3865,1),
  (44245,305,78715,0,0,3865,1),
  (46556,306,78732,0,0,3862,1),
  (44245,306,78732,0,0,3862,1),
  (46556,307,78745,0,0,3866,1),
  (44245,307,78745,0,0,3866,1),
-- raid finder paladin dps Battleplate of Radiant Glory
  (46556,308,78770,0,0,3834,1),
  (44245,308,78770,0,0,3834,1),
  (46556,309,78788,0,0,3831,1),
  (44245,309,78788,0,0,3831,1),
  (46556,310,78807,0,0,3833,1),
  (44245,310,78807,0,0,3833,1),
  (46556,311,78822,0,0,3832,1),
  (44245,311,78822,0,0,3832,1),
  (46556,312,78837,0,0,3835,1),
  (44245,312,78837,0,0,3835,1),
-- normal paladin dps
  (46556,313,76875,0,0,3844,1),
  (44245,313,76875,0,0,3844,1),
  (46556,314,76876,0,0,3843,1),
  (44245,314,76876,0,0,3843,1),
  (46556,315,76877,0,0,3842,1),
  (44245,315,76877,0,0,3842,1),
  (46556,316,76874,0,0,3845,1),
  (44245,316,76874,0,0,3845,1),
  (46556,317,76878,0,0,3841,1),
  (44245,317,76878,0,0,3841,1),
-- heroic paladin dps
  (46556,318,78675,0,0,3864,1),
  (44245,318,78675,0,0,3864,1),
  (46556,319,78693,0,0,3863,1),
  (44245,319,78693,0,0,3863,1),
  (46556,320,78712,0,0,3865,1),
  (44245,320,78712,0,0,3865,1),
  (46556,321,78727,0,0,3862,1),
  (44245,321,78727,0,0,3862,1),
  (46556,322,78742,0,0,3866,1),
  (44245,322,78742,0,0,3866,1),
-- raid finder warlock Vestments of the Faceless Shroud
  (46556,323,78776,0,0,3834,1),
  (44245,323,78776,0,0,3834,1),
  (46556,324,78797,0,0,3831,1),
  (44245,324,78797,0,0,3831,1),
  (46556,325,78816,0,0,3833,1),
  (44245,325,78816,0,0,3833,1),
  (46556,326,78825,0,0,3832,1),
  (44245,326,78825,0,0,3832,1),
  (46556,327,78844,0,0,3835,1),
  (44245,327,78844,0,0,3835,1),
-- normal warlock
  (46556,328,76343,0,0,3844,1),
  (44245,328,76343,0,0,3844,1),
  (46556,329,76342,0,0,3843,1),
  (44245,329,76342,0,0,3843,1),
  (46556,330,76341,0,0,3842,1),
  (44245,330,76341,0,0,3842,1),
  (46556,331,76340,0,0,3845,1),
  (44245,331,76340,0,0,3845,1),
  (46556,332,76339,0,0,3841,1),
  (44245,332,76339,0,0,3841,1),
-- heroic warlock
  (46556,333,78681,0,0,3864,1),
  (44245,333,78681,0,0,3864,1),
  (46556,334,78702,0,0,3863,1),
  (44245,334,78702,0,0,3863,1),
  (46556,335,78721,0,0,3865,1),
  (44245,335,78721,0,0,3865,1),
  (46556,336,78730,0,0,3862,1),
  (44245,336,78730,0,0,3862,1),
  (46556,337,78749,0,0,3866,1),
  (44245,337,78749,0,0,3866,1),
-- raid finder priest healer Vestments of Dying Light
  (46556,338,78778,0,0,3834,1),
  (44245,338,78778,0,0,3834,1),
  (46556,339,78795,0,0,3831,1),
  (44245,339,78795,0,0,3831,1),
  (46556,340,78814,0,0,3833,1),
  (44245,340,78814,0,0,3833,1),
  (46556,341,78823,0,0,3832,1),
  (44245,341,78823,0,0,3832,1),
  (46556,342,78842,0,0,3835,1),
  (44245,342,78842,0,0,3835,1),
-- normal priest healer
  (46556,343,76357,0,0,3844,1),
  (44245,343,76357,0,0,3844,1),
  (46556,344,76358,0,0,3843,1),
  (44245,344,76358,0,0,3843,1),
  (46556,345,76359,0,0,3842,1),
  (44245,345,76359,0,0,3842,1),
  (46556,346,76360,0,0,3845,1),
  (44245,346,76360,0,0,3845,1),
  (46556,347,76361,0,0,3841,1),
  (44245,347,76361,0,0,3841,1),
-- heroic priest healer
  (46556,348,78683,0,0,3864,1),
  (44245,348,78683,0,0,3864,1),
  (46556,349,78700,0,0,3863,1),
  (44245,349,78700,0,0,3863,1),
  (46556,350,78719,0,0,3865,1),
  (44245,350,78719,0,0,3865,1),
  (46556,351,78728,0,0,3862,1),
  (44245,351,78728,0,0,3862,1),
  (46556,352,78747,0,0,3866,1),
  (44245,352,78747,0,0,3866,1),
-- raid finder priest dps Regalia of Dying Light
  (46556,353,78777,0,0,3834,1),
  (44245,353,78777,0,0,3834,1),
  (46556,354,78798,0,0,3831,1),
  (44245,354,78798,0,0,3831,1),
  (46556,355,78817,0,0,3833,1),
  (44245,355,78817,0,0,3833,1),
  (46556,356,78826,0,0,3832,1),
  (44245,356,78826,0,0,3832,1),
  (46556,357,78845,0,0,3835,1),
  (44245,357,78845,0,0,3835,1),
-- normal priest dps
  (46556,358,76348,0,0,3844,1),
  (44245,358,76348,0,0,3844,1),
  (46556,359,76347,0,0,3843,1),
  (44245,359,76347,0,0,3843,1),
  (46556,360,76346,0,0,3842,1),
  (44245,360,76346,0,0,3842,1),
  (46556,361,76345,0,0,3845,1),
  (44245,361,76345,0,0,3845,1),
  (46556,362,76344,0,0,3841,1),
  (44245,362,76344,0,0,3841,1),
-- heroic priest dps
  (46556,363,78682,0,0,3864,1),
  (44245,363,78682,0,0,3864,1),
  (46556,364,78703,0,0,3863,1),
  (44245,364,78703,0,0,3863,1),
  (46556,365,78722,0,0,3865,1),
  (44245,365,78722,0,0,3865,1),
  (46556,366,78731,0,0,3862,1),
  (44245,366,78731,0,0,3862,1),
  (46556,367,78750,0,0,3866,1),
  (44245,367,78750,0,0,3866,1);

Continued in lower posts...
 
Last edited:

kureji

Gold Supporter
Verified Member
19
2021
40
Next up I needed to update the inventory of the justice quartermaster to tier 12 level. I was a little smarter this time around and utilized variables to minimize my manual data entry.

SQL:
SELECT 1 INTO @slot; -- variable for keeping track of slot number

SELECT 3038 INTO @j22; -- declare variable for 2200 justice points
SELECT 3039 INTO @j16; -- declare variable for 1650 justice points
SELECT 3040 INTO @j12; -- declare variable for 1250 justice points
SELECT 3042 INTO @j7; -- declare variable for 700 justice points

SELECT 44246 INTO @AJQ; -- Alliance Justice Quartermaster - Magatha Silverton
SELECT 46555 INTO @HJQ; -- Horde Justice Quartermaster - Gunra

DELETE FROM npc_vendor WHERE entry=@AJQ OR entry=@HJQ; -- clears out old inventory from Gunra and Magatha

-- adding iLvl 378 and tier 12 to Magatha and Gunra
-- necklaces
-- 1250 Amulet of Burning Brilliance https://www.wowhead.com/item=71213/amulet-of-burning-brilliance
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71213,0,0,@j12,1), (@HJQ,@slot,71213,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Necklace of Smoke Signals https://www.wowhead.com/item=71129/necklace-of-smoke-signals
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71129,0,0,@j12,1), (@HJQ,@slot,71129,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Stoneheart Choker https://www.wowhead.com/item=71212/stoneheart-choker
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71212,0,0,@j12,1), (@HJQ,@slot,71212,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Stoneheart Necklace https://www.wowhead.com/item=70935/stoneheart-necklace
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70935,0,0,@j12,1), (@HJQ,@slot,70935,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;


-- rings
-- 1250 Crystalline Brimstone Ring https://www.wowhead.com/item=71210/crystalline-brimstone-ring
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71210,0,0,@j12,1), (@HJQ,@slot,71210,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 deflecting Brimstone Ring https://www.wowhead.com/item=70940/deflecting-brimstone-band
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70940,0,0,@j12,1), (@HJQ,@slot,70940,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Serrated Brimstone Signet https://www.wowhead.com/item=71208/serrated-brimstone-signet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71208,0,0,@j12,1), (@HJQ,@slot,71208,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Soothing Brimstone Circle https://www.wowhead.com/item=71211/soothing-brimstone-circle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71211,0,0,@j12,1), (@HJQ,@slot,71211,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Splintered Brimstone Seal https://www.wowhead.com/item=71209/splintered-brimstone-seal
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71209,0,0,@j12,1), (@HJQ,@slot,71209,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;


-- throwing weapons
-- 700 Deflecting Star https://www.wowhead.com/item=71218/deflecting-star
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71218,0,0,@j7,1), (@HJQ,@slot,71218,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Giantslicer https://www.wowhead.com/item=71154/giantslicer
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71154,0,0,@j7,1), (@HJQ,@slot,71154,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Morningstar Shard https://www.wowhead.com/item=71152/morningstar-shard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71152,0,0,@j7,1), (@HJQ,@slot,71152,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Scorchvine Wand https://www.wowhead.com/item=71150/scorchvine-wand
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71150,0,0,@j7,1), (@HJQ,@slot,71150,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Trail of Embers https://www.wowhead.com/item=71151/trail-of-embers
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71151,0,0,@j7,1), (@HJQ,@slot,71151,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;


-- relics
-- 700 Covenant of the Flame https://www.wowhead.com/item=71146/covenant-of-the-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71146,0,0,@j7,1), (@HJQ,@slot,71146,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Deathclutch Figurine https://www.wowhead.com/item=70939/deathclutch-figurine
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70939,0,0,@j7,1), (@HJQ,@slot,70939,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Relic of the Elemental Lords https://www.wowhead.com/item=71147/relic-of-the-elemental-lords
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71147,0,0,@j7,1), (@HJQ,@slot,71147,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Singed Plume of Aviana https://www.wowhead.com/item=71149/singed-plume-of-aviana
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71149,0,0,@j7,1), (@HJQ,@slot,71149,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Soulflame Vial https://www.wowhead.com/item=71148/soulflame-vial
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71148,0,0,@j7,1), (@HJQ,@slot,71148,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;


-- bracers
-- 1250 Bracers of Forked Lightning https://www.wowhead.com/item=71264/bracers-of-forked-lightning
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71264,0,0,@j12,1), (@HJQ,@slot,71264,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Bracers of Imperious Truths https://www.wowhead.com/item=71260/bracers-of-imperious-truths
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71260,0,0,@j12,1), (@HJQ,@slot,71260,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Bracers of Misting Ash https://www.wowhead.com/item=71263/bracers-of-misting-ash
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71263,0,0,@j12,1), (@HJQ,@slot,71263,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Bracers of Regal Force https://www.wowhead.com/item=70937/bracers-of-regal-force
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70937,0,0,@j12,1), (@HJQ,@slot,70937,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Emberflame Bracers https://www.wowhead.com/item=71265/emberflame-bracers
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71265,0,0,@j12,1), (@HJQ,@slot,71265,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Flamebinder Bracers https://www.wowhead.com/item=71130/flamebinder-bracers
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71130,0,0,@j12,1), (@HJQ,@slot,71130,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Smolderskull Bindings https://www.wowhead.com/item=71262/smolderskull-bindings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71262,0,0,@j12,1), (@HJQ,@slot,71262,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- variables for token costs --
SELECT 3565 INTO @t12nphead;
SELECT 3564 INTO @t12nchead;
SELECT 3566 INTO @t12nvhead;
SELECT 3568 INTO @t12npshoulder;
SELECT 3567 INTO @t12ncshoulder;
SELECT 3569 INTO @t12nvshoulder;

SELECT 3562 INTO @t12hphead;
SELECT 3561 INTO @t12hchead;
SELECT 3563 INTO @t12hvhead;
SELECT 3559 INTO @t12hpshoulder;
SELECT 3558 INTO @t12hcshoulder;
SELECT 3560 INTO @t12hvshoulder;
-- end variables for tokens --


-- tier 12 Warrior Tank Molten Giant Battleplate
-- normal for points https://www.wowhead.com/item-set=1018/molten-giant-battleplate
-- gloves https://www.wowhead.com/item=70943/handguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70943,0,0,@j16,1), (@HJQ,@slot,70943,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=70944/faceguard-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70944,0,0,@j22,1), (@HJQ,@slot,70944,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=70942/legguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70942,0,0,@j22,1), (@HJQ,@slot,70942,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=70945/chestguard-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70945,0,0,@j22,1), (@HJQ,@slot,70945,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=70941/shoulderguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70941,0,0,@j16,1), (@HJQ,@slot,70941,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=70944/faceguard-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70944,0,0,@t12hphead,1), (@HJQ,@slot,70944,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=70941/shoulderguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70941,0,0,@t12npshoulder,1), (@HJQ,@slot,70941,0,0,@t12npshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-367/molten-giant-battleplate
-- gloves https://www.wowhead.com/item=71605/handguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71605,0,0,3601,1), (@HJQ,@slot,71605,0,0,3601,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71606/faceguard-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71606,0,0,@t12hphead,1), (@HJQ,@slot,71606,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71607/legguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71607,0,0,3582,1), (@HJQ,@slot,71607,0,0,3582,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71604/chestguard-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71604,0,0,3627,1), (@HJQ,@slot,71604,0,0,3627,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71608/shoulderguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71608,0,0,@t12hpshoulder,1), (@HJQ,@slot,71608,0,0,@t12hpshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 Warrior DPS Molten Giant Warplate
-- normal for points https://www.wowhead.com/item-set=1017/molten-giant-warplate
-- gloves  https://www.wowhead.com/item=71069/gauntlets-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71069,0,0,@j16,1), (@HJQ,@slot,71069,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71070/helmet-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71070,0,0,@j22,1), (@HJQ,@slot,71070,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71071/legplates-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71071,0,0,@j22,1), (@HJQ,@slot,71071,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71068/battleplate-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71068,0,0,@j22,1), (@HJQ,@slot,71068,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71072/pauldrons-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71072,0,0,@j16,1), (@HJQ,@slot,71072,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71070/helmet-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71070,0,0,@t12hphead,1), (@HJQ,@slot,71070,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71072/pauldrons-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71072,0,0,@t12npshoulder,1), (@HJQ,@slot,71072,0,0,@t12npshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-366/molten-giant-warplate
-- gloves https://www.wowhead.com/item=71601/gauntlets-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71601,0,0,3600,1), (@HJQ,@slot,71601,0,0,3600,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71599/helmet-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71599,0,0,@t12hphead,1), (@HJQ,@slot,71599,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71602/legplates-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71602,0,0,3581,1), (@HJQ,@slot,71602,0,0,3581,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71600/battleplate-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71600,0,0,3626,1), (@HJQ,@slot,71600,0,0,3626,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71603/pauldrons-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71603,0,0,@t12hpshoulder,1), (@HJQ,@slot,71603,0,0,@t12hpshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 hunter Flamewakers Battlegear
-- normal for points https://www.wowhead.com/item-set=1005/flamewakers-battlegear
-- gloves  https://www.wowhead.com/item=71050/flamewakers-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71050,0,0,@j16,1), (@HJQ,@slot,71050,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71051/flamewakers-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71051,0,0,@j22,1), (@HJQ,@slot,71051,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71052/flamewakers-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71052,0,0,@j22,1), (@HJQ,@slot,71052,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71054/flamewakers-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71054,0,0,@j22,1), (@HJQ,@slot,71054,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71053/flamewakers-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71053,0,0,@j16,1), (@HJQ,@slot,71053,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71051/flamewakers-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71051,0,0,@t12hphead,1), (@HJQ,@slot,71051,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71053/flamewakers-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71053,0,0,@t12npshoulder,1), (@HJQ,@slot,71053,0,0,@t12npshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-354/flamewakers-battlegear
-- gloves https://www.wowhead.com/item=71502/flamewakers-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71502,0,0,3596,1), (@HJQ,@slot,71502,0,0,3596,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71503/flamewakers-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71503,0,0,@t12hphead,1), (@HJQ,@slot,71503,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71504/flamewakers-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71504,0,0,3577,1), (@HJQ,@slot,71504,0,0,3577,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71501/flamewakers-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71501,0,0,3622,1), (@HJQ,@slot,71501,0,0,3622,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71505/flamewakers-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71505,0,0,@t12hpshoulder,1), (@HJQ,@slot,71505,0,0,@t12hpshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 shaman healer volcanic vestments
-- normal for points https://www.wowhead.com/item-set=1014/volcanic-vestments
-- gloves  https://www.wowhead.com/item=71297/erupting-volcanic-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71297,0,0,@j16,1), (@HJQ,@slot,71297,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71298/erupting-volcanic-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71298,0,0,@j22,1), (@HJQ,@slot,71298,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71299/erupting-volcanic-legwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71299,0,0,@j22,1), (@HJQ,@slot,71299,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71296/erupting-volcanic-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71296,0,0,@j22,1), (@HJQ,@slot,71296,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71300/erupting-volcanic-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71300,0,0,@j16,1), (@HJQ,@slot,71300,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71298/erupting-volcanic-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71298,0,0,@t12hphead,1), (@HJQ,@slot,71298,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71300/erupting-volcanic-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71300,0,0,@t12npshoulder,1), (@HJQ,@slot,71300,0,0,@t12npshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-363/volcanic-vestments
-- gloves https://www.wowhead.com/item=71543/erupting-volcanic-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71543,0,0,3597,1), (@HJQ,@slot,71543,0,0,3597,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71544/erupting-volcanic-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71544,0,0,@t12hphead,1), (@HJQ,@slot,71544,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71545/erupting-volcanic-legwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71545,0,0,3578,1), (@HJQ,@slot,71545,0,0,3578,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71542/erupting-volcanic-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71542,0,0,3623,1), (@HJQ,@slot,71542,0,0,3623,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71546/erupting-volcanic-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71546,0,0,@t12hpshoulder,1), (@HJQ,@slot,71546,0,0,@t12hpshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 shaman melee dps volcanic battlegear
-- normal for points https://www.wowhead.com/item-set=1015/volcanic-battlegear
-- gloves https://www.wowhead.com/item=71302/erupting-volcanic-grips
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71302,0,0,@j16,1), (@HJQ,@slot,71302,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71303/erupting-volcanic-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71303,0,0,@j22,1), (@HJQ,@slot,71303,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71304/erupting-volcanic-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71304,0,0,@j22,1), (@HJQ,@slot,71304,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71301/erupting-volcanic-cuirass
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71301,0,0,@j22,1), (@HJQ,@slot,71301,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71305/erupting-volcanic-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71305,0,0,@j16,1), (@HJQ,@slot,71305,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71303/erupting-volcanic-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71303,0,0,@t12hphead,1), (@HJQ,@slot,71303,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71305/erupting-volcanic-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71305,0,0,@t12npshoulder,1), (@HJQ,@slot,71305,0,0,@t12npshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-364/volcanic-battlegear
-- gloves https://www.wowhead.com/item=71548/erupting-volcanic-grips
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71548,0,0,3598,1), (@HJQ,@slot,71548,0,0,3598,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71549/erupting-volcanic-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71549,0,0,@t12hphead,1), (@HJQ,@slot,71549,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71550/erupting-volcanic-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71550,0,0,3579,1), (@HJQ,@slot,71550,0,0,3579,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71547/erupting-volcanic-cuirass
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71547,0,0,3624,1), (@HJQ,@slot,71547,0,0,3624,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71551/erupting-volcanic-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71551,0,0,@t12hpshoulder,1), (@HJQ,@slot,71551,0,0,@t12hpshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 shaman caster dps volcanic regalia
-- normal for points https://www.wowhead.com/item-set=1016/volcanic-regalia
-- gloves https://www.wowhead.com/item=71292/erupting-volcanic-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71292,0,0,@j16,1), (@HJQ,@slot,71292,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71293/erupting-volcanic-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71293,0,0,@j22,1), (@HJQ,@slot,71293,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71294/erupting-volcanic-kilt
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71294,0,0,@j22,1), (@HJQ,@slot,71294,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71291/erupting-volcanic-hauberk
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71291,0,0,@j22,1), (@HJQ,@slot,71291,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71295/erupting-volcanic-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71295,0,0,@j16,1), (@HJQ,@slot,71295,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71293/erupting-volcanic-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71293,0,0,@t12hphead,1), (@HJQ,@slot,71293,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71295/erupting-volcanic-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71295,0,0,@t12npshoulder,1), (@HJQ,@slot,71295,0,0,@t12npshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-365/volcanic-regalia
-- gloves https://www.wowhead.com/item=71553/erupting-volcanic-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71553,0,0,3599,1), (@HJQ,@slot,71553,0,0,3599,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71554/erupting-volcanic-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71554,0,0,@t12hphead,1), (@HJQ,@slot,71554,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71555/erupting-volcanic-kilt
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71555,0,0,3580,1), (@HJQ,@slot,71555,0,0,3580,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71552/erupting-volcanic-hauberk
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71552,0,0,3625,1), (@HJQ,@slot,71552,0,0,3625,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71556/erupting-volcanic-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71556,0,0,@t12hpshoulder,1), (@HJQ,@slot,71556,0,0,@t12hpshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 paladin healer Regalia of Immolation
-- normal for points https://www.wowhead.com/item-set=1011/regalia-of-immolation
-- gloves https://www.wowhead.com/item=71092/immolation-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71092,0,0,@j16,1), (@HJQ,@slot,71092,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71093/immolation-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71093,0,0,@j22,1), (@HJQ,@slot,71093,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71094/immolation-greaves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71094,0,0,@j22,1), (@HJQ,@slot,71094,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71091/immolation-breastplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71091,0,0,@j22,1), (@HJQ,@slot,71091,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71095/immolation-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71095,0,0,@j16,1), (@HJQ,@slot,71095,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71093/immolation-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71093,0,0,@t12nchead,1), (@HJQ,@slot,71093,0,0,@t12nchead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71095/immolation-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71095,0,0,@t12ncshoulder,1), (@HJQ,@slot,71095,0,0,@t12ncshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-360/regalia-of-immolation
-- gloves https://www.wowhead.com/item=71518/immolation-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71518,0,0,3603,1), (@HJQ,@slot,71518,0,0,3603,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71519/immolation-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71519,0,0,@t12hchead,1), (@HJQ,@slot,71519,0,0,@t12hchead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71520/immolation-greaves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71520,0,0,3584,1), (@HJQ,@slot,71520,0,0,3584,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71517/immolation-breastplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71517,0,0,3621,1), (@HJQ,@slot,71517,0,0,3621,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71521/immolation-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71521,0,0,@t12hcshoulder,1), (@HJQ,@slot,71521,0,0,@t12hcshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 paladin tank Battlearmor of Immolation
-- normal for points https://www.wowhead.com/item-set=1013/battlearmor-of-immolation
-- gloves https://www.wowhead.com/item=70949/immolation-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70949,0,0,@j16,1), (@HJQ,@slot,70949,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=70948/immolation-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70948,0,0,@j22,1), (@HJQ,@slot,70948,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=70947/immolation-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70947,0,0,@j22,1), (@HJQ,@slot,70947,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=70950/immolation-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70950,0,0,@j22,1), (@HJQ,@slot,70950,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=70946/immolation-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70946,0,0,@j16,1), (@HJQ,@slot,70946,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=70948/immolation-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70948,0,0,@t12nchead,1), (@HJQ,@slot,70948,0,0,@t12nchead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=70946/immolation-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70946,0,0,@t12ncshoulder,1), (@HJQ,@slot,70946,0,0,@t12ncshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-362/battlearmor-of-immolation
-- gloves https://www.wowhead.com/item=71523/immolation-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71523,0,0,3604,1), (@HJQ,@slot,71523,0,0,3604,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71524/immolation-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71524,0,0,@t12hchead,1), (@HJQ,@slot,71524,0,0,@t12hchead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71525/immolation-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71525,0,0,3585,1), (@HJQ,@slot,71525,0,0,3585,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71522/immolation-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71522,0,0,3616,1), (@HJQ,@slot,71522,0,0,3616,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71526/immolation-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71526,0,0,@t12hcshoulder,1), (@HJQ,@slot,71526,0,0,@t12hcshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 paladin dps Battleplate of Immolation
-- normal for points https://www.wowhead.com/item-set=1012/battleplate-of-immolation
-- gloves https://www.wowhead.com/item=71064/immolation-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71064,0,0,@j16,1), (@HJQ,@slot,71064,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71065/immolation-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71065,0,0,@j22,1), (@HJQ,@slot,71065,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71066/immolation-legplates
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71066,0,0,@j22,1), (@HJQ,@slot,71066,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71063/immolation-battleplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71063,0,0,@j22,1), (@HJQ,@slot,71063,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71067/immolation-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71067,0,0,@j16,1), (@HJQ,@slot,71067,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71065/immolation-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71065,0,0,@t12nchead,1), (@HJQ,@slot,71065,0,0,@t12nchead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71067/immolation-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71067,0,0,@t12ncshoulder,1), (@HJQ,@slot,71067,0,0,@t12ncshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-361/battleplate-of-immolation
-- gloves https://www.wowhead.com/item=71513/immolation-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71513,0,0,3602,1), (@HJQ,@slot,71513,0,0,3602,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71514/immolation-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71514,0,0,@t12hchead,1), (@HJQ,@slot,71514,0,0,@t12hchead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71515/immolation-legplates
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71515,0,0,3583,1), (@HJQ,@slot,71515,0,0,3583,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71512/immolation-battleplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71512,0,0,3628,1), (@HJQ,@slot,71512,0,0,3628,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71516/immolation-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71516,0,0,@t12hcshoulder,1), (@HJQ,@slot,71516,0,0,@t12hcshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 warlock balespiders burning vestments
-- normal for points https://www.wowhead.com/item-set=1008/balespiders-burning-vestments
-- gloves https://www.wowhead.com/item=71281/balespiders-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71281,0,0,@j16,1), (@HJQ,@slot,71281,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71282/balespiders-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71282,0,0,@j22,1), (@HJQ,@slot,71282,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71283/balespiders-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71283,0,0,@j22,1), (@HJQ,@slot,71283,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71284/balespiders-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71284,0,0,@j22,1), (@HJQ,@slot,71284,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71285/balespiders-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71285,0,0,@j16,1), (@HJQ,@slot,71285,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71282/balespiders-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71282,0,0,@t12nchead,1), (@HJQ,@slot,71282,0,0,@t12nchead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71285/balespiders-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71285,0,0,@t12ncshoulder,1), (@HJQ,@slot,71285,0,0,@t12ncshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-357/balespiders-burning-vestments
-- gloves https://www.wowhead.com/item=71594/balespiders-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71594,0,0,3607,1), (@HJQ,@slot,71594,0,0,3607,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71595/balespiders-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71595,0,0,@t12hchead,1), (@HJQ,@slot,71595,0,0,@t12hchead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71596/balespiders-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71596,0,0,3588,1), (@HJQ,@slot,71596,0,0,3588,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71597/balespiders-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71597,0,0,3619,1), (@HJQ,@slot,71597,0,0,3619,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71598/balespiders-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71598,0,0,@t12hcshoulder,1), (@HJQ,@slot,71598,0,0,@t12hcshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 priest healer Vestments of the Cleansing Flame
-- normal for points https://www.wowhead.com/item-set=1009/vestments-of-the-cleansing-flame
-- gloves https://www.wowhead.com/item=71271/handwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71271,0,0,@j16,1), (@HJQ,@slot,71271,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71272/cowl-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71272,0,0,@j22,1), (@HJQ,@slot,71272,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71273/legwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71273,0,0,@j22,1), (@HJQ,@slot,71273,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71274/robes-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71274,0,0,@j22,1), (@HJQ,@slot,71274,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71275/mantle-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71275,0,0,@j16,1), (@HJQ,@slot,71275,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71272/cowl-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71272,0,0,@t12nchead,1), (@HJQ,@slot,71272,0,0,@t12nchead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71275/mantle-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71275,0,0,@t12ncshoulder,1), (@HJQ,@slot,71275,0,0,@t12ncshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-358/vestments-of-the-cleansing-flame
-- gloves https://www.wowhead.com/item=71527/handwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71527,0,0,3605,1), (@HJQ,@slot,71527,0,0,3605,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71528/cowl-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71528,0,0,@t12hchead,1), (@HJQ,@slot,71528,0,0,@t12hchead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71529/legwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71529,0,0,3586,1), (@HJQ,@slot,71529,0,0,3586,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71530/robes-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71530,0,0,3617,1), (@HJQ,@slot,71530,0,0,3617,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71531/mantle-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71531,0,0,@t12hcshoulder,1), (@HJQ,@slot,71531,0,0,@t12hcshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 priest dps Regalia of the Cleansing Flame 
-- normal for points https://www.wowhead.com/item-set=1010/regalia-of-the-cleansing-flame
-- gloves https://www.wowhead.com/item=71276/gloves-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71276,0,0,@j16,1), (@HJQ,@slot,71276,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71277/hood-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71277,0,0,@j22,1), (@HJQ,@slot,71277,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71278/leggings-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71278,0,0,@j22,1), (@HJQ,@slot,71278,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71279/vestment-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71279,0,0,@j22,1), (@HJQ,@slot,71279,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71280/shoulderwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71280,0,0,@j16,1), (@HJQ,@slot,71280,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71277/hood-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71277,0,0,@t12nchead,1), (@HJQ,@slot,71277,0,0,@t12nchead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71280/shoulderwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71280,0,0,@t12ncshoulder,1), (@HJQ,@slot,71280,0,0,@t12ncshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-359/regalia-of-the-cleansing-flame
-- gloves https://www.wowhead.com/item=71532/gloves-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71532,0,0,3606,1), (@HJQ,@slot,71532,0,0,3606,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71533/hood-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71533,0,0,@t12hchead,1), (@HJQ,@slot,71533,0,0,@t12hchead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71534/leggings-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71534,0,0,3587,1), (@HJQ,@slot,71534,0,0,3587,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71535/vestment-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71535,0,0,3618,1), (@HJQ,@slot,71535,0,0,3618,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71536/shoulderwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71536,0,0,@t12hcshoulder,1), (@HJQ,@slot,71536,0,0,@t12hcshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 rogue Vestments of the Dark Phoenix
-- normal for points https://www.wowhead.com/item-set=1006/vestments-of-the-dark-phoenix
-- gloves https://www.wowhead.com/item=71046/dark-phoenix-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71046,0,0,@j16,1), (@HJQ,@slot,71046,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71047/dark-phoenix-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71047,0,0,@j22,1), (@HJQ,@slot,71047,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71048/dark-phoenix-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71048,0,0,@j22,1), (@HJQ,@slot,71048,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71045/dark-phoenix-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71045,0,0,@j22,1), (@HJQ,@slot,71045,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71049/dark-phoenix-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71049,0,0,@j16,1), (@HJQ,@slot,71049,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71047/dark-phoenix-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71047,0,0,@t12nvhead,1), (@HJQ,@slot,71047,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71049/dark-phoenix-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71049,0,0,@t12nvshoulder,1), (@HJQ,@slot,71049,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-355/vestments-of-the-dark-phoenix
-- gloves https://www.wowhead.com/item=71538/dark-phoenix-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71538,0,0,3595,1), (@HJQ,@slot,71538,0,0,3595,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71539/dark-phoenix-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71539,0,0,@t12hvhead,1), (@HJQ,@slot,71539,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71540/dark-phoenix-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71540,0,0,3576,1), (@HJQ,@slot,71540,0,0,3576,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71537/dark-phoenix-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71537,0,0,3612,1), (@HJQ,@slot,71537,0,0,3612,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71541/dark-phoenix-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71541,0,0,@t12hvshoulder,1), (@HJQ,@slot,71541,0,0,@t12hvshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 mage Firehawk Robes of Conflagration
-- normal for points https://www.wowhead.com/item-set=1007/firehawk-robes-of-conflagration
-- gloves https://www.wowhead.com/item=71286/firehawk-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71286,0,0,@j16,1), (@HJQ,@slot,71286,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71287/firehawk-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71287,0,0,@j22,1), (@HJQ,@slot,71287,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71288/firehawk-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71288,0,0,@j22,1), (@HJQ,@slot,71288,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71289/firehawk-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71289,0,0,@j22,1), (@HJQ,@slot,71289,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71290/firehawk-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71290,0,0,@j16,1), (@HJQ,@slot,71290,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71287/firehawk-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71287,0,0,@t12nvhead,1), (@HJQ,@slot,71287,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71290/firehawk-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71290,0,0,@t12nvshoulder,1), (@HJQ,@slot,71290,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-356/firehawk-robes-of-conflagration
-- gloves https://www.wowhead.com/item=71507/firehawk-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71507,0,0,3594,1), (@HJQ,@slot,71507,0,0,3594,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71508/firehawk-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71508,0,0,@t12hvhead,1), (@HJQ,@slot,71508,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71509/firehawk-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71509,0,0,3575,1), (@HJQ,@slot,71509,0,0,3575,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71510/firehawk-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71510,0,0,3615,1), (@HJQ,@slot,71510,0,0,3615,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71511/firehawk-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71511,0,0,@t12hvshoulder,1), (@HJQ,@slot,71511,0,0,@t12hvshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 DK Tank Elementium Deathplate Battlearmor
-- normal for points https://www.wowhead.com/item-set=1001/elementium-deathplate-battlearmor
-- gloves https://www.wowhead.com/item=70953/elementium-deathplate-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70953,0,0,@j16,1), (@HJQ,@slot,70953,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=70954/elementium-deathplate-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70954,0,0,@j22,1), (@HJQ,@slot,70954,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=70952/elementium-deathplate-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70952,0,0,@j22,1), (@HJQ,@slot,70952,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=70955/elementium-deathplate-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70955,0,0,@j22,1), (@HJQ,@slot,70955,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=70951/elementium-deathplate-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70951,0,0,@j16,1), (@HJQ,@slot,70951,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=70954/elementium-deathplate-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70954,0,0,@t12nvhead,1), (@HJQ,@slot,70954,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=70951/elementium-deathplate-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70951,0,0,@t12nvshoulder,1), (@HJQ,@slot,70951,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-350/elementium-deathplate-battlearmor
-- gloves https://www.wowhead.com/item=71482/elementium-deathplate-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71482,0,0,3590,1), (@HJQ,@slot,71482,0,0,3590,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71483/elementium-deathplate-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71483,0,0,@t12hvhead,1), (@HJQ,@slot,71483,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71484/elementium-deathplate-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71484,0,0,3571,1), (@HJQ,@slot,71484,0,0,3571,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71481/elementium-deathplate-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71481,0,0,3610,1), (@HJQ,@slot,71481,0,0,3610,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71485/elementium-deathplate-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71485,0,0,@t12hvshoulder,1), (@HJQ,@slot,71485,0,0,@t12hvshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 DK DPS Elementium Deathplate Battlegear
-- normal for points https://www.wowhead.com/item-set=1000/elementium-deathplate-battlegear
-- gloves https://www.wowhead.com/item=71059/elementium-deathplate-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71059,0,0,@j16,1), (@HJQ,@slot,71059,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71060/elementium-deathplate-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71060,0,0,@j22,1), (@HJQ,@slot,71060,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71061/elementium-deathplate-greaves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71061,0,0,@j22,1), (@HJQ,@slot,71061,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71058/elementium-deathplate-breastplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71058,0,0,@j22,1), (@HJQ,@slot,71058,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71062/elementium-deathplate-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71062,0,0,@j16,1), (@HJQ,@slot,71062,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71060/elementium-deathplate-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71060,0,0,@t12nvhead,1), (@HJQ,@slot,71060,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71062/elementium-deathplate-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71062,0,0,@t12nvshoulder,1), (@HJQ,@slot,71062,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-349/elementium-deathplate-battlegear
-- gloves https://www.wowhead.com/item=71477/elementium-deathplate-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71477,0,0,3589,1), (@HJQ,@slot,71477,0,0,3589,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71478/elementium-deathplate-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71478,0,0,@t12hvhead,1), (@HJQ,@slot,71478,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71479/elementium-deathplate-greaves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71479,0,0,3570,1), (@HJQ,@slot,71479,0,0,3570,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71476/elementium-deathplate-breastplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71476,0,0,3609,1), (@HJQ,@slot,71476,0,0,3609,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71480/elementium-deathplate-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71480,0,0,@t12hvshoulder,1), (@HJQ,@slot,71480,0,0,@t12hvshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 Druid Healer Obsidian Arborweave Vestments
-- normal for points https://www.wowhead.com/item-set=1004/obsidian-arborweave-vestments
-- gloves https://www.wowhead.com/item=71102/obsidian-arborweave-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71102,0,0,@j16,1), (@HJQ,@slot,71102,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71103/obsidian-arborweave-helm
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71103,0,0,@j22,1), (@HJQ,@slot,71103,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71104/obsidian-arborweave-legwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71104,0,0,@j22,1), (@HJQ,@slot,71104,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71105/obsidian-arborweave-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71105,0,0,@j22,1), (@HJQ,@slot,71105,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71106/obsidian-arborweave-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71106,0,0,@j16,1), (@HJQ,@slot,71106,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71103/obsidian-arborweave-helm
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71103,0,0,@t12nvhead,1), (@HJQ,@slot,71103,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71106/obsidian-arborweave-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71106,0,0,@t12nvshoulder,1), (@HJQ,@slot,71106,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-353/obsidian-arborweave-vestments
-- gloves https://www.wowhead.com/item=71491/obsidian-arborweave-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71491,0,0,3592,1), (@HJQ,@slot,71491,0,0,3592,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71492/obsidian-arborweave-helm
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71492,0,0,@t12hvhead,1), (@HJQ,@slot,71492,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71493/obsidian-arborweave-legwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71493,0,0,3573,1), (@HJQ,@slot,71493,0,0,3573,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71494/obsidian-arborweave-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71494,0,0,3613,1), (@HJQ,@slot,71494,0,0,3613,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71495/obsidian-arborweave-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71495,0,0,@t12hvshoulder,1), (@HJQ,@slot,71495,0,0,@t12hvshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 Druid Feral Obsidian Arborweave Battlegarb
-- normal for points https://www.wowhead.com/item-set=1002/obsidian-arborweave-battlegarb
-- gloves  https://www.wowhead.com/item=71097/obsidian-arborweave-grips
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71097,0,0,@j16,1), (@HJQ,@slot,71097,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71098/obsidian-arborweave-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71098,0,0,@j22,1), (@HJQ,@slot,71098,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71099/obsidian-arborweave-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71099,0,0,@j22,1), (@HJQ,@slot,71099,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71100/obsidian-arborweave-raiment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71100,0,0,@j22,1), (@HJQ,@slot,71100,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71101/obsidian-arborweave-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71101,0,0,@j16,1), (@HJQ,@slot,71101,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71098/obsidian-arborweave-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71098,0,0,@t12nvhead,1), (@HJQ,@slot,71098,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71101/obsidian-arborweave-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71101,0,0,@t12nvshoulder,1), (@HJQ,@slot,71101,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-351/obsidian-arborweave-battlegarb
-- gloves https://www.wowhead.com/item=71487/obsidian-arborweave-grips
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71487,0,0,3591,1), (@HJQ,@slot,71487,0,0,3591,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71488/obsidian-arborweave-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71488,0,0,@t12hvhead,1), (@HJQ,@slot,71488,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71489/obsidian-arborweave-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71489,0,0,3572,1), (@HJQ,@slot,71489,0,0,3572,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71486/obsidian-arborweave-raiment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71486,0,0,3611,1), (@HJQ,@slot,71486,0,0,3611,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71490/obsidian-arborweave-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71490,0,0,@t12hvshoulder,1), (@HJQ,@slot,71490,0,0,@t12hvshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 Druid Balance Obsidian Arborweave Regalia
-- normal for points https://www.wowhead.com/item-set=1003/obsidian-arborweave-regalia
-- gloves https://www.wowhead.com/item=71107/obsidian-arborweave-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71107,0,0,@j16,1), (@HJQ,@slot,71107,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71108/obsidian-arborweave-cover
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71108,0,0,@j22,1), (@HJQ,@slot,71108,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71109/obsidian-arborweave-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71109,0,0,@j22,1), (@HJQ,@slot,71109,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71110/obsidian-arborweave-vestment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71110,0,0,@j22,1), (@HJQ,@slot,71110,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71111/obsidian-arborweave-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71111,0,0,@j16,1), (@HJQ,@slot,71111,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71108/obsidian-arborweave-cover
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71108,0,0,@t12nvhead,1), (@HJQ,@slot,71108,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71111/obsidian-arborweave-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71111,0,0,@t12nvshoulder,1), (@HJQ,@slot,71111,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-352/obsidian-arborweave-regalia
-- gloves https://www.wowhead.com/item=71496/obsidian-arborweave-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71496,0,0,3593,1), (@HJQ,@slot,71496,0,0,3593,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71497/obsidian-arborweave-cover
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71497,0,0,@t12hvhead,1), (@HJQ,@slot,71497,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71498/obsidian-arborweave-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71498,0,0,3574,1), (@HJQ,@slot,71498,0,0,3574,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71499/obsidian-arborweave-vestment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71499,0,0,3614,1), (@HJQ,@slot,71499,0,0,3614,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71500/obsidian-arborweave-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71500,0,0,@t12hvshoulder,1), (@HJQ,@slot,71500,0,0,@t12hvshoulder,1);

Last I need to update the legacy justice quartermasters tier 11 armor, all their other vendor items are fine so it won't be too bad but this was quite mind-numbing so I'll probably take a break before I post that code...

Edit: fixed some typos.
 
Last edited:

kureji

Gold Supporter
Verified Member
19
2021
40
So while fixing the tier 11 for the vendors, I noticed two errors in the DBC.
The first is that there isn't an entry for an item cost of Leggings of the Forlorn Protector, they all require that and the normal version of the pants, I believe 3097 was supposed to be just the token but it's a duplicate of another entry.
Next, the rogue pants heroic entry has the item location in slot 3 instead of 2, but it doesn't seem to affect the price incorrectly because it still works, so it's no big deal.

So I set the price to be gold for the first error because I prefer things being easier rather than harder to get personally, but you can change the variable for @PL to be 3097 and hope the DBC gets fixed later or you can use 3038 if you want to use justice points for both entries...

SQL:
SELECT 96 INTO @slot; -- variable for keeping track of slot number

SELECT 3038 INTO @j22; -- declare variable for 2200 justice points
SELECT 3039 INTO @j16; -- declare variable for 1650 justice points

SELECT 3141 INTO @CG;
SELECT 3055 INTO @CH;
SELECT 3096 INTO @CL;
SELECT 3074 INTO @CC;
SELECT 3119 INTO @CS;

SELECT 3142 INTO @PG;
SELECT 3056 INTO @PH;
SELECT 0 INTO @PL; -- dbc seems to be missing this entry should be 3097?
SELECT 3075 INTO @PC;
SELECT 3120 INTO @PS;

SELECT 3140 INTO @VG;
SELECT 3054 INTO @VH;
SELECT 3095 INTO @VL;
SELECT 3073 INTO @VC;
SELECT 3118 INTO @VS;



SELECT 58154 INTO @ALJQ; -- Alliance Legacy Justice Quartermaster - Toren Landow
SELECT 58155 INTO @HLJQ; -- Horde Legacy Justice Quartermaster - Rugok

DELETE FROM npc_vendor WHERE (entry=@ALJQ OR entry=@HLJQ) AND slot>95; -- clears out not properly setup tier 11

-- T11 Pally Tank Reinforced Sapphirium Battlearmor
-- normal for points https://www.wowhead.com/item-set=934/reinforced-sapphirium-battlearmor
-- gloves https://www.wowhead.com/item=60355/reinforced-sapphirium-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60355,0,0,@j16,1), (@HLJQ,@slot,60355,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60356/reinforced-sapphirium-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60356,0,0,@j16,1), (@HLJQ,@slot,60356,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60357/reinforced-sapphirium-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60357,0,0,@j16,1), (@HLJQ,@slot,60357,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60354/reinforced-sapphirium-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60354,0,0,@j16,1), (@HLJQ,@slot,60354,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60358/reinforced-sapphirium-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60358,0,0,@j16,1), (@HLJQ,@slot,60358,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60355,0,0,@CG,1), (@HLJQ,@slot,60355,0,0,@CG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60356,0,0,@CH,1), (@HLJQ,@slot,60356,0,0,@CH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60357,0,0,@CL,1), (@HLJQ,@slot,60357,0,0,@CL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60354,0,0,@CC,1), (@HLJQ,@slot,60354,0,0,@CC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60358,0,0,@CS,1), (@HLJQ,@slot,60358,0,0,@CS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-291/reinforced-sapphirium-battlearmor
-- gloves https://www.wowhead.com/item=65225/reinforced-sapphirium-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65225,0,0,3154,1), (@HLJQ,@slot,65225,0,0,3154,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65226/reinforced-sapphirium-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65226,0,0,3060,1), (@HLJQ,@slot,65226,0,0,3060,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65227/reinforced-sapphirium-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65227,0,0,3104,1), (@HLJQ,@slot,65227,0,0,3104,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65224/reinforced-sapphirium-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65224,0,0,3080,1), (@HLJQ,@slot,65224,0,0,3080,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65228/reinforced-sapphirium-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65228,0,0,3127,1), (@HLJQ,@slot,65228,0,0,3127,1);
SELECT @slot + 1 INTO @slot;

-- T11 Pally Healer Reinforced Sapphirium Regalia
-- normal for points https://www.wowhead.com/item-set=933/reinforced-sapphirium-regalia
-- gloves https://www.wowhead.com/item=60363/reinforced-sapphirium-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60363,0,0,@j16,1), (@HLJQ,@slot,60363,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60359/reinforced-sapphirium-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60359,0,0,@j16,1), (@HLJQ,@slot,60359,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60361/reinforced-sapphirium-greaves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60361,0,0,@j16,1), (@HLJQ,@slot,60361,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60360/reinforced-sapphirium-breastplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60360,0,0,@j16,1), (@HLJQ,@slot,60360,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60362/reinforced-sapphirium-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60362,0,0,@j16,1), (@HLJQ,@slot,60362,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60363,0,0,@CG,1), (@HLJQ,@slot,60363,0,0,@CG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60359,0,0,@CH,1), (@HLJQ,@slot,60359,0,0,@CH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60361,0,0,@CL,1), (@HLJQ,@slot,60361,0,0,@CL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60360,0,0,@CC,1), (@HLJQ,@slot,60360,0,0,@CC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60362,0,0,@CS,1), (@HLJQ,@slot,60362,0,0,@CS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-290/reinforced-sapphirium-regalia
-- gloves https://www.wowhead.com/item=65220/reinforced-sapphirium-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65220,0,0,3153,1), (@HLJQ,@slot,65220,0,0,3153,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65221/reinforced-sapphirium-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65221,0,0,3061,1), (@HLJQ,@slot,65221,0,0,3061,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65222/reinforced-sapphirium-greaves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65222,0,0,3105,1), (@HLJQ,@slot,65222,0,0,3105,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65219/reinforced-sapphirium-breastplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65219,0,0,3081,1), (@HLJQ,@slot,65219,0,0,3081,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65223/reinforced-sapphirium-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65223,0,0,3128,1), (@HLJQ,@slot,65223,0,0,3128,1);
SELECT @slot + 1 INTO @slot;

-- T11 Pally DPS Reinforced Sapphirium Battleplate
-- normal for points https://www.wowhead.com/item-set=932/reinforced-sapphirium-battleplate
-- gloves https://www.wowhead.com/item=60345/reinforced-sapphirium-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60345,0,0,@j16,1), (@HLJQ,@slot,60345,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60346/reinforced-sapphirium-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60346,0,0,@j16,1), (@HLJQ,@slot,60346,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60347/reinforced-sapphirium-legplates
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60347,0,0,@j16,1), (@HLJQ,@slot,60347,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60344/reinforced-sapphirium-battleplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60344,0,0,@j16,1), (@HLJQ,@slot,60344,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60348/reinforced-sapphirium-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60348,0,0,@j16,1), (@HLJQ,@slot,60348,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60345,0,0,@CG,1), (@HLJQ,@slot,60345,0,0,@CG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60346,0,0,@CH,1), (@HLJQ,@slot,60346,0,0,@CH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60347,0,0,@CL,1), (@HLJQ,@slot,60347,0,0,@CL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60344,0,0,@CC,1), (@HLJQ,@slot,60344,0,0,@CC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60348,0,0,@CS,1), (@HLJQ,@slot,60348,0,0,@CS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-289/reinforced-sapphirium-battleplate
-- gloves https://www.wowhead.com/item=65215/reinforced-sapphirium-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65215,0,0,3152,1), (@HLJQ,@slot,65215,0,0,3152,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65216/reinforced-sapphirium-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65216,0,0,3062,1), (@HLJQ,@slot,65216,0,0,3062,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65217/reinforced-sapphirium-legplates
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65217,0,0,3106,1), (@HLJQ,@slot,65217,0,0,3106,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65214/reinforced-sapphirium-battleplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65214,0,0,3082,1), (@HLJQ,@slot,65214,0,0,3082,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65218/reinforced-sapphirium-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65218,0,0,3129,1), (@HLJQ,@slot,65218,0,0,3129,1);
SELECT @slot + 1 INTO @slot;

-- T11 Priest DPS Mercurial Regalia
-- normal for points https://www.wowhead.com/item-set=936/mercurial-regalia
-- gloves https://www.wowhead.com/item=60257/mercurial-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60257,0,0,@j16,1), (@HLJQ,@slot,60257,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60256/mercurial-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60256,0,0,@j16,1), (@HLJQ,@slot,60256,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60255/mercurial-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60255,0,0,@j16,1), (@HLJQ,@slot,60255,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60254/mercurial-vestment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60254,0,0,@j16,1), (@HLJQ,@slot,60254,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60253/mercurial-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60253,0,0,@j16,1), (@HLJQ,@slot,60253,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60257,0,0,@CG,1), (@HLJQ,@slot,60257,0,0,@CG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60256,0,0,@CH,1), (@HLJQ,@slot,60256,0,0,@CH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60255,0,0,@CL,1), (@HLJQ,@slot,60255,0,0,@CL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60254,0,0,@CC,1), (@HLJQ,@slot,60254,0,0,@CC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60253,0,0,@CS,1), (@HLJQ,@slot,60253,0,0,@CS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-293/mercurial-regalia
-- gloves https://www.wowhead.com/item=65234/mercurial-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65234,0,0,3156,1), (@HLJQ,@slot,65234,0,0,3156,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65235/mercurial-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65235,0,0,3059,1), (@HLJQ,@slot,65235,0,0,3059,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65236/mercurial-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65236,0,0,3102,1), (@HLJQ,@slot,65236,0,0,3102,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65237/mercurial-vestment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65237,0,0,3088,1), (@HLJQ,@slot,65237,0,0,3088,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65238/mercurial-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65238,0,0,3125,1), (@HLJQ,@slot,65238,0,0,3125,1);
SELECT @slot + 1 INTO @slot;

-- T11 Priest Healer Mercurial Vestments
-- normal for points https://www.wowhead.com/item-set=935/mercurial-vestments
-- gloves https://www.wowhead.com/item=60275/mercurial-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60275,0,0,@j16,1), (@HLJQ,@slot,60275,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60258/mercurial-cowl
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60258,0,0,@j16,1), (@HLJQ,@slot,60258,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60261/mercurial-legwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60261,0,0,@j16,1), (@HLJQ,@slot,60261,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60259/mercurial-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60259,0,0,@j16,1), (@HLJQ,@slot,60259,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60262/mercurial-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60262,0,0,@j16,1), (@HLJQ,@slot,60262,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60275,0,0,@CG,1), (@HLJQ,@slot,60275,0,0,@CG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60258,0,0,@CH,1), (@HLJQ,@slot,60258,0,0,@CH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60261,0,0,@CL,1), (@HLJQ,@slot,60261,0,0,@CL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60259,0,0,@CC,1), (@HLJQ,@slot,60259,0,0,@CC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60262,0,0,@CS,1), (@HLJQ,@slot,60262,0,0,@CS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-292/mercurial-vestments
-- gloves https://www.wowhead.com/item=65229/mercurial-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65229,0,0,3155,1), (@HLJQ,@slot,65229,0,0,3155,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65230/mercurial-cowl
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65230,0,0,3117,1), (@HLJQ,@slot,65230,0,0,3117,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65231/mercurial-legwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65231,0,0,3103,1), (@HLJQ,@slot,65231,0,0,3103,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65232/mercurial-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65232,0,0,3089,1), (@HLJQ,@slot,65232,0,0,3089,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65233/mercurial-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65233,0,0,3126,1), (@HLJQ,@slot,65233,0,0,3126,1);
SELECT @slot + 1 INTO @slot;

-- T11 warlock Shadowflame Regalia
-- normal for points https://www.wowhead.com/item-set=941/shadowflame-regalia
-- gloves https://www.wowhead.com/item=60248/shadowflame-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60248,0,0,@j16,1), (@HLJQ,@slot,60248,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60249/shadowflame-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60249,0,0,@j16,1), (@HLJQ,@slot,60249,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60250/shadowflame-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60250,0,0,@j16,1), (@HLJQ,@slot,60250,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60251/shadowflame-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60251,0,0,@j16,1), (@HLJQ,@slot,60251,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60252/shadowflame-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60252,0,0,@j16,1), (@HLJQ,@slot,60252,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60248,0,0,@CG,1), (@HLJQ,@slot,60248,0,0,@CG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60249,0,0,@CH,1), (@HLJQ,@slot,60249,0,0,@CH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60250,0,0,@CL,1), (@HLJQ,@slot,60250,0,0,@CL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60251,0,0,@CC,1), (@HLJQ,@slot,60251,0,0,@CC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60252,0,0,@CS,1), (@HLJQ,@slot,60252,0,0,@CS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-298/shadowflame-regalia
-- gloves https://www.wowhead.com/item=65259/shadowflame-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65259,0,0,3143,1), (@HLJQ,@slot,65259,0,0,3143,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65260/shadowflame-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65260,0,0,3072,1), (@HLJQ,@slot,65260,0,0,3072,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65261/shadowflame-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65261,0,0,3116,1), (@HLJQ,@slot,65261,0,0,3116,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65262/shadowflame-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65262,0,0,3094,1), (@HLJQ,@slot,65262,0,0,3064,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65263/shadowflame-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65263,0,0,3139,1), (@HLJQ,@slot,65263,0,0,3139,1);
SELECT @slot + 1 INTO @slot;

-- T11 warrior tank Earthen Batleplate
-- norm for points https://www.wowhead.com/item-set=943/earthen-battleplate
-- gloves https://www.wowhead.com/item=60332/earthen-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60332,0,0,@j16,1), (@HLJQ,@slot,60332,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60328/earthen-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60328,0,0,@j16,1), (@HLJQ,@slot,60328,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60330/earthen-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60330,0,0,@j16,1), (@HLJQ,@slot,60330,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60329/earthen-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60329,0,0,@j16,1), (@HLJQ,@slot,60329,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60331/earthen-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60331,0,0,@j16,1), (@HLJQ,@slot,60331,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60332,0,0,@PG,1), (@HLJQ,@slot,60332,0,0,@PG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60328,0,0,@PH,1), (@HLJQ,@slot,60328,0,0,@PH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60330,0,0,@PL,1), (@HLJQ,@slot,60330,0,0,@PL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60329,0,0,@PC,1), (@HLJQ,@slot,60329,0,0,@PC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60331,0,0,@PS,1), (@HLJQ,@slot,60331,0,0,@PS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-300/earthen-battleplate
-- gloves https://www.wowhead.com/item=65270/earthen-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65270,0,0,3161,1), (@HLJQ,@slot,65270,0,0,3161,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65271/earthen-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65271,0,0,3070,1), (@HLJQ,@slot,65271,0,0,3070,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65272/earthen-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65272,0,0,3114,1), (@HLJQ,@slot,65272,0,0,3114,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65269/earthen-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65269,0,0,3086,1), (@HLJQ,@slot,65269,0,0,3086,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65273/earthen-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65273,0,0,3137,1), (@HLJQ,@slot,65273,0,0,3137,1);
SELECT @slot + 1 INTO @slot;

-- T11 warrior dps Earthen Warplate
-- norm for points https://www.wowhead.com/item-set=942/earthen-warplate
-- gloves https://www.wowhead.com/item=60326/earthen-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60326,0,0,@j16,1), (@HLJQ,@slot,60326,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60325/earthen-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60325,0,0,@j16,1), (@HLJQ,@slot,60325,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60324/earthen-legplates
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60324,0,0,@j16,1), (@HLJQ,@slot,60324,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60323/earthen-battleplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60323,0,0,@j16,1), (@HLJQ,@slot,60323,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60327/earthen-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60327,0,0,@j16,1), (@HLJQ,@slot,60327,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60326,0,0,@PG,1), (@HLJQ,@slot,60326,0,0,@PG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60325,0,0,@PH,1), (@HLJQ,@slot,60325,0,0,@PH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60324,0,0,@PL,1), (@HLJQ,@slot,60324,0,0,@PL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60323,0,0,@PC,1), (@HLJQ,@slot,60323,0,0,@PC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60327,0,0,@PS,1), (@HLJQ,@slot,60327,0,0,@PS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-299/earthen-warplate
-- gloves https://www.wowhead.com/item=65265/earthen-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65265,0,0,3160,1), (@HLJQ,@slot,65265,0,0,3160,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65266/earthen-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65266,0,0,3071,1), (@HLJQ,@slot,65266,0,0,3071,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65267/earthen-legplates
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65267,0,0,3115,1), (@HLJQ,@slot,65267,0,0,3115,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65264/earthen-battleplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65264,0,0,3087,1), (@HLJQ,@slot,65264,0,0,3087,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65268/earthen-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65268,0,0,3138,1), (@HLJQ,@slot,65268,0,0,3138,1);
SELECT @slot + 1 INTO @slot;

-- T11 shaman healer Vestments of the Raging Elements
-- norm for points https://www.wowhead.com/item-set=938/vestments-of-the-raging-elements
-- gloves https://www.wowhead.com/item=60312/handwraps-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60312,0,0,@j16,1), (@HLJQ,@slot,60312,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60308/faceguard-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60308,0,0,@j16,1), (@HLJQ,@slot,60308,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60310/legwraps-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60310,0,0,@j16,1), (@HLJQ,@slot,60310,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60309/tunic-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60309,0,0,@j16,1), (@HLJQ,@slot,60309,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60311/mantle-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60311,0,0,@j16,1), (@HLJQ,@slot,60311,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60312,0,0,@PG,1), (@HLJQ,@slot,60312,0,0,@PG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60308,0,0,@PH,1), (@HLJQ,@slot,60308,0,0,@PH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60310,0,0,@PL,1), (@HLJQ,@slot,60310,0,0,@PL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60309,0,0,@PC,1), (@HLJQ,@slot,60309,0,0,@PC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60311,0,0,@PS,1), (@HLJQ,@slot,60311,0,0,@PS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-295/vestments-of-the-raging-elements
-- gloves https://www.wowhead.com/item=65245/handwraps-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65245,0,0,3158,1), (@HLJQ,@slot,65245,0,0,3158,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65246/faceguard-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65246,0,0,3057,1), (@HLJQ,@slot,65246,0,0,3057,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65247/legwraps-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65247,0,0,3100,1), (@HLJQ,@slot,65247,0,0,3100,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65244/tunic-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65244,0,0,3078,1), (@HLJQ,@slot,65244,0,0,3078,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65248/mantle-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65248,0,0,3123,1), (@HLJQ,@slot,65248,0,0,3123,1);
SELECT @slot + 1 INTO @slot;

-- T11 shaman melee dps Battlegear of the Raging Elements
-- norm for points https://www.wowhead.com/item-set=939/battlegear-of-the-raging-elements
-- gloves https://www.wowhead.com/item=60319/grips-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60319,0,0,@j16,1), (@HLJQ,@slot,60319,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60320/helmet-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60320,0,0,@j16,1), (@HLJQ,@slot,60320,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60321/legguards-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60321,0,0,@j16,1), (@HLJQ,@slot,60321,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60318/cuirass-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60318,0,0,@j16,1), (@HLJQ,@slot,60318,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60322/spaulders-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60322,0,0,@j16,1), (@HLJQ,@slot,60322,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60319,0,0,@PG,1), (@HLJQ,@slot,60319,0,0,@PG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60320,0,0,@PH,1), (@HLJQ,@slot,60320,0,0,@PH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60321,0,0,@PL,1), (@HLJQ,@slot,60321,0,0,@PL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60318,0,0,@PC,1), (@HLJQ,@slot,60318,0,0,@PC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60322,0,0,@PS,1), (@HLJQ,@slot,60322,0,0,@PS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-296/battlegear-of-the-raging-elements
-- gloves https://www.wowhead.com/item=65250/grips-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65250,0,0,3159,1), (@HLJQ,@slot,65250,0,0,3159,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65251/helmet-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65251,0,0,3053,1), (@HLJQ,@slot,65251,0,0,3053,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65252/legguards-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65252,0,0,3099,1), (@HLJQ,@slot,65252,0,0,3099,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65249/cuirass-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65249,0,0,3077,1), (@HLJQ,@slot,65249,0,0,3077,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65253/spaulders-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65253,0,0,3122,1), (@HLJQ,@slot,65253,0,0,3122,1);
SELECT @slot + 1 INTO @slot;

-- T11 shaman caster Regalia of the Raging Elements
-- norm for points https://www.wowhead.com/item-set=940/regalia-of-the-raging-elements
-- gloves https://www.wowhead.com/item=60314/gloves-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60314,0,0,@j16,1), (@HLJQ,@slot,60314,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60315/headpiece-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60315,0,0,@j16,1), (@HLJQ,@slot,60315,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60316/kilt-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60316,0,0,@j16,1), (@HLJQ,@slot,60316,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60313/hauberk-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60313,0,0,@j16,1), (@HLJQ,@slot,60313,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60317/shoulderwraps-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60317,0,0,@j16,1), (@HLJQ,@slot,60317,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60314,0,0,@PG,1), (@HLJQ,@slot,60314,0,0,@PG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60315,0,0,@PH,1), (@HLJQ,@slot,60315,0,0,@PH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60316,0,0,@PL,1), (@HLJQ,@slot,60316,0,0,@PL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60313,0,0,@PC,1), (@HLJQ,@slot,60313,0,0,@PC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60317,0,0,@PS,1), (@HLJQ,@slot,60317,0,0,@PS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-297/regalia-of-the-raging-elements
-- gloves https://www.wowhead.com/item=65255/gloves-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65255,0,0,3144,1), (@HLJQ,@slot,65255,0,0,3144,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65256/headpiece-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65256,0,0,3052,1), (@HLJQ,@slot,65256,0,0,3052,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65257/kilt-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65257,0,0,3098,1), (@HLJQ,@slot,65257,0,0,3098,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65254/hauberk-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65254,0,0,3076,1), (@HLJQ,@slot,65254,0,0,3076,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65258/shoulderwraps-of-the-raging-elements
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65258,0,0,3121,1), (@HLJQ,@slot,65258,0,0,3121,1);
SELECT @slot + 1 INTO @slot;

-- T11 hunter Lightning-Charged Battlegear
-- norm for points https://www.wowhead.com/item-set=930/lightning-charged-battlegear
-- gloves https://www.wowhead.com/item=60307/lightning-charged-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60307,0,0,@j16,1), (@HLJQ,@slot,60307,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60303/lightning-charged-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60303,0,0,@j16,1), (@HLJQ,@slot,60303,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60305/lightning-charged-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60305,0,0,@j16,1), (@HLJQ,@slot,60305,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60304/lightning-charged-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60304,0,0,@j16,1), (@HLJQ,@slot,60304,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60306/lightning-charged-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60306,0,0,@j16,1), (@HLJQ,@slot,60306,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60307,0,0,@PG,1), (@HLJQ,@slot,60307,0,0,@PG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60303,0,0,@PH,1), (@HLJQ,@slot,60303,0,0,@PH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60305,0,0,@PL,1), (@HLJQ,@slot,60305,0,0,@PL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60304,0,0,@PC,1), (@HLJQ,@slot,60304,0,0,@PC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60306,0,0,@PS,1), (@HLJQ,@slot,60306,0,0,@PS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-287/lightning-charged-battlegear
-- gloves https://www.wowhead.com/item=65205/lightning-charged-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65205,0,0,3150,1), (@HLJQ,@slot,65205,0,0,3150,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65206/lightning-charged-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65206,0,0,3064,1), (@HLJQ,@slot,65206,0,0,3064,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65207/lightning-charged-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65207,0,0,3108,1), (@HLJQ,@slot,65207,0,0,3108,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65204/lightning-charged-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65204,0,0,3083,1), (@HLJQ,@slot,65204,0,0,3083,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65208/lightning-charged-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65208,0,0,3131,1), (@HLJQ,@slot,65208,0,0,3131,1);
SELECT @slot + 1 INTO @slot;

-- T11 DK tank Magma Plated Battlearmor
-- norm for points https://www.wowhead.com/item-set=926/magma-plated-battlearmor
-- gloves https://www.wowhead.com/item=60350/magma-plated-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60350,0,0,@j16,1), (@HLJQ,@slot,60350,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60351/magma-plated-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60351,0,0,@j16,1), (@HLJQ,@slot,60351,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60352/magma-plated-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60352,0,0,@j16,1), (@HLJQ,@slot,60352,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60349/magma-plated-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60349,0,0,@j16,1), (@HLJQ,@slot,60349,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60353/magma-plated-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60353,0,0,@j16,1), (@HLJQ,@slot,60353,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60350,0,0,@CG,1), (@HLJQ,@slot,60350,0,0,@VG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60351,0,0,@VH,1), (@HLJQ,@slot,60351,0,0,@VH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60352,0,0,@VL,1), (@HLJQ,@slot,60352,0,0,@VL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60349,0,0,@VC,1), (@HLJQ,@slot,60349,0,0,@VC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60353,0,0,@VS,1), (@HLJQ,@slot,60353,0,0,@VS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-283/magma-plated-battlearmor
-- gloves https://www.wowhead.com/item=65185/magma-plated-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65185,0,0,3146,1), (@HLJQ,@slot,65185,0,0,3146,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65186/magma-plated-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65186,0,0,3068,1), (@HLJQ,@slot,65186,0,0,3068,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65187/magma-plated-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65187,0,0,3112,1), (@HLJQ,@slot,65187,0,0,3112,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65184/magma-plated-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65184,0,0,3084,1), (@HLJQ,@slot,65184,0,0,3084,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65188/magma-plated-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65188,0,0,3153,1), (@HLJQ,@slot,65188,0,0,3153,1);
SELECT @slot + 1 INTO @slot;

-- T11 DK DPS Magma Plated Battlegear
-- norm for points https://www.wowhead.com/item-set=925/magma-plated-battlegear
-- gloves https://www.wowhead.com/item=60340/magma-plated-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60340,0,0,@j16,1), (@HLJQ,@slot,60340,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60341/magma-plated-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60341,0,0,@j16,1), (@HLJQ,@slot,60341,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60342/magma-plated-legplates
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60342,0,0,@j16,1), (@HLJQ,@slot,60342,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60339/magma-plated-battleplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60339,0,0,@j16,1), (@HLJQ,@slot,60339,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60343/magma-plated-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60343,0,0,@j16,1), (@HLJQ,@slot,60343,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60340,0,0,@CG,1), (@HLJQ,@slot,60340,0,0,@VG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60341,0,0,@VH,1), (@HLJQ,@slot,60341,0,0,@VH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60342,0,0,@VL,1), (@HLJQ,@slot,60342,0,0,@VL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60339,0,0,@VC,1), (@HLJQ,@slot,60339,0,0,@VC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60343,0,0,@VS,1), (@HLJQ,@slot,60343,0,0,@VS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-282/magma-plated-battlegear
-- gloves https://www.wowhead.com/item=65180/magma-plated-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65180,0,0,3145,1), (@HLJQ,@slot,65180,0,0,3145,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65181/magma-plated-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65181,0,0,3069,1), (@HLJQ,@slot,65181,0,0,3069,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65182/magma-plated-legplates
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65182,0,0,3113,1), (@HLJQ,@slot,65182,0,0,3113,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65179/magma-plated-battleplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65179,0,0,3085,1), (@HLJQ,@slot,65179,0,0,3085,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65183/magma-plated-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65183,0,0,3136,1), (@HLJQ,@slot,65183,0,0,3136,1);
SELECT @slot + 1 INTO @slot;

-- T11 mage Firelords Vestments
-- norm for points https://www.wowhead.com/item-set=931/firelords-vestments
-- gloves https://www.wowhead.com/item=60247/firelords-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60247,0,0,@j16,1), (@HLJQ,@slot,60247,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60243/firelords-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60243,0,0,@j16,1), (@HLJQ,@slot,60243,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60245/firelords-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60245,0,0,@j16,1), (@HLJQ,@slot,60245,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60244/firelords-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60244,0,0,@j16,1), (@HLJQ,@slot,60244,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60246/firelords-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60246,0,0,@j16,1), (@HLJQ,@slot,60246,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60247,0,0,@CG,1), (@HLJQ,@slot,60247,0,0,@VG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60243,0,0,@VH,1), (@HLJQ,@slot,60243,0,0,@VH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60245,0,0,@VL,1), (@HLJQ,@slot,60245,0,0,@VL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60244,0,0,@VC,1), (@HLJQ,@slot,60244,0,0,@VC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60246,0,0,@VS,1), (@HLJQ,@slot,60246,0,0,@VS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-288/firelords-vestments
-- gloves https://www.wowhead.com/item=65209/firelords-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65209,0,0,3151,1), (@HLJQ,@slot,65209,0,0,3151,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65210/firelords-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65210,0,0,3063,1), (@HLJQ,@slot,65210,0,0,3063,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65211/firelords-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65211,0,0,3107,1), (@HLJQ,@slot,65211,0,0,3107,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65212/firelords-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65212,0,0,3090,1), (@HLJQ,@slot,65212,0,0,3090,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65213/firelords-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65213,0,0,3130,1), (@HLJQ,@slot,65213,0,0,3130,1);
SELECT @slot + 1 INTO @slot;

-- T11 rogue Wind Dancers Regalia
-- norm for points https://www.wowhead.com/item-set=937/wind-dancers-regalia
-- gloves https://www.wowhead.com/item=60298/wind-dancers-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60298,0,0,@j16,1), (@HLJQ,@slot,60298,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60299/wind-dancers-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60299,0,0,@j16,1), (@HLJQ,@slot,60299,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60300/wind-dancers-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60300,0,0,@j16,1), (@HLJQ,@slot,60300,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60301/wind-dancers-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60301,0,0,@j16,1), (@HLJQ,@slot,60301,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60302/wind-dancers-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60302,0,0,@j16,1), (@HLJQ,@slot,60302,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60298,0,0,@CG,1), (@HLJQ,@slot,60298,0,0,@VG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60299,0,0,@VH,1), (@HLJQ,@slot,60299,0,0,@VH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60300,0,0,@VL,1), (@HLJQ,@slot,60300,0,0,@VL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60301,0,0,@VC,1), (@HLJQ,@slot,60301,0,0,@VC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60302,0,0,@VS,1), (@HLJQ,@slot,60302,0,0,@VS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-294/wind-dancers-regalia
-- gloves https://www.wowhead.com/item=65240/wind-dancers-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65240,0,0,3157,1), (@HLJQ,@slot,65240,0,0,3157,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65241/wind-dancers-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65241,0,0,3058,1), (@HLJQ,@slot,65241,0,0,3058,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65242/wind-dancers-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65242,0,0,3101,1), (@HLJQ,@slot,65242,0,0,3101,1); -- dbc error has item id in slot 2 instead of 1
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65239/wind-dancers-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65239,0,0,3079,1), (@HLJQ,@slot,65239,0,0,3079,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65243/wind-dancers-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65243,0,0,3124,1), (@HLJQ,@slot,65243,0,0,3124,1);
SELECT @slot + 1 INTO @slot;

-- T11 druid healer Stormriders Vestments
-- norm for points https://www.wowhead.com/item-set=928/stormriders-vestments
-- gloves https://www.wowhead.com/item=60280/stormriders-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60280,0,0,@j16,1), (@HLJQ,@slot,60280,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60277/stormriders-helm
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60277,0,0,@j16,1), (@HLJQ,@slot,60277,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60278/stormriders-legwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60278,0,0,@j16,1), (@HLJQ,@slot,60278,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60276/stormriders-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60276,0,0,@j16,1), (@HLJQ,@slot,60276,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60279/stormriders-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60279,0,0,@j16,1), (@HLJQ,@slot,60279,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves https://www.wowhead.com/item=65194/stormriders-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60280,0,0,@CG,1), (@HLJQ,@slot,60280,0,0,@VG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60277,0,0,@VH,1), (@HLJQ,@slot,60277,0,0,@VH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60278,0,0,@VL,1), (@HLJQ,@slot,60278,0,0,@VL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60276,0,0,@VC,1), (@HLJQ,@slot,60276,0,0,@VC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60279,0,0,@VS,1), (@HLJQ,@slot,60279,0,0,@VS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-285/stormriders-vestments
-- gloves https://www.wowhead.com/item=65194/stormriders-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65194,0,0,3148,1), (@HLJQ,@slot,65194,0,0,3148,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65195/stormriders-helm
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65195,0,0,3066,1), (@HLJQ,@slot,65195,0,0,3066,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65196/stormriders-legwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65196,0,0,3110,1), (@HLJQ,@slot,65196,0,0,3110,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65197/stormriders-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65197,0,0,3092,1), (@HLJQ,@slot,65197,0,0,3092,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65198/stormriders-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65198,0,0,3133,1), (@HLJQ,@slot,65198,0,0,3133,1);
SELECT @slot + 1 INTO @slot;

-- T11 druid feral Stormwiders Battlegarb
-- norm for points https://www.wowhead.com/item-set=927/stormriders-battlegarb
-- gloves https://www.wowhead.com/item=60290/stormriders-grips
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60290,0,0,@j16,1), (@HLJQ,@slot,60290,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60286/stormriders-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60286,0,0,@j16,1), (@HLJQ,@slot,60286,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60288/stormriders-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60288,0,0,@j16,1), (@HLJQ,@slot,60288,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60287/stormriders-raiment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60287,0,0,@j16,1), (@HLJQ,@slot,60287,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60289/stormriders-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60289,0,0,@j16,1), (@HLJQ,@slot,60289,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60290,0,0,@CG,1), (@HLJQ,@slot,60290,0,0,@VG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60286,0,0,@VH,1), (@HLJQ,@slot,60286,0,0,@VH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60288,0,0,@VL,1), (@HLJQ,@slot,60288,0,0,@VL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60287,0,0,@VC,1), (@HLJQ,@slot,60287,0,0,@VC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60289,0,0,@VS,1), (@HLJQ,@slot,60289,0,0,@VS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-284/stormriders-battlegarb
-- gloves https://www.wowhead.com/item=65189/stormriders-grips
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65189,0,0,3147,1), (@HLJQ,@slot,65189,0,0,3147,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65190/stormriders-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65190,0,0,3067,1), (@HLJQ,@slot,65190,0,0,3067,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65191/stormriders-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65191,0,0,3111,1), (@HLJQ,@slot,65191,0,0,3111,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65192/stormriders-raiment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65192,0,0,3093,1), (@HLJQ,@slot,65192,0,0,3093,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65193/stormriders-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65193,0,0,3134,1), (@HLJQ,@slot,65193,0,0,3134,1);
SELECT @slot + 1 INTO @slot;

-- T11 druid caster Stormwiders Regalia
-- norm for points https://www.wowhead.com/item-set=929/stormriders-regalia
-- gloves https://www.wowhead.com/item=60285/stormriders-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60285,0,0,@j16,1), (@HLJQ,@slot,60285,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=60282/stormriders-cover
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60282,0,0,@j16,1), (@HLJQ,@slot,60282,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=60283/stormriders-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60283,0,0,@j16,1), (@HLJQ,@slot,60283,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=60281/stormriders-vestment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60281,0,0,@j16,1), (@HLJQ,@slot,60281,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=60284/stormriders-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60284,0,0,@j16,1), (@HLJQ,@slot,60284,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- norm for tokens
-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60285,0,0,@CG,1), (@HLJQ,@slot,60285,0,0,@VG,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60282,0,0,@VH,1), (@HLJQ,@slot,60282,0,0,@VH,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60283,0,0,@VL,1), (@HLJQ,@slot,60283,0,0,@VL,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60281,0,0,@VC,1), (@HLJQ,@slot,60281,0,0,@VC,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,60284,0,0,@VS,1), (@HLJQ,@slot,60284,0,0,@VS,1);
SELECT @slot + 1 INTO @slot;
-- heroic https://www.wowhead.com/item-set=-286/stormriders-regalia
-- gloves https://www.wowhead.com/item=65199/stormriders-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65199,0,0,3149,1), (@HLJQ,@slot,65199,0,0,3149,1);
SELECT @slot + 1 INTO @slot;
-- head https://www.wowhead.com/item=65200/stormriders-cover
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65200,0,0,3065,1), (@HLJQ,@slot,65200,0,0,3065,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=65201/stormriders-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65201,0,0,3109,1), (@HLJQ,@slot,65201,0,0,3109,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=65202/stormriders-vestment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65202,0,0,3091,1), (@HLJQ,@slot,65202,0,0,3091,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=65203/stormriders-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65203,0,0,3132,1), (@HLJQ,@slot,65203,0,0,3132,1);
SELECT @slot + 1 INTO @slot;


-- gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,67430,0,0,3329,1), (@HLJQ,@slot,67430,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,67429,0,0,3329,1), (@HLJQ,@slot,67429,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,67431,0,0,3329,1), (@HLJQ,@slot,67431,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
-- head
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65000,0,0,3329,1), (@HLJQ,@slot,65000,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65001,0,0,3329,1), (@HLJQ,@slot,65001,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65002,0,0,3329,1), (@HLJQ,@slot,65002,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
-- legs
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,67427,0,0,3329,1), (@HLJQ,@slot,67427,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,67428,0,0,3329,1), (@HLJQ,@slot,67428,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,67426,0,0,3329,1), (@HLJQ,@slot,67426,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
-- chest
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,67424,0,0,3329,1), (@HLJQ,@slot,67424,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,67423,0,0,3329,1), (@HLJQ,@slot,67423,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,67425,0,0,3329,1), (@HLJQ,@slot,67425,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
-- shoulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65087,0,0,3329,1), (@HLJQ,@slot,65087,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65088,0,0,3329,1), (@HLJQ,@slot,65088,0,0,3329,1);
SELECT @slot + 1 INTO @slot;
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@ALJQ,@slot,65089,0,0,3329,1), (@HLJQ,@slot,65089,0,0,3329,1);
 
Last edited:

Jivani19

Elune Adore (FR)
Gold Supporter
Epic Member
470
2021
350
Location
France
Next up I needed to update the inventory of the justice quartermaster to tier 12 level. I was a little smarter this time around and utilized variables to minimize my manual data entry.

SQL:
SELECT 1 INTO @slot; -- variable for keeping track of slot number

SELECT 3038 INTO @j22; -- declare variable for 2200 justice points
SELECT 3039 INTO @j16; -- declare variable for 1650 justice points
SELECT 3040 INTO @j12; -- declare variable for 1250 justice points
SELECT 3042 INTO @j7; -- declare variable for 700 justice points

SELECT 44246 INTO @AJQ; -- Alliance Justice Quartermaster - Magatha Silverton
SELECT 46555 INTO @HJQ; -- Horde Justice Quartermaster - Gunra

DELETE FROM npc_vendor WHERE entry=@AJQ OR entry=@HJQ; -- clears out old inventory from Gunra and Magatha

-- adding iLvl 378 and tier 12 to Magatha and Gunra
-- necklaces
-- 1250 Amulet of Burning Brilliance https://www.wowhead.com/item=71213/amulet-of-burning-brilliance
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71213,0,0,@j12,1), (@HJQ,@slot,71213,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Necklace of Smoke Signals https://www.wowhead.com/item=71129/necklace-of-smoke-signals
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71129,0,0,@j12,1), (@HJQ,@slot,71129,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Stoneheart Choker https://www.wowhead.com/item=71212/stoneheart-choker
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71212,0,0,@j12,1), (@HJQ,@slot,71212,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Stoneheart Necklace https://www.wowhead.com/item=70935/stoneheart-necklace
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70935,0,0,@j12,1), (@HJQ,@slot,70935,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;


-- rings
-- 1250 Crystalline Brimstone Ring https://www.wowhead.com/item=71210/crystalline-brimstone-ring
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71210,0,0,@j12,1), (@HJQ,@slot,71210,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 deflecting Brimstone Ring https://www.wowhead.com/item=70940/deflecting-brimstone-band
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70940,0,0,@j12,1), (@HJQ,@slot,70940,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Serrated Brimstone Signet https://www.wowhead.com/item=71208/serrated-brimstone-signet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71208,0,0,@j12,1), (@HJQ,@slot,71208,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Soothing Brimstone Circle https://www.wowhead.com/item=71211/soothing-brimstone-circle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71211,0,0,@j12,1), (@HJQ,@slot,71211,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Splintered Brimstone Seal https://www.wowhead.com/item=71209/splintered-brimstone-seal
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71209,0,0,@j12,1), (@HJQ,@slot,71209,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;


-- throwing weapons
-- 700 Deflecting Star https://www.wowhead.com/item=71218/deflecting-star
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71218,0,0,@j7,1), (@HJQ,@slot,71218,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Giantslicer https://www.wowhead.com/item=71154/giantslicer
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71154,0,0,@j7,1), (@HJQ,@slot,71154,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Morningstar Shard https://www.wowhead.com/item=71152/morningstar-shard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71152,0,0,@j7,1), (@HJQ,@slot,71152,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Scorchvine Wand https://www.wowhead.com/item=71150/scorchvine-wand
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71150,0,0,@j7,1), (@HJQ,@slot,71150,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Trail of Embers https://www.wowhead.com/item=71151/trail-of-embers
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71151,0,0,@j7,1), (@HJQ,@slot,71151,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;


-- relics
-- 700 Covenant of the Flame https://www.wowhead.com/item=71146/covenant-of-the-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71146,0,0,@j7,1), (@HJQ,@slot,71146,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Deathclutch Figurine https://www.wowhead.com/item=70939/deathclutch-figurine
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70939,0,0,@j7,1), (@HJQ,@slot,70939,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Relic of the Elemental Lords https://www.wowhead.com/item=71147/relic-of-the-elemental-lords
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71147,0,0,@j7,1), (@HJQ,@slot,71147,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Singed Plume of Aviana https://www.wowhead.com/item=71149/singed-plume-of-aviana
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71149,0,0,@j7,1), (@HJQ,@slot,71149,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;

-- 700 Soulflame Vial https://www.wowhead.com/item=71148/soulflame-vial
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71148,0,0,@j7,1), (@HJQ,@slot,71148,0,0,@j7,1);
SELECT @slot + 1 INTO @slot;


-- bracers
-- 1250 Bracers of Forked Lightning https://www.wowhead.com/item=71264/bracers-of-forked-lightning
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71264,0,0,@j12,1), (@HJQ,@slot,71264,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Bracers of Imperious Truths https://www.wowhead.com/item=71260/bracers-of-imperious-truths
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71260,0,0,@j12,1), (@HJQ,@slot,71260,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Bracers of Misting Ash https://www.wowhead.com/item=71263/bracers-of-misting-ash
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71263,0,0,@j12,1), (@HJQ,@slot,71263,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Bracers of Regal Force https://www.wowhead.com/item=70937/bracers-of-regal-force
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70937,0,0,@j12,1), (@HJQ,@slot,70937,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Emberflame Bracers https://www.wowhead.com/item=71265/emberflame-bracers
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71265,0,0,@j12,1), (@HJQ,@slot,71265,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Flamebinder Bracers https://www.wowhead.com/item=71130/flamebinder-bracers
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71130,0,0,@j12,1), (@HJQ,@slot,71130,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- 1250 Smolderskull Bindings https://www.wowhead.com/item=71262/smolderskull-bindings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71262,0,0,@j12,1), (@HJQ,@slot,71262,0,0,@j12,1);
SELECT @slot + 1 INTO @slot;

-- variables for token costs --
SELECT 3565 INTO @t12nphead;
SELECT 3564 INTO @t12nchead;
SELECT 3566 INTO @t12nvhead;
SELECT 3568 INTO @t12npshoulder;
SELECT 3567 INTO @t12ncshoulder;
SELECT 3569 INTO @t12nvshoulder;

SELECT 3562 INTO @t12hphead;
SELECT 3561 INTO @t12hchead;
SELECT 3563 INTO @t12hvhead;
SELECT 3559 INTO @t12hpshoulder;
SELECT 3558 INTO @t12hcshoulder;
SELECT 3560 INTO @t12hvshoulder;
-- end variables for tokens --


-- tier 12 Warrior Tank Molten Giant Battleplate
-- normal for points https://www.wowhead.com/item-set=1018/molten-giant-battleplate
-- gloves https://www.wowhead.com/item=70943/handguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70943,0,0,@j16,1), (@HJQ,@slot,70943,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=70944/faceguard-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70944,0,0,@j22,1), (@HJQ,@slot,70944,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=70942/legguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70942,0,0,@j22,1), (@HJQ,@slot,70942,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=70945/chestguard-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70945,0,0,@j22,1), (@HJQ,@slot,70945,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=70941/shoulderguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70941,0,0,@j16,1), (@HJQ,@slot,70941,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=70944/faceguard-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70944,0,0,@t12hphead,1), (@HJQ,@slot,70944,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=70941/shoulderguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70941,0,0,@t12npshoulder,1), (@HJQ,@slot,70941,0,0,@t12npshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-367/molten-giant-battleplate
-- gloves https://www.wowhead.com/item=71605/handguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71605,0,0,3601,1), (@HJQ,@slot,71605,0,0,3601,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71606/faceguard-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71606,0,0,@t12hphead,1), (@HJQ,@slot,71606,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71607/legguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71607,0,0,3582,1), (@HJQ,@slot,71607,0,0,3582,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71604/chestguard-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71604,0,0,3627,1), (@HJQ,@slot,71604,0,0,3627,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71608/shoulderguards-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71608,0,0,@t12hpshoulder,1), (@HJQ,@slot,71608,0,0,@t12hpshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 Warrior DPS Molten Giant Warplate
-- normal for points https://www.wowhead.com/item-set=1017/molten-giant-warplate
-- gloves  https://www.wowhead.com/item=71069/gauntlets-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71069,0,0,@j16,1), (@HJQ,@slot,71069,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71070/helmet-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71070,0,0,@j22,1), (@HJQ,@slot,71070,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71071/legplates-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71071,0,0,@j22,1), (@HJQ,@slot,71071,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71068/battleplate-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71068,0,0,@j22,1), (@HJQ,@slot,71068,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71072/pauldrons-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71072,0,0,@j16,1), (@HJQ,@slot,71072,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71070/helmet-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71070,0,0,@t12hphead,1), (@HJQ,@slot,71070,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71072/pauldrons-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71072,0,0,@t12npshoulder,1), (@HJQ,@slot,71072,0,0,@t12npshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-366/molten-giant-warplate
-- gloves https://www.wowhead.com/item=71601/gauntlets-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71601,0,0,3600,1), (@HJQ,@slot,71601,0,0,3600,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71599/helmet-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71599,0,0,@t12hphead,1), (@HJQ,@slot,71599,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71602/legplates-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71602,0,0,3581,1), (@HJQ,@slot,71602,0,0,3581,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71600/battleplate-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71600,0,0,3626,1), (@HJQ,@slot,71600,0,0,3626,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71603/pauldrons-of-the-molten-giant
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71603,0,0,@t12hpshoulder,1), (@HJQ,@slot,71603,0,0,@t12hpshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 hunter Flamewakers Battlegear
-- normal for points https://www.wowhead.com/item-set=1005/flamewakers-battlegear
-- gloves  https://www.wowhead.com/item=71050/flamewakers-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71050,0,0,@j16,1), (@HJQ,@slot,71050,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71051/flamewakers-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71051,0,0,@j22,1), (@HJQ,@slot,71051,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71052/flamewakers-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71052,0,0,@j22,1), (@HJQ,@slot,71052,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71054/flamewakers-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71054,0,0,@j22,1), (@HJQ,@slot,71054,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71053/flamewakers-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71053,0,0,@j16,1), (@HJQ,@slot,71053,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71051/flamewakers-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71051,0,0,@t12hphead,1), (@HJQ,@slot,71051,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71053/flamewakers-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71053,0,0,@t12npshoulder,1), (@HJQ,@slot,71053,0,0,@t12npshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-354/flamewakers-battlegear
-- gloves https://www.wowhead.com/item=71502/flamewakers-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71502,0,0,3596,1), (@HJQ,@slot,71502,0,0,3596,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71503/flamewakers-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71503,0,0,@t12hphead,1), (@HJQ,@slot,71503,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71504/flamewakers-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71504,0,0,3577,1), (@HJQ,@slot,71504,0,0,3577,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71501/flamewakers-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71501,0,0,3622,1), (@HJQ,@slot,71501,0,0,3622,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71505/flamewakers-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71505,0,0,@t12hpshoulder,1), (@HJQ,@slot,71505,0,0,@t12hpshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 shaman healer volcanic vestments
-- normal for points https://www.wowhead.com/item-set=1014/volcanic-vestments
-- gloves  https://www.wowhead.com/item=71297/erupting-volcanic-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71297,0,0,@j16,1), (@HJQ,@slot,71297,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71298/erupting-volcanic-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71298,0,0,@j22,1), (@HJQ,@slot,71298,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71299/erupting-volcanic-legwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71299,0,0,@j22,1), (@HJQ,@slot,71299,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71296/erupting-volcanic-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71296,0,0,@j22,1), (@HJQ,@slot,71296,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71300/erupting-volcanic-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71300,0,0,@j16,1), (@HJQ,@slot,71300,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71298/erupting-volcanic-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71298,0,0,@t12hphead,1), (@HJQ,@slot,71298,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71300/erupting-volcanic-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71300,0,0,@t12npshoulder,1), (@HJQ,@slot,71300,0,0,@t12npshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-363/volcanic-vestments
-- gloves https://www.wowhead.com/item=71543/erupting-volcanic-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71543,0,0,3597,1), (@HJQ,@slot,71543,0,0,3597,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71544/erupting-volcanic-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71544,0,0,@t12hphead,1), (@HJQ,@slot,71544,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71545/erupting-volcanic-legwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71545,0,0,3578,1), (@HJQ,@slot,71545,0,0,3578,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71542/erupting-volcanic-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71542,0,0,3623,1), (@HJQ,@slot,71542,0,0,3623,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71546/erupting-volcanic-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71546,0,0,@t12hpshoulder,1), (@HJQ,@slot,71546,0,0,@t12hpshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 shaman melee dps volcanic battlegear
-- normal for points https://www.wowhead.com/item-set=1015/volcanic-battlegear
-- gloves https://www.wowhead.com/item=71302/erupting-volcanic-grips
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71302,0,0,@j16,1), (@HJQ,@slot,71302,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71303/erupting-volcanic-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71303,0,0,@j22,1), (@HJQ,@slot,71303,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71304/erupting-volcanic-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71304,0,0,@j22,1), (@HJQ,@slot,71304,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71301/erupting-volcanic-cuirass
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71301,0,0,@j22,1), (@HJQ,@slot,71301,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71305/erupting-volcanic-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71305,0,0,@j16,1), (@HJQ,@slot,71305,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71303/erupting-volcanic-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71303,0,0,@t12hphead,1), (@HJQ,@slot,71303,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71305/erupting-volcanic-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71305,0,0,@t12npshoulder,1), (@HJQ,@slot,71305,0,0,@t12npshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-364/volcanic-battlegear
-- gloves https://www.wowhead.com/item=71548/erupting-volcanic-grips
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71548,0,0,3598,1), (@HJQ,@slot,71548,0,0,3598,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71549/erupting-volcanic-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71549,0,0,@t12hphead,1), (@HJQ,@slot,71549,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71550/erupting-volcanic-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71550,0,0,3579,1), (@HJQ,@slot,71550,0,0,3579,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71547/erupting-volcanic-cuirass
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71547,0,0,3624,1), (@HJQ,@slot,71547,0,0,3624,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71551/erupting-volcanic-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71551,0,0,@t12hpshoulder,1), (@HJQ,@slot,71551,0,0,@t12hpshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 shaman caster dps volcanic regalia
-- normal for points https://www.wowhead.com/item-set=1016/volcanic-regalia
-- gloves https://www.wowhead.com/item=71292/erupting-volcanic-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71292,0,0,@j16,1), (@HJQ,@slot,71292,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71293/erupting-volcanic-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71293,0,0,@j22,1), (@HJQ,@slot,71293,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71294/erupting-volcanic-kilt
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71294,0,0,@j22,1), (@HJQ,@slot,71294,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71291/erupting-volcanic-hauberk
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71291,0,0,@j22,1), (@HJQ,@slot,71291,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71295/erupting-volcanic-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71295,0,0,@j16,1), (@HJQ,@slot,71295,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71293/erupting-volcanic-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71293,0,0,@t12hphead,1), (@HJQ,@slot,71293,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71295/erupting-volcanic-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71295,0,0,@t12npshoulder,1), (@HJQ,@slot,71295,0,0,@t12npshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-365/volcanic-regalia
-- gloves https://www.wowhead.com/item=71553/erupting-volcanic-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71553,0,0,3599,1), (@HJQ,@slot,71553,0,0,3599,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71554/erupting-volcanic-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71554,0,0,@t12hphead,1), (@HJQ,@slot,71554,0,0,@t12hphead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71555/erupting-volcanic-kilt
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71555,0,0,3580,1), (@HJQ,@slot,71555,0,0,3580,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71552/erupting-volcanic-hauberk
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71552,0,0,3625,1), (@HJQ,@slot,71552,0,0,3625,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71556/erupting-volcanic-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71556,0,0,@t12hpshoulder,1), (@HJQ,@slot,71556,0,0,@t12hpshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 paladin healer Regalia of Immolation
-- normal for points https://www.wowhead.com/item-set=1011/regalia-of-immolation
-- gloves https://www.wowhead.com/item=71092/immolation-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71092,0,0,@j16,1), (@HJQ,@slot,71092,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71093/immolation-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71093,0,0,@j22,1), (@HJQ,@slot,71093,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71094/immolation-greaves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71094,0,0,@j22,1), (@HJQ,@slot,71094,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71091/immolation-breastplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71091,0,0,@j22,1), (@HJQ,@slot,71091,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71095/immolation-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71095,0,0,@j16,1), (@HJQ,@slot,71095,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71093/immolation-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71093,0,0,@t12nchead,1), (@HJQ,@slot,71093,0,0,@t12nchead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71095/immolation-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71095,0,0,@t12ncshoulder,1), (@HJQ,@slot,71095,0,0,@t12ncshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-360/regalia-of-immolation
-- gloves https://www.wowhead.com/item=71518/immolation-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71518,0,0,3603,1), (@HJQ,@slot,71518,0,0,3603,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71519/immolation-headguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71519,0,0,@t12hchead,1), (@HJQ,@slot,71519,0,0,@t12hchead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71520/immolation-greaves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71520,0,0,3584,1), (@HJQ,@slot,71520,0,0,3584,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71517/immolation-breastplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71517,0,0,3621,1), (@HJQ,@slot,71517,0,0,3621,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71521/immolation-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71521,0,0,@t12hcshoulder,1), (@HJQ,@slot,71521,0,0,@t12hcshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 paladin tank Battlearmor of Immolation
-- normal for points https://www.wowhead.com/item-set=1013/battlearmor-of-immolation
-- gloves https://www.wowhead.com/item=70949/immolation-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70949,0,0,@j16,1), (@HJQ,@slot,70949,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=70948/immolation-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70948,0,0,@j22,1), (@HJQ,@slot,70948,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=70947/immolation-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70947,0,0,@j22,1), (@HJQ,@slot,70947,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=70950/immolation-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70950,0,0,@j22,1), (@HJQ,@slot,70950,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=70946/immolation-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70946,0,0,@j16,1), (@HJQ,@slot,70946,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=70948/immolation-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70948,0,0,@t12nchead,1), (@HJQ,@slot,70948,0,0,@t12nchead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=70946/immolation-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70946,0,0,@t12ncshoulder,1), (@HJQ,@slot,70946,0,0,@t12ncshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-362/battlearmor-of-immolation
-- gloves https://www.wowhead.com/item=71523/immolation-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71523,0,0,3604,1), (@HJQ,@slot,71523,0,0,3604,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71524/immolation-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71524,0,0,@t12hchead,1), (@HJQ,@slot,71524,0,0,@t12hchead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71525/immolation-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71525,0,0,3585,1), (@HJQ,@slot,71525,0,0,3585,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71522/immolation-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71522,0,0,3616,1), (@HJQ,@slot,71522,0,0,3616,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71526/immolation-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71526,0,0,@t12hcshoulder,1), (@HJQ,@slot,71526,0,0,@t12hcshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 paladin dps Battleplate of Immolation
-- normal for points https://www.wowhead.com/item-set=1012/battleplate-of-immolation
-- gloves https://www.wowhead.com/item=71064/immolation-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71064,0,0,@j16,1), (@HJQ,@slot,71064,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71065/immolation-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71065,0,0,@j22,1), (@HJQ,@slot,71065,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71066/immolation-legplates
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71066,0,0,@j22,1), (@HJQ,@slot,71066,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71063/immolation-battleplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71063,0,0,@j22,1), (@HJQ,@slot,71063,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71067/immolation-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71067,0,0,@j16,1), (@HJQ,@slot,71067,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71065/immolation-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71065,0,0,@t12nchead,1), (@HJQ,@slot,71065,0,0,@t12nchead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71067/immolation-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71067,0,0,@t12ncshoulder,1), (@HJQ,@slot,71067,0,0,@t12ncshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-361/battleplate-of-immolation
-- gloves https://www.wowhead.com/item=71513/immolation-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71513,0,0,3602,1), (@HJQ,@slot,71513,0,0,3602,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71514/immolation-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71514,0,0,@t12hchead,1), (@HJQ,@slot,71514,0,0,@t12hchead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71515/immolation-legplates
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71515,0,0,3583,1), (@HJQ,@slot,71515,0,0,3583,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71512/immolation-battleplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71512,0,0,3628,1), (@HJQ,@slot,71512,0,0,3628,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71516/immolation-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71516,0,0,@t12hcshoulder,1), (@HJQ,@slot,71516,0,0,@t12hcshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 warlock balespiders burning vestments
-- normal for points https://www.wowhead.com/item-set=1008/balespiders-burning-vestments
-- gloves https://www.wowhead.com/item=71281/balespiders-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71281,0,0,@j16,1), (@HJQ,@slot,71281,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71282/balespiders-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71282,0,0,@j22,1), (@HJQ,@slot,71282,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71283/balespiders-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71283,0,0,@j22,1), (@HJQ,@slot,71283,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71284/balespiders-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71284,0,0,@j22,1), (@HJQ,@slot,71284,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71285/balespiders-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71285,0,0,@j16,1), (@HJQ,@slot,71285,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71282/balespiders-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71282,0,0,@t12nchead,1), (@HJQ,@slot,71282,0,0,@t12nchead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71285/balespiders-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71285,0,0,@t12ncshoulder,1), (@HJQ,@slot,71285,0,0,@t12ncshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-357/balespiders-burning-vestments
-- gloves https://www.wowhead.com/item=71594/balespiders-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71594,0,0,3607,1), (@HJQ,@slot,71594,0,0,3607,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71595/balespiders-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71595,0,0,@t12hchead,1), (@HJQ,@slot,71595,0,0,@t12hchead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71596/balespiders-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71596,0,0,3588,1), (@HJQ,@slot,71596,0,0,3588,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71597/balespiders-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71597,0,0,3619,1), (@HJQ,@slot,71597,0,0,3619,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71598/balespiders-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71598,0,0,@t12hcshoulder,1), (@HJQ,@slot,71598,0,0,@t12hcshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 priest healer Vestments of the Cleansing Flame
-- normal for points https://www.wowhead.com/item-set=1009/vestments-of-the-cleansing-flame
-- gloves https://www.wowhead.com/item=71271/handwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71271,0,0,@j16,1), (@HJQ,@slot,71271,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71272/cowl-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71272,0,0,@j22,1), (@HJQ,@slot,71272,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71273/legwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71273,0,0,@j22,1), (@HJQ,@slot,71273,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71274/robes-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71274,0,0,@j22,1), (@HJQ,@slot,71274,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71275/mantle-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71275,0,0,@j16,1), (@HJQ,@slot,71275,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71272/cowl-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71272,0,0,@t12nchead,1), (@HJQ,@slot,71272,0,0,@t12nchead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71275/mantle-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71275,0,0,@t12ncshoulder,1), (@HJQ,@slot,71275,0,0,@t12ncshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-358/vestments-of-the-cleansing-flame
-- gloves https://www.wowhead.com/item=71527/handwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71527,0,0,3605,1), (@HJQ,@slot,71527,0,0,3605,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71528/cowl-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71528,0,0,@t12hchead,1), (@HJQ,@slot,71528,0,0,@t12hchead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71529/legwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71529,0,0,3586,1), (@HJQ,@slot,71529,0,0,3586,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71530/robes-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71530,0,0,3617,1), (@HJQ,@slot,71530,0,0,3617,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71531/mantle-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71531,0,0,@t12hcshoulder,1), (@HJQ,@slot,71531,0,0,@t12hcshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 priest dps Regalia of the Cleansing Flame
-- normal for points https://www.wowhead.com/item-set=1010/regalia-of-the-cleansing-flame
-- gloves https://www.wowhead.com/item=71276/gloves-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71276,0,0,@j16,1), (@HJQ,@slot,71276,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71277/hood-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71277,0,0,@j22,1), (@HJQ,@slot,71277,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71278/leggings-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71278,0,0,@j22,1), (@HJQ,@slot,71278,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71279/vestment-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71279,0,0,@j22,1), (@HJQ,@slot,71279,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71280/shoulderwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71280,0,0,@j16,1), (@HJQ,@slot,71280,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71277/hood-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71277,0,0,@t12nchead,1), (@HJQ,@slot,71277,0,0,@t12nchead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71280/shoulderwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71280,0,0,@t12ncshoulder,1), (@HJQ,@slot,71280,0,0,@t12ncshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-359/regalia-of-the-cleansing-flame
-- gloves https://www.wowhead.com/item=71532/gloves-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71532,0,0,3606,1), (@HJQ,@slot,71532,0,0,3606,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71533/hood-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71533,0,0,@t12hchead,1), (@HJQ,@slot,71533,0,0,@t12hchead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71534/leggings-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71534,0,0,3587,1), (@HJQ,@slot,71534,0,0,3587,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71535/vestment-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71535,0,0,3618,1), (@HJQ,@slot,71535,0,0,3618,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71536/shoulderwraps-of-the-cleansing-flame
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71536,0,0,@t12hcshoulder,1), (@HJQ,@slot,71536,0,0,@t12hcshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 rogue Vestments of the Dark Phoenix
-- normal for points https://www.wowhead.com/item-set=1006/vestments-of-the-dark-phoenix
-- gloves https://www.wowhead.com/item=71046/dark-phoenix-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71046,0,0,@j16,1), (@HJQ,@slot,71046,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71047/dark-phoenix-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71047,0,0,@j22,1), (@HJQ,@slot,71047,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71048/dark-phoenix-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71048,0,0,@j22,1), (@HJQ,@slot,71048,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71045/dark-phoenix-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71045,0,0,@j22,1), (@HJQ,@slot,71045,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71049/dark-phoenix-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71049,0,0,@j16,1), (@HJQ,@slot,71049,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71047/dark-phoenix-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71047,0,0,@t12nvhead,1), (@HJQ,@slot,71047,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71049/dark-phoenix-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71049,0,0,@t12nvshoulder,1), (@HJQ,@slot,71049,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-355/vestments-of-the-dark-phoenix
-- gloves https://www.wowhead.com/item=71538/dark-phoenix-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71538,0,0,3595,1), (@HJQ,@slot,71538,0,0,3595,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71539/dark-phoenix-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71539,0,0,@t12hvhead,1), (@HJQ,@slot,71539,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71540/dark-phoenix-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71540,0,0,3576,1), (@HJQ,@slot,71540,0,0,3576,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71537/dark-phoenix-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71537,0,0,3612,1), (@HJQ,@slot,71537,0,0,3612,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71541/dark-phoenix-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71541,0,0,@t12hvshoulder,1), (@HJQ,@slot,71541,0,0,@t12hvshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 mage Firehawk Robes of Conflagration
-- normal for points https://www.wowhead.com/item-set=1007/firehawk-robes-of-conflagration
-- gloves https://www.wowhead.com/item=71286/firehawk-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71286,0,0,@j16,1), (@HJQ,@slot,71286,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71287/firehawk-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71287,0,0,@j22,1), (@HJQ,@slot,71287,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71288/firehawk-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71288,0,0,@j22,1), (@HJQ,@slot,71288,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71289/firehawk-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71289,0,0,@j22,1), (@HJQ,@slot,71289,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71290/firehawk-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71290,0,0,@j16,1), (@HJQ,@slot,71290,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71287/firehawk-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71287,0,0,@t12nvhead,1), (@HJQ,@slot,71287,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71290/firehawk-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71290,0,0,@t12nvshoulder,1), (@HJQ,@slot,71290,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-356/firehawk-robes-of-conflagration
-- gloves https://www.wowhead.com/item=71507/firehawk-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71507,0,0,3594,1), (@HJQ,@slot,71507,0,0,3594,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71508/firehawk-hood
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71508,0,0,@t12hvhead,1), (@HJQ,@slot,71508,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71509/firehawk-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71509,0,0,3575,1), (@HJQ,@slot,71509,0,0,3575,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71510/firehawk-robes
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71510,0,0,3615,1), (@HJQ,@slot,71510,0,0,3615,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71511/firehawk-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71511,0,0,@t12hvshoulder,1), (@HJQ,@slot,71511,0,0,@t12hvshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 DK Tank Elementium Deathplate Battlearmor
-- normal for points https://www.wowhead.com/item-set=1001/elementium-deathplate-battlearmor
-- gloves https://www.wowhead.com/item=70953/elementium-deathplate-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70953,0,0,@j16,1), (@HJQ,@slot,70953,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=70954/elementium-deathplate-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70954,0,0,@j22,1), (@HJQ,@slot,70954,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=70952/elementium-deathplate-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70952,0,0,@j22,1), (@HJQ,@slot,70952,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=70955/elementium-deathplate-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70955,0,0,@j22,1), (@HJQ,@slot,70955,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=70951/elementium-deathplate-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70951,0,0,@j16,1), (@HJQ,@slot,70951,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=70954/elementium-deathplate-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70954,0,0,@t12nvhead,1), (@HJQ,@slot,70954,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=70951/elementium-deathplate-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,70951,0,0,@t12nvshoulder,1), (@HJQ,@slot,70951,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-350/elementium-deathplate-battlearmor
-- gloves https://www.wowhead.com/item=71482/elementium-deathplate-handguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71482,0,0,3590,1), (@HJQ,@slot,71482,0,0,3590,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71483/elementium-deathplate-faceguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71483,0,0,@t12hvhead,1), (@HJQ,@slot,71483,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71484/elementium-deathplate-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71484,0,0,3571,1), (@HJQ,@slot,71484,0,0,3571,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71481/elementium-deathplate-chestguard
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71481,0,0,3610,1), (@HJQ,@slot,71481,0,0,3610,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71485/elementium-deathplate-shoulderguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71485,0,0,@t12hvshoulder,1), (@HJQ,@slot,71485,0,0,@t12hvshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 DK DPS Elementium Deathplate Battlegear
-- normal for points https://www.wowhead.com/item-set=1000/elementium-deathplate-battlegear
-- gloves https://www.wowhead.com/item=71059/elementium-deathplate-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71059,0,0,@j16,1), (@HJQ,@slot,71059,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71060/elementium-deathplate-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71060,0,0,@j22,1), (@HJQ,@slot,71060,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71061/elementium-deathplate-greaves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71061,0,0,@j22,1), (@HJQ,@slot,71061,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71058/elementium-deathplate-breastplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71058,0,0,@j22,1), (@HJQ,@slot,71058,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71062/elementium-deathplate-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71062,0,0,@j16,1), (@HJQ,@slot,71062,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71060/elementium-deathplate-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71060,0,0,@t12nvhead,1), (@HJQ,@slot,71060,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71062/elementium-deathplate-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71062,0,0,@t12nvshoulder,1), (@HJQ,@slot,71062,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-349/elementium-deathplate-battlegear
-- gloves https://www.wowhead.com/item=71477/elementium-deathplate-gauntlets
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71477,0,0,3589,1), (@HJQ,@slot,71477,0,0,3589,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71478/elementium-deathplate-helmet
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71478,0,0,@t12hvhead,1), (@HJQ,@slot,71478,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71479/elementium-deathplate-greaves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71479,0,0,3570,1), (@HJQ,@slot,71479,0,0,3570,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71476/elementium-deathplate-breastplate
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71476,0,0,3609,1), (@HJQ,@slot,71476,0,0,3609,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71480/elementium-deathplate-pauldrons
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71480,0,0,@t12hvshoulder,1), (@HJQ,@slot,71480,0,0,@t12hvshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 Druid Healer Obsidian Arborweave Vestments
-- normal for points https://www.wowhead.com/item-set=1004/obsidian-arborweave-vestments
-- gloves https://www.wowhead.com/item=71102/obsidian-arborweave-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71102,0,0,@j16,1), (@HJQ,@slot,71102,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71103/obsidian-arborweave-helm
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71103,0,0,@j22,1), (@HJQ,@slot,71103,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71104/obsidian-arborweave-legwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71104,0,0,@j22,1), (@HJQ,@slot,71104,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71105/obsidian-arborweave-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71105,0,0,@j22,1), (@HJQ,@slot,71105,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71106/obsidian-arborweave-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71106,0,0,@j16,1), (@HJQ,@slot,71106,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71103/obsidian-arborweave-helm
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71103,0,0,@t12nvhead,1), (@HJQ,@slot,71103,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71106/obsidian-arborweave-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71106,0,0,@t12nvshoulder,1), (@HJQ,@slot,71106,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-353/obsidian-arborweave-vestments
-- gloves https://www.wowhead.com/item=71491/obsidian-arborweave-handwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71491,0,0,3592,1), (@HJQ,@slot,71491,0,0,3592,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71492/obsidian-arborweave-helm
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71492,0,0,@t12hvhead,1), (@HJQ,@slot,71492,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71493/obsidian-arborweave-legwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71493,0,0,3573,1), (@HJQ,@slot,71493,0,0,3573,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71494/obsidian-arborweave-tunic
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71494,0,0,3613,1), (@HJQ,@slot,71494,0,0,3613,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71495/obsidian-arborweave-mantle
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71495,0,0,@t12hvshoulder,1), (@HJQ,@slot,71495,0,0,@t12hvshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 Druid Feral Obsidian Arborweave Battlegarb
-- normal for points https://www.wowhead.com/item-set=1002/obsidian-arborweave-battlegarb
-- gloves  https://www.wowhead.com/item=71097/obsidian-arborweave-grips
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71097,0,0,@j16,1), (@HJQ,@slot,71097,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71098/obsidian-arborweave-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71098,0,0,@j22,1), (@HJQ,@slot,71098,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71099/obsidian-arborweave-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71099,0,0,@j22,1), (@HJQ,@slot,71099,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71100/obsidian-arborweave-raiment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71100,0,0,@j22,1), (@HJQ,@slot,71100,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71101/obsidian-arborweave-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71101,0,0,@j16,1), (@HJQ,@slot,71101,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71098/obsidian-arborweave-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71098,0,0,@t12nvhead,1), (@HJQ,@slot,71098,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71101/obsidian-arborweave-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71101,0,0,@t12nvshoulder,1), (@HJQ,@slot,71101,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-351/obsidian-arborweave-battlegarb
-- gloves https://www.wowhead.com/item=71487/obsidian-arborweave-grips
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71487,0,0,3591,1), (@HJQ,@slot,71487,0,0,3591,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71488/obsidian-arborweave-headpiece
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71488,0,0,@t12hvhead,1), (@HJQ,@slot,71488,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71489/obsidian-arborweave-legguards
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71489,0,0,3572,1), (@HJQ,@slot,71489,0,0,3572,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71486/obsidian-arborweave-raiment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71486,0,0,3611,1), (@HJQ,@slot,71486,0,0,3611,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71490/obsidian-arborweave-spaulders
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71490,0,0,@t12hvshoulder,1), (@HJQ,@slot,71490,0,0,@t12hvshoulder,1);
SELECT @slot + 1 INTO @slot;


-- tier 12 Druid Balance Obsidian Arborweave Regalia
-- normal for points https://www.wowhead.com/item-set=1003/obsidian-arborweave-regalia
-- gloves https://www.wowhead.com/item=71107/obsidian-arborweave-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71107,0,0,@j16,1), (@HJQ,@slot,71107,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71108/obsidian-arborweave-cover
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71108,0,0,@j22,1), (@HJQ,@slot,71108,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71109/obsidian-arborweave-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71109,0,0,@j22,1), (@HJQ,@slot,71109,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71110/obsidian-arborweave-vestment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71110,0,0,@j22,1), (@HJQ,@slot,71110,0,0,@j22,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71111/obsidian-arborweave-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71111,0,0,@j16,1), (@HJQ,@slot,71111,0,0,@j16,1);
SELECT @slot + 1 INTO @slot;
-- normal for tokens
-- head https://www.wowhead.com/item=71108/obsidian-arborweave-cover
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71108,0,0,@t12nvhead,1), (@HJQ,@slot,71108,0,0,@t12nvhead,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71111/obsidian-arborweave-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71111,0,0,@t12nvshoulder,1), (@HJQ,@slot,71111,0,0,@t12nvshoulder,1);
SELECT @slot + 1 INTO @slot;
-- heroic for tokens https://www.wowhead.com/item-set=-352/obsidian-arborweave-regalia
-- gloves https://www.wowhead.com/item=71496/obsidian-arborweave-gloves
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71496,0,0,3593,1), (@HJQ,@slot,71496,0,0,3593,1);
SELECT @slot + 1 INTO @slot;
-- helm https://www.wowhead.com/item=71497/obsidian-arborweave-cover
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71497,0,0,@t12hvhead,1), (@HJQ,@slot,71497,0,0,@t12hvhead,1);
SELECT @slot + 1 INTO @slot;
-- legs https://www.wowhead.com/item=71498/obsidian-arborweave-leggings
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71498,0,0,3574,1), (@HJQ,@slot,71498,0,0,3574,1);
SELECT @slot + 1 INTO @slot;
-- chest https://www.wowhead.com/item=71499/obsidian-arborweave-vestment
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71499,0,0,3614,1), (@HJQ,@slot,71499,0,0,3614,1);
SELECT @slot + 1 INTO @slot;
-- shoulders https://www.wowhead.com/item=71500/obsidian-arborweave-shoulderwraps
INSERT INTO `npc_vendor` (`entry`,`slot`,`item`,`maxcount`,`incrtime`,`ExtendedCost`,`type`) VALUES (@AJQ,@slot,71500,0,0,@t12hvshoulder,1), (@HJQ,@slot,71500,0,0,@t12hvshoulder,1);

Last I need to update the legacy justice quartermasters tier 11 armor, all their other vendor items are fine so it won't be too bad but this was quite mind-numbing so I'll probably take a break before I post that code...

Edit: fixed some typos.
Thanks for sharing, I had to put them by hand in .npc add to get the 4.3.4 vendor, thanks anyway for your work.
 

Stiga

Gold Supporter
Veteran Member
66
2020
123
Location
France
A great piece of work even more so if you take into account the task required. Well done ! :)
 
Top