//CONSTRUCTOR

function RewardItem(playerFaction, itemName, itemIcon, itemMoneyPrice, itemHonorPrice, itemTokenPrice, itemCost, itemStats, itemHTML)
{													//Constructor for RewardItem datatype; accepts up to 7 arguments
  this.playerFaction	 		= playerFaction;					//string variable, can be "alliance", "horde" or "both"
  this.itemName		 	 			= itemName;								//string variable, contains the name shown in the rewards list
  this.itemIcon		 	 			= itemIcon;								//string variable, contains path to item icon to be used
  this.itemMoneyPrice			=	itemMoneyPrice;
  this.itemHonorPrice		 	= itemHonorPrice;					//how much the item costs, in HONOR POINTS
  this.itemTokenPrice			= itemTokenPrice;
  this.itemCost						= itemCost;
	this.itemStats		 			= itemStats;							//Array
  this.itemHTML			 			= itemHTML;								//string variable, contains the HTML code for the item
}

tokenIcons = new Array("alterac","arathi","nether","warsong");
//(thisObject.itemTokenPrice) ? processPrice(thisObject.itemHonorPrice[thisBracket],thisObject.itemTokenPrice[thisBracket]) : 
function selectBracket(thisObject,thisBracket)
{
  if (thisBracket >= 0)
  {
    if (thisObject.itemStats[thisBracket])
		{
			thisObject.itemCost = generateCostString(thisObject,thisBracket);
			thisObject.itemHTML = thisObject.itemStats[thisBracket];
		}
    else
		{
			thisObject.itemHTML = "none";
			thisObject.itemCost = "none";
//			selectBracket(thisObject,thisBracket-1);
		}
  }
}

function generateCostString(thisObject,thisBracket)
{
	outPutString = "";
	if(thisObject.itemMoneyPrice && thisObject.itemMoneyPrice[thisBracket])
	{
		copperPart = thisObject.itemMoneyPrice[thisBracket];
		goldPart = Math.floor(copperPart / 10000);
		if (goldPart >= 1) copperPart -= goldPart * 10000;
		silverPart = Math.floor(copperPart / 100);
		if (silverPart >= 1) copperPart -= silverPart * 100;
		if (goldPart > 0) outPutString += goldPart+"<img src='http://wowimg.the9.com/images_wow/gameinfo/factions/icons/gold.gif'>&nbsp;";
		if (silverPart > 0) outPutString += silverPart+"<img src='http://wowimg.the9.com/images_wow/gameinfo/factions/icons/silver.gif'>&nbsp;";
		if (copperPart > 0) outPutString += copperPart+"<img src='http://wowimg.the9.com/images_wow/gameinfo/factions/icons/copper.gif'>&nbsp;";
	}
	if(thisObject.itemHonorPrice && thisObject.itemHonorPrice[thisBracket])
	{
		outPutString += thisObject.itemHonorPrice[thisBracket]+"<img src='http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/"+thisObject.playerFaction+"-honor.gif'>&nbsp;";
	}
	if(thisObject.itemTokenPrice && thisObject.itemTokenPrice[thisBracket])
	{
		for(carl=0; carl<thisObject.itemTokenPrice[thisBracket].length; carl++)
		{
			if (thisObject.itemTokenPrice[thisBracket][carl] > 0) outPutString += thisObject.itemTokenPrice[thisBracket][carl]+"<img src='http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/"+tokenIcons[carl]+".gif'>&nbsp;";
		}
	}
	return outPutString;
}

//------BEGIN REWARDS DEFINITION------
i = 0;
var RewardItems = new Array();

var fCombatHealingPotion = new RewardItem("alliance","作战治疗药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_39.gif");
fCombatHealingPotion.itemMoneyPrice = new Array();
fCombatHealingPotion.itemMoneyPrice[0] = 1000
fCombatHealingPotion.itemHonorPrice = new Array();
fCombatHealingPotion.itemHonorPrice[0] = 1
fCombatHealingPotion.itemStats = new Array();
fCombatHealingPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">作战治疗药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 35<br>\
<span class=\"myGreen\">使用：恢复700到900点生命值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fCombatHealingPotion; ++i;

var fCombatManaPotion = new RewardItem("alliance","作战法力药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_81.gif");
fCombatManaPotion.itemMoneyPrice = new Array();
fCombatManaPotion.itemMoneyPrice[0] = 1000
fCombatManaPotion.itemHonorPrice = new Array();
fCombatManaPotion.itemHonorPrice[0] = 1
fCombatManaPotion.itemStats = new Array();
fCombatManaPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">作战法力药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 41<br>\
<span class=\"myGreen\">使用：恢复900到1500点法力值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fCombatManaPotion; ++i;

var fMajorCombatHealingPotion = new RewardItem("alliance","特效作战治疗药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_40.gif");
fMajorCombatHealingPotion.itemTokenPrice = new Array();
fMajorCombatHealingPotion.itemTokenPrice[0] = new Array(0,0,0,2);
fMajorCombatHealingPotion.itemStats = new Array();
fMajorCombatHealingPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战治疗药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1050到1750点生命值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatHealingPotion; ++i;

var fMajorCombatManaPotion = new RewardItem("alliance","特效作战法力药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_82.gif");
fMajorCombatManaPotion.itemTokenPrice = new Array();
fMajorCombatManaPotion.itemTokenPrice[0] = new Array(0,0,0,2);
fMajorCombatManaPotion.itemStats = new Array();
fMajorCombatManaPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战法力药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1350到2250点法力值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatManaPotion; ++i;

var fMajorCombatHealingPotion = new RewardItem("alliance","特效作战治疗药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_40.gif");
fMajorCombatHealingPotion.itemTokenPrice = new Array();
fMajorCombatHealingPotion.itemTokenPrice[0] = new Array(0,2,0,0);
fMajorCombatHealingPotion.itemStats = new Array();
fMajorCombatHealingPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战治疗药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1050到1750点生命值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatHealingPotion; ++i;

var fMajorCombatManaPotion = new RewardItem("alliance","特效作战法力药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_82.gif");
fMajorCombatManaPotion.itemTokenPrice = new Array();
fMajorCombatManaPotion.itemTokenPrice[0] = new Array(0,2,0,0);
fMajorCombatManaPotion.itemStats = new Array();
fMajorCombatManaPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战法力药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1350到2250点法力值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatManaPotion; ++i;

var fMajorCombatHealingPotion = new RewardItem("alliance","特效作战治疗药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_40.gif");
fMajorCombatHealingPotion.itemTokenPrice = new Array();
fMajorCombatHealingPotion.itemTokenPrice[0] = new Array(2,0,0,0);
fMajorCombatHealingPotion.itemStats = new Array();
fMajorCombatHealingPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战治疗药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1050到1750点生命值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatHealingPotion; ++i;

var fMajorCombatManaPotion = new RewardItem("alliance","特效作战法力药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_82.gif");
fMajorCombatManaPotion.itemTokenPrice = new Array();
fMajorCombatManaPotion.itemTokenPrice[0] = new Array(2,0,0,0);
fMajorCombatManaPotion.itemStats = new Array();
fMajorCombatManaPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战法力药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1350到2250点法力值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatManaPotion; ++i;

var fMajorCombatHealingPotion = new RewardItem("alliance","特效作战治疗药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_40.gif");
fMajorCombatHealingPotion.itemTokenPrice = new Array();
fMajorCombatHealingPotion.itemTokenPrice[0] = new Array(0,0,2,0);
fMajorCombatHealingPotion.itemStats = new Array();
fMajorCombatHealingPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战治疗药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1050到1750点生命值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatHealingPotion; ++i;

var fMajorCombatManaPotion = new RewardItem("alliance","特效作战法力药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_82.gif");
fMajorCombatManaPotion.itemTokenPrice = new Array();
fMajorCombatManaPotion.itemTokenPrice[0] = new Array(0,0,2,0);
fMajorCombatManaPotion.itemStats = new Array();
fMajorCombatManaPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战法力药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1350到2250点法力值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatManaPotion; ++i;

var fStarsLament = new RewardItem("alliance","星辰悲歌","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Drink_Waterskin_02.gif");
fStarsLament.itemMoneyPrice = new Array();
fStarsLament.itemMoneyPrice[0] = 1200
fStarsLament.itemHonorPrice = new Array();
fStarsLament.itemHonorPrice[0] = 1
fStarsLament.itemStats = new Array();
fStarsLament.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">星辰悲歌<br>拾取后绑定<br>需要等级 55<br>\
<span class=\"myGreen\">使用：在30秒内恢复4200点法力值。进食时必须保持坐姿。<br></span>\
<span class=\myYellow\">\"精心提炼，供战争中使用。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fStarsLament; ++i;

var fStarsTears = new RewardItem("alliance","星辰之泪","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Drink_Waterskin_01.gif");
fStarsTears.itemMoneyPrice = new Array();
fStarsTears.itemMoneyPrice[0] = 2500
fStarsTears.itemHonorPrice = new Array();
fStarsTears.itemHonorPrice[0] = 2
fStarsTears.itemStats = new Array();
fStarsTears.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">星辰之泪<br>拾取后绑定<br>需要等级 65<br>\
<span class=\"myGreen\">使用：在30秒内恢复7200点法力值。进食时必须保持坐姿。<br></span>\
<span class=\"myYellow\">\"精心提炼，供战争中使用。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fStarsTears; ++i;

var fPrivatesTabard = new RewardItem("alliance","海盗徽章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_TabardPVP_01.gif");
fPrivatesTabard.itemTokenPrice = new Array();
fPrivatesTabard.itemTokenPrice[0] = new Array(0,3,0,3);
fPrivatesTabard.itemStats = new Array();
fPrivatesTabard.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">海盗徽章<br>拾取后绑定<br>唯一<br>公会徽章</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fPrivatesTabard; ++i;

var fKnightsColors = new RewardItem("alliance","骑士彩带","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_TabardPVP_03.gif");
fKnightsColors.itemTokenPrice = new Array();
fKnightsColors.itemTokenPrice[0] = new Array(20,20,0,20);
fKnightsColors.itemStats = new Array();
fKnightsColors.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">骑士彩带<br>拾取后绑定<br>唯一<br>公会徽章</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fKnightsColors; ++i;

var fSergeantsCape = new RewardItem("alliance","军士的斗篷","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Cape_21.gif");
fSergeantsCape.itemHonorPrice = new Array();
fSergeantsCape.itemHonorPrice[0] = 112
fSergeantsCape.itemTokenPrice = new Array();
fSergeantsCape.itemTokenPrice[0] = new Array(0,10,0,0);
fSergeantsCape.itemStats = new Array();
fSergeantsCape.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">军士的斗篷</span>\
<br>拾取后绑定<br>唯一<br>背部<br><span class=\"myGreen\">66点护甲</span><br>+9 耐力<br>需要等级 30</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSergeantsCape; ++i;

var fSergeantsCape = new RewardItem("alliance","军士的斗篷","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Cape_21.gif");
fSergeantsCape.itemHonorPrice = new Array();
fSergeantsCape.itemHonorPrice[0] = 245
fSergeantsCape.itemTokenPrice = new Array();
fSergeantsCape.itemTokenPrice[0] = new Array(0,10,0,0);
fSergeantsCape.itemStats = new Array();
fSergeantsCape.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">军士的斗篷</span>\
<br>拾取后绑定<br>唯一<br>背部<br><span class=\"myGreen\">96点护甲</span><br>+14 耐力<br>需要等级 45</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSergeantsCape; ++i;

var fSergeantsCape = new RewardItem("alliance","军士的斗篷","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Cape_21.gif");
fSergeantsCape.itemHonorPrice = new Array();
fSergeantsCape.itemHonorPrice[0] = 1800
fSergeantsCape.itemTokenPrice = new Array();
fSergeantsCape.itemTokenPrice[0] = new Array(0,10,0,0);
fSergeantsCape.itemStats = new Array();
fSergeantsCape.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">军士的斗篷</span>\
<br>拾取后绑定<br>唯一<br>背部<br><span class=\"myGreen\">115点护甲</span><br>+17 耐力<br>需要等级 58</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSergeantsCape; ++i;

var fMasterSergeantsInsignia = new RewardItem("alliance","军士长的徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_MonsterScales_09.gif");
fMasterSergeantsInsignia.itemHonorPrice = new Array();
fMasterSergeantsInsignia.itemHonorPrice[0] = 112
fMasterSergeantsInsignia.itemTokenPrice = new Array();
fMasterSergeantsInsignia.itemTokenPrice[0] = new Array(0,0,0,20);
fMasterSergeantsInsignia.itemStats = new Array();
fMasterSergeantsInsignia.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">军士长的徽记</span>\
<br>拾取后绑定<br>唯一<br>颈部<br>+9 耐力<br>+4 精神<br>需要等级 30</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMasterSergeantsInsignia; ++i;

var fMasterSergeantsInsignia = new RewardItem("alliance","军士长的徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_MonsterScales_09.gif");
fMasterSergeantsInsignia.itemHonorPrice = new Array();
fMasterSergeantsInsignia.itemHonorPrice[0] = 245
fMasterSergeantsInsignia.itemTokenPrice = new Array();
fMasterSergeantsInsignia.itemTokenPrice[0] = new Array(0,0,0,20);
fMasterSergeantsInsignia.itemStats = new Array();
fMasterSergeantsInsignia.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">军士长的徽记</span>\
<br>拾取后绑定<br>唯一<br>颈部<br>+14 耐力<br>+6 精神<br>需要等级 45</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMasterSergeantsInsignia; ++i;

var fMasterSergeantsInsignia = new RewardItem("alliance","军士长的徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_MonsterScales_09.gif");
fMasterSergeantsInsignia.itemHonorPrice = new Array();
fMasterSergeantsInsignia.itemHonorPrice[0] = 1800
fMasterSergeantsInsignia.itemTokenPrice = new Array();
fMasterSergeantsInsignia.itemTokenPrice[0] = new Array(0,0,0,20);
fMasterSergeantsInsignia.itemStats = new Array();
fMasterSergeantsInsignia.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">军士长的徽记</span>\
<br>拾取后绑定<br>唯一<br>颈部<br>+17 耐力<br>+7 精神<br>需要等级 58</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMasterSergeantsInsignia; ++i;

var fInsigniaOfTheAlliance = new RewardItem("alliance","联盟徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fInsigniaOfTheAlliance.itemHonorPrice = new Array();
fInsigniaOfTheAlliance.itemHonorPrice[0] = 3300
fInsigniaOfTheAlliance.itemStats = new Array();
fInsigniaOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：德鲁依<br>\
<span class=\"myGreen\">使用：解除一切魅惑、恐惧和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheAlliance; ++i;

var fInsigniaOfTheAlliance = new RewardItem("alliance","联盟徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fInsigniaOfTheAlliance.itemHonorPrice = new Array();
fInsigniaOfTheAlliance.itemHonorPrice[0] = 3300
fInsigniaOfTheAlliance.itemStats = new Array();
fInsigniaOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：猎人<br>\
<span class=\"myGreen\">使用：解除一切定身、减速或昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheAlliance; ++i;

var fInsigniaOfTheAlliance = new RewardItem("alliance","联盟徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fInsigniaOfTheAlliance.itemHonorPrice = new Array();
fInsigniaOfTheAlliance.itemHonorPrice[0] = 3300
fInsigniaOfTheAlliance.itemStats = new Array();
fInsigniaOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：法师<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和减速效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheAlliance; ++i;

var fInsigniaOfTheAlliance = new RewardItem("alliance","联盟徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fInsigniaOfTheAlliance.itemHonorPrice = new Array();
fInsigniaOfTheAlliance.itemHonorPrice[0] = 3300
fInsigniaOfTheAlliance.itemStats = new Array();
fInsigniaOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：圣骑士<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheAlliance; ++i;



var fInsigniaOfTheAlliance = new RewardItem("alliance","联盟徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fInsigniaOfTheAlliance.itemHonorPrice = new Array();
fInsigniaOfTheAlliance.itemHonorPrice[0] = 3300
fInsigniaOfTheAlliance.itemStats = new Array();
fInsigniaOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：牧师<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheAlliance; ++i;

var fInsigniaOfTheAlliance = new RewardItem("alliance","联盟徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fInsigniaOfTheAlliance.itemHonorPrice = new Array();
fInsigniaOfTheAlliance.itemHonorPrice[0] = 3300
fInsigniaOfTheAlliance.itemStats = new Array();
fInsigniaOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：潜行者<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheAlliance; ++i;

var fInsigniaOfTheAlliance = new RewardItem("alliance","联盟徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fInsigniaOfTheAlliance.itemHonorPrice = new Array();
fInsigniaOfTheAlliance.itemHonorPrice[0] = 3300
fInsigniaOfTheAlliance.itemStats = new Array();
fInsigniaOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：萨满祭司<br>\
<span class=\"myGreen\">使用：解除一切定身、减速或昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheAlliance; ++i;



var fInsigniaOfTheAlliance = new RewardItem("alliance","联盟徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fInsigniaOfTheAlliance.itemHonorPrice = new Array();
fInsigniaOfTheAlliance.itemHonorPrice[0] = 3300
fInsigniaOfTheAlliance.itemStats = new Array();
fInsigniaOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：术士<br>\
<span class=\"myGreen\">使用：解除一切恐惧、昏迷和减速效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheAlliance; ++i;

var fAllianceBattleStandard = new RewardItem("alliance","联盟军旗","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_BannerPVP_02.gif");
fAllianceBattleStandard.itemHonorPrice = new Array();
fAllianceBattleStandard.itemHonorPrice[0] = 18000
fAllianceBattleStandard.itemStats = new Array();
fAllianceBattleStandard.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">联盟军旗<br>拾取后绑定<br>\
<span class=\"myGreen\">使用：安放一面军旗，使所有在战旗附近半径45码范围内的友方单位的生命值上限提高15%。持续2分钟。军旗只能在PvP战场中使用。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fAllianceBattleStandard; ++i;

var fInsigniaOfTheAlliance = new RewardItem("alliance","联盟徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fInsigniaOfTheAlliance.itemHonorPrice = new Array();
fInsigniaOfTheAlliance.itemHonorPrice[0] = 3300
fInsigniaOfTheAlliance.itemStats = new Array();
fInsigniaOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：战士<br>\
<span class=\"myGreen\">使用：解除一切定身、昏迷和变形效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheAlliance; ++i;


var fMedallionOfTheAlliance = new RewardItem("alliance","联盟勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fMedallionOfTheAlliance.itemHonorPrice = new Array();
fMedallionOfTheAlliance.itemHonorPrice[0] = 19980
fMedallionOfTheAlliance.itemStats = new Array();
fMedallionOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：德鲁依<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切魅惑、恐惧和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheAlliance; ++i;



var fMedallionOfTheAlliance = new RewardItem("alliance","联盟勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fMedallionOfTheAlliance.itemHonorPrice = new Array();
fMedallionOfTheAlliance.itemHonorPrice[0] = 19980
fMedallionOfTheAlliance.itemStats = new Array();
fMedallionOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：猎人<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切定身、减速或昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheAlliance; ++i;

var fMedallionOfTheAlliance = new RewardItem("alliance","联盟勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fMedallionOfTheAlliance.itemHonorPrice = new Array();
fMedallionOfTheAlliance.itemHonorPrice[0] = 19980
fMedallionOfTheAlliance.itemStats = new Array();
fMedallionOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：法师<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和减速效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheAlliance; ++i;

var fMedallionOfTheAlliance = new RewardItem("alliance","联盟勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fMedallionOfTheAlliance.itemHonorPrice = new Array();
fMedallionOfTheAlliance.itemHonorPrice[0] = 19980
fMedallionOfTheAlliance.itemStats = new Array();
fMedallionOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：圣骑士<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheAlliance; ++i;


var fMedallionOfTheAlliance = new RewardItem("alliance","联盟勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fMedallionOfTheAlliance.itemHonorPrice = new Array();
fMedallionOfTheAlliance.itemHonorPrice[0] = 19980
fMedallionOfTheAlliance.itemStats = new Array();
fMedallionOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：牧师<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheAlliance; ++i;

var fMedallionOfTheAlliance = new RewardItem("alliance","联盟勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fMedallionOfTheAlliance.itemHonorPrice = new Array();
fMedallionOfTheAlliance.itemHonorPrice[0] = 19980
fMedallionOfTheAlliance.itemStats = new Array();
fMedallionOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：潜行者<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheAlliance; ++i;

var fMedallionOfTheAlliance = new RewardItem("alliance","联盟勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fMedallionOfTheAlliance.itemHonorPrice = new Array();
fMedallionOfTheAlliance.itemHonorPrice[0] = 19980
fMedallionOfTheAlliance.itemStats = new Array();
fMedallionOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：萨满祭司<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切定身、减速或昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheAlliance; ++i;

var fMedallionOfTheAlliance = new RewardItem("alliance","联盟勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fMedallionOfTheAlliance.itemHonorPrice = new Array();
fMedallionOfTheAlliance.itemHonorPrice[0] = 19980
fMedallionOfTheAlliance.itemStats = new Array();
fMedallionOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：术士<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切恐惧、昏迷和减速效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheAlliance; ++i;

var fMedallionOfTheAlliance = new RewardItem("alliance","联盟勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_01.gif");
fMedallionOfTheAlliance.itemHonorPrice = new Array();
fMedallionOfTheAlliance.itemHonorPrice[0] = 19980
fMedallionOfTheAlliance.itemStats = new Array();
fMedallionOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">联盟勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：战士<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切定身、昏迷和变形效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheAlliance; ++i;

var fTalismanOfTheAlliance = new RewardItem("alliance","联盟护符","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_Talisman_10.gif");
fTalismanOfTheAlliance.itemHonorPrice = new Array();
fTalismanOfTheAlliance.itemHonorPrice[0] = 27000
fTalismanOfTheAlliance.itemTokenPrice = new Array();
fTalismanOfTheAlliance.itemTokenPrice[0] = new Array(0,0,10,0);
fTalismanOfTheAlliance.itemStats = new Array();
fTalismanOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">联盟护符</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高34。</span>\
<br>\
<span class=\"myGreen\">使用：为自己恢复877到969点生命值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fTalismanOfTheAlliance; ++i;

var fBoldOrnateRuby = new RewardItem("alliance","朴素红绚石","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Gem_Ruby_02.gif");
fBoldOrnateRuby.itemHonorPrice = new Array();
fBoldOrnateRuby.itemHonorPrice[0] = 8100
fBoldOrnateRuby.itemStats = new Array();
fBoldOrnateRuby.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">朴素红绚石</span>\
<br>拾取后绑定<br>唯一 - 装备<br>+20 攻击强度<br>\
<span class=\"myYellow\">\"对应红色插槽。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fBoldOrnateRuby; ++i;

var fRunedOrnateRuby = new RewardItem("alliance","符文红绚石","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Gem_Bloodstone_01.gif");
fRunedOrnateRuby.itemHonorPrice = new Array();
fRunedOrnateRuby.itemHonorPrice[0] = 8100
fRunedOrnateRuby.itemStats = new Array();
fRunedOrnateRuby.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">符文红绚石</span>\
<br>拾取后绑定<br>唯一 - 装备<br>+12 法术伤害<br>\
<span class=\"myYellow\">\"对应红色插槽。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fRunedOrnateRuby; ++i;

var fSmoothOrnateDawnstone = new RewardItem("alliance","圆润精致黎明石","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Gem_Topaz_01.gif");
fSmoothOrnateDawnstone.itemHonorPrice = new Array();
fSmoothOrnateDawnstone.itemHonorPrice[0] = 8100
fSmoothOrnateDawnstone.itemStats = new Array();
fSmoothOrnateDawnstone.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">圆润精致黎明石</span>\
<br>拾取后绑定<br>唯一 - 装备<br>+10 爆击等级<br>\
<span class=\"myYellow\">\"对应黄色插槽。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSmoothOrnateDawnstone; ++i;

var fGleamingOrnateDawnstone = new RewardItem("alliance","柔光精致黎明石","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Gem_Topaz_02.gif");
fGleamingOrnateDawnstone.itemHonorPrice = new Array();
fGleamingOrnateDawnstone.itemHonorPrice[0] = 8100
fGleamingOrnateDawnstone.itemStats = new Array();
fGleamingOrnateDawnstone.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">柔光精致黎明石</span>\
<br>拾取后绑定<br>唯一 - 装备<br>+10 法术爆击等级<br>\
<span class=\"myYellow\">\"对应黄色插槽。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fGleamingOrnateDawnstone; ++i;

var fInscribedOrnateTopaz = new RewardItem("alliance","雕文精致黄宝石","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Gem_Opal_01.gif");
fInscribedOrnateTopaz.itemHonorPrice = new Array();
fInscribedOrnateTopaz.itemHonorPrice[0] = 10000
fInscribedOrnateTopaz.itemStats = new Array();
fInscribedOrnateTopaz.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">雕文精致黄宝石</span>\
<br>拾取后绑定<br>唯一 - 装备<br>+10 攻击强度，+5 爆击等级<br>\
<span class=\"myYellow\">\"对应红色或黄色插槽。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInscribedOrnateTopaz; ++i;

var fPotentOrnateTopaz = new RewardItem("alliance","高能精致黄宝石","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Gem_Opal_02.gif");
fPotentOrnateTopaz.itemHonorPrice = new Array();
fPotentOrnateTopaz.itemHonorPrice[0] = 10000
fPotentOrnateTopaz.itemStats = new Array();
fPotentOrnateTopaz.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">高能精致黄宝石</span>\
<br>拾取后绑定<br>唯一 - 装备<br>+6 法术伤害，+5 法术命中等级<br>\
<span class=\"myYellow\">\"对应红色或黄色插槽。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fPotentOrnateTopaz; ++i;

//-------------------------------------------------------------------
//---Horde below

var fCombatHealingPotion = new RewardItem("horde","作战治疗药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_39.gif");
fCombatHealingPotion.itemMoneyPrice = new Array();
fCombatHealingPotion.itemMoneyPrice[0] = 1000
fCombatHealingPotion.itemHonorPrice = new Array();
fCombatHealingPotion.itemHonorPrice[0] = 1
fCombatHealingPotion.itemStats = new Array();
fCombatHealingPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">作战治疗药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 35<br>\
<span class=\"myGreen\">使用：恢复700到900点生命值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fCombatHealingPotion; ++i;

var fCombatManaPotion = new RewardItem("horde","作战法力药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_81.gif");
fCombatManaPotion.itemMoneyPrice = new Array();
fCombatManaPotion.itemMoneyPrice[0] = 1000
fCombatManaPotion.itemHonorPrice = new Array();
fCombatManaPotion.itemHonorPrice[0] = 1
fCombatManaPotion.itemStats = new Array();
fCombatManaPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">作战法力药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 41<br>\
<span class=\"myGreen\">使用：恢复900到1500点法力值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fCombatManaPotion; ++i;

var fMajorCombatHealingPotion = new RewardItem("horde","特效作战治疗药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_40.gif");
fMajorCombatHealingPotion.itemTokenPrice = new Array();
fMajorCombatHealingPotion.itemTokenPrice[0] = new Array(0,0,0,2);
fMajorCombatHealingPotion.itemStats = new Array();
fMajorCombatHealingPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战治疗药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1050到1750点生命值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatHealingPotion; ++i;

var fMajorCombatManaPotion = new RewardItem("horde","特效作战法力药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_82.gif");
fMajorCombatManaPotion.itemTokenPrice = new Array();
fMajorCombatManaPotion.itemTokenPrice[0] = new Array(0,0,0,2);
fMajorCombatManaPotion.itemStats = new Array();
fMajorCombatManaPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战法力药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1350到2250点法力值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatManaPotion; ++i;

var fMajorCombatHealingPotion = new RewardItem("horde","特效作战治疗药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_40.gif");
fMajorCombatHealingPotion.itemTokenPrice = new Array();
fMajorCombatHealingPotion.itemTokenPrice[0] = new Array(0,2,0,0);
fMajorCombatHealingPotion.itemStats = new Array();
fMajorCombatHealingPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战治疗药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1050到1750点生命值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatHealingPotion; ++i;

var fMajorCombatManaPotion = new RewardItem("horde","特效作战法力药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_82.gif");
fMajorCombatManaPotion.itemTokenPrice = new Array();
fMajorCombatManaPotion.itemTokenPrice[0] = new Array(0,2,0,0);
fMajorCombatManaPotion.itemStats = new Array();
fMajorCombatManaPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战法力药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1350到2250点法力值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatManaPotion; ++i;

var fMajorCombatHealingPotion = new RewardItem("horde","特效作战治疗药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_40.gif");
fMajorCombatHealingPotion.itemTokenPrice = new Array();
fMajorCombatHealingPotion.itemTokenPrice[0] = new Array(2,0,0,0);
fMajorCombatHealingPotion.itemStats = new Array();
fMajorCombatHealingPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战治疗药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1050到1750点生命值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatHealingPotion; ++i;

var fMajorCombatManaPotion = new RewardItem("horde","特效作战法力药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_82.gif");
fMajorCombatManaPotion.itemTokenPrice = new Array();
fMajorCombatManaPotion.itemTokenPrice[0] = new Array(2,0,0,0);
fMajorCombatManaPotion.itemStats = new Array();
fMajorCombatManaPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战法力药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1350到2250点法力值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatManaPotion; ++i;

var fMajorCombatHealingPotion = new RewardItem("horde","特效作战治疗药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_40.gif");
fMajorCombatHealingPotion.itemTokenPrice = new Array();
fMajorCombatHealingPotion.itemTokenPrice[0] = new Array(0,0,2,0);
fMajorCombatHealingPotion.itemStats = new Array();
fMajorCombatHealingPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战治疗药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1050到1750点生命值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatHealingPotion; ++i;

var fMajorCombatManaPotion = new RewardItem("horde","特效作战法力药水","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Potion_82.gif");
fMajorCombatManaPotion.itemTokenPrice = new Array();
fMajorCombatManaPotion.itemTokenPrice[0] = new Array(0,0,2,0);
fMajorCombatManaPotion.itemStats = new Array();
fMajorCombatManaPotion.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">特效作战法力药水<br>拾取后绑定<br>唯一 (10)<br>需要等级 61<br>\
<span class=\"myGreen\">使用：恢复1350到2250点法力值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMajorCombatManaPotion; ++i;

var fStarsLament = new RewardItem("horde","星辰悲歌","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Drink_Waterskin_02.gif");
fStarsLament.itemMoneyPrice = new Array();
fStarsLament.itemMoneyPrice[0] = 1200
fStarsLament.itemHonorPrice = new Array();
fStarsLament.itemHonorPrice[0] = 1
fStarsLament.itemStats = new Array();
fStarsLament.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">星辰悲歌<br>拾取后绑定<br>需要等级 55<br>\
<span class=\"myGreen\">使用：在30秒内恢复4200点法力值。进食时必须保持坐姿。<br></span>\
<span class=\myYellow\">\"精心提炼，供战争中使用。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fStarsLament; ++i;

var fStarsTears = new RewardItem("horde","星辰之泪","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Drink_Waterskin_01.gif");
fStarsTears.itemMoneyPrice = new Array();
fStarsTears.itemMoneyPrice[0] = 2500
fStarsTears.itemHonorPrice = new Array();
fStarsTears.itemHonorPrice[0] = 2
fStarsTears.itemStats = new Array();
fStarsTears.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">星辰之泪<br>拾取后绑定<br>需要等级 65<br>\
<span class=\"myGreen\">使用：在30秒内恢复7200点法力值。进食时必须保持坐姿。<br></span>\
<span class=\"myYellow\">\"精心提炼，供战争中使用。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fStarsTears; ++i;
  
var fScoutsTabard = new RewardItem("horde","斥候的徽章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_TabardPVP_02.gif");
fScoutsTabard.itemTokenPrice = new Array();
fScoutsTabard.itemTokenPrice[0] = new Array(0,3,0,3);
fScoutsTabard.itemStats = new Array();
fScoutsTabard.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">斥候的徽章<br>拾取后绑定<br>唯一<br>公会徽章</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fScoutsTabard; ++i;

var fStoneGuardsHerald = new RewardItem("horde","石守卫的纹章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_TabardPVP_04.gif");
fStoneGuardsHerald.itemTokenPrice = new Array();
fStoneGuardsHerald.itemTokenPrice[0] = new Array(20,20,0,20);
fStoneGuardsHerald.itemStats = new Array();
fStoneGuardsHerald.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">石守卫的纹章<br>拾取后绑定<br>唯一<br>公会徽章</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fStoneGuardsHerald; ++i;

var fSergeantsCape = new RewardItem("horde","军士的披风","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Cape_21.gif");
fSergeantsCape.itemHonorPrice = new Array();
fSergeantsCape.itemHonorPrice[0] = 112
fSergeantsCape.itemTokenPrice = new Array();
fSergeantsCape.itemTokenPrice[0] = new Array(0,10,0,0);
fSergeantsCape.itemStats = new Array();
fSergeantsCape.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">军士的披风</span>\
<br>拾取后绑定<br>唯一<br>背部<br><span class=\"myGreen\">66点护甲</span><br>+9 耐力<br>需要等级 30</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSergeantsCape; ++i;

var fSergeantsCape = new RewardItem("horde","军士的披风","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Cape_21.gif");
fSergeantsCape.itemHonorPrice = new Array();
fSergeantsCape.itemHonorPrice[0] = 245
fSergeantsCape.itemTokenPrice = new Array();
fSergeantsCape.itemTokenPrice[0] = new Array(0,10,0,0);
fSergeantsCape.itemStats = new Array();
fSergeantsCape.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">军士的披风</span>\
<br>拾取后绑定<br>唯一<br>背部<br><span class=\"myGreen\">96点护甲</span><br>+14 耐力<br>需要等级 45</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSergeantsCape; ++i;

var fSergeantsCape = new RewardItem("horde","军士的披风","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Cape_21.gif");
fSergeantsCape.itemHonorPrice = new Array();
fSergeantsCape.itemHonorPrice[0] = 1800
fSergeantsCape.itemTokenPrice = new Array();
fSergeantsCape.itemTokenPrice[0] = new Array(0,10,0,0);
fSergeantsCape.itemStats = new Array();
fSergeantsCape.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">军士的披风</span>\
<br>拾取后绑定<br>唯一<br>背部<br><span class=\"myGreen\">115点护甲</span><br>+17 耐力<br>需要等级 58</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSergeantsCape; ++i;

var fMasterSergeantsInsignia = new RewardItem("horde","高阶军士徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_MonsterScales_15.gif");
fMasterSergeantsInsignia.itemHonorPrice = new Array();
fMasterSergeantsInsignia.itemHonorPrice[0] = 112
fMasterSergeantsInsignia.itemTokenPrice = new Array();
fMasterSergeantsInsignia.itemTokenPrice[0] = new Array(0,0,0,20);
fMasterSergeantsInsignia.itemStats = new Array();
fMasterSergeantsInsignia.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">高阶军士徽记</span>\
<br>拾取后绑定<br>唯一<br>颈部<br>+9 耐力<br>+4 精神<br>需要等级 30</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMasterSergeantsInsignia; ++i;

var fMasterSergeantsInsignia = new RewardItem("horde","高阶军士徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_MonsterScales_15.gif");
fMasterSergeantsInsignia.itemHonorPrice = new Array();
fMasterSergeantsInsignia.itemHonorPrice[0] = 245
fMasterSergeantsInsignia.itemTokenPrice = new Array();
fMasterSergeantsInsignia.itemTokenPrice[0] = new Array(0,0,0,20);
fMasterSergeantsInsignia.itemStats = new Array();
fMasterSergeantsInsignia.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">高阶军士徽记</span>\
<br>拾取后绑定<br>唯一<br>颈部<br>+14 耐力<br>+6 精神<br>需要等级 45</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMasterSergeantsInsignia; ++i;

var fMasterSergeantsInsignia = new RewardItem("horde","高阶军士徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_MonsterScales_15.gif");
fMasterSergeantsInsignia.itemHonorPrice = new Array();
fMasterSergeantsInsignia.itemHonorPrice[0] = 1800
fMasterSergeantsInsignia.itemTokenPrice = new Array();
fMasterSergeantsInsignia.itemTokenPrice[0] = new Array(0,0,0,20);
fMasterSergeantsInsignia.itemStats = new Array();
fMasterSergeantsInsignia.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">高阶军士徽记</span>\
<br>拾取后绑定<br>唯一<br>颈部<br>+17 耐力<br>+7 精神<br>需要等级 58</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMasterSergeantsInsignia; ++i;

var fInsigniaOfTheHorde = new RewardItem("horde","部落徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fInsigniaOfTheHorde.itemHonorPrice = new Array();
fInsigniaOfTheHorde.itemHonorPrice[0] = 3300
fInsigniaOfTheHorde.itemStats = new Array();
fInsigniaOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：德鲁依<br>\
<span class=\"myGreen\">使用：解除一切魅惑、恐惧和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheHorde; ++i;

var fInsigniaOfTheHorde = new RewardItem("horde","部落徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fInsigniaOfTheHorde.itemHonorPrice = new Array();
fInsigniaOfTheHorde.itemHonorPrice[0] = 3300
fInsigniaOfTheHorde.itemStats = new Array();
fInsigniaOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：猎人<br>\
<span class=\"myGreen\">使用：解除一切定身、减速或昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheHorde; ++i;

var fInsigniaOfTheHorde = new RewardItem("horde","部落徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fInsigniaOfTheHorde.itemHonorPrice = new Array();
fInsigniaOfTheHorde.itemHonorPrice[0] = 3300
fInsigniaOfTheHorde.itemStats = new Array();
fInsigniaOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：法师<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和减速效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheHorde; ++i;

var fInsigniaOfTheHorde = new RewardItem("horde","部落徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fInsigniaOfTheHorde.itemHonorPrice = new Array();
fInsigniaOfTheHorde.itemHonorPrice[0] = 3300
fInsigniaOfTheHorde.itemStats = new Array();
fInsigniaOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：圣骑士<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheHorde; ++i;

var fInsigniaOfTheHorde = new RewardItem("horde","部落徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fInsigniaOfTheHorde.itemHonorPrice = new Array();
fInsigniaOfTheHorde.itemHonorPrice[0] = 3300
fInsigniaOfTheHorde.itemStats = new Array();
fInsigniaOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：牧师<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheHorde; ++i;

var fInsigniaOfTheHorde = new RewardItem("horde","部落徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fInsigniaOfTheHorde.itemHonorPrice = new Array();
fInsigniaOfTheHorde.itemHonorPrice[0] = 3300
fInsigniaOfTheHorde.itemStats = new Array();
fInsigniaOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：潜行者<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheHorde; ++i;

var fInsigniaOfTheHorde = new RewardItem("horde","部落徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fInsigniaOfTheHorde.itemHonorPrice = new Array();
fInsigniaOfTheHorde.itemHonorPrice[0] = 3300
fInsigniaOfTheHorde.itemStats = new Array();
fInsigniaOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：萨满祭司<br>\
<span class=\"myGreen\">使用：解除一切定身、减速或昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheHorde; ++i;

var fInsigniaOfTheHorde = new RewardItem("horde","部落徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fInsigniaOfTheHorde.itemHonorPrice = new Array();
fInsigniaOfTheHorde.itemHonorPrice[0] = 3300
fInsigniaOfTheHorde.itemStats = new Array();
fInsigniaOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：术士<br>\
<span class=\"myGreen\">使用：解除一切恐惧、昏迷和减速效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheHorde; ++i;

var fInsigniaOfTheHorde = new RewardItem("horde","部落徽记","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fInsigniaOfTheHorde.itemHonorPrice = new Array();
fInsigniaOfTheHorde.itemHonorPrice[0] = 3300
fInsigniaOfTheHorde.itemStats = new Array();
fInsigniaOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落徽记</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：战士<br>\
<span class=\"myGreen\">使用：解除一切定身、昏迷和变形效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInsigniaOfTheHorde; ++i;

var fHordeBattleStandard = new RewardItem("horde","部落军旗","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_BannerPVP_01.gif");
fHordeBattleStandard.itemHonorPrice = new Array();
fHordeBattleStandard.itemHonorPrice[0] = 18000
fHordeBattleStandard.itemStats = new Array();
fHordeBattleStandard.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">部落军旗<br>拾取后绑定<br>\
<span class=\"myGreen\">使用：安放一面军旗，使所有在战旗附近半径45码范围内的友方单位的生命值上限提高15%。持续2分钟。军旗只能在PvP战场中使用。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fHordeBattleStandard; ++i;




var fMedallionOfTheHorde = new RewardItem("horde","部落勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fMedallionOfTheHorde.itemHonorPrice = new Array();
fMedallionOfTheHorde.itemHonorPrice[0] = 19980
fMedallionOfTheHorde.itemStats = new Array();
fMedallionOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：德鲁依<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切魅惑、恐惧和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheHorde; ++i;



var fMedallionOfTheHorde = new RewardItem("horde","部落勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fMedallionOfTheHorde.itemHonorPrice = new Array();
fMedallionOfTheHorde.itemHonorPrice[0] = 19980
fMedallionOfTheHorde.itemStats = new Array();
fMedallionOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：猎人<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切定身、减速或昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheHorde; ++i;

var fMedallionOfTheHorde = new RewardItem("horde","部落勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fMedallionOfTheHorde.itemHonorPrice = new Array();
fMedallionOfTheHorde.itemHonorPrice[0] = 19980
fMedallionOfTheHorde.itemStats = new Array();
fMedallionOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：法师<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和减速效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheHorde; ++i;




var fMedallionOfTheHorde = new RewardItem("horde","部落勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fMedallionOfTheHorde.itemHonorPrice = new Array();
fMedallionOfTheHorde.itemHonorPrice[0] = 19980
fMedallionOfTheHorde.itemStats = new Array();
fMedallionOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：圣骑士<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheHorde; ++i;



var fMedallionOfTheHorde = new RewardItem("horde","部落勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fMedallionOfTheHorde.itemHonorPrice = new Array();
fMedallionOfTheHorde.itemHonorPrice[0] = 19980
fMedallionOfTheHorde.itemStats = new Array();
fMedallionOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：牧师<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheHorde; ++i;

var fMedallionOfTheHorde = new RewardItem("horde","部落勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fMedallionOfTheHorde.itemHonorPrice = new Array();
fMedallionOfTheHorde.itemHonorPrice[0] = 19980
fMedallionOfTheHorde.itemStats = new Array();
fMedallionOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：潜行者<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切恐惧、变形和昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheHorde; ++i;

var fMedallionOfTheHorde = new RewardItem("horde","部落勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fMedallionOfTheHorde.itemHonorPrice = new Array();
fMedallionOfTheHorde.itemHonorPrice[0] = 19980
fMedallionOfTheHorde.itemStats = new Array();
fMedallionOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：萨满祭司<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切定身、减速或昏迷效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheHorde; ++i;

var fMedallionOfTheHorde = new RewardItem("horde","部落勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fMedallionOfTheHorde.itemHonorPrice = new Array();
fMedallionOfTheHorde.itemHonorPrice[0] = 19980
fMedallionOfTheHorde.itemStats = new Array();
fMedallionOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：术士<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切恐惧、昏迷和减速效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheHorde; ++i;

var fMedallionOfTheHorde = new RewardItem("horde","部落勋章","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_TrinketPVP_02.gif");
fMedallionOfTheHorde.itemHonorPrice = new Array();
fMedallionOfTheHorde.itemHonorPrice[0] = 19980
fMedallionOfTheHorde.itemStats = new Array();
fMedallionOfTheHorde.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">部落勋章</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>职业：战士<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高20。</span>\
<br>\
<span class=\"myGreen\">使用：解除一切定身、昏迷和变形效果。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMedallionOfTheHorde; ++i;

var fTalismanOfTheAlliance = new RewardItem("horde","部落护符","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Jewelry_Talisman_09.gif");
fTalismanOfTheAlliance.itemHonorPrice = new Array();
fTalismanOfTheAlliance.itemHonorPrice[0] = 27000
fTalismanOfTheAlliance.itemTokenPrice = new Array();
fTalismanOfTheAlliance.itemTokenPrice[0] = new Array(0,0,10,0);
fTalismanOfTheAlliance.itemStats = new Array();
fTalismanOfTheAlliance.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">部落护符</span>\
<br>拾取后绑定<br>唯一<br>饰品<br>需要等级 70<br>\
<span class=\"myGreen\">装备：使你的韧性等级提高34。</span>\
<br>\
<span class=\"myGreen\">使用：为自己恢复877到969点生命值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fTalismanOfTheAlliance; ++i;

var fBoldOrnateRuby = new RewardItem("horde","朴素红绚石","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Gem_Ruby_02.gif");
fBoldOrnateRuby.itemHonorPrice = new Array();
fBoldOrnateRuby.itemHonorPrice[0] = 8100
fBoldOrnateRuby.itemStats = new Array();
fBoldOrnateRuby.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">朴素红绚石</span>\
<br>拾取后绑定<br>唯一 - 装备<br>+20 攻击强度<br>\
<span class=\"myYellow\">\"对应红色插槽。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fBoldOrnateRuby; ++i;

var fRunedOrnateRuby = new RewardItem("horde","符文红绚石","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Gem_Bloodstone_01.gif");
fRunedOrnateRuby.itemHonorPrice = new Array();
fRunedOrnateRuby.itemHonorPrice[0] = 8100
fRunedOrnateRuby.itemStats = new Array();
fRunedOrnateRuby.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">符文红绚石</span>\
<br>拾取后绑定<br>唯一 - 装备<br>+12 法术伤害<br>\
<span class=\"myYellow\">\"对应红色插槽。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fRunedOrnateRuby; ++i;

var fSmoothOrnateDawnstone = new RewardItem("horde","圆润精致黎明石","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Gem_Topaz_01.gif");
fSmoothOrnateDawnstone.itemHonorPrice = new Array();
fSmoothOrnateDawnstone.itemHonorPrice[0] = 8100
fSmoothOrnateDawnstone.itemStats = new Array();
fSmoothOrnateDawnstone.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">圆润精致黎明石</span>\
<br>拾取后绑定<br>唯一 - 装备<br>+10 爆击等级<br>\
<span class=\"myYellow\">\"对应黄色插槽。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSmoothOrnateDawnstone; ++i;

var fGleamingOrnateDawnstone = new RewardItem("horde","柔光精致黎明石","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Gem_Topaz_02.gif");
fGleamingOrnateDawnstone.itemHonorPrice = new Array();
fGleamingOrnateDawnstone.itemHonorPrice[0] = 8100
fGleamingOrnateDawnstone.itemStats = new Array();
fGleamingOrnateDawnstone.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">柔光精致黎明石</span>\
<br>拾取后绑定<br>唯一 - 装备<br>+10 法术爆击等级<br>\
<span class=\"myYellow\">\"对应黄色插槽。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fGleamingOrnateDawnstone; ++i;

var fInscribedOrnateTopaz = new RewardItem("horde","雕文精致黄宝石","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Gem_Opal_01.gif");
fInscribedOrnateTopaz.itemHonorPrice = new Array();
fInscribedOrnateTopaz.itemHonorPrice[0] = 10000
fInscribedOrnateTopaz.itemStats = new Array();
fInscribedOrnateTopaz.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">雕文精致黄宝石</span>\
<br>拾取后绑定<br>唯一 - 装备<br>+10 攻击强度，+5 爆击等级<br>\
<span class=\"myYellow\">\"对应红色或黄色插槽。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInscribedOrnateTopaz; ++i;

var fPotentOrnateTopaz = new RewardItem("horde","高能精致黄宝石","http://wowimg.the9.com/images_wow/gameinfo/pvp/rewards/INV_Misc_Gem_Opal_02.gif");
fPotentOrnateTopaz.itemHonorPrice = new Array();
fPotentOrnateTopaz.itemHonorPrice[0] = 10000
fPotentOrnateTopaz.itemStats = new Array();
fPotentOrnateTopaz.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">高能精致黄宝石</span>\
<br>拾取后绑定<br>唯一 - 装备<br>+6 法术伤害，+5 法术命中等级<br>\
<span class=\"myYellow\">\"对应红色或黄色插槽。\"</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fPotentOrnateTopaz; ++i;

//------END REWARDS DEFINITION------

