//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("apexis_shard","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://images.warcraftchina.com/images_wow/gameinfo/factions/icons/gold.gif'>&nbsp;";
		if (silverPart > 0) outPutString += silverPart+"<img src='http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/silver.gif'>&nbsp;";
		if (copperPart > 0) outPutString += copperPart+"<img src='http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/copper.gif'>&nbsp;";
	}
	if(thisObject.itemHonorPrice && thisObject.itemHonorPrice[thisBracket])
	{
		outPutString += thisObject.itemHonorPrice[thisBracket]+"<img src='http://images.warcraftchina.com/images_wow/gameinfo/factions/ogrila/apexis_crystal.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://images.warcraftchina.com/images_wow/gameinfo/factions/ogrila/"+tokenIcons[carl]+".gif'>&nbsp;";
		}
	}
	return outPutString;
}

//------BEGIN REWARDS DEFINITION------
i = 0;
var RewardItems = new Array();

//---Friendly below ------------------------------

var fNaaruRation = new RewardItem("alliance","纳鲁军粮","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_misc_food_95_grainbread.gif");
fNaaruRation.itemMoneyPrice = new Array();
fNaaruRation.itemMoneyPrice[0] = 4750
fNaaruRation.itemStats = new Array();
fNaaruRation.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">纳鲁军粮</span><br>\
需要等级 65<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：在30秒内恢复7500点生命值和7200点法力值。进食时必须保持坐姿。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fNaaruRation; ++i;

// Hyjal ADDED

var fBoldCrimsonSpinel = new RewardItem("alliance","图鉴：朴素赤尖石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fBoldCrimsonSpinel.itemMoneyPrice = new Array();
fBoldCrimsonSpinel.itemMoneyPrice[0] = 500000
fBoldCrimsonSpinel.itemStats = new Array();
fBoldCrimsonSpinel.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：朴素赤尖石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割朴素赤尖石。</span><br>\
<br>\
<span class=\"myPurple\">朴素赤尖石</span><br>\
+10 力量<br>\
<span class=\"myYellow\">“对应红色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 赤尖石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fBoldCrimsonSpinel; ++i;

var fBrightCrimsonSpinel = new RewardItem("alliance","图鉴：明亮赤尖石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fBrightCrimsonSpinel.itemMoneyPrice = new Array();
fBrightCrimsonSpinel.itemMoneyPrice[0] = 500000
fBrightCrimsonSpinel.itemStats = new Array();
fBrightCrimsonSpinel.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：明亮赤尖石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割明亮赤尖石。</span><br>\
<br>\
<span class=\"myPurple\">明亮赤尖石</span><br>\
+20 攻击强度<br>\
<span class=\"myYellow\">“对应红色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 赤尖石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fBrightCrimsonSpinel; ++i;

var fDelicateCrimsonSpinel = new RewardItem("alliance","图鉴：精致赤尖石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fDelicateCrimsonSpinel.itemMoneyPrice = new Array();
fDelicateCrimsonSpinel.itemMoneyPrice[0] = 500000
fDelicateCrimsonSpinel.itemStats = new Array();
fDelicateCrimsonSpinel.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：精致赤尖石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割精致赤尖石。</span><br>\
<br>\
<span class=\"myPurple\">精致赤尖石</span><br>\
+10 敏捷<br>\
<span class=\"myYellow\">“对应红色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 赤尖石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fDelicateCrimsonSpinel; ++i;

var fTeardropCrimsonSpinel = new RewardItem("alliance","图鉴：泪珠赤尖石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fTeardropCrimsonSpinel.itemMoneyPrice = new Array();
fTeardropCrimsonSpinel.itemMoneyPrice[0] = 500000
fTeardropCrimsonSpinel.itemStats = new Array();
fTeardropCrimsonSpinel.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：泪珠赤尖石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割泪珠赤尖石。</span><br>\
<br>\
<span class=\"myPurple\">泪珠赤尖石</span><br>\
+22治疗效果，+8法术伤害<br>\
<span class=\"myYellow\">“对应红色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 赤尖石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fTeardropCrimsonSpinel; ++i;

var fSubtleCrimsonSpinel = new RewardItem("alliance","图鉴：诡秘赤尖石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fSubtleCrimsonSpinel.itemMoneyPrice = new Array();
fSubtleCrimsonSpinel.itemMoneyPrice[0] = 500000
fSubtleCrimsonSpinel.itemStats = new Array();
fSubtleCrimsonSpinel.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：诡秘赤尖石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割诡秘赤尖石。</span><br>\
<br>\
<span class=\"myPurple\">诡秘赤尖石</span><br>\
+10 躲闪等级<br>\
<span class=\"myYellow\">“对应红色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 赤尖石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSubtleCrimsonSpinel; ++i;

var fRunedCrimsonSpinel = new RewardItem("alliance","图鉴：符文赤尖石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fRunedCrimsonSpinel.itemMoneyPrice = new Array();
fRunedCrimsonSpinel.itemMoneyPrice[0] = 500000
fRunedCrimsonSpinel.itemStats = new Array();
fRunedCrimsonSpinel.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：符文赤尖石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割符文赤尖石。</span><br>\
<br>\
<span class=\"myPurple\">符文赤尖石</span><br>\
+12 法术伤害<br>\
<span class=\"myYellow\">“对应红色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 赤尖石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fRunedCrimsonSpinel; ++i;

var fBrilliantLionseye = new RewardItem("alliance","图鉴：闪耀狮眼石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fBrilliantLionseye.itemMoneyPrice = new Array();
fBrilliantLionseye.itemMoneyPrice[0] = 500000
fBrilliantLionseye.itemStats = new Array();
fBrilliantLionseye.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：闪耀狮眼石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割闪耀狮眼石。</span><br>\
<br>\
<span class=\"myPurple\">闪耀狮眼石</span><br>\
+10 智力<br>\
<span class=\"myYellow\">“对应黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 狮眼石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fBrilliantLionseye; ++i;

var fGleamingLionseye = new RewardItem("alliance","图鉴：柔光狮眼石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fGleamingLionseye.itemMoneyPrice = new Array();
fGleamingLionseye.itemMoneyPrice[0] = 500000
fGleamingLionseye.itemStats = new Array();
fGleamingLionseye.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：柔光狮眼石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割柔光狮眼石。</span><br>\
<br>\
<span class=\"myPurple\">柔光狮眼石</span><br>\
+10 法术爆击等级<br>\
<span class=\"myYellow\">“对应黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 狮眼石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fGleamingLionseye; ++i;

var fThickLionseye = new RewardItem("alliance","图鉴：厚重狮眼石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fThickLionseye.itemMoneyPrice = new Array();
fThickLionseye.itemMoneyPrice[0] = 500000
fThickLionseye.itemStats = new Array();
fThickLionseye.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：厚重狮眼石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割厚重狮眼石。</span><br>\
<br>\
<span class=\"myPurple\">厚重狮眼石</span><br>\
+10 防御等级<br>\
<span class=\"myYellow\">“对应黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 狮眼石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fThickLionseye; ++i;

var fSmoothLionseye = new RewardItem("alliance","图鉴：圆润狮眼石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fSmoothLionseye.itemMoneyPrice = new Array();
fSmoothLionseye.itemMoneyPrice[0] = 500000
fSmoothLionseye.itemStats = new Array();
fSmoothLionseye.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：圆润狮眼石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割圆润狮眼石。</span><br>\
<br>\
<span class=\"myPurple\">圆润狮眼石</span><br>\
+10 爆击等级<br>\
<span class=\"myYellow\">“对应黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 狮眼石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSmoothLionseye; ++i;

var fSparklingEmpyreanSapphire = new RewardItem("alliance","图鉴：火花天蓝宝石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fSparklingEmpyreanSapphire.itemMoneyPrice = new Array();
fSparklingEmpyreanSapphire.itemMoneyPrice[0] = 500000
fSparklingEmpyreanSapphire.itemStats = new Array();
fSparklingEmpyreanSapphire.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：火花天蓝宝石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割火花天蓝宝石。</span><br>\
<br>\
<span class=\"myPurple\">火花天蓝宝石</span><br>\
+10 精神<br>\
<span class=\"myYellow\">“对应蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 天蓝宝石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSparklingEmpyreanSapphire; ++i;

var fSolidEmpyreanSapphire = new RewardItem("alliance","图鉴：致密天蓝宝石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fSolidEmpyreanSapphire.itemMoneyPrice = new Array();
fSolidEmpyreanSapphire.itemMoneyPrice[0] = 500000
fSolidEmpyreanSapphire.itemStats = new Array();
fSolidEmpyreanSapphire.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：致密天蓝宝石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割致密天蓝宝石。</span><br>\
<br>\
<span class=\"myPurple\">致密天蓝宝石</span><br>\
+15 耐力<br>\
<span class=\"myYellow\">“对应蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 天蓝宝石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSolidEmpyreanSapphire; ++i;

var fLustrousEmpyreanSapphire = new RewardItem("alliance","图鉴：异彩天蓝宝石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fLustrousEmpyreanSapphire.itemMoneyPrice = new Array();
fLustrousEmpyreanSapphire.itemMoneyPrice[0] = 500000
fLustrousEmpyreanSapphire.itemStats = new Array();
fLustrousEmpyreanSapphire.itemStats[0] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：异彩天蓝宝石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 友善<br>\
<span class=\"myGreen\">使用：教你学会切割异彩天蓝宝石。</span><br>\
<br>\
<span class=\"myPurple\">异彩天蓝宝石</span><br>\
+每5秒恢复4点法力值<br>\
<span class=\"myYellow\">“对应蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 天蓝宝石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fLustrousEmpyreanSapphire; ++i;



//---Honored below

var fVoidShatter = new RewardItem("alliance","公式：虚空碎裂","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/recipe.gif");
fVoidShatter.itemMoneyPrice = new Array();
fVoidShatter.itemMoneyPrice[1] = 135000
fVoidShatter.itemStats = new Array();
fVoidShatter.itemStats[1] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">公式：虚空碎裂</span><br>\
拾取后绑定<br>\
需要 附魔 (360)<br>\
需要 破碎残阳 - 尊敬<br>\
<span class=\"myGreen\">使用：教你学会如何将一块虚空水晶击碎成为两块棱光碎片。</span><br>\
<br>\
<span class=\"myBlue\">大棱光碎片</span><br>\
<br>\
<span class=\"myGray\">需要 虚空水晶</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fVoidShatter; ++i;

var fEnchantChestDefense = new RewardItem("alliance","公式：附魔胸甲 - 防御","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/recipe.gif");
fEnchantChestDefense.itemMoneyPrice = new Array();
fEnchantChestDefense.itemMoneyPrice[1] = 135000
fEnchantChestDefense.itemStats = new Array();
fEnchantChestDefense.itemStats[1] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">公式：附魔胸甲 - 防御</span><br>\
拾取后绑定<br>\
需要 附魔 (360)<br>\
需要 破碎残阳 - 尊敬<br>\
<span class=\"myGreen\">使用：教你学会给一件胸甲永久性地附魔，使它获得+15防御等级的效果。该物品的等级不得低于35级。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fEnchantChestDefense; ++i;

// Hyjal ADDED

var fBalancedShadowsongAmethyst = new RewardItem("alliance","图鉴：平衡影歌紫玉","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fBalancedShadowsongAmethyst.itemMoneyPrice = new Array();
fBalancedShadowsongAmethyst.itemMoneyPrice[1] = 500000
fBalancedShadowsongAmethyst.itemStats = new Array();
fBalancedShadowsongAmethyst.itemStats[1] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：平衡影歌紫玉</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 尊敬<br>\
<span class=\"myGreen\">使用：教你学会切割平衡影歌紫玉。</span><br>\
<br>\
<span class=\"myPurple\">平衡影歌紫玉</span><br>\
+10攻击强度，+7耐力<br>\
<span class=\"myYellow\">“对应红色或蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 影歌紫玉</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fBalancedShadowsongAmethyst; ++i;

var fInfusedShadowsongAmethyst = new RewardItem("alliance","图鉴：充能影歌紫玉","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fInfusedShadowsongAmethyst.itemMoneyPrice = new Array();
fInfusedShadowsongAmethyst.itemMoneyPrice[1] = 500000
fInfusedShadowsongAmethyst.itemStats = new Array();
fInfusedShadowsongAmethyst.itemStats[1] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：充能影歌紫玉</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 尊敬<br>\
<span class=\"myGreen\">使用：教你学会切割充能影歌紫玉。</span><br>\
<br>\
<span class=\"myPurple\">充能影歌紫玉</span><br>\
+10攻击强度，+每5秒恢复2点法力值<br>\
<span class=\"myYellow\">“对应红色或蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 影歌紫玉</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInfusedShadowsongAmethyst; ++i;

var fGlowingShadowsongAmethyst = new RewardItem("alliance","图鉴：炽热影歌紫玉","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fGlowingShadowsongAmethyst.itemMoneyPrice = new Array();
fGlowingShadowsongAmethyst.itemMoneyPrice[1] = 500000
fGlowingShadowsongAmethyst.itemStats = new Array();
fGlowingShadowsongAmethyst.itemStats[1] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：炽热影歌紫玉</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 尊敬<br>\
<span class=\"myGreen\">使用：教你学会切割炽热影歌紫玉。</span><br>\
<br>\
<span class=\"myPurple\">炽热影歌紫玉</span><br>\
+6法术伤害，+7耐力<br>\
<span class=\"myYellow\">“对应红色或蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 影歌紫玉</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fGlowingShadowsongAmethyst; ++i;

var fDazzlingSeasprayEmerald = new RewardItem("alliance","图鉴：眩光海浪翡翠","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fDazzlingSeasprayEmerald.itemMoneyPrice = new Array();
fDazzlingSeasprayEmerald.itemMoneyPrice[1] = 500000
fDazzlingSeasprayEmerald.itemStats = new Array();
fDazzlingSeasprayEmerald.itemStats[1] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：眩光海浪翡翠</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 尊敬<br>\
<span class=\"myGreen\">使用：教你学会切割眩光海浪翡翠。</span><br>\
<br>\
<span class=\"myPurple\">眩光海浪翡翠</span><br>\
+5智力，+每5秒恢复2点法力值<br>\
<span class=\"myYellow\">“对应蓝色或黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 海浪翡翠</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fDazzlingSeasprayEmerald; ++i;

var fRadiantSeasprayEmerald = new RewardItem("alliance","图鉴：辐光海浪翡翠","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fRadiantSeasprayEmerald.itemMoneyPrice = new Array();
fRadiantSeasprayEmerald.itemMoneyPrice[1] = 500000
fRadiantSeasprayEmerald.itemStats = new Array();
fRadiantSeasprayEmerald.itemStats[1] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：辐光海浪翡翠</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 尊敬<br>\
<span class=\"myGreen\">使用：教你学会切割辐光海浪翡翠。</span><br>\
<br>\
<span class=\"myPurple\">辐光海浪翡翠</span><br>\
+5法术爆击等级，+6法术穿透<br>\
<span class=\"myYellow\">“对应蓝色或黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 海浪翡翠</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fRadiantSeasprayEmerald; ++i;

var fJaggedSeasprayEmerald = new RewardItem("alliance","图鉴：裂纹海浪翡翠","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fJaggedSeasprayEmerald.itemMoneyPrice = new Array();
fJaggedSeasprayEmerald.itemMoneyPrice[1] = 500000
fJaggedSeasprayEmerald.itemStats = new Array();
fJaggedSeasprayEmerald.itemStats[1] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：裂纹海浪翡翠</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 尊敬<br>\
<span class=\"myGreen\">使用：教你学会切割裂纹海浪翡翠。</span><br>\
<br>\
<span class=\"myPurple\">裂纹海浪翡翠</span><br>\
+5爆击等级，+7耐力<br>\
<span class=\"myYellow\">“对应蓝色或黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 海浪翡翠</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fJaggedSeasprayEmerald; ++i;

var fPotentPyrestone = new RewardItem("alliance","图鉴：高能焚石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fPotentPyrestone.itemMoneyPrice = new Array();
fPotentPyrestone.itemMoneyPrice[1] = 500000
fPotentPyrestone.itemStats = new Array();
fPotentPyrestone.itemStats[1] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：高能焚石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 尊敬<br>\
<span class=\"myGreen\">使用：教你学会切割高能焚石。</span><br>\
<br>\
<span class=\"myPurple\">高能焚石</span><br>\
+5法术爆击等级，+6法术伤害<br>\
<span class=\"myYellow\">“对应红色或黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 焚石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fPotentPyrestone; ++i;

var fLuminousPyrestone = new RewardItem("alliance","图鉴：辉光焚石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fLuminousPyrestone.itemMoneyPrice = new Array();
fLuminousPyrestone.itemMoneyPrice[1] = 500000
fLuminousPyrestone.itemStats = new Array();
fLuminousPyrestone.itemStats[1] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：辉光焚石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 尊敬<br>\
<span class=\"myGreen\">使用：教你学会切割辉光焚石。</span><br>\
<br>\
<span class=\"myPurple\">辉光焚石</span><br>\
+11治疗效果，+4法术伤害，+5智力<br>\
<span class=\"myYellow\">“对应红色或黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 焚石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fLuminousPyrestone; ++i;

var fGlintingPyrestone = new RewardItem("alliance","图鉴：反光焚石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fGlintingPyrestone.itemMoneyPrice = new Array();
fGlintingPyrestone.itemMoneyPrice[1] = 500000
fGlintingPyrestone.itemStats = new Array();
fGlintingPyrestone.itemStats[1] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：反光焚石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 尊敬<br>\
<span class=\"myGreen\">使用：教你学会切割反光焚石。</span><br>\
<br>\
<span class=\"myPurple\">反光焚石</span><br>\
+5命中等级，+5敏捷<br>\
<span class=\"myYellow\">“对应红色或蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 焚石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fGlintingPyrestone; ++i;




//---Revered below

var fEmberSkyfireDiamond = new RewardItem("alliance","图鉴：灰烬之天火钻石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fEmberSkyfireDiamond.itemMoneyPrice = new Array();
fEmberSkyfireDiamond.itemMoneyPrice[2] = 127500
fEmberSkyfireDiamond.itemStats = new Array();
fEmberSkyfireDiamond.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">图鉴：灰烬之天火钻石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割灰烬之天火钻石。</span><br>\
<br>\
<span class=\"myBlue\">灰烬之天火钻石</span><br>\
+14法术伤害 & + 2%智力<br>\
<span class=\"myGray\">需要 至少3颗红色宝石</span><br>\
<span class=\"myYellow\">“只能镶嵌在多彩宝石插槽中。”</span><br>\
<br>\
<span class=\"myGray\">需要 天火钻石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fEmberSkyfireDiamond; ++i;

var fEternalEarthstormDiamond = new RewardItem("alliance","图鉴：永恒之大地风暴钻石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fEternalEarthstormDiamond.itemMoneyPrice = new Array();
fEternalEarthstormDiamond.itemMoneyPrice[2] = 127500
fEternalEarthstormDiamond.itemStats = new Array();
fEternalEarthstormDiamond.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">图鉴：永恒之大地风暴钻石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割永恒之大地风暴钻石。</span><br>\
<br>\
<span class=\"myBlue\">永恒之大地风暴钻石</span><br>\
+12防御等级 & + 10%盾牌格挡值<br>\
<span class=\"myGray\">需要 至少2颗蓝色宝石</span><br>\
<span class=\"myGray\">需要 至少1颗黄色宝石</span><br>\
<span class=\"myYellow\">“只能镶嵌在多彩宝石插槽中。”</span><br>\
<br>\
<span class=\"myGray\">需要 大地风暴钻石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fEternalEarthstormDiamond; ++i;

var fGlyphoftheGladiator = new RewardItem("alliance","角斗士雕文","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_misc_statue_04.gif");
fGlyphoftheGladiator.itemMoneyPrice = new Array();
fGlyphoftheGladiator.itemMoneyPrice[2] = 850000
fGlyphoftheGladiator.itemStats = new Array();
fGlyphoftheGladiator.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myGreen\">角斗士雕文</span><br>\
拾取后绑定<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：永久性地为一件头部装备附加耐力提高18点、韧性等级提高20的效果。无法与其它附加于指定装备的魔法效果重叠。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fGlyphoftheGladiator; ++i;

var fFigurineCrimsonSerpent = new RewardItem("alliance","图鉴：雕像 - 赤尖蛇","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fFigurineCrimsonSerpent.itemMoneyPrice = new Array();
fFigurineCrimsonSerpent.itemMoneyPrice[2] = 212500
fFigurineCrimsonSerpent.itemStats = new Array();
fFigurineCrimsonSerpent.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">图鉴：雕像 - 赤尖蛇</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割雕像 - 赤尖蛇。</span><br>\
<br>\
<span class=\"myPurple\">雕像 - 赤尖蛇</span><br>\
拾取后绑定<br>\
唯一<br>\
饰品<br>\
+49 耐力<br>+33 智力<br>\
需要等级 70<br>\
<span class=\"myGreen\">使用：提高所有法术和魔法效果所造成的伤害和治疗效果，最多150点，持续20秒。（2分钟冷却时间）</span><br>\
<br>\
<span class=\"myGray\">需要 恒金锭(8)，赤尖石(2)，源生之火(8)</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fFigurineCrimsonSerpent; ++i;

var fFigurineSeasprayAlbatross = new RewardItem("alliance","图鉴：雕像 - 海浪信天翁","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fFigurineSeasprayAlbatross.itemMoneyPrice = new Array();
fFigurineSeasprayAlbatross.itemMoneyPrice[2] = 212500
fFigurineSeasprayAlbatross.itemStats = new Array();
fFigurineSeasprayAlbatross.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">图鉴：雕像 - 海浪信天翁</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割雕像 - 海浪信天翁。</span><br>\
<br>\
<span class=\"myPurple\">雕像 - 海浪信天翁</span><br>\
拾取后绑定<br>\
唯一<br>\
饰品<br>\
需要等级 70<br>\
<span class=\"myGreen\">装备：每5秒恢复18点法力值。</span><br>\
<span class=\"myGreen\">装备：在12秒内恢复900点法力值。（3分钟冷却时间）</span><br>\
<br>\
<span class=\"myGray\">需要 恒金锭(8)，坚强海浪翡翠(2)，源生法力(8)</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fFigurineSeasprayAlbatross; ++i;

var fFigurineEmpyreanTortoise = new RewardItem("alliance","图鉴：雕像 - 天蓝宝石海龟","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fFigurineEmpyreanTortoise.itemMoneyPrice = new Array();
fFigurineEmpyreanTortoise.itemMoneyPrice[2] = 212500
fFigurineEmpyreanTortoise.itemStats = new Array();
fFigurineEmpyreanTortoise.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">图鉴：雕像 - 天蓝宝石海龟</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割雕像 - 天蓝宝石海龟。</span><br>\
<br>\
<span class=\"myPurple\">雕像 - 天蓝宝石海龟</span><br>\
拾取后绑定<br>\
唯一<br>\
饰品<br>\
需要等级 70<br>\
<span class=\"myGreen\">装备：防御等级提高42。</span><br>\
<span class=\"myGreen\">装备：躲闪等级提高165，持续20秒。（2分钟冷却时间）</span><br>\
<br>\
<span class=\"myGray\">需要 氪金锭(8)，天蓝宝石(2)，黎明石(6)</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fFigurineEmpyreanTortoise; ++i;

var fFigurineKhoriumBoar = new RewardItem("alliance","图鉴：雕像 - 氪金野猪","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fFigurineKhoriumBoar.itemMoneyPrice = new Array();
fFigurineKhoriumBoar.itemMoneyPrice[2] = 212500
fFigurineKhoriumBoar.itemStats = new Array();
fFigurineKhoriumBoar.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">图鉴：雕像 - 氪金野猪</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割雕像 - 氪金野猪。</span><br>\
<br>\
<span class=\"myPurple\">雕像 - 氪金野猪</span><br>\
拾取后绑定<br>\
唯一<br>\
饰品<br>\
需要等级 70<br>\
<span class=\"myGreen\">装备：攻击强度提高84点。</span><br>\
<span class=\"myGreen\">装备：召唤一只氪金野猪为你作战，持续30秒。（5分钟冷却时间）</span><br>\
<br>\
<span class=\"myGray\">需要 氪金锭(8)，焚石(2)，源生之土(8)</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fFigurineKhoriumBoar; ++i;

var fFigurineShadowsongPanther = new RewardItem("alliance","图鉴：雕像 - 影歌猎豹","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fFigurineShadowsongPanther.itemMoneyPrice = new Array();
fFigurineShadowsongPanther.itemMoneyPrice[2] = 212500
fFigurineShadowsongPanther.itemStats = new Array();
fFigurineShadowsongPanther.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">图鉴：雕像 - 影歌猎豹</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割雕像 - 影歌猎豹。</span><br>\
<br>\
<span class=\"myPurple\">雕像 - 影歌猎豹</span><br>\
拾取后绑定<br>\
唯一<br>\
饰品<br>\
需要等级 70<br>\
<span class=\"myGreen\">装备：使你的有效潜行等级提高1。</span><br>\
<span class=\"myGreen\">装备：攻击强度提高80点。</span><br>\
<span class=\"myGreen\">装备：攻击强度提高320点，持续15秒。（1分30秒冷却时间）</span><br>\
<br>\
<span class=\"myGray\">需要 硬化精金锭(4)，炽热影歌紫玉(2)，源生暗影(8)</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fFigurineShadowsongPanther; ++i;

var fRegalNightseye = new RewardItem("alliance","图鉴：华丽夜目石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_05.gif");
fRegalNightseye.itemMoneyPrice = new Array();
fRegalNightseye.itemMoneyPrice[2] = 102000
fRegalNightseye.itemStats = new Array();
fRegalNightseye.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">图鉴：华丽夜目石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (350)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割华丽夜目石。</span><br>\
<br>\
<span class=\"myBlue\">华丽夜目石</span><br>\
+4躲闪等级，+6耐力<br>\
<span class=\"myYellow\">“对应红色或蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 夜目石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fRegalNightseye; ++i;

var fForcefulSeasprayEmerald = new RewardItem("alliance","图鉴：坚强海浪翡翠","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fForcefulSeasprayEmerald.itemMoneyPrice = new Array();
fForcefulSeasprayEmerald.itemMoneyPrice[2] = 425000
fForcefulSeasprayEmerald.itemStats = new Array();
fForcefulSeasprayEmerald.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：坚强海浪翡翠</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割坚强海浪翡翠。</span><br>\
<br>\
<span class=\"myPurple\">坚强海浪翡翠</span><br>\
+5法术急速等级，+7耐力<br>\
<span class=\"myYellow\">“对应黄色或蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 海浪翡翠</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fForcefulSeasprayEmerald; ++i;

var fSteadySeasprayEmerald = new RewardItem("alliance","图鉴：稳固海浪翡翠","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fSteadySeasprayEmerald.itemMoneyPrice = new Array();
fSteadySeasprayEmerald.itemMoneyPrice[2] = 425000
fSteadySeasprayEmerald.itemStats = new Array();
fSteadySeasprayEmerald.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：稳固海浪翡翠</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割稳固海浪翡翠。</span><br>\
<br>\
<span class=\"myPurple\">稳固海浪翡翠</span><br>\
+5韧性等级，+7耐力<br>\
<span class=\"myYellow\">“对应黄色或蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 海浪翡翠</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSteadySeasprayEmerald; ++i;

var fRecklessPyrestone = new RewardItem("alliance","图鉴：鲁莽焚石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fRecklessPyrestone.itemMoneyPrice = new Array();
fRecklessPyrestone.itemMoneyPrice[2] = 425000
fRecklessPyrestone.itemStats = new Array();
fRecklessPyrestone.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：鲁莽焚石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割鲁莽焚石。</span><br>\
<br>\
<span class=\"myPurple\">鲁莽焚石</span><br>\
+5法术急速等级，+6法术伤害<br>\
<span class=\"myYellow\">“对应红色或黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 焚石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fRecklessPyrestone; ++i;

var fQuickLionseye = new RewardItem("alliance","图鉴：迅捷狮眼石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fQuickLionseye.itemMoneyPrice = new Array();
fQuickLionseye.itemMoneyPrice[2] = 425000
fQuickLionseye.itemStats = new Array();
fQuickLionseye.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：迅捷狮眼石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割迅捷狮眼石。</span><br>\
<br>\
<span class=\"myPurple\">迅捷狮眼石</span><br>\
+10法术急速等级<br>\
<span class=\"myYellow\">“对应黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 狮眼石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fQuickLionseye; ++i;

var fLegionfoe = new RewardItem("alliance","军团之敌","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_axe_46.gif");
fLegionfoe.itemMoneyPrice = new Array();
fLegionfoe.itemMoneyPrice[2] = 467046
fLegionfoe.itemStats = new Array();
fLegionfoe.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">军团之敌</span><br>\
拾取后绑定<br>\
唯一<br>\
双手<span class=\"myRight\">斧</span><br>\
276 - 414 伤害<span class=\"myRight\">速度 3.70</span><br>\
( 每秒伤害 93.2 )<br>\
+31 力量<br>+45 耐力<br>\
耐久度 100 / 100<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">装备：爆击等级提高26。</span><br>\
<span class=\"myGreen\">装备：精准等级提高19。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fLegionfoe; ++i;

var fSeekersGavel = new RewardItem("alliance","寻觅者之槌","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_mace_35.gif");
fSeekersGavel.itemMoneyPrice = new Array();
fSeekersGavel.itemMoneyPrice[2] = 369487
fSeekersGavel.itemStats = new Array();
fSeekersGavel.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">寻觅者之槌</span><br>\
拾取后绑定<br>\
单手<span class=\"myRight\">锤</span><br>\
62 - 129 伤害<span class=\"myRight\">速度 2.30</span><br>\
( 每秒伤害 41.4 )<br>\
+30 耐力<br>+8 智力<br>\
耐久度 90 / 90<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">装备：法术命中等级提高11。</span><br>\
<span class=\"myGreen\">装备：提高所有法术和魔法效果所造成的伤害和治疗效果，最多130点。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSeekersGavel; ++i;

var fArchmagesGuile = new RewardItem("alliance","大法师的狡诈","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_sword_59.gif");
fArchmagesGuile.itemMoneyPrice = new Array();
fArchmagesGuile.itemMoneyPrice[2] = 355465
fArchmagesGuile.itemStats = new Array();
fArchmagesGuile.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">大法师的狡诈</span><br>\
拾取后绑定<br>\
单手<span class=\"myRight\">剑</span><br>\
62 - 129 伤害<span class=\"myRight\">速度 2.30</span><br>\
( 每秒伤害 41.4 )<br>\
+12 耐力<br>+11 智力<br>\
耐久度 90 / 90<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">装备：法术爆击等级提高20。</span><br>\
<span class=\"myGreen\">装备：提高所有法术和魔法效果所造成的伤害和治疗效果，最多130点。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fArchmagesGuile; ++i;

var fTruestrikeCrossbow = new RewardItem("alliance","精准强弩","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_weapon_crossbow_14.gif");
fTruestrikeCrossbow.itemMoneyPrice = new Array();
fTruestrikeCrossbow.itemMoneyPrice[2] = 281237
fTruestrikeCrossbow.itemStats = new Array();
fTruestrikeCrossbow.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">精准强弩</span><br>\
拾取后绑定<br>\
远程<span class=\"myRight\">弩</span><br>\
138 - 207 伤害<span class=\"myRight\">速度 2.60</span><br>\
( 每秒伤害 66.3 )<br>\
+10 敏捷<br>+12 耐力<br>+6 智力<br>\
耐久度 75 / 75<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">装备：攻击强度提高20点。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fTruestrikeCrossbow; ++i;

var fKirusPresage = new RewardItem("alliance","基鲁的预兆","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_mace_35.gif");
fKirusPresage.itemMoneyPrice = new Array();
fKirusPresage.itemMoneyPrice[2] = 370869
fKirusPresage.itemStats = new Array();
fKirusPresage.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">基鲁的预兆</span><br>\
拾取后绑定<br>\
单手<span class=\"myRight\">锤</span><br>\
62 - 129 伤害<span class=\"myRight\">速度 2.30</span><br>\
( 每秒伤害 41.4 )<br>\
+16 耐力<br>+13 智力<br>+8 精神<br>\
耐久度 90 / 90<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">装备：使法术治疗提高最多228点，法术伤害提高最多76点。</span><br>\
<span class=\"myGreen\">装备：每5秒恢复6点法力值。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fKirusPresage; ++i;

var fBombardiersBlade = new RewardItem("alliance","炮兵之刃","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_weapon_shortblade_14.gif");
fBombardiersBlade.itemMoneyPrice = new Array();
fBombardiersBlade.itemMoneyPrice[2] = 390163
fBombardiersBlade.itemStats = new Array();
fBombardiersBlade.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">炮兵之刃</span><br>\
拾取后绑定<br>\
单手<span class=\"myRight\">匕首</span><br>\
90 - 168 伤害<span class=\"myRight\">速度 1.80</span><br>\
( 每秒伤害 71.7 )<br>\
+14 敏捷<br>+12 耐力<br>\
耐久度 65 / 65<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">装备：命中等级提高11。</span><br>\
<span class=\"myGreen\">装备：攻击强度提高26点。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fBombardiersBlade; ++i;

var fTheSunbreaker = new RewardItem("alliance","碎日之剑","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_sword_91.gif");
fTheSunbreaker.itemMoneyPrice = new Array();
fTheSunbreaker.itemMoneyPrice[2] = 391547
fTheSunbreaker.itemStats = new Array();
fTheSunbreaker.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">碎日之剑</span><br>\
拾取后绑定<br>\
单手<span class=\"myRight\">剑</span><br>\
155 - 233 伤害<span class=\"myRight\">速度 2.70</span><br>\
( 每秒伤害 71.9 )<br>\
+14 敏捷<br>+12 耐力<br>\
耐久度 90 / 90<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">装备：命中等级提高11。</span><br>\
<span class=\"myGreen\">装备：攻击强度提高26点。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fTheSunbreaker; ++i;

var fInuurosBlade = new RewardItem("alliance","伊努罗之剑","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_sword_draenei_01.gif");
fInuurosBlade.itemMoneyPrice = new Array();
fInuurosBlade.itemMoneyPrice[2] = 372253
fInuurosBlade.itemStats = new Array();
fInuurosBlade.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myBlue\">伊努罗之剑</span><br>\
拾取后绑定<br>\
单手<span class=\"myRight\">剑</span><br>\
80 - 121 伤害<span class=\"myRight\">速度 1.40</span><br>\
( 每秒伤害 71.8 )<br>\
+21 耐力<br>\
耐久度 90 / 90<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">装备：防御等级提高13。</span><br>\
<span class=\"myGreen\">装备：命中等级提高8。</span><br>\
<span class=\"myGreen\">装备：精准等级提高11。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInuurosBlade; ++i;

// Hyjal ADDED

var fEnduringSeasprayEmerald = new RewardItem("alliance","图鉴：坚硬海浪翡翠","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fEnduringSeasprayEmerald.itemMoneyPrice = new Array();
fEnduringSeasprayEmerald.itemMoneyPrice[2] = 500000
fEnduringSeasprayEmerald.itemStats = new Array();
fEnduringSeasprayEmerald.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：坚硬海浪翡翠</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割坚硬海浪翡翠。</span><br>\
<br>\
<span class=\"myPurple\">坚硬海浪翡翠</span><br>\
+5防御等级，+7耐力<br>\
<span class=\"myYellow\">“对应蓝色或黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 海浪翡翠</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fEnduringSeasprayEmerald; ++i;

var fWickedPyrestone = new RewardItem("alliance","图鉴：邪恶焚石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fWickedPyrestone.itemMoneyPrice = new Array();
fWickedPyrestone.itemMoneyPrice[2] = 500000
fWickedPyrestone.itemStats = new Array();
fWickedPyrestone.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：邪恶焚石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割邪恶焚石。</span><br>\
<br>\
<span class=\"myPurple\">邪恶焚石</span><br>\
+5爆击等级，+10攻击强度<br>\
<span class=\"myYellow\">“对应红色或黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 焚石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fWickedPyrestone; ++i;

var fRoyalShadowsongAmethyst = new RewardItem("alliance","图鉴：皇家影歌紫玉","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fRoyalShadowsongAmethyst.itemMoneyPrice = new Array();
fRoyalShadowsongAmethyst.itemMoneyPrice[2] = 500000
fRoyalShadowsongAmethyst.itemStats = new Array();
fRoyalShadowsongAmethyst.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：皇家影歌紫玉</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割皇家影歌紫玉。</span><br>\
<br>\
<span class=\"myPurple\">皇家影歌紫玉</span><br>\
+11治疗效果，+4法术伤害，+每5秒恢复2点法力值<br>\
<span class=\"myYellow\">“对应红色或蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 影歌紫玉</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fRoyalShadowsongAmethyst; ++i;

var fRigidLionseye = new RewardItem("alliance","图鉴：刚硬狮眼石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fRigidLionseye.itemMoneyPrice = new Array();
fRigidLionseye.itemMoneyPrice[2] = 500000
fRigidLionseye.itemStats = new Array();
fRigidLionseye.itemStats[2] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：刚硬狮眼石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇敬<br>\
<span class=\"myGreen\">使用：教你学会切割刚硬狮眼石。</span><br>\
<br>\
<span class=\"myPurple\">刚硬狮眼石</span><br>\
+10命中等级<br>\
<span class=\"myYellow\">“对应黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 狮眼石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fRigidLionseye; ++i;






//---Exalted below

var fSunwardCrest = new RewardItem("alliance","太阳卫士徽记","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_shield_48.gif");
fSunwardCrest.itemMoneyPrice = new Array();
fSunwardCrest.itemMoneyPrice[3] = 302274
fSunwardCrest.itemStats = new Array();
fSunwardCrest.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">太阳卫士徽记</span><br>\
拾取后绑定<br>\
副手<span class=\"myRight\">盾</span><br>\
4872点护甲<br>\
122 格挡<br>\
+31 耐力<br>\
耐久度 120 / 120<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">装备：盾牌格挡等级提高18。</span><br>\
<span class=\"myGreen\">装备：法术命中等级提高13。</span><br>\
<span class=\"myGreen\">装备：提高所有法术和魔法效果所造成的伤害和治疗效果，最多26点。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSunwardCrest; ++i;

var fDawnforgedDefender = new RewardItem("alliance","曙光之盾","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_shield_05.gif");
fDawnforgedDefender.itemMoneyPrice = new Array();
fDawnforgedDefender.itemMoneyPrice[3] = 303385
fDawnforgedDefender.itemStats = new Array();
fDawnforgedDefender.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">曙光之盾</span><br>\
拾取后绑定<br>\
副手<span class=\"myRight\">盾</span><br>\
4872点护甲<br>\
122 格挡<br>\
+31 耐力<br>\
耐久度 120 / 120<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">装备：躲闪等级提高18。</span><br>\
<span class=\"myGreen\">装备：命中等级提高13。</span><br>\
<span class=\"myGreen\">装备：使你的盾牌的格挡值提高33。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fDawnforgedDefender; ++i;

var fShatteredSunPendantofAcumen = new RewardItem("alliance","破碎残阳敏锐坠饰","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_jewelry_necklace_32.gif");
fShatteredSunPendantofAcumen.itemMoneyPrice = new Array();
fShatteredSunPendantofAcumen.itemMoneyPrice[3] = 186202
fShatteredSunPendantofAcumen.itemStats = new Array();
fShatteredSunPendantofAcumen.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">破碎残阳敏锐坠饰</span><br>\
拾取后绑定<br>\
颈部<br>\
+19 耐力<br>\
+18 智力<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">装备：提高所有法术和魔法效果所造成的伤害和治疗效果，最多37点。</span><br>\
<span class=\"myGreen\">装备：你的法术有一定几率激活这条项链中蕴含的奥术能量（若你在占星者阵营的声望达到崇拜）或圣光能量（若你在奥尔多阵营的声望达到崇拜）。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fShatteredSunPendantofAcumen; ++i;

var fShatteredSunPendantofRestoration = new RewardItem("alliance","破碎残阳恢复坠饰","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_jewelry_necklace_12.gif");
fShatteredSunPendantofRestoration.itemMoneyPrice = new Array();
fShatteredSunPendantofRestoration.itemMoneyPrice[3] = 186202
fShatteredSunPendantofRestoration.itemStats = new Array();
fShatteredSunPendantofRestoration.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">破碎残阳恢复坠饰</span><br>\
拾取后绑定<br>\
颈部<br>\
+19 耐力<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">装备：使法术治疗提高最多70点，法术伤害提高最多24点。</span><br>\
<span class=\"myGreen\">装备：每5秒恢复7点法力值。</span><br>\
<span class=\"myGreen\">装备：你的治疗法术有一定几率激活这条项链中蕴含的奥术能量（若你在占星者阵营中的声望达到崇拜）或圣光能量（若你在奥尔多阵营的声望达到崇拜）。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fShatteredSunPendantofRestoration; ++i;

var fShatteredSunPendantofResolve = new RewardItem("alliance","破碎残阳决心坠饰","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_jewelry_necklace_39.gif");
fShatteredSunPendantofResolve.itemMoneyPrice = new Array();
fShatteredSunPendantofResolve.itemMoneyPrice[3] = 186202
fShatteredSunPendantofResolve.itemStats = new Array();
fShatteredSunPendantofResolve.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">破碎残阳决心坠饰</span><br>\
拾取后绑定<br>\
颈部<br>\
+48 耐力<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">装备：命中等级提高13。</span><br>\
<span class=\"myGreen\">装备：精准等级提高18。</span><br>\
<span class=\"myGreen\">装备：你的近战和远程攻击有一定几率激活这条项链中蕴含的奥术能量（若你在占星者阵营的声望达到崇拜）或圣光能量（若你在奥尔多阵营的声望达到崇拜）。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fShatteredSunPendantofResolve; ++i;

var fShatteredSunPendantofMight = new RewardItem("alliance","破碎残阳力量坠饰","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_jewelry_necklace_38.gif");
fShatteredSunPendantofMight.itemMoneyPrice = new Array();
fShatteredSunPendantofMight.itemMoneyPrice[3] = 186202
fShatteredSunPendantofMight.itemStats = new Array();
fShatteredSunPendantofMight.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">破碎残阳力量坠饰</span><br>\
拾取后绑定<br>\
颈部<br>\
+18 敏捷<br>\
+19 耐力<br>\
需要等级 70<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">装备：攻击强度提高64点。</span><br>\
<span class=\"myGreen\">装备：你的近战和远程攻击有一定几率激活这条项链中蕴含的奥术能量（若你在占星者阵营的声望达到崇拜）或圣光能量（若你在奥尔多阵营的声望达到崇拜）。</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fShatteredSunPendantofMight; ++i;

var fAssassinsAlchemistStone = new RewardItem("alliance","配方：刺客的炼金石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_03.gif");
fAssassinsAlchemistStone.itemMoneyPrice = new Array();
fAssassinsAlchemistStone.itemMoneyPrice[3] = 200000
fAssassinsAlchemistStone.itemStats = new Array();
fAssassinsAlchemistStone.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">配方：刺客的炼金石</span><br>\
拾取后绑定<br>\
需要 炼金术 (375)<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">使用：教你学会制作刺客的炼金石。</span><br>\
<br>\
<span class=\"myPurple\">刺客的炼金石</span><br>\
拾取后绑定<br>\
唯一<br>\
饰品<br>\
需要 炼金术 (350)<br>\
<span class=\"myGreen\">装备：攻击强度提高108点。</span><br>\
<span class=\"myGreen\">装备：使你在饮用治疗药水和法力药水时获得的效果提高40%。该效果无法叠加。</span><br>\
<br>\
<span class=\"myGray\">需要 炼金石，源生暗影(6)，虚空漩涡(2)</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fAssassinsAlchemistStone; ++i;

var fGuardiansAlchemistStone = new RewardItem("alliance","配方：守护者的炼金石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_03.gif");
fGuardiansAlchemistStone.itemMoneyPrice = new Array();
fGuardiansAlchemistStone.itemMoneyPrice[3] = 200000
fGuardiansAlchemistStone.itemStats = new Array();
fGuardiansAlchemistStone.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">配方：守护者的炼金石</span><br>\
拾取后绑定<br>\
需要 炼金术 (375)<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">使用：教你学会制作守护者的炼金石。</span><br>\
<br>\
<span class=\"myPurple\">守护者的炼金石</span><br>\
拾取后绑定<br>\
唯一<br>\
饰品<br>\
需要 炼金术 (350)<br>\
<span class=\"myGreen\">装备：防御等级提高54。</span><br>\
<span class=\"myGreen\">装备：使你在饮用治疗药水和法力药水时获得的效果提高40%。该效果无法叠加。</span><br>\
<br>\
<span class=\"myGray\">需要 炼金石，源生空气(6)，虚空漩涡(2)</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fGuardiansAlchemistStone; ++i;

var fRedeemersAlchemistStone = new RewardItem("alliance","配方：救赎者的炼金石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_03.gif");
fRedeemersAlchemistStone.itemMoneyPrice = new Array();
fRedeemersAlchemistStone.itemMoneyPrice[3] = 200000
fRedeemersAlchemistStone.itemStats = new Array();
fRedeemersAlchemistStone.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">配方：救赎者的炼金石</span><br>\
拾取后绑定<br>\
需要 炼金术 (375)<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">使用：教你学会制作救赎者的炼金石。</span><br>\
<br>\
<span class=\"myPurple\">救赎者的炼金石</span><br>\
拾取后绑定<br>\
唯一<br>\
饰品<br>\
需要 炼金术 (350)<br>\
<span class=\"myGreen\">装备：使法术治疗提高最多119点，法术伤害提高最多40点。</span><br>\
<span class=\"myGreen\">装备：使你在饮用治疗药水和法力药水时获得的效果提高40%。该效果无法叠加。</span><br>\
<br>\
<span class=\"myGray\">需要 炼金石，源生生命(6)，虚空漩涡(2)</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fRedeemersAlchemistStone; ++i;

var fSorcerersAlchemistStone = new RewardItem("alliance","配方：巫师的炼金石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_03.gif");
fSorcerersAlchemistStone.itemMoneyPrice = new Array();
fSorcerersAlchemistStone.itemMoneyPrice[3] = 200000
fSorcerersAlchemistStone.itemStats = new Array();
fSorcerersAlchemistStone.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">配方：巫师的炼金石</span><br>\
拾取后绑定<br>\
需要 炼金术 (375)<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">使用：教你学会制作巫师的炼金石。</span><br>\
<br>\
<span class=\"myPurple\">巫师的炼金石</span><br>\
拾取后绑定<br>\
唯一<br>\
饰品<br>\
需要 炼金术 (350)<br>\
<span class=\"myGreen\">装备：提高所有法术和魔法效果所造成的伤害和治疗效果，最多63点。</span><br>\
<span class=\"myGreen\">装备：使你在饮用治疗药水和法力药水时获得的效果提高40%。该效果无法叠加。</span><br>\
<br>\
<span class=\"myGray\">需要 炼金石，源生之火(6)，虚空漩涡(2)</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSorcerersAlchemistStone; ++i;

var fTabardoftheShatteredSun = new RewardItem("alliance","破碎残阳战袍","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/stormpikebattletabard.gif");
fTabardoftheShatteredSun.itemMoneyPrice = new Array();
fTabardoftheShatteredSun.itemMoneyPrice[3] = 8000
fTabardoftheShatteredSun.itemStats = new Array();
fTabardoftheShatteredSun.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myWhite\">破碎残阳战袍</span><br>\
拾取后绑定<br>\
唯一<br>\
公会徽章<br>\
需要 破碎残阳 - 崇拜\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fTabardoftheShatteredSun; ++i;

// Hyjal ADDED

var fFlashingCrimsonSpinel = new RewardItem("alliance","图鉴：闪光赤尖石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fFlashingCrimsonSpinel.itemMoneyPrice = new Array();
fFlashingCrimsonSpinel.itemMoneyPrice[3] = 500000
fFlashingCrimsonSpinel.itemStats = new Array();
fFlashingCrimsonSpinel.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：闪光赤尖石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">使用：教你学会切割闪光赤尖石。</span><br>\
<br>\
<span class=\"myPurple\">闪光赤尖石</span><br>\
+10 招架等级<br>\
<span class=\"myYellow\">“对应红色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 赤尖石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fFlashingCrimsonSpinel; ++i;

var fVeiledPyrestone = new RewardItem("alliance","图鉴：隐秘焚石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fVeiledPyrestone.itemMoneyPrice = new Array();
fVeiledPyrestone.itemMoneyPrice[3] = 500000
fVeiledPyrestone.itemStats = new Array();
fVeiledPyrestone.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：隐秘焚石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">使用：教你学会切割隐秘焚石。</span><br>\
<br>\
<span class=\"myPurple\">隐秘焚石</span><br>\
+5法术命中等级，+6法术伤害<br>\
<span class=\"myYellow\">“对应红色或黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 焚石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fVeiledPyrestone; ++i;

var fStormyEmpyreanSapphire = new RewardItem("alliance","图鉴：风暴天蓝宝石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fStormyEmpyreanSapphire.itemMoneyPrice = new Array();
fStormyEmpyreanSapphire.itemMoneyPrice[3] = 500000
fStormyEmpyreanSapphire.itemStats = new Array();
fStormyEmpyreanSapphire.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：风暴天蓝宝石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">使用：教你学会切割风暴天蓝宝石。</span><br>\
<br>\
<span class=\"myPurple\">风暴天蓝宝石</span><br>\
+13 法术穿透<br>\
<span class=\"myYellow\">“对应蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 天蓝宝石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fStormyEmpyreanSapphire; ++i;

var fSovereignShadowsongAmethyst = new RewardItem("alliance","图鉴：统御影歌紫玉","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fSovereignShadowsongAmethyst.itemMoneyPrice = new Array();
fSovereignShadowsongAmethyst.itemMoneyPrice[3] = 500000
fSovereignShadowsongAmethyst.itemStats = new Array();
fSovereignShadowsongAmethyst.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：统御影歌紫玉</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">使用：教你学会切割统御影歌紫玉。</span><br>\
<br>\
<span class=\"myPurple\">统御影歌紫玉</span><br>\
+5力量，+7耐力<br>\
<span class=\"myYellow\">“对应红色或蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 影歌紫玉</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fSovereignShadowsongAmethyst; ++i;

var fShiftingShadowsongAmethyst = new RewardItem("alliance","图鉴：狡诈影歌紫玉","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fShiftingShadowsongAmethyst.itemMoneyPrice = new Array();
fShiftingShadowsongAmethyst.itemMoneyPrice[3] = 500000
fShiftingShadowsongAmethyst.itemStats = new Array();
fShiftingShadowsongAmethyst.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：狡诈影歌紫玉</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">使用：教你学会切割狡诈影歌紫玉。</span><br>\
<br>\
<span class=\"myPurple\">狡诈影歌紫玉</span><br>\
+5敏捷，+7耐力<br>\
<span class=\"myYellow\">“对应红色或蓝色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 影歌紫玉</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fShiftingShadowsongAmethyst; ++i;

var fMysticLionseye = new RewardItem("alliance","图鉴：秘法狮眼石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fMysticLionseye.itemMoneyPrice = new Array();
fMysticLionseye.itemMoneyPrice[3] = 500000
fMysticLionseye.itemStats = new Array();
fMysticLionseye.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：秘法狮眼石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">使用：教你学会切割秘法狮眼石。</span><br>\
<br>\
<span class=\"myPurple\">秘法狮眼石</span><br>\
+10 韧性等级<br>\
<span class=\"myYellow\">“对应黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 狮眼石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fMysticLionseye; ++i;

var fInscribedPyrestone = new RewardItem("alliance","图鉴：铭文焚石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fInscribedPyrestone.itemMoneyPrice = new Array();
fInscribedPyrestone.itemMoneyPrice[3] = 500000
fInscribedPyrestone.itemStats = new Array();
fInscribedPyrestone.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：铭文焚石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">使用：教你学会切割铭文焚石。</span><br>\
<br>\
<span class=\"myPurple\">铭文焚石</span><br>\
+5爆击等级，+5力量<br>\
<span class=\"myYellow\">“对应红色或黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 焚石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fInscribedPyrestone; ++i;

var fGreatLionseye = new RewardItem("alliance","图鉴：巨型狮眼石","http://images.warcraftchina.com/images_wow/gameinfo/factions/icons/inv_scroll_04.gif");
fGreatLionseye.itemMoneyPrice = new Array();
fGreatLionseye.itemMoneyPrice[3] = 500000
fGreatLionseye.itemStats = new Array();
fGreatLionseye.itemStats[3] = "\
<table width=\"275\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\
<tr>\
<td>\
<div class=\"myTable\">\
<span class=\"myPurple\">图鉴：巨型狮眼石</span><br>\
拾取后绑定<br>\
需要 珠宝加工 (375)<br>\
需要 破碎残阳 - 崇拜<br>\
<span class=\"myGreen\">使用：教你学会切割巨型狮眼石。</span><br>\
<br>\
<span class=\"myPurple\">巨型狮眼石</span><br>\
+10 法术命中等级<br>\
<span class=\"myYellow\">“对应黄色插槽。”</span><br>\
<br>\
<span class=\"myGray\">需要 狮眼石</span>\
</div>\
</td>\
</tr>\
</table>\
";
RewardItems[i] = fGreatLionseye; ++i;


//-------------------------------------------------------------------

//------END REWARDS DEFINITION------
