refactor for dungeon names

His Dad [05-01-15 - 02:18]
refactor for dungeon names
Filename
HistOffline.lua
data/data.lua
data/en-data.lua
data/en.lua
en.lua
diff --git a/HistOffline.lua b/HistOffline.lua
index c797e5c..c6c8d42 100644
--- a/HistOffline.lua
+++ b/HistOffline.lua
@@ -7,12 +7,14 @@ local dateformat_log = "%Y-%m-%d, %H:%M:%S"
 local Colour_Not_Complete = "#FFB67D"
 local Colour_Complete = "#000000"
 local Colour_Heading_Complete = "#58FA58"
-dofile "en.lua"	 -- default english translations
+
+dofile "./data/en.lua"	 -- default english translations
 -- ========================
 version= "Beta 5"
 require( "iuplua" )
 require( "iupluacontrols" )
 dofile "../../SavedVariables/History.lua"
+dofile "./data/data.lua"	--Achievement to Grid lookup, language independent

 --os.execute( "md ..\\..\\SavedVariables\\History_Bak" )  -- fails silently if already exists.

@@ -261,9 +263,15 @@ btn_archive = iup.button{title="Archive", FGCOLOR = "#FF0000"}
 				iup.SetAttribute(accounts[acc].name[char].Grp_box,  "BGCOLOR0:3", Colour_Heading_Complete)
 		end

-
+		local key = ""
+		local dname = ""
 		for id,_ in pairs (grp_dat) do
-				accounts[acc].name[char].Grp_box:setcell(grp_dat[id].L,grp_dat[id].C,grp_dat[id].name)
+				key = tostring(grp_dat[id].L) .. tostring(grp_dat[id].C)	-- make name key
+				dname = grp_names[key]
+					if dname == nil then
+				dname = "key " .. key .." not found"
+				end
+				accounts[acc].name[char].Grp_box:setcell(dname)
 		end


@@ -309,7 +317,12 @@ btn_archive = iup.button{title="Archive", FGCOLOR = "#FF0000"}
 		end

 		for id,_ in pairs (pub_dat) do  -- Load text
-				accounts[acc].name[char].Pub_box:setcell(pub_dat[id].L,pub_dat[id].C,pub_dat[id].name)
+				key = tostring(pub_dat[id].L) .. tostring(pub_dat[id].C)	-- make name key
+				dname = pub_names[key]
+					if dname == nil then
+				dname = "key " .. key .." not found"
+				end
+				accounts[acc].name[char].Pub_box:setcell(dname)
 		end

 		accounts[acc].name[char].Pub_box.Redraw= "ALL"
@@ -332,11 +345,16 @@ btn_archive = iup.button{title="Archive", FGCOLOR = "#FF0000"}

 		-- Need to keep track of multiple achievements in Vet dungeons. Index them by dungeon LineColumn.
 		Vet_Info={}
-		for id,_ in pairs (vet_dat) do  -- Load Dungeons Info LC is the Dungeon Identifier
+		for id,_ in pairs (vet_dat) do  -- Load Dungeons Name. Info LC is the Dungeon Identifier
 				local L = vet_dat[id].L
 				local C = vet_dat[id].C
-				Vet_Info[L..C] = {count = 0}
-				accounts[acc].name[char].Vet_box:setcell(L,C,vet_dat[id].name .. " (0)")
+				key = tostring(L) .. tostring(C)	-- make name key
+				dname = grp_names[key]				-- Vet Dungeons are grp
+					if dname == nil then
+				dname = "key " .. key .." not found"
+				end
+				Vet_Info[key] = {count = 0}
+				accounts[acc].name[char].Vet_box:setcell(L,C,dname .. " (0)")
 		end


@@ -348,9 +366,14 @@ btn_archive = iup.button{title="Archive", FGCOLOR = "#FF0000"}
 				local colour = "FGCOLOR" .. L .. ":" .. C
 				iup.SetAttribute(accounts[acc].name[char].Vet_box, colour, Colour_Complete)

+				key = tostring(L) .. tostring(C)	-- make name key
+				dname = grp_names[key]				-- Vet Dungeons are grp
+					if dname == nil then
+				dname = "key " .. key .." not found"
+				end
 				-- Increment count and display
-				Vet_Info[L..C].count = Vet_Info[L..C].count+1
-				accounts[acc].name[char].Vet_box:setcell(L,C,vet_dat[id].name .. " (" .. Vet_Info[L..C].count ..")")
+				Vet_Info[key].count = Vet_Info[key].count+1
+				accounts[acc].name[char].Vet_box:setcell(L,C,dname .. " (" .. Vet_Info[key].count ..")")
 			end
 		end

diff --git a/data/data.lua b/data/data.lua
new file mode 100644
index 0000000..2513666
--- /dev/null
+++ b/data/data.lua
@@ -0,0 +1,127 @@
+
+-- key is Achievement ID, L,C are Line Column in Grid
+	pub_dat = {
+	[368]= {L=1, C=1 },
+	[370]= {L=2, C=1 },
+	[300]= {L=3, C=1 },
+	[376]= {L=4, C=1 },
+	[374]= {L=5, C=1 },
+
+	[1053]= {L=1, C=2 },
+	[1054]= {L=2, C=2 },
+	[378]= {L=3, C=2 },
+	[396]= {L=4, C=2},
+	[1055]= {L=5, C=2},
+
+	[390]= {L=1, C=3},
+	[1049]= {L=2, C=3},
+	[1069]= {L=3, C=3},
+	[1051]= {L=4, C=3},
+	[1052]= {L=5, C=3},
+
+	[1056]= {L=5, C=4},
+	}
+
+	grp_dat = {
+	[294]= {L=1, C=1},
+	[78]= {L=2, C=1},
+	[272]= {L=3, C=1},
+	[357]= {L=4, C=1},
+	[393]= {L=5, C=1},
+
+	[301]= {L=1, C=2},
+	[79]= {L=2, C=2},
+	[80]= {L=3, C=2},
+	[391]= {L=4, C=2},
+	[410]= {L=5, C=2},
+
+	[325]= {L=1, C=3},
+	[11]= {L=2, C=3},
+	[551]= {L=3, C=3},
+	[81]= {L=4, C=3},
+	[417]= {L=5, C=3},
+
+	[570]= {L=5, C=4},
+	}
+
+--NOTICE== vet_dat can different achievement ID's going to same Dungeon
+	vet_dat = {
+--Fungal Grotto
+	[343]= {L=1, C=1},
+	[850]= {L=1, C=1},
+	[851]= {L=1, C=1},
+	[340]= {L=1, C=1},
+-- Darkshade
+	[856]= {L=2, C=1},
+	[857]= {L=2, C=1},
+	[465]= {L=2, C=1},
+--	[]= {L=3, C=1},
+--	[]= {L=4, C=1},
+--	[]= {L=5, C=1},
+--Spindleclutch
+	[854]= {L=1, C=2},
+	[855]= {L=1, C=2},
+	[446]= {L=1, C=2},
+ [448] = {L=1, C=2},
+[421] = {L=1, C=2},
+
+--Wayrest Sewers
+	[860]= {L=2, C=2},
+	[861]= {L=2, C=2},
+	[679]= {L=2, C=2},
+	[681]= {L=2, C=2},
+--Crypt of Hearts
+	[876]= {L=3, C=2},
+	[1084]= {L=3, C=2},
+	[939]= {L=3, C=2},
+	[940]= {L=3, C=2},
+	[941]= {L=3, C=2},
+	[942]= {L=3, C=2},
+--	[]= {L=4, C=2},
+--	[]= {L=5, C=2},
+
+--Banished Cells
+	[449]= {L=1, C=3},
+	[852]= {L=1, C=3},
+	[853]= {L=1, C=3},
+
+--Elden Hollow
+	[858]= {L=2, C=3},
+    [459] = {L=2, C=3},
+	[463] = {L=2, C=3},
+	[859]= {L=2, C=3},
+	[461]= {L=2, C=3},
+
+--City of Ash
+	[1105]= {L=3, C=3},
+	[1106]= {L=3, C=3},
+	[1107]= {L=3, C=3},
+	[1108]= {L=3, C=3},
+	[1114]= {L=3, C=3},
+	[1159]= {L=3, C=3},
+	[878]= {L=3, C=3},
+--	[]= {L=4, C=3},
+--	[]= {L=5, C=3},
+
+--	[]= {L=5, C=4},
+
+--Hel Ra Citadel
+	[991] = {L=1, C=5},
+	[1136] = {L=1, C=5},
+	[1080] = {L=1, C=5},
+
+--Aetherian Archive
+	[990] = {L=2, C=5},
+	[1137] = {L=2, C=5},
+	[1081] = {L=2, C=5},
+--Sanctum Ophidia
+
+	[1123] = {L=3, C=5},
+	[1124] = {L=3, C=5},
+	[1138] = {L=3, C=5},
+-- Craglorn Trials
+	[1139] = {L=3, C=5},
+--Dragonstar Arena
+	[992] = {L=4, C=5},
+	[1140] = {L=4, C=5},
+}
diff --git a/data/en-data.lua b/data/en-data.lua
new file mode 100644
index 0000000..25f6fa7
--- /dev/null
+++ b/data/en-data.lua
@@ -0,0 +1,7044 @@
+--Obtained from the game, Don't edit.
+Ach_Detail =
+{
+[64] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Harvest any crafting materials 10 times.",
+["name"] = "Apprentice Crafting Harvester",
+},
+[1025] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn any Racial Style.",
+["name"] = "Racial Style Learned",
+},
+[1026] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn 10 Provisioning Recipes.",
+["name"] = "Recipe Card",
+},
+[1027] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 10,
+["description"] = "Learn 50 Provisioning Recipes.",
+["name"] = "Recipe Book",
+},
+[1028] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 15,
+["description"] = "Learn 100 Provisioning Recipes.",
+["name"] = "Recipe Compendium",
+},
+[1093] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Columbine Alchemy Plant.",
+["name"] = "Columbine",
+},
+[1030] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 15,
+["description"] = "Learn all Alliance Racial Styles.",
+["name"] = "Alliance Style Master",
+},
+[1031] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Attain an Alchemy rank of 50.",
+["name"] = "Master Alchemist",
+},
+[1032] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Attain a Blacksmith rank of 50.",
+["name"] = "Master Blacksmith",
+},
+[1033] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Attain a Clothier rank of 50.",
+["name"] = "Master Clothier",
+},
+[1034] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Attain an Enchanting rank of 50.",
+["name"] = "Master Enchanter",
+},
+[1035] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Attain a Provisioning rank of 50.",
+["name"] = "Master Provisioner",
+},
+[1036] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Attain a Woodworking rank of 50.",
+["name"] = "Master Woodworker",
+},
+[781] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 10,
+["description"] = "Translate all of the Essence runes.",
+["name"] = "Essence",
+},
+[1102] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the White Cap Alchemy Plant.",
+["name"] = "White Cap",
+},
+[1103] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Luminous Russula Alchemy Plant.",
+["name"] = "Luminous Russula",
+},
+[1040] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Improve Blacksmithing items to all available Qualities.",
+["name"] = "Legendary Blacksmith",
+},
+[1041] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Research every available Trait at least once.",
+["name"] = "Trait Master",
+},
+[1042] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Have a character apply a Legendary Enchantment that they created, to a Legendary piece of gear that they created.",
+["name"] = "Truly Legendary",
+},
+[1043] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Learn all Rare Racial Styles.",
+["name"] = "Rare Style Master",
+},
+[788] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 10,
+["description"] = "Translate all of the Aspect runes.",
+["name"] = "Aspect",
+},
+[1045] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Learn every Alchemy plant Trait.",
+["name"] = "Botanist",
+},
+[1046] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Make a Renowned and an Epic Food or Drink.",
+["name"] = "Master Chef",
+},
+[1048] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Improve Clothier items to all available Qualities.",
+["name"] = "Legendary Clothier",
+},
+[1023] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Research a Trait for any weapon or armor type.",
+["name"] = "Learn a Trait",
+},
+[1022] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 10,
+["description"] = "Refine 3000 raw materials.",
+["name"] = "Master of Refinement",
+},
+[987] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 10,
+["description"] = "Translate all of the Potency runes.",
+["name"] = "Potency",
+},
+[1021] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Refine 300 raw materials.",
+["name"] = "Expert of Refinement",
+},
+[1020] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Refine 30 raw materials.",
+["name"] = "Apprentice of Refinement",
+},
+[1019] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 10,
+["description"] = "Deconstruct 1000 items.",
+["name"] = "Master Deconstructor",
+},
+[1018] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Deconstruct 100 items.",
+["name"] = "Expert Deconstructor",
+},
+[1017] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Deconstruct 50 items.",
+["name"] = "Apprentice Deconstructor",
+},
+[1104] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Imp Stool Alchemy Plant.",
+["name"] = "Imp Stool",
+},
+[779] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 10,
+["description"] = "Translate all of the Positive Potency runes",
+["name"] = "Positive Potency",
+},
+[68] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Harvest any crafting materials 10000 times.",
+["name"] = "Grand Master Crafting Harvester",
+},
+[67] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Harvest any crafting materials 1000 times.",
+["name"] = "Master Crafting Harvester",
+},
+[1125] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Research the Nirnhoned Trait for any weapon or armor type.",
+["name"] = "Learn the Nirnhoned Trait",
+},
+[66] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Harvest any crafting materials 100 times.",
+["name"] = "Expert Crafting Harvester",
+},
+[65] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Harvest any crafting materials 50 times.",
+["name"] = "Journeyman Crafting Harvester",
+},
+[1044] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Improve Woodworking items to all available Qualities.",
+["name"] = "Legendary Woodworker",
+},
+[1085] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 10,
+["description"] = "Make a Renowned Food or Drink.",
+["name"] = "Renowned Provisioner",
+},
+[1098] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Entoloma Alchemy Plant.",
+["name"] = "Entoloma",
+},
+[780] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 10,
+["description"] = "Translate all of the Negative Potency runes.",
+["name"] = "Negative Potency",
+},
+[1088] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Wormwood Alchemy Plant.",
+["name"] = "Wormwood",
+},
+[1089] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Lady's Smock Alchemy Plant.",
+["name"] = "Lady's Smock",
+},
+[1090] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Bugloss Alchemy Plant.",
+["name"] = "Bugloss",
+},
+[1091] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Dragonthorn Alchemy Plant.",
+["name"] = "Dragonthorn",
+},
+[1092] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Mountain Flower Alchemy Plant.",
+["name"] = "Mountain Flower",
+},
+[1094] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Corn Flower Alchemy Plant.",
+["name"] = "Corn Flower",
+},
+[1095] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Nirnroot Alchemy Plant.",
+["name"] = "Nirnroot",
+},
+[1096] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Water Hyacinth Alchemy Plant.",
+["name"] = "Water Hyacinth",
+},
+[1097] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Stinkhorn Alchemy Plant.",
+["name"] = "Stinkhorn",
+},
+[1099] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Emetic Russula Alchemy Plant.",
+["name"] = "Emetic Russula",
+},
+[1100] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Violet Coprinus Alchemy Plant.",
+["name"] = "Violet Coprinus",
+},
+[1101] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Namira's Rot Alchemy Plant.",
+["name"] = "Namira's Rot",
+},
+[1144] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Collect and learn from every Dwemer Style book.",
+["name"] = "Dwemer Style Master",
+},
+[1145] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 10,
+["description"] = "Become certified in every crafting profession.",
+["name"] = "Certified Jack-of-All-Trades",
+},
+[1146] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Complete one Crafting Writ.",
+["name"] = "First Writ",
+},
+[1147] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 10,
+["description"] = "Complete 25 Crafting Writs.",
+["name"] = "I Must Complete My Contract",
+},
+[1148] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 15,
+["description"] = "Complete 150 Crafting Writs.",
+["name"] = "Signed the Manifest",
+},
+[1149] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 50,
+["description"] = "Complete 250 Crafting Writs.",
+["name"] = "Writ Upon the Sky",
+},
+[1086] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 15,
+["description"] = "Make an Epic Food or Drink.",
+["name"] = "Epic Provisioner",
+},
+[1087] =
+{
+["Category"] = "Crafting",
+["Category_ID"] = 5,
+["points"] = 5,
+["description"] = "Learn all the Traits for the Blessed Thistle Alchemy Plant.",
+["name"] = "Blessed Thistle",
+},
+},
+["Character"] =
+{
+[704] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 15,
+["description"] = "Buy drinks for your Undaunted companions at each gathering.",
+["name"] = "This One's On Me",
+},
+[1217] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Spend 1,200 Champion Points in the Warrior Constellation.",
+["name"] = "Champion of Last Seed",
+},
+[1218] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 10,
+["description"] = "Spend 300 Champion Points in the Mage Constellation.",
+["name"] = "Arcane Decree",
+},
+[1219] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 15,
+["description"] = "Spend 600 Champion Points in the Mage Constellation.",
+["name"] = "Mysterious Destiny",
+},
+[1220] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Spend 1,200 Champion Points in the Mage Constellation.",
+["name"] = "Champion of Rain's Hand",
+},
+[1221] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 10,
+["description"] = "Spend 300 Champion Points in the Thief Constellation.",
+["name"] = "Stealthy Decree",
+},
+[1222] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 15,
+["description"] = "Spend 600 Champion Points in the Thief Constellation.",
+["name"] = "Devious Destiny",
+},
+[1223] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Spend 1,200 Champion Points in the Thief Constellation.",
+["name"] = "Champion of Evening Star",
+},
+[12] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 10,
+["description"] = "Reach Level 10.",
+["name"] = "Level 10 Hero",
+},
+[13] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 10,
+["description"] = "Reach Level 20.",
+["name"] = "Level 20 Hero",
+},
+[14] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 10,
+["description"] = "Reach Level 30.",
+["name"] = "Level 30 Hero",
+},
+[15] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 10,
+["description"] = "Reach Level 40.",
+["name"] = "Level 40 Hero",
+},
+[16] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 10,
+["description"] = "Reach Level 50.",
+["name"] = "Level 50 Hero",
+},
+[17] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 5,
+["description"] = "Loot a Superior quality item.",
+["name"] = "Superior Ransacker",
+},
+[18] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 5,
+["description"] = "Loot an Epic quality item.",
+["name"] = "Epic Acquirer",
+},
+[19] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 5,
+["description"] = "Loot any 10 Treasure Chests.",
+["name"] = "Treasure Chest Spotter",
+},
+[20] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 5,
+["description"] = "Loot any 50 Treasure Chests.",
+["name"] = "Treasure Chest Seeker",
+},
+[21] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 5,
+["description"] = "Loot any 100 Treasure Chests.",
+["name"] = "Treasure Chest Stalker",
+},
+[22] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 5,
+["description"] = "Loot any 1000 Treasure Chests.",
+["name"] = "Treasure Chest Hunter",
+},
+[992] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Conquer all challengers and earn the title of Dragonstar Arena Champion!",
+["name"] = "Dragonstar Arena Champion",
+},
+[35] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 15,
+["description"] = "Wear a full set of Superior, and only Superior, gear.",
+["name"] = "Superior Attire",
+},
+[36] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 15,
+["description"] = "Wear a full set of Epic, and only Epic, gear.",
+["name"] = "Epic Attire",
+},
+[38] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 15,
+["description"] = "Kill humanoids, Goblin-kin, and giant-kin.",
+["name"] = "Humanoid Slayer",
+},
+[39] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 15,
+["description"] = "Kill Daedric creatures from Oblivion.",
+["name"] = "Daedra Slayer",
+},
+[40] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 15,
+["description"] = "Kill Dwarven mechanical constructs.",
+["name"] = "Dwarven Construct Slayer",
+},
+[41] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 15,
+["description"] = "Kill a variety of natural creatures in the wilds of Tamriel and beyond.",
+["name"] = "Nature Slayer",
+},
+[42] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 15,
+["description"] = "Kill skeletons, zombies, ghosts, spirits, and vampires.",
+["name"] = "Undead Slayer",
+},
+[1004] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 5,
+["description"] = "Join the Mages Guild",
+["name"] = "Student of the Mages Guild",
+},
+[1005] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 5,
+["description"] = "Join the Fighters Guild",
+["name"] = "Associate of the Fighters Guild",
+},
+[1006] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 5,
+["description"] = "Join the Undaunted",
+["name"] = "Recruit of the Undaunted",
+},
+[1007] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 10,
+["description"] = "Become a Werewolf.",
+["name"] = "Lycanthropy",
+},
+[1008] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 10,
+["description"] = "Become a Vampire.",
+["name"] = "Vampirism",
+},
+[1009] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Reach the max level of the Werewolf Skill Line.",
+["name"] = "Lycanthropy Master",
+},
+[1010] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Reach the max level of the Vampire Skill Line.",
+["name"] = "Vampirism Master",
+},
+[51] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Complete all of the Slayer Achievements.",
+["name"] = "Master Monster Slayer",
+},
+[1012] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Reach the max level of the Fighters Guild Skill Line.",
+["name"] = "Fighters Guild Skill Master",
+},
+[1013] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Reach the max level of the Undaunted Skill Line.",
+["name"] = "Undaunted Skill Master",
+},
+[703] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Complete the Fighters Guild series of quests.",
+["name"] = "Fighters Guild Veteran",
+},
+[702] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Complete the Mages Guild series of quests.",
+["name"] = "Arch-Mage",
+},
+[1011] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Reach the max level of the Mages Guild Skill Line.",
+["name"] = "Mages Guild Skill Master",
+},
+[1140] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 50,
+["description"] = "Conquer all challengers on the increased difficulty version of Dragonstar Arena.",
+["name"] = "Dragonstar Arena Conqueror",
+},
+[1216] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 10,
+["description"] = "Spend 300 Champion Points in the Warrior Constellation.",
+["name"] = "Vigorous Decree",
+},
+[1214] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 10,
+["description"] = "Spend your first Champion Point.",
+["name"] = "Dawn of a Champion",
+},
+[1215] =
+{
+["Category"] = "Character",
+["Category_ID"] = 1,
+["points"] = 15,
+["description"] = "Spend 600 Champion Points in the Warrior Constellation.",
+["name"] = "Robust Destiny",
+},
+},
+["Trophies"] =
+{
+[838] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 10,
+["description"] = "Collect trophies from all the beasts of Tamriel.",
+["name"] = "Tamriel Beast Collector",
+},
+[841] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 10,
+["description"] = "Collect trophies from all the undead of Tamriel.",
+["name"] = "Undead Hoarder",
+},
+[842] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 10,
+["description"] = "Collect trophies from all the chitinous creatures of Tamriel.",
+["name"] = "Chitin Accumulator",
+},
+[843] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 10,
+["description"] = "Collect trophies from nature spirits and natural creatures from across Tamriel.",
+["name"] = "Nature Collector",
+},
+[844] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 10,
+["description"] = "Collect trophies from all the monstrous creatures of Tamriel.",
+["name"] = "Monstrous Component Collector",
+},
+[846] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 10,
+["description"] = "Collect trophies from Dwemer constructs.",
+["name"] = "Dwarven Secrets Gatherer",
+},
+[847] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 10,
+["description"] = "Collect trophies from all types of atronachs.",
+["name"] = "Atronach Element Collector",
+},
+[848] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 10,
+["description"] = "Collect trophies from all types of slain Daedra.",
+["name"] = "Oblivion Shard Gatherer",
+},
+[916] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Craglorn.",
+["name"] = "Craglorn Angler",
+},
+[471] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12  rare fish in Glenumbra.",
+["name"] = "Glenumbra Angler",
+},
+[472] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Stormhaven.",
+["name"] = "Stormhaven Angler",
+},
+[473] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Rivenspire.",
+["name"] = "Rivenspire Angler",
+},
+[474] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Alik'r Desert.",
+["name"] = "Alik'r Desert Angler",
+},
+[475] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Bangkorai.",
+["name"] = "Bangkorai Angler",
+},
+[476] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 10,
+["description"] = "Complete all Daggerfall Covenant fishing achievements.",
+["name"] = "Covenant Fisherman",
+},
+[477] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Stonefalls.",
+["name"] = "Stonefalls Angler",
+},
+[478] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Deshaan.",
+["name"] = "Deshaan Angler",
+},
+[479] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Shadowfen.",
+["name"] = "Shadowfen Angler",
+},
+[480] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Eastmarch.",
+["name"] = "Eastmarch Angler",
+},
+[481] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in the Rift.",
+["name"] = "Rift Angler",
+},
+[482] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 10,
+["description"] = "Complete all Ebonheart Pact fishing achievements.",
+["name"] = "Pact Fisherman",
+},
+[483] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Auridon.",
+["name"] = "Auridon Angler",
+},
+[484] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Grahtwood.",
+["name"] = "Grahtwood Angler",
+},
+[485] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Greenshade.",
+["name"] = "Greenshade Angler",
+},
+[486] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Malabal Tor.",
+["name"] = "Malabal Tor Angler",
+},
+[487] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Reaper's March.",
+["name"] = "Reaper's March Angler",
+},
+[488] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 10,
+["description"] = "Complete all Aldmeri Dominion fishing achievements.",
+["name"] = "Dominion Fisherman",
+},
+[489] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 10,
+["description"] = "Catch all 12 rare fish in Cyrodiil.",
+["name"] = "Cyrodiil Angler",
+},
+[490] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch all 12 rare fish in Coldharbour.",
+["name"] = "Coldharbour Angler",
+},
+[491] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch a rare Eltheric Grouper in Stros M'Kai.",
+["name"] = "Stros M'Kai Angler",
+},
+[492] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch a rare Pyandonean Ray in Khenarthi's Roost.",
+["name"] = "Khenarthi's Roost Angler",
+},
+[493] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 5,
+["description"] = "Catch a rare Inner Sea Scalyfin fish in Bleakrock.",
+["name"] = "Bleakrock Angler",
+},
+[494] =
+{
+["Category"] = "Trophies",
+["Category_ID"] = 2,
+["points"] = 50,
+["description"] = "Complete all fishing achievements.",
+["name"] = "Master Fisher",
+},
+},
+["Exploration"] =
+{
+[526] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Intervene in all instances of skooma abuse on Khenarthi's Roost.",
+["name"] = "Skooma Watch",
+},
+[539] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Troll's Toothpick.",
+["name"] = "Troll's Toothpick Explorer",
+},
+[540] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Torog's Spite.",
+["name"] = "Torog's Spite Explorer",
+},
+[541] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Crypt of the Exiles.",
+["name"] = "Crypt of the Exiles Explorer",
+},
+[542] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Viridian Watch.",
+["name"] = "Viridian Watch Explorer",
+},
+[543] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Rubble Butte.",
+["name"] = "Rubble Butte Explorer",
+},
+[544] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Klathzgar.",
+["name"] = "Klathzgar Explorer",
+},
+[550] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Underroot.",
+["name"] = "Underroot Explorer",
+},
+[553] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Carac Dena.",
+["name"] = "Carac Dena Explorer",
+},
+[555] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Gurzag's Mine.",
+["name"] = "Gurzag's Mine Explorer",
+},
+[558] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Harridan's Lair.",
+["name"] = "Harridan's Lair Explorer",
+},
+[559] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Barrow Trench.",
+["name"] = "Barrow Trench Explorer",
+},
+[560] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the giant crocodile, Gathongor the Mauler, at Gathongor's Mire.",
+["name"] = "Gathongor Hunter",
+},
+[561] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the ogre, Thodundor of the Hill, at Thodundor's View.",
+["name"] = "King of the Hill",
+},
+[562] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Sea Elf, Jahlasri, and her Maormer companions at the Maormer Camp.",
+["name"] = "Sea Elf's Woe",
+},
+[563] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the lurcher known as the Heart of Rootwater at Rootwater Spring.",
+["name"] = "Rootwater's Demise",
+},
+[564] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Argonian Maheelius and his force of spies at the Reconnaissance Camp.",
+["name"] = "Spy Smasher",
+},
+[565] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Storm Atronach, Zymel Etitan, at Pelda Tarn.",
+["name"] = "Zymel Chaser",
+},
+[567] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Naril Nagaia.",
+["name"] = "Naril Nagaia Explorer",
+},
+[568] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Greenshade.",
+["name"] = "Greenshade Cave Delver",
+},
+[572] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Grahtwood.",
+["name"] = "Grahtwood Cave Delver",
+},
+[573] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Ne Salas.",
+["name"] = "Ne Salas Explorer",
+},
+[574] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Scuttle Pit.",
+["name"] = "Scuttle Pit Explorer",
+},
+[575] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Vinedeath Cave.",
+["name"] = "Vinedeath Cave Explorer",
+},
+[576] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Burroot Kwama Mine.",
+["name"] = "Burroot Kwama Mine Explorer",
+},
+[577] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Wormroot Depths.",
+["name"] = "Wormroot Depths Explorer",
+},
+[578] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Mobar Mine.",
+["name"] = "Mobar Mine Explorer",
+},
+[1121] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Find Geldrion Treehelm's stash in Belkarth.",
+["name"] = "Earthly Possessions",
+},
+[1126] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all caves and locales throughout Upper Craglorn.",
+["name"] = "Upper Craglorn Master Explorer",
+},
+[1127] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six explorable caves in Upper Craglorn.",
+["name"] = "Upper Craglorn Cave Delver",
+},
+[622] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Complete all of the Aldmeri Dominion cave exploration achievements.",
+["name"] = "Dominion Cave Delver",
+},
+[625] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Complete all of the Daggerfall Covenant cave exploration achievements.",
+["name"] = "Covenant Cave Delver",
+},
+[626] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Complete all of the Ebonheart Pact cave exploration achievements.",
+["name"] = "Pact Cave Delver",
+},
+[627] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Complete every cave exploration achievement in Tamriel.",
+["name"] = "Tamriel Master Cave Delver",
+},
+[148] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the spriggan Woodblight at Blighted Isle.",
+["name"] = "Woodblight Killer",
+},
+[149] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill Dayarrus the Xivilai at Arlimahera's Sanctum.",
+["name"] = "Dayarrus' Deathbringer",
+},
+[150] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the frost atronach monarch Nomeg Hyri at Nilata Falls.",
+["name"] = "Nomeg Hyril's Executioner",
+},
+[151] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the liches Qumehdi and Zaman at the Telesubi Ruins.",
+["name"] = "Lich Butcher",
+},
+[152] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the summoner Caecilia Attius and her Daedra minions at the Summoner's Camp.",
+["name"] = "Summoner Slayer",
+},
+[153] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Destroy the ghost Garach Wolf-Father and his werewolf spirits at Lakewatch Tower.",
+["name"] = "Wolf-Father Exorcist",
+},
+[158] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the giant spider, Aesar the Hatespinner, at Aesar's Web.",
+["name"] = "Hatespinner Hunter",
+},
+[159] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the gargoyle, Menhir Stoneskin, at Valeguard Tower.",
+["name"] = "Menhir Hunter",
+},
+[160] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the necromancer, Louna Darkblood, at Old Kalgon's Keep.",
+["name"] = "Darkblood Hunter",
+},
+[161] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the hag, Magdelena, at Magdelena's Haunt.",
+["name"] = "Hag Hunter",
+},
+[162] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the Orc, Sgugh gra-Dum, at East-Rock Landing.",
+["name"] = "Sgugh's Assassin",
+},
+[163] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the nereid, Desuuga the Siren, at Siren's Cove.",
+["name"] = "Siren Hunter",
+},
+[176] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Glenumbra.",
+["name"] = "Glenumbra Cave Delver",
+},
+[177] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Stormhaven.",
+["name"] = "Stormhaven Cave Delver",
+},
+[178] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Rivenspire.",
+["name"] = "Rivenspire Cave Delver",
+},
+[180] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Bangkorai.",
+["name"] = "Bangkorai Cave Delver",
+},
+[181] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Stonefalls.",
+["name"] = "Stonefalls Cave Delver",
+},
+[696] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the crazed Orc hunter Shagura at Hircine's Henge.",
+["name"] = "Shagura's Doom",
+},
+[697] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the senche-tigress Nindaeril the Monsoon atop Nindaeril's Perch.",
+["name"] = "Monsoon Marauder",
+},
+[698] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the nereid Lady Solace in Lady Solace's Fen.",
+["name"] = "Water Walloper",
+},
+[187] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the wamasu champion Haynekhtnamet in its lair.",
+["name"] = "Haynekhtnamet Hunter",
+},
+[188] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the ogre twins Argalog and Vlaga at Xal Thak.",
+["name"] = "Ogre Twin Tormentor",
+},
+[189] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the Ayleid Mummy Lord Talkynd at Nen Ria.",
+["name"] = "Mummy Lord Murderer",
+},
+[190] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat Captain Bones and his undead crew aboard the Captain's ship.",
+["name"] = "Captain Bones Destroyer",
+},
+[191] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the Daedroth Urrai at Bitterroot Cave.",
+["name"] = "Urrai's Bane",
+},
+[192] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the Slave Lord Rendrasa at the Slaver's Camp.",
+["name"] = "Slave Lord's Ruination",
+},
+[193] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Shadowfen.",
+["name"] = "Shadowfen Cave Delver",
+},
+[195] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the champion of the Strifeswarm kwama hive.",
+["name"] = "Strifeswarm Eradicator",
+},
+[196] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Enter the Cave of Memories and destroy the Ashlander Guardian.",
+["name"] = "Memory Masher",
+},
+[197] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Survive the mudcrabs of Shipwreck Strand and kill Shellcracker, the cannibal crab.",
+["name"] = "Shellcracker",
+},
+[198] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Storm the beach at Matron's Clutch, slay the Dreugh Matrons, and end the threat of the Dreugh egg-tenders.",
+["name"] = "Dreugh Destroyer",
+},
+[199] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Destroy the Golden Saint at the Shivering Shrine.",
+["name"] = "Saintly Slaughter",
+},
+[200] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the bull netch Ozzacha in Brahma's Grove.",
+["name"] = "Netch Wrangler",
+},
+[202] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Inner Sea Armature.",
+["name"] = "Inner Sea Armature Explorer",
+},
+[203] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Emberflint Mine.",
+["name"] = "Emberflint Mine Explorer",
+},
+[716] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Help ease cultural tensions and reconcile the allies in Grahtwood.",
+["name"] = "Peacemaker",
+},
+[205] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Mephala's Nest.",
+["name"] = "Mephala's Nest Explorer",
+},
+[206] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Hightide Hollow.",
+["name"] = "Hightide Hollow Explorer",
+},
+[207] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Softloam Cavern.",
+["name"] = "Softloam Cavern Explorer",
+},
+[208] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Sheogorath's Tongue.",
+["name"] = "Sheogorath's Tongue Explorer",
+},
+[210] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the great werewolf, Rageclaw, at Rageclaw's Den.",
+["name"] = "Rageclaw Hunter",
+},
+[211] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the Breton necromancer, Vivien Armene, at the Dragon Mound.",
+["name"] = "Armene's Bane",
+},
+[212] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the vampire, Olveidi the Ratmaster, at the Ratmaster's Prowl.",
+["name"] = "Ratmaster Crusher",
+},
+[213] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the wild mammoth, Mannskadi, at Dragon's Hallow.",
+["name"] = "Mannskadi's Mauler",
+},
+[214] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the great sabre cat, Ammabani, at Ammabani's Pride.",
+["name"] = "Ammabani Ambusher",
+},
+[215] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Ilessan Tower.",
+["name"] = "Ilessan Tower Explorer",
+},
+[216] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Silumm.",
+["name"] = "Silumm Explorer",
+},
+[217] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Enduum.",
+["name"] = "Enduum Explorer",
+},
+[218] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Mines of Khuras.",
+["name"] = "Mines of Khuras Explorer",
+},
+[219] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Ebon Crypt.",
+["name"] = "Ebon Crypt Explorer",
+},
+[220] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Cryptwatch Fort.",
+["name"] = "Cryptwatch Fort Explorer",
+},
+[221] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Portdun Watch.",
+["name"] = "Portdun Watch Explorer",
+},
+[222] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Koeglin Mine.",
+["name"] = "Koeglin Mine Explorer",
+},
+[223] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Pariah Catacombs.",
+["name"] = "Pariah Catacombs Explorer",
+},
+[224] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Farangel's Delve.",
+["name"] = "Farangel's Delve Explorer",
+},
+[225] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Bearclaw Mine.",
+["name"] = "Bearclaw Mine Explorer",
+},
+[226] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Norvolk Ruins.",
+["name"] = "Norvolk Ruins Explorer",
+},
+[227] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Crestshade Mine.",
+["name"] = "Crestshade Mine Explorer",
+},
+[228] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Flyleaf Catacombs.",
+["name"] = "Flyleaf Catacombs Explorer",
+},
+[229] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Tribulation Crypt.",
+["name"] = "Tribulation Crypt Explorer",
+},
+[230] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Orc's Finger Ruins.",
+["name"] = "Orc's Finger Ruins Explorer",
+},
+[231] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Erokii Ruins.",
+["name"] = "Erokii Ruins Explorer",
+},
+[232] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Hildune's Secret Refuge.",
+["name"] = "Hildune's Secret Refuge Explorer",
+},
+[745] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Newt Cave.",
+["name"] = "Newt Cave Explorer",
+},
+[746] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Quickwater Cave.",
+["name"] = "Quickwater Cave Explorer",
+},
+[747] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Vahtacen.",
+["name"] = "Vahtacen Explorer",
+},
+[245] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Atanaz Ruins.",
+["name"] = "Atanaz Ruins Explorer",
+},
+[246] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Broken Tusk.",
+["name"] = "Broken Tusk Explorer",
+},
+[247] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Chid-Moska Ruins.",
+["name"] = "Chid-Moska Ruins Explorer",
+},
+[248] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Gandranen.",
+["name"] = "Gandranen Explorer",
+},
+[249] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Onkobra Kwama Mine.",
+["name"] = "Onkobra Kwama Mine Explorer",
+},
+[250] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Shrine of the Black Maw.",
+["name"] = "Black Maw Shrine Explorer",
+},
+[251] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear The Chill Hollow.",
+["name"] = "Chill Hollow Explorer",
+},
+[252] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Icehammer's Vault.",
+["name"] = "Icehammer's Vault Explorer",
+},
+[253] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Old Sord's Cave.",
+["name"] = "Old Sord's Cave Explorer",
+},
+[254] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Frigid Grotto.",
+["name"] = "Frigid Grotto Explorer",
+},
+[255] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Stormcrag Crypt.",
+["name"] = "Stormcrag Crypt Explorer",
+},
+[768] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales on Khenarthi's Roost.",
+["name"] = "Khenarthi's Roost Pathfinder",
+},
+[769] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales on Auridon.",
+["name"] = "Auridon Pathfinder",
+},
+[770] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales on Bleakrock Isle.",
+["name"] = "Bleakrock Isle Pathfinder",
+},
+[771] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Bal Foyen.",
+["name"] = "Bal Foyen Pathfinder",
+},
+[772] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Stonefalls.",
+["name"] = "Stonefalls Pathfinder",
+},
+[773] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales on Stros M'kai.",
+["name"] = "Stros M'kai Pathfinder",
+},
+[774] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales on Betnikh.",
+["name"] = "Betnikh Pathfinder",
+},
+[775] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Glenumbra.",
+["name"] = "Glenumbra Pathfinder",
+},
+[264] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Lady Llarel's Shelter.",
+["name"] = "Lady Llarel's Shelter Explorer",
+},
+[265] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the ruins of Lower Bthanual.",
+["name"] = "Lower Bthanual Explorer",
+},
+[266] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Triple Circle Mine.",
+["name"] = "Triple Circle Mine Explorer",
+},
+[267] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Taleon's Crag.",
+["name"] = "Taleon's Crag Explorer",
+},
+[268] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Knife Ear Grotto.",
+["name"] = "Knife Ear Grotto Explorer",
+},
+[269] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Corpse Garden.",
+["name"] = "Corpse Garden Explorer",
+},
+[270] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Deshaan.",
+["name"] = "Deshaan Cave Delver",
+},
+[274] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Dead Man's Drop.",
+["name"] = "Dead Man's Drop Explorer",
+},
+[275] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the giant kagouti, Short-Tusk, at Short-Tusk's Hillock.",
+["name"] = "Short-Tusk Hunter",
+},
+[276] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the corpse husk, the Abomination, at the Grove of the Abomination.",
+["name"] = "Abomination Slayer",
+},
+[277] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the giant troll, Sharpfang, at the Dire Bramblepatch.",
+["name"] = "Sharpfang Killer",
+},
+[278] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Destroy the Mabrigash Shade at the Mabrigash Burial Circle.",
+["name"] = "Mabrigash Shade Destroyer",
+},
+[279] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the Dremora ritualist, Druitularg, at Druitularg's Ritual Altar.",
+["name"] = "Druitularg's Bane",
+},
+[280] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the giant guar, Bittergreen the Wild, at Caravan Crest.",
+["name"] = "Bittergreen Obliterator",
+},
+[281] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Black Vine Ruins.",
+["name"] = "Black Vine Ruins Explorer",
+},
+[282] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Roots of Silvenar.",
+["name"] = "Roots of Silvenar Explorer",
+},
+[286] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Shael Ruins.",
+["name"] = "Shael Ruins Explorer",
+},
+[287] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Auridon.",
+["name"] = "Auridon Cave Delver",
+},
+[288] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Del's Claim.",
+["name"] = "Del's Claim Explorer",
+},
+[289] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Ondil.",
+["name"] = "Ondil Explorer",
+},
+[290] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Entila's Folly.",
+["name"] = "Entila's Folly Explorer",
+},
+[291] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Wansalen.",
+["name"] = "Wansalen Explorer",
+},
+[292] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Mehrunes' Spite.",
+["name"] = "Mehrunes' Spite Explorer",
+},
+[293] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Bewan.",
+["name"] = "Bewan Explorer",
+},
+[296] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Malabal Tor.",
+["name"] = "Malabal Tor Cave Delver",
+},
+[297] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Tomb of the Apostates.",
+["name"] = "Tomb of the Apostates Explorer",
+},
+[298] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Hoarvor Pit.",
+["name"] = "Hoarvor Pit Explorer",
+},
+[832] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Grahtwood.",
+["name"] = "Grahtwood Pathfinder",
+},
+[833] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Stormhaven.",
+["name"] = "Stormhaven Pathfinder",
+},
+[834] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Deshaan.",
+["name"] = "Deshaan Pathfinder",
+},
+[835] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Reaper's March.",
+["name"] = "Reaper's March Pathfinder",
+},
+[836] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeated by slaughterfish.",
+["name"] = "Slaughtered",
+},
+[839] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Greenshade.",
+["name"] = "Greenshade Pathfinder",
+},
+[328] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in the Rift.",
+["name"] = "The Rift Cave Delver",
+},
+[329] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Faldar's Tooth.",
+["name"] = "Faldar's Tooth Explorer",
+},
+[330] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Broken Helm Hollow.",
+["name"] = "Broken Helm Hollow Explorer",
+},
+[331] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Avancheznel.",
+["name"] = "Avancheznel Explorer",
+},
+[332] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Fort Greenwall.",
+["name"] = "Fort Greenwall Explorer",
+},
+[333] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Shroud Hearth Barrow.",
+["name"] = "Shroud Hearth Barrow Explorer",
+},
+[334] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Snapleg Cave.",
+["name"] = "Snapleg Cave Explorer",
+},
+[849] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Alik'r Desert.",
+["name"] = "Alik'r Desert Pathfinder",
+},
+[345] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat Indur-sa and the Khajiiti Hunters at the Hunter Camp.",
+["name"] = "Khajiiti Hunters' Bane",
+},
+[346] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the trolls, Frostdrool and Sleetclaw, at the Troll Cave.",
+["name"] = "Troll Killer",
+},
+[347] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Frost Atronach, Nomeg Rine, at the Frozen Ruins.",
+["name"] = "Frost Atronach Destroyer",
+},
+[348] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Put Ghoragham the Ghost to rest at the Abandoned Camp.",
+["name"] = "Ghost Banisher",
+},
+[349] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat Longstride the Giant and his Mammoth at the Giant Camp.",
+["name"] = "Giant Slayer",
+},
+[350] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Banish Aereus the Wispmother from Wisplight Glen.",
+["name"] = "Wispmother Vanquisher",
+},
+[351] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "End the threat of the necromancers at Soulfire Plateau and avenge the First Auridon Marines.",
+["name"] = "Marines Avenger",
+},
+[352] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat Quenyas, leader of Auridon's bandit gangs, in the camp at Seaside Scarp.",
+["name"] = "Bandit Lord Bounty Hunter",
+},
+[353] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Destroy Ghost Captain Blanchete at the Wreck of the Raptor.",
+["name"] = "Ghost Captain Crusher",
+},
+[354] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the clannfear champion, Snapjaw, and end the murder of innocents at Heretic's Summons.",
+["name"] = "Snapjaw's Bane",
+},
+[355] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the giant snake known as the Nestmother in her den.",
+["name"] = "Nestmother Eradicator",
+},
+[356] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat Anarume at the Heritance Proving Ground and end his treason.",
+["name"] = "Anarume Bounty Hunter",
+},
+[869] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Extort gold from merchants across Tamriel.",
+["name"] = "Crime Pays",
+},
+[871] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Share your wealth with needy beggars across Tamriel.",
+["name"] = "Give to the Poor",
+},
+[872] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Track the movements of M'aiq the Liar across Tamriel and beyond.",
+["name"] = "I Like M'aiq",
+},
+[873] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Bring light to the dark places of the world.",
+["name"] = "Lightbringer",
+},
+[884] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Molavar.",
+["name"] = "Molavar Explorer",
+},
+[885] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Rkundzelft.",
+["name"] = "Rkundzelft Explorer",
+},
+[886] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Serpent's Nest.",
+["name"] = "Serpent's Nest Explorer",
+},
+[887] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Ilthag's Undertower.",
+["name"] = "Ilthag's Undertower Explorer",
+},
+[888] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Ruins of Kardala.",
+["name"] = "Ruins of Kardala Explorer",
+},
+[889] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Loth'Na Caverns.",
+["name"] = "Loth'Na Caverns Explorer",
+},
+[890] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Rkhardahrk.",
+["name"] = "Rkhardahrk Explorer",
+},
+[891] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Haddock's Market.",
+["name"] = "Haddock's Market Explorer",
+},
+[892] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Chiselshriek Mine.",
+["name"] = "Chiselshriek Mine Explorer",
+},
+[893] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Buried Sands.",
+["name"] = "Buried Sands Explorer",
+},
+[382] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the giant bear Graufang at Seaview Point.",
+["name"] = "Graufang Hunter",
+},
+[383] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the lurcher Limbscather at the Western Overlook.",
+["name"] = "Limbscather Slayer",
+},
+[384] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the werewolf, Salazar the Wolf, at the Wolf's Camp.",
+["name"] = "Werewolf's Bane",
+},
+[385] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Bloodthorn zombie, Asard the Putrid, at North Shore Point.",
+["name"] = "Asard's Assassin",
+},
+[386] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the giant crocodile, Trapjaw, at Trapjaw's Cove.",
+["name"] = "Trapjaw Stalker",
+},
+[387] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the necromancer, Grivier Bloodcaller, at Balefire Island.",
+["name"] = "Bloodcaller's Ruin",
+},
+[900] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Tombs of the Na-Totambu.",
+["name"] = "Tombs of the Na-Totambu Explorer",
+},
+[901] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Hircine's Haunt.",
+["name"] = "Hircine's Haunt Explorer",
+},
+[902] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Lower Craglorn.",
+["name"] = "Lower Craglorn Pathfinder",
+},
+[399] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat Titanclaw the mudcrab at Mudcrab Beach.",
+["name"] = "Titanclaw Cracker",
+},
+[400] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat Old Widow Silk and the Bloodweaver spiders at the Spider Nest.",
+["name"] = "Spider Slayer",
+},
+[401] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Dreugh Brood Queen at the Dreugh Waters.",
+["name"] = "Brood Queen Destroyer",
+},
+[402] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Daedroth Gar Xuu Gar and his minions at the Abandoned Farm.",
+["name"] = "Gar Xuu Gar's Bane",
+},
+[403] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Ogre called Cousin Scrag at Scrag's Larder.",
+["name"] = "Cousin Scrag's Demolisher",
+},
+[404] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat Zymel Kruz the Storm Atronach at the Ancient Altar.",
+["name"] = "Kruz Control",
+},
+[406] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Jump from the nose of the Weeping Giant.",
+["name"] = "Nose Diver",
+},
+[699] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat Otho Rufinus, the poacher leader, at the Poacher Camp.",
+["name"] = "Poacher Pounder",
+},
+[700] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the giant flesh atronach Thugrub the Reformed in Thugrub's Cave.",
+["name"] = "Thugrub Dissector",
+},
+[701] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the lich Valanir the Restless at Valanir's Rest.",
+["name"] = "Valanir's Bane",
+},
+[730] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Bloodmayne Cave.",
+["name"] = "Bloodmayne Cave Explorer",
+},
+[731] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Breakneck Cave.",
+["name"] = "Breakneck Cave Explorer",
+},
+[412] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Santaki Ruins.",
+["name"] = "Santaki Ruins Explorer",
+},
+[413] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in the Alik'r Desert.",
+["name"] = "Alik'r Desert Cave Delver",
+},
+[414] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Divad's Chagrin Mine.",
+["name"] = "Divad's Chagrin Mine Explorer",
+},
+[732] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Haynote Cave.",
+["name"] = "Haynote Cave Explorer",
+},
+[416] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Aldunz Ruins.",
+["name"] = "Aldunz Ruins Explorer",
+},
+[733] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Nisin Cave.",
+["name"] = "Nisin Cave Explorer",
+},
+[734] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Pothole Caverns.",
+["name"] = "Pothole Caverns Explorer",
+},
+[419] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Coldrock Diggings.",
+["name"] = "Coldrock Diggings Explorer",
+},
+[420] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Sandblown Mine.",
+["name"] = "Sandblown Mine Explorer",
+},
+[735] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Serpent Hollow.",
+["name"] = "Serpent Hollow Explorer",
+},
+[736] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Capstone Cave.",
+["name"] = "Capstone Cave Explorer",
+},
+[423] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Yldzuun Ruins.",
+["name"] = "Yldzuun Ruins Explorer",
+},
+[424] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Eastmarch.",
+["name"] = "Eastmarch Cave Delver",
+},
+[425] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Destroy the tainted plant creatures at Deathsong Cleft in Reaper's March.",
+["name"] = "Deathsong Deforester",
+},
+[426] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat Big Ozur the Ogre in Big Ozur's Valley.",
+["name"] = "Big Ozur's Bane",
+},
+[427] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Queen of Three Mercies and her entourage at Waterdancer Falls in Reaper's March.",
+["name"] = "Mercy Killer",
+},
+[428] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat Gravecaller Niramo and his dark daughter Varien at the Reaper's Henge.",
+["name"] = "Gravecaller's Doom",
+},
+[429] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Daedroth, Ysolmarr the Roving Pyre, near the Old S'ren-ja Docks in Reaper's March.",
+["name"] = "Ysolmarr's Ruin",
+},
+[430] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the vampire, Overlord Nur-dro, at Ushmal's Rest in Reaper's March.",
+["name"] = "Nur-dro's Downfall",
+},
+[737] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Echo Cave.",
+["name"] = "Echo Cave Explorer",
+},
+[432] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Aba-Loria.",
+["name"] = "Aba-Loria Explorer",
+},
+[433] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Grotto of Depravity.",
+["name"] = "Grotto of Depravity Explorer",
+},
+[434] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Cave of Trophies.",
+["name"] = "Cave of Trophies Explorer",
+},
+[435] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Vault of Haman Forgefire.",
+["name"] = "Forgefire Vault Explorer",
+},
+[436] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Mal Sorra's Tomb.",
+["name"] = "Mal Sorra's Tomb Explorer",
+},
+[437] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Wailing Maw.",
+["name"] = "Wailing Maw Explorer",
+},
+[438] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Coldharbour.",
+["name"] = "Coldharbour Cave Delver",
+},
+[439] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the daedroth, Sthorha the Crazed, at Aba-Darre.",
+["name"] = "Sthorha's Doom",
+},
+[440] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the ice wraith, Duriatundur, at Duriatundur's Killing Field.",
+["name"] = "Ice Wraith Hunter",
+},
+[441] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the ancient Dwarven Centurian, Zemarek-thul, at Zemarek's Hollow.",
+["name"] = "Centurian's Ruin",
+},
+[442] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the daedroth trio, Nolagha, Keggagiha and Rsolignah, at the Daedroth Larder.",
+["name"] = "Daedroth Trio Hunter",
+},
+[443] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Dremora necromancer, Brolsgerbwd, at the Risen Court.",
+["name"] = "Brolsgerbwd's Bane",
+},
+[444] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the harvester, Cynhamoth, at Cynhamoth's Grove.",
+["name"] = "Cynhamoth's End",
+},
+[738] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Lipsand Tarn.",
+["name"] = "Lipsand Tarn Explorer",
+},
+[452] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all six caves in Reaper's March.",
+["name"] = "Reaper's March Cave Delver",
+},
+[453] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Kuna's Delve.",
+["name"] = "Kuna's Delve Explorer",
+},
+[454] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Thibaut's Cairn.",
+["name"] = "Thibaut's Cairn Explorer",
+},
+[455] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Weeping Wind Cave.",
+["name"] = "Weeping Wind Cave Explorer",
+},
+[456] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Claw's Strike.",
+["name"] = "Claw's Strike Explorer",
+},
+[969] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all caves and locales throughout the Aldmeri Dominion Territory.",
+["name"] = "Aldmeri Master Explorer",
+},
+[964] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Glenumbra.",
+["name"] = "Glenumbra Master Explorer",
+},
+[965] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Stormhaven.",
+["name"] = "Stormhaven Master Explorer",
+},
+[966] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Rivenspire.",
+["name"] = "Rivenspire Master Explorer",
+},
+[967] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in the Alik'r Desert.",
+["name"] = "Alik'r Desert Master Explorer",
+},
+[968] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Bangkorai.",
+["name"] = "Bangkorai Master Explorer",
+},
+[457] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Fardir's Folly.",
+["name"] = "Fardir's Folly Explorer",
+},
+[458] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Jode's Light.",
+["name"] = "Jode's Light Explorer",
+},
+[971] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Deshaan.",
+["name"] = "Deshaan Master Explorer",
+},
+[972] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Shadowfen.",
+["name"] = "Shadowfen Master Explorer",
+},
+[973] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Eastmarch.",
+["name"] = "Eastmarch Master Explorer",
+},
+[974] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in The Rift.",
+["name"] = "The Rift Master Explorer",
+},
+[975] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover all of the striking locales on Bleakrock and Bal Foyen.",
+["name"] = "Bleakrock and Bal Foyen Explorer",
+},
+[976] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Auridon.",
+["name"] = "Auridon Master Explorer",
+},
+[977] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Grahtwood.",
+["name"] = "Grahtwood Master Explorer",
+},
+[978] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Greenshade.",
+["name"] = "Greenshade Master Explorer",
+},
+[979] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Malabal Tor.",
+["name"] = "Malabal Tor Master Explorer",
+},
+[980] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Reaper's March.",
+["name"] = "Reaper's March Master Explorer",
+},
+[981] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover all of the striking locales on Stros M'kai and Betnikh.",
+["name"] = "Stros M'kai and Betnikh Explorer",
+},
+[982] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all caves and locales throughout the Daggerfall Covenant Territory.",
+["name"] = "Daggerfall Master Explorer",
+},
+[983] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all caves and locales throughout the Ebonheart Pact Territory.",
+["name"] = "Ebonheart Master Explorer",
+},
+[984] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Coldharbour.",
+["name"] = "Coldharbour Master Explorer",
+},
+[985] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 15,
+["description"] = "Discover and clear all twelve explorable caves in Lower Craglorn.",
+["name"] = "Lower Craglorn Cave Delver",
+},
+[986] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all caves and locales throughout Lower Craglorn.",
+["name"] = "Lower Craglorn Master Explorer",
+},
+[739] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Red Ruby Cave.",
+["name"] = "Red Ruby Cave Explorer",
+},
+[740] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Toadstool Hollow.",
+["name"] = "Toadstool Hollow Explorer",
+},
+[741] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Underpall Cave.",
+["name"] = "Underpall Cave Explorer",
+},
+[742] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Cracked Wood Cave.",
+["name"] = "Cracked Wood Cave Explorer",
+},
+[743] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Kingscrest Cavern.",
+["name"] = "Kingscrest Cavern Explorer",
+},
+[744] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Muck Valley Cavern.",
+["name"] = "Muck Valley Cavern Explorer",
+},
+[766] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Explore and clear all 18 caves in Cyrodiil.",
+["name"] = "Cyrodiil Cave Delver",
+},
+[840] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Rivenspire.",
+["name"] = "Rivenspire Pathfinder",
+},
+[845] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Shadowfen.",
+["name"] = "Shadowfen Pathfinder",
+},
+[862] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Malabal Tor.",
+["name"] = "Malabal Tor Pathfinder",
+},
+[863] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in the Rift.",
+["name"] = "The Rift Pathfinder",
+},
+[864] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Coldharbour.",
+["name"] = "Coldharbour Pathfinder",
+},
+[865] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Bangkorai.",
+["name"] = "Bangkorai Pathfinder",
+},
+[866] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Eastmarch.",
+["name"] = "Eastmarch Pathfinder",
+},
+[263] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill Commander Faldethil of the Green Hunters at River Edge.",
+["name"] = "Green Vanquisher",
+},
+[262] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill Skullbreaker the sea troll at Windshriek Strand.",
+["name"] = "Skullbreaker",
+},
+[261] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the nereid queen Tallatta the Lustrous in the Jagged Grotto.",
+["name"] = "Tallatta's Annihilator",
+},
+[260] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the strangler Bone Grappler in its nest.",
+["name"] = "Bone Grappler's Bane",
+},
+[259] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the Orc reaver Dugan the Red.",
+["name"] = "Dugan's Demolisher",
+},
+[970] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover and clear all six caves and striking locales in Stonefalls.",
+["name"] = "Stonefalls Master Explorer",
+},
+[495] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the duneripper, Mother Sands, at the Lost Caravan.",
+["name"] = "Duneripper's Downfall",
+},
+[496] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the giant, Lonely Papa, at the Giant Camp.",
+["name"] = "Lonely Papa's Doom",
+},
+[497] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Hag Sisters, Igazkad, Orochar and Ukha, at the Hag Camp.",
+["name"] = "Hag Upheaval",
+},
+[498] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat Korignah the harvester in the Forsaken Hearts Cave.",
+["name"] = "Korignah's Bane",
+},
+[499] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the Mummy King at King's Rest.",
+["name"] = "Mummy King Murderer",
+},
+[500] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Defeat the golden saint, Staada, at the Lesser Circle.",
+["name"] = "Saint Slayer",
+},
+[937] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Discover all of the striking locales in Upper Craglorn.",
+["name"] = "Upper Craglorn Pathfinder",
+},
+[899] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Zalgaz's Den.",
+["name"] = "Zalgaz's Den Explorer",
+},
+[898] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Exarch's Stronghold.",
+["name"] = "Exarch's Stronghold Explorer",
+},
+[897] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Fearfangs Cavern.",
+["name"] = "Fearfangs Cavern Explorer",
+},
+[896] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Balamath.",
+["name"] = "Balamath Explorer",
+},
+[895] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Howling Sepulchers.",
+["name"] = "The Howling Sepulchers Explorer",
+},
+[894] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear Mtharnaz.",
+["name"] = "Mtharnaz Explorer",
+},
+[867] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 50,
+["description"] = "Discover all of the striking locales in the core regions of the Aldmeri Dominion, the Daggerfall Covenant, the Ebonheart Pact, and Coldharbour.",
+["name"] = "Tamriel Trailblazer",
+},
+[256] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 10,
+["description"] = "Explore and clear the Bastard's Tomb.",
+["name"] = "Bastard's Tomb Explorer",
+},
+[257] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Kill the great bear, Beralagr, at Swiftblade's Camp.",
+["name"] = "Beralagr Hunter",
+},
+[258] =
+{
+["Category"] = "Exploration",
+["Category_ID"] = 8,
+["points"] = 5,
+["description"] = "Destroy Thjormar and the Drowned Horde at Bitterpoint Strand.",
+["name"] = "Drowned Horde Decimater",
+},
+},
+["Dark Anchors"] =
+{
+[322] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Release the Dark Anchor pinions to send the chains back to Coldharbour.",
+["name"] = "Chainbreaker",
+},
+[579] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 15,
+["description"] = "Destroy every Dark Anchor in Aldmeri Dominion territory.",
+["name"] = "Dominion Anchor Shatterer",
+},
+[324] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 5,
+["description"] = "Destroy 10 Dark Anchors from Coldharbour.",
+["name"] = "Anchor Destroyer",
+},
+[584] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 15,
+["description"] = "Destroy every Dark Anchor in Daggerfall Covenant territory.",
+["name"] = "Covenant Anchor Shatterer",
+},
+[585] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 15,
+["description"] = "Destroy every Dark Anchor in Ebonheart Pact territory.",
+["name"] = "Pact Anchor Shatterer",
+},
+[586] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 15,
+["description"] = "Destroy every Dark Anchor in the contested lands of Cyrodiil.",
+["name"] = "Imperial Anchor Shatterer",
+},
+[587] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 50,
+["description"] = "Destroy every Dark Anchor in Tamriel.",
+["name"] = "Anchors Away",
+},
+[620] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 15,
+["description"] = "Destroy 100 Dark Anchors from Coldharbour.",
+["name"] = "Anchor Decimater",
+},
+[621] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 50,
+["description"] = "Destroy 250 Dark Anchors from Coldharbour.",
+["name"] = "Anchor Devastater",
+},
+[548] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Destroy Ozzozachar, the favored Titan of Molag Bal.",
+["name"] = "Ozzozachar's Door",
+},
+[303] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Kathutet, Amkaos, and Ranyu, Molag Bal's torturers, at a Dark Anchor.",
+["name"] = "Torturers' Demise",
+},
+[304] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Glut, Hogshead, and Stumble, the three Ogrim Brothers, at a Dark Anchor.",
+["name"] = "Ogrim Brother Subjugator",
+},
+[305] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Velehk Sain, the Dremora pirate, at a Dark Anchor.",
+["name"] = "Dremora Pirate Slayer",
+},
+[306] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Methats, Vonshala, and Sumeer, the Dremora travelers, at a Dark Anchor.",
+["name"] = "Traveling Dremora Slayer",
+},
+[307] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Menta Na, Molag Bal's most favored Daedroth, at a Dark Anchor.",
+["name"] = "Favored Daedroth Destroyer",
+},
+[308] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Yggmanei the Ever-Open Eye, Molag Bal's greatest spy, at a Dark Anchor.",
+["name"] = "Closer of the Ever-Open Eye",
+},
+[309] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat the Daedroth Hrelvesuu at a Dark Anchor.",
+["name"] = "Hrelvesuu's Bane",
+},
+[310] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Rhagothan, the Devourer of Souls, at a Dark Anchor.",
+["name"] = "Devourer of Souls Subverter",
+},
+[311] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Nomeg Haga, the giant Frost Atronach of Coldharbour, at a Dark Anchor.",
+["name"] = "Frost Lord Destroyer",
+},
+[312] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Zymel Hriz, the giant Storm Atronach of Coldharbour, at a Dark Anchor.",
+["name"] = "Storm Lord Destroyer",
+},
+[313] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Anaxes and Medrike, the Xivilai torturers, at a Dark Anchor.",
+["name"] = "Xivilai Slavemaster Destroyer",
+},
+[314] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Vika, Dylora, and Jansa, the Dark Seducer sisters, at a Dark Anchor.",
+["name"] = "Seductive Sister Destroyer",
+},
+[315] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat King Styriche of Verkarth and his companions, Fangaril and Zayzahad, at a Dark Anchor.",
+["name"] = "Verkarth Vampire Destroyer",
+},
+[316] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Lord Dregas Volar, the holder of the Daedric Crescent, at a Dark Anchor.",
+["name"] = "Crescent Dremora Destroyer",
+},
+[317] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Defeat Gedna Relvel, the Lich of Mournhold, at a Dark Anchor.",
+["name"] = "Mournhold Lich Destroyer",
+},
+[318] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 50,
+["description"] = "Destroy all of Molag Bal's generals that appear at the Dark Anchors.",
+["name"] = "General Executioner",
+},
+[619] =
+{
+["Category"] = "Dark Anchors",
+["Category_ID"] = 6,
+["points"] = 10,
+["description"] = "Destroy 50 Dark Anchors from Coldharbour.",
+["name"] = "Anchor Demolisher",
+},
+},
+["version"] = 1,
+["Alliance War"] =
+{
+[960] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 15,
+["description"] = "Kill 100 enemy Sorcerers.",
+["name"] = "Grand Sorcerer Slayer",
+},
+[705] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Grand Overlord in the Alliance War.",
+["name"] = "Alliance War Grand Overlord",
+},
+[706] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of First Sergeant in the Alliance War.",
+["name"] = "Alliance War First Sergeant",
+},
+[963] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Help capture a Resource (Farm, Lumber Mill, or Mine), and Keep in Cyrodiil.",
+["name"] = "Support the Fight",
+},
+[962] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 100 enemy Dragonknights.",
+["name"] = "Grand Dragonknight Slayer",
+},
+[903] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Enter Cyrodiil and join the Alliance War.",
+["name"] = "Cyrodiil Recruit",
+},
+[134] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill an enemy with the rank of Grand Overlord in the Alliance War.",
+["name"] = "Kill a Grand Overlord",
+},
+[135] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Deal 1,000,000 points of damage to enemies in Cyrodiil.",
+["name"] = "Damage Dealer",
+},
+[136] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Deal 5,000,000 points of damage to enemies in Cyrodiil.",
+["name"] = "Massive Damage Dealer",
+},
+[137] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Deal 100,000,000 points of damage to enemies in Cyrodiil.",
+["name"] = "Tremendous Damage Dealer",
+},
+[138] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Heal 1,000,000 points of damage to allies in Cyrodiil.",
+["name"] = "Healer",
+},
+[139] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Heal 5,000,000 points of damage to allies in Cyrodiil.",
+["name"] = "Massive Healer",
+},
+[140] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Heal 100,000,000 points of damage to allies in Cyrodiil.",
+["name"] = "Tremendous Healer",
+},
+[141] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 100 Breton enemies in the Alliance War.",
+["name"] = "Breton Slayer",
+},
+[718] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 100 Redguard enemies in the Alliance War.",
+["name"] = "Redguard Slayer",
+},
+[719] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 100 Orc enemies in the Alliance War.",
+["name"] = "Orc Slayer",
+},
+[720] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 100 Dunmer enemies in the Alliance War.",
+["name"] = "Dark Elf Slayer",
+},
+[721] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 100 Nord enemies in the Alliance War.",
+["name"] = "Nord Slayer",
+},
+[722] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 100 Argonian enemies in the Alliance War.",
+["name"] = "Argonian Slayer",
+},
+[723] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 100 Bosmer enemies in the Alliance War.",
+["name"] = "Wood Elf Slayer",
+},
+[724] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 100 Altmer enemies in the Alliance War.",
+["name"] = "High Elf Slayer",
+},
+[725] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 100 Khajiit enemies in the Alliance War.",
+["name"] = "Khajiit Slayer",
+},
+[726] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 100 Imperial enemies in the Alliance War.",
+["name"] = "Imperial Slayer",
+},
+[114] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Overlord in the Alliance War.",
+["name"] = "Alliance War Overlord",
+},
+[88] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 10 enemy Dragonknights.",
+["name"] = "Dragonknight Slayer",
+},
+[89] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 10 enemy Sorcerers.",
+["name"] = "Sorcerer Slayer",
+},
+[90] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 10 enemy Templars.",
+["name"] = "Templar Slayer",
+},
+[91] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Help capture a resource (farm, lumbermill, or mine) in Cyrodiil.",
+["name"] = "Capture a Resource",
+},
+[92] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn your first rank in the Alliance War.",
+["name"] = "Alliance War Volunteer",
+},
+[93] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Recruit in the Alliance War.",
+["name"] = "Alliance War Recruit",
+},
+[94] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Tyro in the Alliance War.",
+["name"] = "Alliance War Tyro",
+},
+[95] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Legionary in the Alliance War.",
+["name"] = "Alliance War Legionary",
+},
+[96] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Veteran in the Alliance War.",
+["name"] = "Alliance War Veteran",
+},
+[97] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Corporal in the Alliance War.",
+["name"] = "Alliance War Corporal",
+},
+[98] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Sergeant in the Alliance War.",
+["name"] = "Alliance War Sergeant",
+},
+[99] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Lieutenant in the Alliance War.",
+["name"] = "Alliance War Lieutenant",
+},
+[100] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Captain in the Alliance War.",
+["name"] = "Alliance War Captain",
+},
+[101] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Major in the Alliance War.",
+["name"] = "Alliance War Major",
+},
+[102] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Centurion in the Alliance War.",
+["name"] = "Alliance War Centurion",
+},
+[103] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Colonel in the Alliance War.",
+["name"] = "Alliance War Colonel",
+},
+[104] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Tribune in the Alliance War.",
+["name"] = "Alliance War Tribune",
+},
+[105] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Brigadier in the Alliance War.",
+["name"] = "Alliance War Brigadier",
+},
+[106] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Prefect in the Alliance War.",
+["name"] = "Alliance War Prefect",
+},
+[107] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Praetorian in the Alliance War.",
+["name"] = "Alliance War Praetorian",
+},
+[108] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Palatine in the Alliance War.",
+["name"] = "Alliance War Palatine",
+},
+[109] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of August Palatine in the Alliance War.",
+["name"] = "Alliance War August Palatine",
+},
+[110] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Legate in the Alliance War.",
+["name"] = "Alliance War Legate",
+},
+[111] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of General in the Alliance War.",
+["name"] = "Alliance War General",
+},
+[112] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Warlord in the Alliance War.",
+["name"] = "Alliance War Warlord",
+},
+[113] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn the rank of Grand Warlord in the Alliance War.",
+["name"] = "Alliance War Grand Warlord",
+},
+[882] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 50,
+["description"] = "Defeat the Emperor of your Home Campaign in the Alliance War.",
+["name"] = "Emperor Assassin",
+},
+[115] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Score a Revenge kill in the Alliance War.",
+["name"] = "First Revenge",
+},
+[116] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Score 10 Revenge kills in the Alliance War.",
+["name"] = "Sweet Vengeance",
+},
+[117] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Score your first Avenge kill in the Alliance War.",
+["name"] = "First Avenge",
+},
+[118] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Score 10 Avenge kills in the Alliance War.",
+["name"] = "Vindication",
+},
+[119] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn a kill when below 5 percent health in the Alliance War.",
+["name"] = "Close Call Kill",
+},
+[120] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn 5 kills when below 5 percent health in the Alliance War.",
+["name"] = "Five Under Five",
+},
+[121] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Earn 10 kills when below 5 percent health in the Alliance War.",
+["name"] = "Ten Under Five",
+},
+[122] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Capture your first keep in the Alliance War.",
+["name"] = "Keep Capture",
+},
+[904] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 50,
+["description"] = "Defeat an Emperor from any campaign in the Alliance War.",
+["name"] = "Emperor Slayer",
+},
+[935] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 50,
+["description"] = "Dominate the Alliance War battlefield and become Emperor of Tamriel. \n\nLong may you reign!",
+["name"] = "Emperor!",
+},
+[717] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 10,
+["description"] = "Kill 10 enemy Nightblades.",
+["name"] = "Nightblade Slayer",
+},
+[961] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 15,
+["description"] = "Kill 100 enemy Templars.",
+["name"] = "Grand Templar Slayer",
+},
+[959] =
+{
+["Category"] = "Alliance War",
+["Category_ID"] = 4,
+["points"] = 15,
+["description"] = "Kill 100 enemy Nightblades.",
+["name"] = "Grand Nightblade Slayer",
+},
+},
+["Justice"] =
+{
+[1224] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Kill a citizen of Tamriel.",
+["name"] = "Murderer",
+},
+[1225] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Kill fifty citizens of Tamriel.",
+["name"] = "Serial Killer",
+},
+[1226] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Kill one hundred citizens of Tamriel.",
+["name"] = "Mass Murderer",
+},
+[1227] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Kill a livestock cow, bull, or ox.",
+["name"] = "Ground Beef",
+},
+[1228] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Kill a livestock chicken, or bantam guar.",
+["name"] = "Poultry Assassin",
+},
+[1229] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Kill a livestock goat or sheep.",
+["name"] = "Wicked Shepherd",
+},
+[1230] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Kill a livestock pig.",
+["name"] = "Hog Killer",
+},
+[1231] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Kill a livestock guar.",
+["name"] = "Guar Slayer",
+},
+[1232] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Kill a total of ten livestock animals.",
+["name"] = "Butcher",
+},
+[1233] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Kill a total of one hundred livestock animals.",
+["name"] = "Slaughterer",
+},
+[1234] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Kill a total of five hundred livestock animals.",
+["name"] = "Livestock Mass Murderer",
+},
+[1190] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Successfully pickpocket any citizen of Tamriel.",
+["name"] = "Pocket Picker",
+},
+[1191] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 10,
+["description"] = "Successfully pickpocket one hundred citizens of Tamriel.",
+["name"] = "Purse Snatcher",
+},
+[1192] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 15,
+["description"] = "Successfully pickpocket one thousand citizens of Tamriel.",
+["name"] = "Sneak Thief Extraordinaire",
+},
+[1193] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Successfully escape a guard after choosing the \"Flee\" option in the Accost Dialogue Window.",
+["name"] = "Cut and Run",
+},
+[1194] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 15,
+["description"] = "Successfully escape the guards a total of one hundred times after choosing the \"Flee\" option in the Accost Dialogue Window.",
+["name"] = "Escape Artist",
+},
+[1195] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 15,
+["description"] = "Make a one time transaction of 1,000 gold or greater for crimes committed against the citizens of Tamriel.",
+["name"] = "Make Amends",
+},
+[1196] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 15,
+["description"] = "Pay a total of 100,000 gold to the Fence OR to the Tamriel Guards to clear your criminal record.",
+["name"] = "Felonious Recompense",
+},
+[1197] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Earn 1,000 gold by selling stolen goods to a Fence.",
+["name"] = "Ill-Gotten Gains",
+},
+[1198] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Break into and loot the contents of a safebox.",
+["name"] = "Safebox Pilferer",
+},
+[1199] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 10,
+["description"] = "Break into and loot the contents of ten safeboxes.",
+["name"] = "Safebox Looter",
+},
+[1200] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 15,
+["description"] = "Break into and loot the contents of one hundred safeboxes.",
+["name"] = "Safebox Cracker",
+},
+[1201] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 15,
+["description"] = "Earn 100,000 gold by selling stolen goods to a Fence.",
+["name"] = "Illicit Entrepreneur",
+},
+[1202] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 50,
+["description"] = "Earn 1,000,000 gold by selling stolen goods to a Fence.",
+["name"] = "Black Market Mogul",
+},
+[1203] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Spend 100 gold to launder stolen items through a Fence.",
+["name"] = "Loot Cleaner",
+},
+[1204] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 10,
+["description"] = "Spend 1,000 gold to launder stolen items through a Fence.",
+["name"] = "Loot Sanitizer",
+},
+[1205] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 15,
+["description"] = "Spend 10,000 gold to launder stolen items through a Fence.",
+["name"] = "Illustrious Launderer",
+},
+[1206] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Successfully pick the lock on a locked door.",
+["name"] = "Home Trespasser",
+},
+[1207] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 10,
+["description"] = "Successfully pick the locks on fifty locked doors.",
+["name"] = "Sneaky Housebreaker",
+},
+[1208] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 15,
+["description"] = "Successfully pick the locks on one hundred locked doors.",
+["name"] = "Master Burglar",
+},
+[1209] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "A guard repossess an article of stolen clothing that you were wearing.",
+["name"] = "Disrobed Discipline",
+},
+[1210] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 10,
+["description"] = "A guard repossess stolen clothing from all your armor slots at the same time.",
+["name"] = "Indecent Exposure",
+},
+[1211] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 5,
+["description"] = "Steal an item of Fine quality.",
+["name"] = "Discerning Pilferer",
+},
+[1212] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 10,
+["description"] = "Steal an item of Superior quality.",
+["name"] = "Discriminating Plunderer",
+},
+[1213] =
+{
+["Category"] = "Justice",
+["Category_ID"] = 3,
+["points"] = 15,
+["description"] = "Steal an item of Epic quality.",
+["name"] = "Grand Larcenist",
+},
+},
+["Dungeons"] =
+{
+[11] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Akash gra-Mal, Chokethorn, and Canonreeve Oraneth in Elden Hollow.",
+["name"] = "Elden Hollow Vanquisher",
+},
+[272] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat the Ancient Wamasu, the Lamia Songstress, and the Lamia Queen.",
+["name"] = "Arx Corinium Vanquisher",
+},
+[1049] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in Root Sunder.",
+["name"] = "Root Sunder Conqueror",
+},
+[1050] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the Champions in Rulanyil's Fall.",
+["name"] = "Rulanyil's Fall Conqueror",
+},
+[1051] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in Crimson Cove.",
+["name"] = "Crimson Cove Conqueror",
+},
+[1052] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in The Vile Manse.",
+["name"] = "The Vile Manse Conqueror",
+},
+[1053] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in Bad Man's Hallows.",
+["name"] = "Bad Man's Hallows Conqueror",
+},
+[1054] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in Bonesnap Ruins.",
+["name"] = "Bonesnap Ruins Conqueror",
+},
+[1055] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in Razak's Wheel.",
+["name"] = "Razak's Wheel Conqueror",
+},
+[1056] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in Village of the Lost.",
+["name"] = "Village of the Lost Conqueror",
+},
+[545] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat the Maw of the Infernal, Keeper Imiril, and High Kinlord Rilis in the Banished Cells.",
+["name"] = "Banished Cells Champion",
+},
+[1058] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in Rulanyil's Fall.",
+["name"] = "Rulanyil's Fall Vanquisher",
+},
+[1059] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in Crimson Cove.",
+["name"] = "Crimson Cove Vanquisher",
+},
+[1060] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in The Vile Manse.",
+["name"] = "The Vile Manse Vanquisher",
+},
+[1061] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in Bad Man's Hallows.",
+["name"] = "Bad Man's Hallows Vanquisher",
+},
+[294] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat the Goblin War Chief and the Dreugh King at the Fungal Grotto.",
+["name"] = "Fungal Grotto Vanquisher",
+},
+[551] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat the Infernal Guardian, the Warden of the Shrine, and Razor Master Erthas in the City of Ash.",
+["name"] = "City of Ash Vanquisher",
+},
+[1064] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in Village of the Lost.",
+["name"] = "Village of the Lost Vanquisher",
+},
+[299] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in Sanguine's Demesne.",
+["name"] = "Sanguine's Demesne Vanquisher",
+},
+[300] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all six champions in Sanguine's Demesne.",
+["name"] = "Sanguine's Demesne Conqueror",
+},
+[301] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat the Swarm Mother and the Whisperer in Spindleclutch.",
+["name"] = "Spindleclutch Vanquisher",
+},
+[1070] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the Public Dungeon champions in the Daggerfall Covenant.",
+["name"] = "Daggerfall Covenant Conqueror",
+},
+[1071] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Complete the listed Speed Challenges",
+["name"] = "Complete All Speed Challenges",
+},
+[1072] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Complete the listed Death Challenges",
+["name"] = "Complete All Death Challenges",
+},
+[1073] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all the bosses throughout the Group Dungeons in the Ebonheart Pact.",
+["name"] = "Vanquisher of the Pact",
+},
+[1074] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all the bosses throughout the Group Dungeons in the Daggerfall Covenant.",
+["name"] = "Vanquisher of the Covenant",
+},
+[1075] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all the bosses throughout the Group Dungeons in the Aldmeri Dominion.",
+["name"] = "Vanquisher of the Dominion",
+},
+[1078] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Completed a Weekly Trial",
+["name"] = "Weekly Trial Complete",
+},
+[1079] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Completed a Weekly Trial within 33 minutes.",
+["name"] = "Time Trial: Weekly",
+},
+[1080] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Completed the Hel Ra Citadel within a time limit of 33 minutes.",
+["name"] = "Time Trial: Hel Ra Citadel",
+},
+[1081] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Completed the Aetherian Archive within a time limit of 33 minutes.",
+["name"] = "Time Trial: Aetherian Archive",
+},
+[570] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Ulguna Soul-Reaver, Grothdarr, Iskra the Omen, and the Mad Architect in the Vaults of Madness.",
+["name"] = "Vaults of Madness Vanquisher",
+},
+[1084] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "In Veteran Crypt of Hearts, allow four of Nerien'eth's Students to survive until he takes the Ebony Blade before defeating them all.",
+["name"] = "The Blade's Edge",
+},
+[325] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Shadowrend and High Kinlord Rilis in the Banished Cells.",
+["name"] = "Vanquisher of the Banished Cells",
+},
+[78] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Foreman Llothan, the Hive Lord, and the Sentinel of Rkugamz.",
+["name"] = "Darkshade Caverns Vanquisher",
+},
+[79] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Investigator Garron, Varain Pellingare and Allene Pellingare.",
+["name"] = "Wayrest Sewers Vanquisher",
+},
+[80] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Archmaster Siniel, the Bone Leviathan, and the Ilambris Twins.",
+["name"] = "Crypt of Hearts Vanquisher",
+},
+[81] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Valaran Stormcaller, Stormfist, and Admiral Neidir.",
+["name"] = "Tempest Island Vanquisher",
+},
+[850] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat 200 spiders in Veteran Fungal Grotto dungeon.",
+["name"] = "Veteran Arachnid Slayer",
+},
+[851] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Obsidian Warriors in Veteran Fungal Grotto dungeon.",
+["name"] = "Veteran Obsidian Slayer",
+},
+[340] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all other mini-boss and boss enemies in Veteran Fungal Grotto before defeating Vila Theran within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Spider Cultists.",
+["name"] = "Veteran Fungal Grotto Assassin",
+},
+[853] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Dremora in Veteran Banished Cells dungeon.",
+["name"] = "Rilis Dremora Slayer",
+},
+[342] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat Vila Theran without any member of your party using the protection of the Obsidian Husk.",
+["name"] = "Fearless Assaulter",
+},
+[343] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Gamyne Bandu, the Spawn of Mephala, and Vila Theran.",
+["name"] = "Veteran Shadow Slayer",
+},
+[856] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat 200 kwama in Veteran Darkshade Caverns dungeon.",
+["name"] = "Veteran Kwama Slayer",
+},
+[857] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Dwarven constructs in Veteran Darkshade Caverns dungeon.",
+["name"] = "Veteran Construct Slayer",
+},
+[858] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat banekin in Veteran Elden Hollow dungeon.",
+["name"] = "Veteran Banekin Slayer",
+},
+[859] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat lurchers in Veteran Elden Hollow dungeon.",
+["name"] = "Veteran Lurcher Slayer",
+},
+[860] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat zombies in Veteran Wayrest Sewers dungeon.",
+["name"] = "Veteran Zombie Slayer",
+},
+[861] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat bone colossuses in Veteran Wayrest Sewers dungeon.",
+["name"] = "Veteran Colossus Slayer",
+},
+[1123] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "You defeated the Serpent Celestial.",
+["name"] = "Sanctum Ophidia Completed",
+},
+[1124] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Completed the Sanctum Ophidia within a time limit of 33 minutes.",
+["name"] = "Time Trial: Sanctum Ophidia",
+},
+[357] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat the Guardian of the Flame, the Empowered Frost Atronach, and Drodda of Icereach at Direfrost Keep.",
+["name"] = "Direfrost Keep Vanquisher",
+},
+[870] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 5,
+["description"] = "",
+["name"] = "Hel Ra Citadel: The War Horn",
+},
+[874] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat Zatalguch in the Village of the Lost.",
+["name"] = "Lost Village Group Challenge",
+},
+[876] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Ruzozuzalpamaz, the Brothers Ilambris and the Ilambris Amalgam, and Nerien'eth in Veteran Crypt of Hearts.",
+["name"] = "Crypt of Hearts Conqueror",
+},
+[878] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 15,
+["description"] = "Complete Veteran City of Ash by defeating Horvantud the Fire Maw, the Ash Titan, and Valkyn Skoria.",
+["name"] = "Veteran City of Ash",
+},
+[367] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in Crow's Wood.",
+["name"] = "Crow's Wood Vanquisher",
+},
+[368] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of Crow's Wood's champions.",
+["name"] = "Crow's Wood Conqueror",
+},
+[369] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in the Forgotten Crypts.",
+["name"] = "Forgotten Crypts Vanquisher",
+},
+[370] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in the Forgotten Crypts.",
+["name"] = "Forgotten Crypts Conqueror",
+},
+[371] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat  the Lonely Giant and his angry mammoths in the Lion's Den.",
+["name"] = "Lion's Den Group Event",
+},
+[372] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat Fight-Master Grel and his adepts at Sanguine's Demesne.",
+["name"] = "Sanguine's Group Event",
+},
+[373] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in the Lion's Den.",
+["name"] = "Lion's Den Vanquisher",
+},
+[374] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in the Lion's Den.",
+["name"] = "Lion's Den Conqueror",
+},
+[375] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in the Hall of the Dead.",
+["name"] = "Hall of the Dead Vanquisher",
+},
+[376] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in the Hall of the Dead.",
+["name"] = "Hall of the Dead Conqueror",
+},
+[377] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in Obsidian Scar.",
+["name"] = "Obsidian Scar Vanquisher",
+},
+[378] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in Obsidian Scar.",
+["name"] = "Obsidian Scar Conqueror",
+},
+[379] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Destroy the Soul Wraiths to summon and slay Ghyslain in Crow's Wood.",
+["name"] = "Crow's Wood Group Event",
+},
+[380] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Slay the Giant Snake Mother in Bad Man's Hallows.",
+["name"] = "Bad Man's Group Event",
+},
+[381] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat Reynir the Destroyer and his minions in the Hall of the Dead.",
+["name"] = "Hall of the Dead Group Event",
+},
+[1150] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 5,
+["description"] = "Complete one Undaunted Pledge.",
+["name"] = "Pledge Taker",
+},
+[1151] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Complete 10 Undaunted Pledges.",
+["name"] = "Returned Undaunted",
+},
+[1152] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 15,
+["description"] = "Complete 50 Undaunted Pledges.",
+["name"] = "Undaunted, Daily",
+},
+[1153] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Complete 100 Undaunted Pledges.",
+["name"] = "Maj's Cohort",
+},
+[1154] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 5,
+["description"] = "Complete one Veteran Undaunted Pledge.",
+["name"] = "Prove Them Wrong",
+},
+[1155] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Complete 10 Veteran Undaunted Pledges.",
+["name"] = "You Still Draw Breath",
+},
+[388] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Eradicate the Kwama infestation and kill the Kwama Guardians in the Forgotten Crypts.",
+["name"] = "Forgotten Crypts Group Event",
+},
+[389] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in Toothmaul Gully.",
+["name"] = "Toothmaul Gully Vanquisher",
+},
+[390] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in Toothmaul Gully.",
+["name"] = "Toothmaul Gully Conqueror",
+},
+[391] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Quintus Verres, Tremorscale, and the Guardian's Constructs at Volenfell.",
+["name"] = "Volenfell Vanquisher",
+},
+[393] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat the Pack, the Beast Master, and the Lava Queen at the Blessed Crucible.",
+["name"] = "Blessed Crucible Vanquisher",
+},
+[395] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in the Lost City of the Na-Totambu.",
+["name"] = "Lost City Vanquisher",
+},
+[396] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the champions in the Lost City of the Na-Totambu.",
+["name"] = "Lost City Conqueror",
+},
+[410] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Atarus, the Roost Mother, and Captain Blackheart in Blackheart Haven.",
+["name"] = "Blackheart Haven Vanquisher",
+},
+[417] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Longclaw, Foulhide, and Selene in Selene's Web.",
+["name"] = "Selene's Web Vanquisher",
+},
+[421] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat the Blood Golem, Praxin's Ghost, and Vorenor Winterbourne in Spindleclutch.",
+["name"] = "Spindleclutch Vanquisher",
+},
+[678] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Malubeth the Scourger, Garron the Returned, and Varaine and Allene Pellingare in the Wayrest Sewers.",
+["name"] = "Wayrest Sewers Vanquisher",
+},
+[679] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all other mini-boss and boss enemies in Veteran Wayrest Sewers before defeating Allene and Varaine Pellingare within twenty minutes of starting the dungeon. Timer starts when players engage the first necromancer and his minions.",
+["name"] = "Veteran Wayrest Sewers Assassin",
+},
+[681] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat 15 Zombies during the battle with Allene Pellingare and Varaine Pellingare before defeating the twins themselves in Veteran Wayrest Sewers.",
+["name"] = "Pellingare Ghoul Slayer",
+},
+[939] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat 250 Spiderkith in the Veteran Crypt of Hearts dungeon.",
+["name"] = "Veteran Spiderkith Slayer",
+},
+[940] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat 50 Flesh Atronachs in the Veteran Crypt of Hearts dungeon.",
+["name"] = "Veteran Flesh Atronach Slayer",
+},
+[941] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat Ibelgast, the Chamber Guardian, Mezeluth, Ruzozuzalpamaz, the Brothers Ilambris and the Ilambris Amalgam, and Nerien'eth within thirty minutes of starting Veteran Crypt of Hearts. The timer starts when the gate opens.",
+["name"] = "Veteran Crypt of Hearts Assassin",
+},
+[942] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all other mini-boss and boss enemies in Veteran Crypt of Hearts before defeating Nerien'eth without suffering a group member death.",
+["name"] = "Deadly Crypt Survivor",
+},
+[691] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Kill 100 named enemies in dungeons.",
+["name"] = "Dungeon Ruler",
+},
+[445] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat the undead hordes of Hergor the Fallen at Rulanyil's Fall.",
+["name"] = "Rulanyil's Fall Group Event",
+},
+[446] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all other mini-boss and boss enemies in Veteran Spindleclutch before defeating Vorenor Winterbourne within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Thralled warriors.",
+["name"] = "Veteran Spindleclutch Assassin",
+},
+[448] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat Vorenor Winterbourne without killing any of the innocent victims held captive in his lair.",
+["name"] = "Compassionate Hero",
+},
+[449] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all other mini-boss and boss enemies in Veteran Banished Cells before defeating High Kinlord Rilis within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Banished skeletons.",
+["name"] = "Veteran Banished Cells Assassin",
+},
+[451] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat High Kinlord Rilis while three or more Daedroth still live.",
+["name"] = "Cursed Hero",
+},
+[708] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat the flesh atronach at Razak's Wheel.",
+["name"] = "Razak's Wheel Group Event",
+},
+[709] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat 1000 named enemies in Dungeons.",
+["name"] = "Dungeon Lord",
+},
+[710] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat 1000 enemies in Dungeons.",
+["name"] = "Dungeon Marauder",
+},
+[711] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat 10,000 enemies in Dungeons.",
+["name"] = "Dungeon Annihilator",
+},
+[713] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat the Orc, Zilbash the Deceiver, at Obsidian Scar.",
+["name"] = "Obsidian Scar Group Event",
+},
+[714] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat the Eternal One in the Bonesnap Ruins.",
+["name"] = "Bonesnap Ruins Group Event",
+},
+[459] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Dark Root, Murklight, and Bogdan the Nightflame in Elden Hollow.",
+["name"] = "Elden Hollow Conqueror",
+},
+[460] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat Flat Tooth and his minions at Crimson Cove.",
+["name"] = "Crimson Cove Group Event",
+},
+[461] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all other mini-boss and boss enemies in Veteran Elden Hollow before defeating Bogdan the Nightflame within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Daedra.",
+["name"] = "Veteran Elden Hollow Assassin",
+},
+[463] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat Bogdan the Nightflame after reading the Opus of Torment.",
+["name"] = "Closing the Book",
+},
+[464] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat the Transmuted Hive Lord, Grobull the Transmuted, and the Engine Guardian in Darkshade Caverns.",
+["name"] = "Darkshade Caverns Vanquisher",
+},
+[465] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all other mini-boss and boss enemies in Veteran Darkshade before defeating the Engine Guardian within twenty minutes of starting the dungeon. Timer starts when players engage the first group of kwama.",
+["name"] = "Veteran Darkshade Assassin",
+},
+[467] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat the Engine Guardian without anyone in your group activating an Engine Lever.",
+["name"] = "Deadly Engineer",
+},
+[468] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Destroy Bloodroot and its guardians at Toothmaul Gully.",
+["name"] = "Toothmaul Gully Group Event",
+},
+[469] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat the damned creations of Graccus' frost experiments at the Vile Manse.",
+["name"] = "Vile Manse Group Event",
+},
+[470] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat the Bonemonger and its captors in Root Sunder Ruins.",
+["name"] = "Root Sunder Group Event",
+},
+[855] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat flesh atronachs in Veteran Spindleclutch dungeon.",
+["name"] = "Veteran Flesh Atronach Conqueror",
+},
+[707] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Solve the puzzle of the Guardians in the Lost City of the Na-Totambu.",
+["name"] = "Na-Totambu Group Event",
+},
+[990] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "You defeated the Mage Celestial, freeing her from the Serpent's control.",
+["name"] = "Aetherian Archive Completed",
+},
+[991] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "You defeated the Warrior Celestial, freeing him from the Serpent's control.",
+["name"] = "Hel Ra Citadel Completed",
+},
+[854] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat Vampire Thralls in Veteran Spindleclutch dungeon.",
+["name"] = "Veteran Thrall Slayer",
+},
+[1063] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in Razak's Wheel.",
+["name"] = "Razak's Wheel Vanquisher",
+},
+[1062] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in Bonesnap Ruins.",
+["name"] = "Bonesnap Ruins Vanquisher",
+},
+[1068] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the Public Dungeon champions in the Ebonheart Pact.",
+["name"] = "Ebonheart Pact Conqueror",
+},
+[1069] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all of the Public Dungeon champions in the Aldmeri Dominion.",
+["name"] = "Aldmeri Dominion Conqueror",
+},
+[1057] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat three of the champions in Root Sunder.",
+["name"] = "Root Sunder Vanquisher",
+},
+[1082] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Rescue all of the members of the failed Undaunted expedition to the Deadlands of Mehrunes Dagon.",
+["name"] = "Undaunted Rescuer",
+},
+[852] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Kill skeletons in Veteran Banished Cells dungeon.",
+["name"] = "Veteran Bonebreaker",
+},
+[1105] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat 300 Dremora in the Veteran City of Ash dungeon.",
+["name"] = "Mehrunes Dremora Slayer",
+},
+[1106] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Defeat 50 Flame Colossi in the Veteran City of Ash dungeon.",
+["name"] = "Veteran Flame Colossus Slayer",
+},
+[1107] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all other mini-boss and boss enemies in Veteran City of Ash before defeating Valkyn Skoria without suffering a group member death.",
+["name"] = "Deadly Deadlands Survivor",
+},
+[1111] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 5,
+["description"] = "Explore the culinary traditions of the Dremora.",
+["name"] = "Easy as Pie",
+},
+[1108] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Defeat all other mini-boss and boss enemies in Veteran City of Ash before defeating Valkyn Skoria within thirty minutes of starting the dungeon. Timer starts when players enter the Inner Grove.",
+["name"] = "Veteran City of Ash Assassin",
+},
+[749] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Deal 1,000,000 points of damage in Dungeons.",
+["name"] = "Dungeon Damage Dealer",
+},
+[750] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Deal 10,000,000 points of damage in Dungeons.",
+["name"] = "Dungeon Damage Dispenser",
+},
+[751] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Heal 1,000,000 points of damage to allies in Dungeons.",
+["name"] = "Dungeon Healer",
+},
+[752] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Heal 10,000,000 points of damage to allies in Dungeons.",
+["name"] = "Greater Dungeon Healer",
+},
+[753] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Block 1,000,000 points of damage in Dungeons.",
+["name"] = "Dungeon Blocker",
+},
+[754] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Block 10,000,000 points of damage in Dungeons.",
+["name"] = "Greater Dungeon Blocker",
+},
+[1113] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 5,
+["description"] = "",
+["name"] = "Sanctum Ophidia: Feeding Pit",
+},
+[1114] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "In Veteran City of Ash, make a pact with the Frigid Tome, then defeat Valkyn Skoria.",
+["name"] = "A World On Fire",
+},
+[1115] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Deal 1,000,000 points of damage in Trials.",
+["name"] = "Trials Damage Dealer",
+},
+[1116] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Heal 1,000,000 points of damage to allies in Trials.",
+["name"] = "Trials Healer",
+},
+[1117] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Block 1,000,000 points of damage in Trials.",
+["name"] = "Trials Blocker",
+},
+[1136] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "You defeated the Celestial Warrior after enraging him through the destruction of his statue army.",
+["name"] = "Hel Ra Citadel Difficult Mode",
+},
+[1137] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "You defeated the Celestial Mage after taunting her by smashing the Aetherial Orbs.",
+["name"] = "Aetherian Archive Difficult Mode",
+},
+[1138] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "You defeated the Celestial Serpent after desecrating the sacred banners of the Scaled Court",
+["name"] = "Sanctum Ophidia Difficult Mode",
+},
+[1139] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "You have completed Hel Ra Citadel, Aetherian Archive, and Sanctum Ophidia at their highest difficulties.",
+["name"] = "Craglorn Trials Conqueror",
+},
+[1156] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 15,
+["description"] = "Complete 50 Veteran Undaunted Pledges.",
+["name"] = "Death Has Not Claimed You",
+},
+[1157] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Complete 100 Veteran Undaunted Pledges",
+["name"] = "Glirion's Cohort",
+},
+[1158] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 10,
+["description"] = "Reach level 45, attracting the attention of the Undaunted elite.",
+["name"] = "Call of the Undaunted",
+},
+[1159] =
+{
+["Category"] = "Dungeons",
+["Category_ID"] = 7,
+["points"] = 50,
+["description"] = "Complete all the achievements associated with the Veteran City of Ash Dungeon.",
+["name"] = "Deadlands Savvy",
+},
+},
+["Skyshards"] =
+{
+[515] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Stormhaven.",
+["name"] = "Stormhaven Skyshard Hunter",
+},
+[684] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Malabal Tor.",
+["name"] = "Malabal Tor Skyshard Hunter",
+},
+[685] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Reaper's March.",
+["name"] = "Reaper's March Skyshard Hunter",
+},
+[748] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 5,
+["description"] = "Find the Skyshard on top of the mountain in Cyrodiil.",
+["name"] = "Mountain Skyshard Hunter",
+},
+[397] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Stonefalls.",
+["name"] = "Stonefalls Skyshard Hunter",
+},
+[431] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 5,
+["description"] = "Find all 6 Skyshards in Khenarthi's Roost.",
+["name"] = "Khenarthi's Skyshard Hunter",
+},
+[554] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Rivenspire.",
+["name"] = "Rivenspire Skyshard Hunter",
+},
+[683] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Greenshade.",
+["name"] = "Greenshade Skyshard Hunter",
+},
+[556] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Alik'r Desert.",
+["name"] = "Alik'r Desert Skyshard Hunter",
+},
+[557] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Bangkorai.",
+["name"] = "Bangkorai Skyshard Hunter",
+},
+[398] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 5,
+["description"] = "Find all 3 Skyshards in Bleakrock.",
+["name"] = "Bleakrock Skyshard Hunter",
+},
+[687] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Shadowfen.",
+["name"] = "Shadowfen Skyshard Hunter",
+},
+[688] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Eastmarch.",
+["name"] = "Eastmarch Skyshard Hunter",
+},
+[689] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in the Rift.",
+["name"] = "The Rift Skyshard Hunter",
+},
+[686] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Coldharbour.",
+["name"] = "Coldharbour Skyshard Hunter",
+},
+[407] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 5,
+["description"] = "Find all 3 Skyshards in Stros M'Kai.",
+["name"] = "Stros M'Kai Skyshard Hunter",
+},
+[692] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 15 Skyshards in the Ebonheart Pact territory of Cyrodiil.",
+["name"] = "Cyrodiil Pact Skyshard Hunter",
+},
+[405] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 5,
+["description"] = "Find all 3 Skyshards in Bal Foyen.",
+["name"] = "Bal Foyen Skyshard Hunter",
+},
+[694] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 15 Skyshards in the Aldmeri Dominion territory of Cyrodiil.",
+["name"] = "Cyrodiil Aldmeri Skyshard Hunter",
+},
+[695] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Auridon.",
+["name"] = "Auridon Skyshard Hunter",
+},
+[408] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 5,
+["description"] = "Find all 3 Skyshards in Betnikh.",
+["name"] = "Betnikh Skyshard Hunter",
+},
+[409] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Glenumbra.",
+["name"] = "Glenumbra Skyshard Hunter",
+},
+[693] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 15 Skyshards in the Daggerfall Covenant territory of Cyrodiil.",
+["name"] = "Cyrodiil Covenant Skyshards",
+},
+[727] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 12 Skyshards in Lower Craglorn.",
+["name"] = "Lower Craglorn Skyshards",
+},
+[912] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all six Skyshards in Upper Craglorn.",
+["name"] = "Upper Craglorn Skyshards",
+},
+[989] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 50,
+["description"] = "Find all the Skyshards located throughout Tamriel.",
+["name"] = "Tamriel Skyshard Hunter",
+},
+[682] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Grahtwood.",
+["name"] = "Grahtwood Skyshard Hunter",
+},
+[547] =
+{
+["Category"] = "Skyshards",
+["Category_ID"] = 9,
+["points"] = 15,
+["description"] = "Find all 16 Skyshards in Deshaan.",
+["name"] = "Deshaan Skyshard Hunter",
+},
+},
+["A Good Keen Reptile"] =
+{
+},
+["Quests"] =
+{
+[512] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Cleanse the corruption from Valenwood.",
+["name"] = "Valenwood Protector",
+},
+[516] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Defeat Uwafa and reclaim the Ansei Ward.",
+["name"] = "Uwafa's Ruination",
+},
+[517] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Defeat Alasan and restore the Ansei Ward.",
+["name"] = "Alasan's Devastation",
+},
+[518] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Defeat the Withered Hand and reclaim all the Ansei Wards.",
+["name"] = "Ash'abah Hero",
+},
+[905] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Defeat Shada and cleanse the waters of Shada's Tear.",
+["name"] = "Shada's Tear Curse-Breaker",
+},
+[778] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Unravel the mysteries of Rahni'Za, School of Warriors.",
+["name"] = "Champion of Rahni'Za",
+},
+[907] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Prevent a catastrophic explosion of magic from within the Spellscar.",
+["name"] = "Spellscar Defender",
+},
+[524] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Gather all of the Lights of Meridia within Coldharbour.",
+["name"] = "Meridia's Lightbearer",
+},
+[525] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Stop the Maormer from summoning a hurricane to destroy Khenarthi's Roost.",
+["name"] = "Maormer's Bane",
+},
+[511] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "End the Veiled Heritance threat in Greenshade.",
+["name"] = "Veil Lifter",
+},
+[908] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Defeat Yamanu-ko and end the strife in Elinhir.",
+["name"] = "Exalted of Elinhir",
+},
+[145] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Stop the Reachmen from attacking Evermore.",
+["name"] = "Evermore Defender",
+},
+[146] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Liberate the Bangkorai Garrison from the invaders.",
+["name"] = "Bangkorai Garrison Liberator",
+},
+[147] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Rescue High King Emeric from the clutches of Septima Tharn.",
+["name"] = "High King Emeric's Savior",
+},
+[906] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Uncover the secrets hidden within the Seeker's Archive.",
+["name"] = "Tenacious Seeker",
+},
+[154] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Defeat the Omen of the Watchful Eye and lift the paranoia in Alcaire.",
+["name"] = "Dreamslayer",
+},
+[28] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Defeat Faolchu the Changeling and set the city of Camlorn free.",
+["name"] = "Faolchu's Bane",
+},
+[759] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete all quests in Cheydinhal.",
+["name"] = "Cheydinhal Adventurer",
+},
+[536] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Restore the Clanmother to power in Arenthia.",
+["name"] = "Clanmother Inaugurator",
+},
+[537] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Shackle the Dark Mane to his prison beneath Moonmont.",
+["name"] = "Dark Mane Incarcerator",
+},
+[538] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Walk the Two Moons Path with the next Mane.",
+["name"] = "Two Moons Pathwalker",
+},
+[283] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Uncover the Hound's Plan to lure the Green Lady to Silvenar.",
+["name"] = "Hound Hinderer",
+},
+[284] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Save the Silvenar from his captors.",
+["name"] = "Silvenar's Friend",
+},
+[285] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Unite the Silvenar with the Green Lady.",
+["name"] = "Hero of Frond and Leaf",
+},
+[30] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Help the Wyresses remove Angof's corruption from their sacred groves and the Wyrd Tree.",
+["name"] = "Wyrd Friend",
+},
+[31] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Stop Angof the Gravesinger's necromantic plan to conquer Glenumbra.",
+["name"] = "Savior of Glenumbra",
+},
+[952] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You defeated the Worm Cult in the Rift.",
+["name"] = "Shattered Remnants",
+},
+[760] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete all quests in Chorrol and Weynon Priory.",
+["name"] = "Chorrol Weynon Priory Adventurer",
+},
+[34] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 53 quests in Glenumbra.",
+["name"] = "Glenumbra Adventurer",
+},
+[1015] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Defeat Virmaril the Betrayer and his undead legions within Skyreach Catacombs.",
+["name"] = "Vanquisher of Virmaril",
+},
+[758] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete all quests in Bruma.",
+["name"] = "Bruma Adventurer",
+},
+[54] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Complete 500 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+["name"] = "Adventurer",
+},
+[949] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You averted the destruction of Deshaan.",
+["name"] = "Plague Eater",
+},
+[185] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Protect the Argonian eggs so a new generation can be born.",
+["name"] = "Egg Protector",
+},
+[936] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Dismantle the Serpent's forces and vanquish the Exalted Viper.",
+["name"] = "Serpents and Secrets",
+},
+[954] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You ended the nightmares in Stormhaven.",
+["name"] = "Rude Awakening",
+},
+[957] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You defied the will of Molag Bal in Coldharbour.",
+["name"] = "Radiant Champion",
+},
+[362] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Defeat the Daedric army and their leader at Firsthold.",
+["name"] = "Sunder the Third Veil",
+},
+[361] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Infiltrate the Veiled Heritance and discover its secret.",
+["name"] = "Sunder the Second Veil",
+},
+[360] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Execute the traitor at Tanzelwil in the name of Queen Ayrenn.",
+["name"] = "Sunder the First Veil",
+},
+[209] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Destroy Sadal and save Stonefalls.",
+["name"] = "Sadal's Overthrower",
+},
+[943] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You defeated a hidden threat to the Dominion in Auridon.",
+["name"] = "A Rule Unquestioned",
+},
+[944] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You thwarted perilous Daedric schemes in Grahtwood.",
+["name"] = "Iconoclast",
+},
+[945] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You drove corruption from the heart of Valenwood in Greenshade.",
+["name"] = "Spirit of the Bosmer",
+},
+[946] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You restored the Silvenar and the Green Lady to their rightful place in Malabal Tor.",
+["name"] = "Matchmaker",
+},
+[947] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You walked the Two Moons Path in Reaper's March.",
+["name"] = "Hallowed Moons",
+},
+[948] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You imprisoned the Brothers of Strife in Stonefalls.",
+["name"] = "Hearts of Darkness",
+},
+[53] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete 100 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+["name"] = "Explorer",
+},
+[950] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You defeated a great threat to the Hist in Shadowfen.",
+["name"] = "Egg and Root",
+},
+[951] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You prevented a great threat to the Skald-King in Eastmarch.",
+["name"] = "Blood Feud",
+},
+[56] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Complete 1500 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+["name"] = "Indomitable Adventurer",
+},
+[953] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You stopped an insidious cultist plot in Glenumbra.",
+["name"] = "Ritual Destruction",
+},
+[186] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Recover the Mnemic Egg from the Dominion.",
+["name"] = "Mnemic Egg Guardian",
+},
+[59] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 42 quests in Alik'r Desert.",
+["name"] = "Alik'r Desert Adventurer",
+},
+[60] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 36 quests in Bangkorai.",
+["name"] = "Bangkorai Adventurer",
+},
+[61] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete all Daggerfall Covenant achievements.",
+["name"] = "Hero of the Daggerfall Covenant",
+},
+[958] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You drove Imperial forces out of Bangkorai.",
+["name"] = "End of Empire",
+},
+[335] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Crush the Reach's presence in the Rift.",
+["name"] = "Reach Crusher",
+},
+[363] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Kill Merdyndril the Alchemist at Obsidian Gorge and put an end to the Llodos plague.",
+["name"] = "Plague Ender",
+},
+[618] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete all Aldmeri Dominion quest achievements.",
+["name"] = "Hero of the Aldmeri Dominion",
+},
+[194] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Find Bleakrock's missing villagers and send them home.",
+["name"] = "Hero of Bleakrock",
+},
+[617] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete all Ebonheart Pact achievements.",
+["name"] = "Hero of the Ebonheart Pact",
+},
+[616] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 29 quests in Coldharbour.",
+["name"] = "Coldharbour Adventurer",
+},
+[337] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Return Sinmur to his grave.",
+["name"] = "Ysgramor's Prodigy",
+},
+[614] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Stop the Planemeld and defeat Molag Bal's plan of conquest at the Endless Stair.",
+["name"] = "Planemeld Sunderer",
+},
+[613] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Rescue the Great Mage, Vanus Galerion, and help him destroy Molag Bal's Great Shackle,",
+["name"] = "Guardian of the Great Mage",
+},
+[612] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Rescue the last Ayleid King, Laloriaran Dynar, from the Lightless Oubliette.",
+["name"] = "Light of the Ayleid King",
+},
+[201] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Destroy Balreth and return the Brother of Strife to slumber.",
+["name"] = "Balreth's Bane",
+},
+[611] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 40 quests in Malabal Tor.",
+["name"] = "Malabal Tor Adventurer",
+},
+[610] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 40 quests in Greenshade.",
+["name"] = "Greenshade Adventurer",
+},
+[204] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Slay General Serien and stop the Covenant invasion of Stonefalls.",
+["name"] = "General Serien's Demise",
+},
+[589] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Kill Reezal-Jul at Camp Tamrith and save the Crestshade refugees.",
+["name"] = "Hero of House Tamrith",
+},
+[590] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Kill Lady Lleraya Montclair at Northpoint and set Baron Dorell's city free.",
+["name"] = "Hero of House Dorell",
+},
+[591] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Kill Baron Wylon Montclair and destroy the Lightless Remnant at the Doomcrag to save Rivenspire.",
+["name"] = "Sword of Ravenwatch",
+},
+[336] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Defeat Thallik Wormfather and scatter the Worm Cult.",
+["name"] = "Wormsquasher",
+},
+[593] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 59 quests in Stonefalls.",
+["name"] = "Stonefalls Adventurer",
+},
+[600] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 43 quests in Eastmarch.",
+["name"] = "Eastmarch Adventurer",
+},
+[595] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 55 quests in Deshaan.",
+["name"] = "Deshaan Adventurer",
+},
+[596] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 51 quests in Shadowfen.",
+["name"] = "Shadowfen Adventurer",
+},
+[597] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Kill Lob the Cleaver and befriend the Giants at the Cradlecrush Arena.",
+["name"] = "Giant-Friend",
+},
+[598] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Save Jorunn the Skald-King at Mistwatch Tower.",
+["name"] = "Skald-King's Salvation",
+},
+[599] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Defeat Fildgor Orcthane at Skuldafn and earn the title of Arrow of Jorunn the Skald-King.",
+["name"] = "Skald-King's Arrow",
+},
+[1112] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Complete the Gray Passage pilgrimage within the alloted time limit.",
+["name"] = "Craglorn Pilgrim",
+},
+[156] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Defeat the Omen of Counting Stars and end the obsessions plaguing Gavaudon.",
+["name"] = "Azura's Ally",
+},
+[602] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 45 quests in Reaper's March.",
+["name"] = "Reaper's March Adventurer",
+},
+[603] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 61 quests in the Rift.",
+["name"] = "The Rift Adventurer",
+},
+[604] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 37 quests in Auridon.",
+["name"] = "Auridon Adventurer",
+},
+[605] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Free Southpoint from the influence of the Daedric Prince, Sheogorath.",
+["name"] = "Southpoint Savior",
+},
+[606] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Retrieve the Heart of Anumaril from the Reliquary of Stars.",
+["name"] = "Reliquary Retriever",
+},
+[607] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Free Nairume from her prison and retrieved Rajhin's Mantle.",
+["name"] = "Hero of Falinesti",
+},
+[608] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 38 quests in Grahtwood.",
+["name"] = "Grahtwood Adventurer",
+},
+[993] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete Main Quest Chapter 1",
+["name"] = "Soul Shriven in Coldharbour",
+},
+[994] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete Main Quest Chapter 1.5",
+["name"] = "The Harborage",
+},
+[995] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete Main Quest Chapter 2",
+["name"] = "Daughter of Giants",
+},
+[996] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete Main Quest Chapter 2.5",
+["name"] = "Chasing Shadows",
+},
+[997] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete Main Quest Chapter 3",
+["name"] = "Castle of the Worm",
+},
+[998] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete Main Quest Chapter 3.5",
+["name"] = "The Tharn Speaks",
+},
+[999] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete Main Quest Chapter 4",
+["name"] = "The Halls of Torment",
+},
+[1000] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete Main Quest Chapter 4.5",
+["name"] = "The Valley of Blades",
+},
+[1001] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete Main Quest Chapter 5",
+["name"] = "The Shadow of Sancre Tor",
+},
+[1002] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete Main Quest Chapter 5.5",
+["name"] = "Council of the Five Companions",
+},
+[1003] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete Main Quest Chapter 6",
+["name"] = "The God of Schemes",
+},
+[364] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Free the Tribunal Temple from invading Daedric forces.",
+["name"] = "Temple Knight",
+},
+[365] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Kill Magistrix Vox at Eidolon's Hollow and restore peace to Deshaan.",
+["name"] = "Vox Slayer",
+},
+[956] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You put the dead to rest in Alik'r.",
+["name"] = "Consecrated Ground",
+},
+[955] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "You ended the blood-curse and restored order in Rivenspire.",
+["name"] = "Curse Breaker",
+},
+[58] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 42 quests in Rivenspire.",
+["name"] = "Rivenspire Adventurer",
+},
+[57] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete 60 quests in Stormhaven.",
+["name"] = "Stormhaven Adventurer",
+},
+[184] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Destroy the Dominion's ability to create Skin-Stealers.",
+["name"] = "Skin-Stealer Destroyer",
+},
+[55] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Complete 1000 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+["name"] = "Master Adventurer",
+},
+[628] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete all of the quest achievements across Tamriel.",
+["name"] = "Tamriel Expert Adventurer",
+},
+[52] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Complete 50 Quests.\n\nNote: Repeatable quests only count towards this achievement the first time they are completed.",
+["name"] = "Quester",
+},
+[1014] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Defeat Exarch Arnoth and clear Skyreach Hold of the Scaled Court and its allies.",
+["name"] = "Shatterer of Scales",
+},
+[1143] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Eliminate the threat of the Serpent and his Scaled Court throughout all of Craglorn.",
+["name"] = "Craglorn Completist",
+},
+[1016] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 15,
+["description"] = "Defeat Aetherion and restore the Nedic wards within Skyreach Pinnacle.",
+["name"] = "Warden of the Pinnacle",
+},
+[761] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete all quests in Cropsford.",
+["name"] = "Cropsford Adventurer",
+},
+[762] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Complete all quests in Vlastarus.",
+["name"] = "Vlastarus Adventurer",
+},
+[415] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 10,
+["description"] = "Recruit all three famous privateers on Stros M'Kai.",
+["name"] = "Famed Recruiter",
+},
+[155] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Return the Dream Shard to Pariah Abbey and restore peace to Menevia.",
+["name"] = "Spirit Warden Champion",
+},
+[909] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Discover why the Celestials have appeared in Craglorn.",
+["name"] = "Celestial Investigator",
+},
+[510] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 5,
+["description"] = "Protect the Court of the Wilderking.",
+["name"] = "Court Ranger",
+},
+[767] =
+{
+["Category"] = "Quests",
+["Category_ID"] = 10,
+["points"] = 50,
+["description"] = "Complete all quest achievements in Cyrodiil.",
+["name"] = "Cyrodiil Champion",
+},
+
+}
diff --git a/data/en.lua b/data/en.lua
new file mode 100644
index 0000000..2f98091
--- /dev/null
+++ b/data/en.lua
@@ -0,0 +1,104 @@
+Area_names = {
+	[1] = { short= "EP",
+			medium = "Pact",
+			long = "Ebonheart Pact"},
+	[2] = { short= "DC",
+			medium = "Covenant",
+			long = "Daggerfall Covenant"},
+	[3] = { short= "AD",
+			medium = "Dominion",
+			long = "Aldmeri Dominion"},
+	[4] = { short= "CH",
+			medium = "Coldharbour",
+			long = "Coldharbour"},
+	[5] = { short= "CRAG",
+			medium = "Craglorn",
+			long = "Craglorn"},
+}
+	L = {
+		GrpDungeon = "Grp Dungeon",
+		PubDungeon = "Pub Dungeon",
+		VetDungeon = "Vet Dungeon",
+		Leveling  = "Leveling",
+		Male = "Male",
+		Female = "Female",
+		LLog = "Last Login: ",
+		TPlayed = "Time Played: ",
+		Hrs = "Hours.",
+		Level = "Level",
+		TimesLeveled = "Times Leveled",
+		FirstLevel = "First Level",
+		Visits = "Visits",
+		FirstVisited = "First Visited",
+		Created = "Created: ",
+		PTime = "Play Time (Hr)",
+		Start = "Start Date",
+		Deaths = "Deaths",
+		APts = "Ach Points",
+		GrpLab = "Levels are Minimum, scales to leader",
+		PubLab = "Conqueror Achievement",
+		VetLab = "All are V1-V12 except City of Ash which is V13-V14",
+		LogTab = "System Log",
+		TStamp = "Time Stamp" ,
+		title = "History For  ",
+		Welcome = "Welcome to HisDad\'s offline history viewer.",
+		FirstDeath = "First Death",
+		SelectA = "Select Account",
+		Locations = "Locations",
+		Location = "Location"
+	}
+
+
+
+pub_names = {
+--EP
+	["11"]= "Crow's Wood",
+	["21"]= "Forgotten Crypts",
+	["31"]= "Sanguine's Demesne",
+	["41"]= "Hall of the Dead" ,
+	["51"]= "Lion's Den",
+--DC
+	["12"]= "Bad Man's Hallows" ,
+	["22"]= "Bonesnap Ruins" ,
+	["32"]= "Obsidian Scar" ,
+	["42"]= "Lost City" ,
+	["52"]= "Razaks Wheel" ,
+--AD
+	["13"]= "Toothmall Gully" ,
+	["23"]= "Root Sunder Ruins" ,
+	["33"]= "Rulanyil's Fall" ,
+	["43"]= "Crimson Cove" ,
+	["53"]= "The Vile Manse" ,
+--Coldharbour
+	["54"]= "Village of the Lost" ,
+	}
+
+grp_names = {
+--EP
+	["11"]= "Fungal Grotto",
+	["21"]= "Darkshade Caverns",
+	["31"]= "Arx Corinum",
+	["41"]= "Direfrost Keep",
+	["51"]= "Blessed Crucible",
+--DC
+	["12"]= "Spindleclutch",
+	["22"]= "Wayrest Sewers",
+	["32"]= "Crypt of Hearts",
+	["42"]= "Volenfell",
+	["52"]= "Blackheart Haven",
+--AD
+	["13"]= "Banished Cells",
+	["23"]= "Elden Hollow",
+	["33"]= "City of Ash",
+	["43"]= "Tempest Island",
+	["53"]= "Selene's Web",
+--Coldharbour
+	["54"]= "Vaults of Madness",
+--Craglorn
+	["15"] = "Hel Ra Citadel",
+	["25"] = "Aetherian Archive",
+	["35"] = "Sanctum Ophidia",
+	["45"] = "Dragonstar Arena",
+}
+
+dofile "en_data.lua"		--Achievement text dumped from the game.
\ No newline at end of file
diff --git a/en.lua b/en.lua
deleted file mode 100644
index 5e74517..0000000
--- a/en.lua
+++ /dev/null
@@ -1,367 +0,0 @@
-Area_names = {
-	[1] = { short= "EP",
-			medium = "Pact",
-			long = "Ebonheart Pact"},
-	[2] = { short= "DC",
-			medium = "Covenant",
-			long = "Daggerfall Covenant"},
-	[3] = { short= "AD",
-			medium = "Dominion",
-			long = "Aldereri Dominion"},
-	[4] = { short= "CH",
-			medium = "Coldharbour",
-			long = "Coldharbour"},
-	[5] = { short= "CRAG",
-			medium = "Craglorn",
-			long = "Craglorn"},
-}
-	L = {
-		GrpDungeon = "Grp Dungeon",
-		PubDungeon = "Pub Dungeon",
-		VetDungeon = "Vet Dungeon",
-		Leveling  = "Leveling",
-		Male = "Male",
-		Female = "Female",
-		LLog = "Last Login: ",
-		TPlayed = "Time Played: ",
-		Hrs = "Hours.",
-		Level = "Level",
-		TimesLeveled = "Times Leveled",
-		FirstLevel = "First Level",
-		Visits = "Visits",
-		FirstVisited = "First Visited",
-		Created = "Created: ",
-		PTime = "Play Time (Hr)",
-		Start = "Start Date",
-		Deaths = "Deaths",
-		APts = "Ach Points",
-		GrpLab = "Levels are Minimum, scales to leader",
-		PubLab = "Conqueror Achievement",
-		VetLab = "All are V1-V12 except City of Ash which is V13-V14",
-		LogTab = "System Log",
-		TStamp = "Time Stamp" ,
-		title = "History For  ",
-		Welcome = "Welcome to HisDad\'s offline history viewer.",
-		FirstDeath = "First Death",
-		SelectA = "Select Account",
-		Locations = "Locations",
-		Location = "Location"
-	}
-
-
-
-	pub_dat = {
-	[368]= {L=1, C=1, name="Crow's Wood" },
-	[370]= {L=2, C=1, name="Forgotten Crypts" },
-	[300]= {L=3, C=1, name="Sanguine's Demesne" },
-	[376]= {L=4, C=1, name="Hall of the Dead" },
-	[374]= {L=5, C=1, name="Lion's Den" },
-
-	[1053]= {L=1, C=2, name="Bad Man's Hallows" },
-	[1054]= {L=2, C=2, name="Bonesnap Ruins" },
-	[378]= {L=3, C=2, name="Obsidian Scar" },
-	[396]= {L=4, C=2, name="Lost City" },
-	[1055]= {L=5, C=2, name="Razaks Wheel" },
-
-	[390]= {L=1, C=3, name="Toothmall Gully" },
-	[1049]= {L=2, C=3, name="Root Sunder Ruins" },
-	[1069]= {L=3, C=3, name="Rulanyil's Fall" },
-	[1051]= {L=4, C=3, name="Crimson Cove" },
-	[1052]= {L=5, C=3, name="The Vile Manse" },
-
-	[1056]= {L=5, C=4, name="Village of the Lost" },
-	}
-
-	grp_dat = {
-	[294]= {L=1, C=1, name="Fungal Grotto" },
-	[78]= {L=2, C=1, name="Darkshade Caverns" },
-	[272]= {L=3, C=1, name="Arx Corinum" },
-	[357]= {L=4, C=1, name="Direfrost Keep" },
-	[393]= {L=5, C=1, name="Blessed Crucible" },
-
-	[301]= {L=1, C=2, name="Spindleclutch" },
-	[79]= {L=2, C=2, name="Wayrest Sewers" },
-	[80]= {L=3, C=2, name="Crypt of Hearts" },
-	[391]= {L=4, C=2, name="Volenfell" },
-	[410]= {L=5, C=2, name="Blackheart Haven" },
-
-	[325]= {L=1, C=3, name="Banished Cells" },
-	[11]= {L=2, C=3, name="Elden Hollow" },
-	[551]= {L=3, C=3, name="City of Ash" },
-	[81]= {L=4, C=3, name="Tempest Island" },
-	[417]= {L=5, C=3, name="Selene's Web" },
-
-	[570]= {L=5, C=4, name="Vaults of Madness" },
-	}
-
---NOTICE== vet_dat can different achievement ID's going to same Dungeon
-	vet_dat = {
-	[343]= {L=1, C=1, name="Fungal Grotto",
-			name2 ="Veteran Shadow Slayer",
-			desc = "Defeat Gamyne Bandu, the Spawn of Mephala, and Vila Theran.",
-			points = 10,
-			},
-	[850]= {L=1, C=1, name="Fungal Grotto",
-					name2 = "Veteran Arachnid Slayer",
-					desc =  "Defeat 200 spiders in Veteran Fungal Grotto dungeon.",
-					points = 10,
-			},
-	[851]= {L=1, C=1, name="Fungal Grotto",
-					name2 = "Veteran Obsidian Slayer",
-					desc = "Defeat Obsidian Warriors in Veteran Fungal Grotto dungeon.",
-					points = 10,
-					},
-	[340]= {L=1, C=1, name="Fungal Grotto",
-					name2 = "Veteran Fungal Grotto Assassin",
-					desc = "Defeat all other mini-boss and boss enemies in Veteran Fungal Grotto before defeating Vila Theran within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Spider Cultists.",
-					points = 50,
-					},
-	[856]= {L=2, C=1, name="Darkshade Caverns",
-					 name2= "Veteran Kwama Slayer",
-                     desc = "Defeat 200 kwama in Veteran Darkshade Caverns dungeon.",
-					 points = 10,
-					},
-	[857]= {L=2, C=1, name="Darkshade Caverns",
-	                  name2 = "Veteran Construct Slayer",
-                      desc = "Defeat Dwarven constructs in Veteran Darkshade Caverns dungeon.",
-                      points = 10,
-					  },
-	[465]= {L=2, C=1, name="Darkshade Caverns",
-					  name2 = "Veteran Darkshade Assassin",
-                      desc = "Defeat all other mini-boss and boss enemies in Veteran Darkshade before defeating the Engine Guardian within twenty minutes of starting the dungeon. Timer starts when players engage the first group of kwama.",
-                      points = 50,
-					  },
---	[]= {L=3, C=1, name="Arx Corinum" },
---	[]= {L=4, C=1, name="Direfrost Keep" },
---	[]= {L=5, C=1, name="Blessed Crucible" },
-
-	[854]= {L=1, C=2, name="Spindleclutch",
-					  name2 = "Veteran Thrall Slayer",
-                      desc = "Defeat Vampire Thralls in Veteran Spindleclutch dungeon.",
-                      points = 10,
-                    },
-	[855]= {L=1, C=2, name="Spindleclutch",
-					  name2 = "Veteran Flesh Atronach Conqueror",
-                      descr = "Defeat flesh atronachs in Veteran Spindleclutch dungeon.",
-                      points = 10,
-                    },
-	[446]= {L=1, C=2, name="Spindleclutch",
-					  name2 = "Veteran Spindleclutch Assassin",
-                      desc = "Defeat all other mini-boss and boss enemies in Veteran Spindleclutch before defeating Vorenor Winterbourne within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Thralled warriors.",
-                      points = 50,
-                    },
- [448] = {L=1, C=2, name="Spindleclutch",
-                    name2 = "Compassionate Hero",
-                    desc = "Defeat Vorenor Winterbourne without killing any of the innocent victims held captive in his lair.",
-                    points = 50,
-                    },
-[421] = {L=1, C=2, name="Spindleclutch",
-					name2 = "Spindleclutch Vanquisher",
-					desc = "Defeat the Blood Golem, Praxin's Ghost, and Vorenor Winterbourne in Spindleclutch.",
-					points = 10,
-				},
-	[860]= {L=2, C=2, name="Wayrest Sewers",
-					  name2 = "Veteran Zombie Slayer",
-                      desc = "Defeat zombies in Veteran Wayrest Sewers dungeon.",
-                      points = 10,
-                    },
-	[861]= {L=2, C=2, name="Wayrest Sewers",
-					  name2 = "Veteran Colossus Slayer",
-                      descr = "Defeat bone colossuses in Veteran Wayrest Sewers dungeon.",
-                      points = 10,
-                    },
-	[679]= {L=2, C=2, name="Wayrest Sewers",
-					  name2 = "Veteran Wayrest Sewers Assassin",
-                      descr = "Defeat all other mini-boss and boss enemies in Veteran Wayrest Sewers before defeating Allene and Varaine Pellingare within twenty minutes of starting the dungeon. Timer starts when players engage the first necromancer and his minions.",
-                      points = 50,
-                    },
-	[681]= {L=2, C=2, name="Wayrest Sewers",
-					  name2 = "Pellingare Ghoul Slayer",
-                      descr = "Defeat 15 Zombies during the battle with Allene Pellingare and Varaine Pellingare before defeating the twins themselves in Veteran Wayrest Sewers.",
-                      points = 50,
-                    },
-	[876]= {L=3, C=2, name="Crypt of Hearts",
-					  name2 = "Crypt of Hearts Conqueror",
-                      descr = "Defeat Ruzozuzalpamaz, the Brothers Ilambris and the Ilambris Amalgam, and Nerien'eth in Veteran Crypt of Hearts.",
-                      points = 10,
-                    },
-	[1084]= {L=3, C=2, name="Crypt of Hearts",
-					   name2 = "The Blade's Edge",
-                       descr = "In Veteran Crypt of Hearts, allow four of Nerien'eth's Students to survive until he takes the Ebony Blade before defeating them all.",
-                       points = 50,
-                    },
-	[939]= {L=3, C=2, name="Crypt of Hearts",
-					  name2 = "Veteran Spiderkith Slayer",
-                      descr = "Defeat 250 Spiderkith in the Veteran Crypt of Hearts dungeon.",
-                      points = 10,
-                    },
-	[940]= {L=3, C=2, name="Crypt of Hearts",
-					  name2= "Veteran Flesh Atronach Slayer",
-                      descr = "Defeat 50 Flesh Atronachs in the Veteran Crypt of Hearts dungeon.",
-                      points = 10,
-                    },
-	[941]= {L=3, C=2, name="Crypt of Hearts",
-					  name2 = "Veteran Crypt of Hearts Assassin",
-                      descr = "Defeat Ibelgast, the Chamber Guardian, Mezeluth, Ruzozuzalpamaz, the Brothers Ilambris and the Ilambris Amalgam, and Nerien'eth within thirty minutes of starting Veteran Crypt of Hearts. The timer starts when the gate opens.",
-                      points = 50,
-                    },
-	[942]= {L=3, C=2, name="Crypt of Hearts",
-						name2 = "Deadly Crypt Survivor",
-                        descr = "Defeat all other mini-boss and boss enemies in Veteran Crypt of Hearts before defeating Nerien'eth without suffering a group member death.",
-                        points = 50,
-                    },
---	[]= {L=4, C=2, name="Volenfell" },
---	[]= {L=5, C=2, name="Blackheart Haven" },
-
-	[449]= {L=1, C=3, name="Banished Cells",
-					  name2 = "Veteran Banished Cells Assassin",
-                      descr = "Defeat all other mini-boss and boss enemies in Veteran Banished Cells before defeating High Kinlord Rilis within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Banished skeletons.",
-                      points = 50,
-                    },
-	[852]= {L=1, C=3, name="Banished Cells",
-					  name2 = "Veteran Bonebreaker",
-                      descr = "Kill skeletons in Veteran Banished Cells dungeon.",
-                      points = 10,
-                    },
-	[853]= {L=1, C=3, name="Banished Cells",
-		              name2 = "Rilis Dremora Slayer",
-                      descr = "Defeat Dremora in Veteran Banished Cells dungeon.",
-                      points = 10,
-                    },
-	[858]= {L=2, C=3, name="Elden Hollow",
-					  name2 = "Veteran Banekin Slayer",
-                      descr = "Defeat banekin in Veteran Elden Hollow dungeon.",
-                      points = 10,
-                    },
-    [459] = {L=2, C=3, name="Elden Hollow",
-                        ["name"] = "Elden Hollow Conqueror",
-                        ["description"] = "Defeat Dark Root, Murklight, and Bogdan the Nightflame in Elden Hollow.",
-                        ["points"] = 10,
-                    },
-	[463] = {L=2, C=3, name="Elden Hollow",
-                        ["name"] = "Closing the Book",
-                        ["description"] = "Defeat Bogdan the Nightflame after reading the Opus of Torment.",
-                        ["points"] = 50,
-                    },
-	[859]= {L=2, C=3, name="Elden Hollow",
-					  name2 = "Veteran Lurcher Slayer",
-                      descr = "Defeat lurchers in Veteran Elden Hollow dungeon.",
-                      points = 10,
-                    },
-	[461]= {L=2, C=3, name="Elden Hollow",
-					  name2 = "Veteran Elden Hollow Assassin",
-                      descr = "Defeat all other mini-boss and boss enemies in Veteran Elden Hollow before defeating Bogdan the Nightflame within twenty minutes of starting the dungeon. Timer starts when players engage the first group of Daedra.",
-                      points = 50,
-                    },
-	[1105]= {L=3, C=3, name="City of Ash",
-					   name2 = "Mehrunes Dremora Slayer",
-                       descr = "Defeat 300 Dremora in the Veteran City of Ash dungeon.",
-                       points = 10,
-                    },
-	[1106]= {L=3, C=3, name="City of Ash",
-						name2 = "Veteran Flame Colossus Slayer",
-                        descr = "Defeat 50 Flame Colossi in the Veteran City of Ash dungeon.",
-                        points = 10,
-                    },
-	[1107]= {L=3, C=3, name="City of Ash",
-						name2 = "Deadly Deadlands Survivor",
-                        descr = "Defeat all other mini-boss and boss enemies in Veteran City of Ash before defeating Valkyn Skoria without suffering a group member death.",
-                        points = 50,
-                    },
-	[1108]= {L=3, C=3, name="City of Ash",
-						name2 = "Veteran City of Ash Assassin",
-                        descr = "Defeat all other mini-boss and boss enemies in Veteran City of Ash before defeating Valkyn Skoria within thirty minutes of starting the dungeon. Timer starts when players enter the Inner Grove.",
-                        points = 50,
-                    },
-	[1114]= {L=3, C=3, name="City of Ash",
-						name2 = "A World On Fire",
-                        descr = "In Veteran City of Ash, make a pact with the Frigid Tome, then defeat Valkyn Skoria.",
-                        points = 50,
-                    },
-	[1159]= {L=3, C=3, name="City of Ash",
-						name2 = "Deadlands Savvy",
-                        descr = "Complete all the achievements associated with the Veteran City of Ash Dungeon.",
-                        points = 50,
-                    },
-	[878]= {L=3, C=3, name="City of Ash",
-						name2 = "Veteran City of Ash",
-                        descr = "Complete Veteran City of Ash by defeating Horvantud the Fire Maw, the Ash Titan, and Valkyn Skoria.",
-                        points = 15,
-                    },
---	[]= {L=4, C=3, name="Tempest Island" },
---	[]= {L=5, C=3, name="Selene's Web" },
-
---	[]= {L=5, C=4, name="Vaults of Madness" },
-	[991] = {L=1, C=5,
-		name = "Hel Ra Citadel",
-		name= "Hel Ra Citadel Completed",
-		descr = "You defeated the Warrior Celestial, freeing him from the Serpent's control.",
-		points = 50,
-	},
-	[1136] = {L=1, C=5,
-		name = "Hel Ra Citadel",
-		name2 = "Hel Ra Citadel Difficult Mode",
-		descr = "You defeated the Celestial Warrior after enraging him through the destruction of his statue army.",
-		points = 50,
-	},
-	[1080] = {L=1, C=5,
-		name = "Hel Ra Citadel",
-		["name"] = "Time Trial: Hel Ra Citadel",
-		["description"] = "Completed the Hel Ra Citadel within a time limit of 33 minutes.",
-		["points"] = 50,
-	},
-	[990] = {L=2, C=5,
-		name = "Aetherian Archive",
-		name2 = "Aetherian Archive Completed",
-		descr = "You defeated the Mage Celestial, freeing her from the Serpent's control.",
-		points = 50,
-	},
-	[1137] = {L=2, C=5,
-		name = "Aetherian Archive",
-		name2 = "Aetherian Archive Difficult Mode",
-		descr = "You defeated the Celestial Mage after taunting her by smashing the Aetherial Orbs.",
-		points = 50,
-	},
-	[1081] = {L=2, C=5,
-		name = "Aetherian Archive",
-		name2 = "Time Trial: Aetherian Archive",
-		descr = "Completed the Aetherian Archive within a time limit of 33 minutes.",
-		points = 50,
-	},
-
-	[1123] = {L=3, C=5,
-		name = "Sanctum Ophidia",
-		name2 = "Sanctum Ophidia Completed",
-		descr = "You defeated the Serpent Celestial.",
-		points = 50,
-	},
-	[1124] = {L=3, C=5,
-		name = "Sanctum Ophidia",
-		name2 = "Time Trial: Sanctum Ophidia",
-		descr = "Completed the Sanctum Ophidia within a time limit of 33 minutes.",
-		points = 50,
-	},
-	[1138] = {L=3, C=5,
-		name = "Sanctum Ophidia",
-		name2 = "Sanctum Ophidia Difficult Mode",
-		descr = "You defeated the Celestial Serpent after desecrating the sacred banners of the Scaled Court",
-		points = 50,
-	},
-	[1139] = {L=3, C=5,
-		["name"] = "Craglorn Trials Conqueror",
-		["descr"] = "You have completed Hel Ra Citadel, Aetherian Archive, and Sanctum Ophidia at their highest difficulties.",
-		["points"] = 50,
-	},
-	[992] = {L=4, C=5,
-            ["points"] = 50,
-			["name"] = "Dragonstar Arena",
-			["name2"] = "Dragonstar Arena Champion",
-            ["descr"] = "Conquer all challengers and earn the title of Dragonstar Arena Champion!",
- 	},
-	[1140] = {L=4, C=5,
-			["name"] = "Dragonstar Arena",
-            ["points"] = 50,
-            ["descr"] = "Conquer all challengers on the increased difficulty version of Dragonstar Arena.",
-            ["name2"] = "Dragonstar Arena Conqueror",
-    },
-}