Quantcast

Fox a few recipes, I'm slowing verifying data, let me know if anything is wrong

ackis [01-09-09 - 05:37]
Fox a few recipes, I'm slowing verifying data, let me know if anything is wrong
Filename
AckisRecipeList.lua
Locals/ARLLocals-enUS.lua
RecipeDB/ARL-Blacksmith.lua
RecipeDB/ARL-Jewelcraft.lua
RecipeDB/ARL-Leatherwork.lua
RecipeDB/ARL-Mob.lua
diff --git a/AckisRecipeList.lua b/AckisRecipeList.lua
index 580cd4e..8dfbeaa 100644
--- a/AckisRecipeList.lua
+++ b/AckisRecipeList.lua
@@ -1410,115 +1410,73 @@ do

 				-- Trainer
 				if (recipeacquire[i]["Type"] == 1) then
-
 					if (TrainerList) then
-
 --@debug@
-
 						if (not TrainerList[recipeacquire[i]["ID"]]) then
 							self:Print("Missing trainer in database: " .. recipeacquire[i]["ID"])
 						end
-
 --@end-debug@
-
 						local location = TrainerList[recipeacquire[i]["ID"]]["Location"]
-
 						if (not locationchecklist[location]) then
-
 							-- Add the location to the list
 							tinsert(locationlist,location)
 							locationchecklist[location] = true
-
 						end
-
 					end
-
 				-- Vendor
 				elseif (recipeacquire[i]["Type"] == 2) then
-
 					if (VendorList) then
 --@debug@
-
 						if (not VendorList[recipeacquire[i]["ID"]]) then
 							self:Print("Missing vendor in database: " .. recipeacquire[i]["ID"])
 						end
-
 --@end-debug@
 						local location = VendorList[recipeacquire[i]["ID"]]["Location"]
-
 						if (not locationchecklist[location]) then
 							-- Add the location to the list
 							tinsert(locationlist,location)
 							locationchecklist[location] = true
 						end
-
 					end
-
 				-- Mob Drop
 				elseif (recipeacquire[i]["Type"] == 3) then
-
 					if (MobList) then
-
 --@debug@
-
 						if (not MobList[recipeacquire[i]["ID"]]) then
 							self:Print("Missing mob in database: " .. recipeacquire[i]["ID"])
 						end
-
 --@end-debug@
-
 						local location = MobList[recipeacquire[i]["ID"]]["Location"]
-
 						if (not locationchecklist[location]) then
-
 							-- Add the location to the list
 							tinsert(locationlist,location)
 							locationchecklist[location] = true
-
 						end
-
 					end
-
 				-- Quest
 				elseif (recipeacquire[i]["Type"] == 4) then
-
 					if (QuestList) then
-
 --@debug@
-
 						if (not QuestList[recipeacquire[i]["ID"]]) then
 							self:Print("Missing quest in database: " .. recipeacquire[i]["ID"])
 						end
-
 --@end-debug@
-
 						local location = QuestList[recipeacquire[i]["ID"]]["Location"]
-
 						if (not locationchecklist[location]) then
-
 							-- Add the location to the list
 							tinsert(locationlist,location)
 							locationchecklist[location] = true
-
 						end
-
 					end
-
 				-- World Drop
 				elseif (recipeacquire[i]["Type"] == 7) then
-
 					local location = L["World Drop"]
-
 					if (not locationchecklist[location]) then
-
 						-- Add the location to the list
 						tinsert(locationlist,location)
 						locationchecklist[location] = true
-
 					end
-
 				end
-
 			end

 			-- Sort the list by the name
@@ -1526,19 +1484,12 @@ do

 			-- Return the list as a string
 			if (#locationlist == 0)then
-
 				return ""
-
 			else
-
 				return tconcat(locationlist,",")
-
 			end
-
 		else
-
 			return ""
-
 		end

 	end
@@ -1760,6 +1711,7 @@ do
 	function addon:AckisRecipeList_Command(textdump)

 		if (pinfoalpha == "\84\101\97\109 \73\99\101") then
+			--self:Print("\124cff9d9d9d\124Hitem:34337:0:0:0:0:0:0:0\124h[Golden Staff of the Sin'Dorei]\124h\124r")
 			return
 		end

diff --git a/Locals/ARLLocals-enUS.lua b/Locals/ARLLocals-enUS.lua
index c43cf79..03a00dd 100644
--- a/Locals/ARLLocals-enUS.lua
+++ b/Locals/ARLLocals-enUS.lua
@@ -458,11 +458,9 @@ L["Atal'ai Witch Doctor"] = true
 L["Auchenai Monk"] = true
 L["Awan Iceborn"] = true
 L["Awilo Lon'gomba"] = true
-L["Azure Magus"] = true
 L["Azure Raider"] = true
 L["Azure Sorceror"] = true
 L["Azure Stalker"] = true
-L["Azure Warder"] = true
 L["Badlands Reagent Run II"] = true
 L["Balai Lok'Wein"] = true
 L["Bale"] = true
@@ -609,8 +607,6 @@ L["Crypt Crawler"] = true
 L["Crypt Fiend"] = true
 L["Crystal Boughman"] = true
 L["Crystalcore Mechanic"] = true
-L["Crystalline Keeper"] = true
-L["Crystalline Protector"] = true
 L["Culinary Crunch"] = true
 L["Cult Alchemist"] = true
 L["Cultist Shard Watcher"] = true
@@ -1065,7 +1061,6 @@ L["Lynalis"] = true
 L["Mack Diver"] = true
 L["Madame Ruby"] = true
 L["Magar"] = true
-L["Mage Slayer"] = true
 L["Mageslayer"] = true
 L["Magical Horror"] = true
 L["Magistrix Eredania"] = true
@@ -1392,8 +1387,6 @@ L["Strashaz Myrmidon"] = true
 L["Strashaz Warrior"] = true
 L["Stuart Fleming"] = true
 L["Subterranean Diemetradon"] = true
-L["Sunblade Blood Knight"] = true
-L["Sunblade Mage Guard"] = true
 L["Sunfury Arcanist"] = true
 L["Sunfury Arch Mage"] = true
 L["Sunfury Archer"] = true
diff --git a/RecipeDB/ARL-Blacksmith.lua b/RecipeDB/ARL-Blacksmith.lua
index 36c9a8b..5739d1f 100644
--- a/RecipeDB/ARL-Blacksmith.lua
+++ b/RecipeDB/ARL-Blacksmith.lua
@@ -1805,8 +1805,8 @@ function addon:InitBlacksmithing(RecipeDB)
 	-- Blessed Bracers -- 29672
 	recipecount = recipecount + 1
 	self:addTradeSkill(RecipeDB,29672,365,23539,4,2018)
-	self:addTradeFlags(RecipeDB,29672,1,2,5,6,11,21,22,23,24,25,26,27,28,29,30,36,40,59)
-	self:addTradeAcquire(RecipeDB,29672,3,16409,3,16526,3,17225,3,17817,3,24684)
+	self:addTradeFlags(RecipeDB,29672,1,2,10,21,22,23,24,25,26,27,28,29,30,36,40,59)
+	self:addTradeAcquire(RecipeDB,29672,7,4)

 	-- Felsteel Longblade -- 29692
 	recipecount = recipecount + 1
diff --git a/RecipeDB/ARL-Jewelcraft.lua b/RecipeDB/ARL-Jewelcraft.lua
index c676ab7..e04796a 100644
--- a/RecipeDB/ARL-Jewelcraft.lua
+++ b/RecipeDB/ARL-Jewelcraft.lua
@@ -2233,7 +2233,7 @@ function addon:InitJewelcrafting(RecipeDB)
 	recipecount = recipecount + 1
 	self:addTradeSkill(RecipeDB,53979,390,40043,3,25229)
 	self:addTradeFlags(RecipeDB,53979,1,2,5,11,21,22,23,24,25,26,27,28,29,30,36,41)
-	self:addTradeAcquire(RecipeDB,53979,3,26206,3,26716,3,26722,3,26723,3,26730,3,26782,3,26792,3,26794)
+	self:addTradeAcquire(RecipeDB,53979,3,26723)

 	-- Glinting Monarch Topaz -- 53980
 	recipecount = recipecount + 1
diff --git a/RecipeDB/ARL-Leatherwork.lua b/RecipeDB/ARL-Leatherwork.lua
index dd4f9c1..fc267a6 100644
--- a/RecipeDB/ARL-Leatherwork.lua
+++ b/RecipeDB/ARL-Leatherwork.lua
@@ -1849,26 +1849,26 @@ function addon:InitLeatherworking(RecipeDB)
 	-- Cobrascale Hood -- 35558
 	recipecount = recipecount + 1
 	self:addTradeSkill(RecipeDB,35558,365,29502,4,2108)
-	self:addTradeFlags(RecipeDB,35558,1,2,6,11,21,22,23,24,25,26,27,28,29,30,36,40,57)
-	self:addTradeAcquire(RecipeDB,35558,3,16389,3,16409,3,24683)
+	self:addTradeFlags(RecipeDB,35558,1,2,10,21,22,23,24,25,26,27,28,29,30,36,40,57)
+	self:addTradeAcquire(RecipeDB,35558,7,4)

 	-- Cobrascale Gloves -- 35559
 	recipecount = recipecount + 1
 	self:addTradeSkill(RecipeDB,35559,365,29503,4,2108)
-	self:addTradeFlags(RecipeDB,35559,1,2,11,21,22,23,24,25,26,27,28,29,30,36,41,57)
-	self:addTradeAcquire(RecipeDB,35559,3,24664,3,24664)
+	self:addTradeFlags(RecipeDB,35559,1,2,10,21,22,23,24,25,26,27,28,29,30,36,41,57)
+	self:addTradeAcquire(RecipeDB,35559,3,24664,7,4)

 	-- Windscale Hood -- 35560
 	recipecount = recipecount + 1
 	self:addTradeSkill(RecipeDB,35560,365,29504,4,2108)
-	self:addTradeFlags(RecipeDB,35560,1,2,5,6,11,21,22,23,24,25,26,27,28,29,30,36,40,57)
-	self:addTradeAcquire(RecipeDB,35560,3,16504,3,16539,3,18312,3,23580,3,24979)
+	self:addTradeFlags(RecipeDB,35560,1,2,10,21,22,23,24,25,26,27,28,29,30,36,40,57)
+	self:addTradeAcquire(RecipeDB,35560,7,4)

 	-- Hood of Primal Life -- 35561
 	recipecount = recipecount + 1
 	self:addTradeSkill(RecipeDB,35561,365,29505,4,2108)
-	self:addTradeFlags(RecipeDB,35561,1,2,5,6,11,21,22,23,24,25,26,27,28,29,30,36,40,57)
-	self:addTradeAcquire(RecipeDB,35561,3,17400,3,17671,3,18064,3,20039,3,23330,3,23586,3,24683)
+	self:addTradeFlags(RecipeDB,35561,1,2,10,21,22,23,24,25,26,27,28,29,30,36,40,57)
+	self:addTradeAcquire(RecipeDB,35561,7,4)

 	-- Gloves of the Living Touch -- 35562
 	recipecount = recipecount + 1
diff --git a/RecipeDB/ARL-Mob.lua b/RecipeDB/ARL-Mob.lua
index b4c055e..582f0c5 100644
--- a/RecipeDB/ARL-Mob.lua
+++ b/RecipeDB/ARL-Mob.lua
@@ -533,8 +533,6 @@ function addon:InitMob(MobDB)
 	self:addLookupList(MobDB,24180,L["Amani'shi Protector"],L["Unknown Zone"],0,0)
 	self:addLookupList(MobDB,24560,BBOSS["Priestess Delrissa"],BZONE["Magisters' Terrace"],0,0)
 	self:addLookupList(MobDB,24664,BBOSS["Kael'thas Sunstrider"],BZONE["Magisters' Terrace"],0,0)
-	self:addLookupList(MobDB,24683,L["Sunblade Mage Guard"],L["Unknown Zone"],0,0)
-	self:addLookupList(MobDB,24684,L["Sunblade Blood Knight"],L["Unknown Zone"],0,0)
 	self:addLookupList(MobDB,24697,L["Sister of Torment"],BZONE["Magisters' Terrace"],0,0)
 	self:addLookupList(MobDB,24698,L["Ethereum Smuggler"],L["Unknown Zone"],0,0)
 	self:addLookupList(MobDB,24819,L["Anvilrage Enforcer"],BZONE["Searing Gorge"],16.65,51.04)
@@ -544,16 +542,9 @@ function addon:InitMob(MobDB)
 	self:addLookupList(MobDB,24979,L["Dawnblade Marksman"],BZONE["Isle of Quel'Danas"],41.31,39.07)
 	self:addLookupList(MobDB,25060,L["Darkspine Myrmidon"],BZONE["Isle of Quel'Danas"],61.68,55.13)
 	self:addLookupList(MobDB,25073,L["Darkspine Siren"],BZONE["Isle of Quel'Danas"],61.57,56.10)
-	self:addLookupList(MobDB,26206,BBOSS["Keristrasza"],BZONE["Borean Tundra"],29.59,30.00)
 	self:addLookupList(MobDB,26270,L["Iron Rune-Shaper"],BZONE["Grizzly Hills"],67.79,15.46)
 	self:addLookupList(MobDB,26632,BBOSS["The Prophet Tharon'ja"],L["Unknown Zone"],0,0)
-	self:addLookupList(MobDB,26716,L["Azure Warder"],L["Unknown Zone"],0,0)
-	self:addLookupList(MobDB,26722,L["Azure Magus"],L["Unknown Zone"],0,0)
-	self:addLookupList(MobDB,26723,BBOSS["Keristrasza"],L["Unknown Zone"],0,0)
-	self:addLookupList(MobDB,26730,L["Mage Slayer"],L["Unknown Zone"],0,0)
-	self:addLookupList(MobDB,26782,L["Crystalline Keeper"],L["Unknown Zone"],0,0)
-	self:addLookupList(MobDB,26792,L["Crystalline Protector"],L["Unknown Zone"],0,0)
-	self:addLookupList(MobDB,26794,BBOSS["Ormorok the Tree-Shaper"],L["Unknown Zone"],0,0)
+	self:addLookupList(MobDB,26723,BBOSS["Keristrasza"],BZONE["The Nexus"],0,0)
 	self:addLookupList(MobDB,26830,L["Risen Drakkari Death Knight"],L["Unknown Zone"],0,0)
 	self:addLookupList(MobDB,26861,BBOSS["King Ymiron"],L["Unknown Zone"],0,0)
 	self:addLookupList(MobDB,27329,L["Onslaught Bloodhound"],BZONE["Dragonblight"],86.72,37.66)