2.4.0 Summerset release data

git [05-19-18 - 12:04]
2.4.0 Summerset release data
Filename
FurCData.lua
FurCDatabaseQuery.lua
FurCFilter.lua
FurCGui.lua
FurCTooltip.lua
FurnitureCatalogue.txt
data/100023.lua
data/AchievementVendors.lua
data/Homestead/H_AchievementVendors.lua
data/Homestead/H_Cyrodiil.lua
data/Homestead/H_EventItems.lua
data/Homestead/H_LuxuryFurnisher.lua
data/Homestead/H_Recipes.lua
data/Homestead/H_Rollis.lua
data/LuxuryFurnisher.lua
data/Morrowind/M_AchievementVendors.lua
data/Morrowind/M_EventItems.lua
data/Morrowind/M_LuxuryFurnisher.lua
data/Morrowind/M_Recipes.lua
data/Reach/HotR_AchievementVendors.lua
data/Reach/HotR_LuxuryFurnisher.lua
data/Reach/HotR_Recipes.lua
data/Reach/HotR_Rollis.lua
data/RecipeSources.lua
data/Recipes.lua
data/Rollis.lua
locale/de.lua
locale/en.lua
locale/fr.lua
locale/jp.lua
locale/ru.lua
startup.lua
diff --git a/FurCData.lua b/FurCData.lua
index 891204d..084486f 100644
--- a/FurCData.lua
+++ b/FurCData.lua
@@ -335,7 +335,7 @@ local function scanFromFiles(shouldScanCharacter)
 		for versionNumber, versionData in pairs(FurC.Recipes) do
 			scanArray(versionData, versionNumber, FURC_CRAFTING)
 		end
-		for versionNumber, versionData in pairs(FurC.RollisRecipes) do
+		for versionNumber, versionData in pairs(FurC.RolisRecipes) do
 			scanArray(versionData, versionNumber, FURC_CRAFTING)
 		end
 		for versionNumber, versionData in pairs(FurC.FaustinaRecipes) do
@@ -343,13 +343,13 @@ local function scanFromFiles(shouldScanCharacter)
 		end
 	end

-	local function scanRollis()
+	local function scanRolis()
 		for versionNumber, versionData in pairs(FurC.Rolis) do
 			for itemId, itemSource in pairs(versionData) do
 				recipeArray = parseFurnitureItem(FurC.GetItemLink(recipeId), true)
 				if nil ~= recipeArray then
 					recipeArray.version = versionNumber
-					recipeArray.origin = FURC_ROLLIS
+					recipeArray.origin = FURC_Rolis
 					addDatabaseEntry(itemId, recipeArray)
 				end
 			end
@@ -359,7 +359,7 @@ local function scanFromFiles(shouldScanCharacter)
 				recipeArray = parseFurnitureItem(FurC.GetItemLink(recipeId), true)
 				if nil ~= recipeArray then
 					recipeArray.version = versionNumber
-					recipeArray.origin = FURC_ROLLIS
+					recipeArray.origin = FURC_Rolis
 					addDatabaseEntry(itemId, recipeArray)
 				end
 			end
@@ -448,9 +448,9 @@ local function scanFromFiles(shouldScanCharacter)

 	task:Call(scanRecipeFile)
 	:Then(scanMiscItemFile)
-	:Then(scanRollis)
+	:Then(scanRolis)
 	:Then(scanVendorFiles)
-	:Then(scanRollis)
+	:Then(scanRolis)
 	:Then(scanFestivalFiles)
 	:Then(
 	function()
@@ -507,8 +507,8 @@ FurC.settings.emptyItemSources =  FurC.settings.emptyItemSources or {}
 	local origin = recipeArray.origin
 	if origin == FURC_CRAFTING or origin == FURC_WRIT_VENDOR then
 		return FurC.GetMats(recipeKey, recipeArray, stripColor)
-	elseif origin == FURC_ROLLIS then
-		return FurC.getRollisSource(recipeKey, recipeArray, stripColor)
+	elseif origin == FURC_Rolis then
+		return FurC.getRolisSource(recipeKey, recipeArray, stripColor)
 	elseif origin == FURC_LUXURY then
 		return FurC.getLuxurySource(recipeKey, recipeArray, stripColor)
 	elseif origin == FURC_GUILDSTORE then
diff --git a/FurCDatabaseQuery.lua b/FurCDatabaseQuery.lua
index fded8ab..a17b475 100644
--- a/FurCDatabaseQuery.lua
+++ b/FurCDatabaseQuery.lua
@@ -20,7 +20,7 @@ local function makeAchievementLink(achievementId)
     return GetString(SI_FURC_REQUIRES_ACHIEVEMENT) .. GetAchievementLink(achievementId)
 end

-local function getRollisSource(recipeKey, recipeArray)
+local function getRolisSource(recipeKey, recipeArray)
 	recipeArray = recipeArray or FurC.Find(recipeKey)
 	if not recipeArray then return end

@@ -28,7 +28,7 @@ local function getRollisSource(recipeKey, recipeArray)

 	if nil ~= versionData and nil ~= versionData[recipeKey] then
 		local itemPrice = zo_strformat(GetString(SI_FURC_STRING_FOR_VOUCHERS), colorise(versionData[recipeKey], voucherColor))
-		return zo_strformat(GetString(SI_FURC_STRING_ROLLIS), itemPrice)
+		return zo_strformat(GetString(SI_FURC_STRING_Rolis), itemPrice)
 	end

 	versionData = FurC.Faustina[recipeArray.version]
@@ -39,7 +39,7 @@ local function getRollisSource(recipeKey, recipeArray)

 	return GetString(SI_FURC_STRING_VOUCHER_VENDOR)
 end
-FurC.getRollisSource = getRollisSource
+FurC.getRolisSource = getRolisSource


 local function getLuxurySource(recipeKey, recipeArray, stripColor)
diff --git a/FurCFilter.lua b/FurCFilter.lua
index c2040fe..a97d0f5 100644
--- a/FurCFilter.lua
+++ b/FurCFilter.lua
@@ -103,7 +103,7 @@ local function matchSourceDropdown()
 	elseif FURC_RUMOUR 					== ddSource then
 		return recipeArray.origin 		== FURC_RUMOUR
 	elseif FURC_WRIT_VENDOR 			== ddSource then
-		return recipeArray.origin 		== FURC_ROLLIS
+		return recipeArray.origin 		== FURC_Rolis
 	elseif FURC_OTHER					== ddSource then
 		return (
 			recipeArray.origin == FURC_FESTIVAL_DROP or
diff --git a/FurCGui.lua b/FurCGui.lua
index 6312f3b..257d0c6 100644
--- a/FurCGui.lua
+++ b/FurCGui.lua
@@ -185,12 +185,12 @@ end
 function FurC.ApplyLineTemplate()

 	local function resizeDropdowns(controlSize)
-		local controlList = {
+		local contRolist = {
 			[1] = FurC_DropdownSource,
 			[2] = FurC_DropdownCharacter,
 			[3] = FurC_DropdownVersion
 		}
-		for _, control in pairs(controlList) do
+		for _, control in pairs(contRolist) do
 			control:SetWidth(controlSize)
 		end
 		FurC_Search:SetWidth(controlSize-19)
diff --git a/FurCTooltip.lua b/FurCTooltip.lua
index 4a44fe8..c837129 100644
--- a/FurCTooltip.lua
+++ b/FurCTooltip.lua
@@ -3,15 +3,14 @@ local task = async:Create("FurnitureCatalogue_Tooltip")

 local p 		= FurC.DebugOut -- debug function calling zo_strformat with up to 10 args

-local function tryColorize(text, datInteger)
-	if nil == text then text = datInteger end
-	if (not FurC.GetColouredTooltips()) or not text then return text end
+local function tryColorize(text)
+	if not (text and FurC.GetColouredTooltips()) then return text end
 	return text:gsub("cannot craft", "|cFF0000cannot craft|r"):gsub("Can be crafted", "|c00FF00Can be crafted|r")
 end

 local defaultDebugString = "[<<1>>] = <<2>>, -- <<3>>"
 local function tryCreateDebugOutput(itemId, itemLink)
-    if not FurC.IsDebugging then return end
+    if not (FurC.DevDebug and FurCGui:IsHidden()) then return end
     itemId = itemId or FurC.GetItemId(itemLink)
     local price = 0
     local control = moc()
@@ -26,7 +25,6 @@ local function tryCreateDebugOutput(itemId, itemLink)
         end
     end
     d(zo_strformat(debugString, itemId, price, GetItemLinkName(itemLink)))
-
 end

 local function addTooltipData(control, itemLink)
diff --git a/FurnitureCatalogue.txt b/FurnitureCatalogue.txt
index 0f0e88e..3073a99 100644
--- a/FurnitureCatalogue.txt
+++ b/FurnitureCatalogue.txt
@@ -1,6 +1,6 @@
 ## Title: FurnitureCatalogue
 ## Author: manavortex
-## Version: 2.3.3
+## Version: 2.4
 ## APIVersion: 100022 100023
 ## SavedVariables: FurnitureCatalogue_Settings
 ## OptionalDependsOn: pChat
@@ -40,34 +40,40 @@ FurCEvents.lua

 $(APIVersion).lua

-data\Morrowind\M_Recipes.lua
-data\Homestead\H_Recipes.lua
-data\Reach\HotR_Recipes.lua
-data\Recipes.lua
-data\RecipeSources.lua
+data\02_Morrowind\M_Recipes.lua
+data\01_Homestead\H_Recipes.lua
+data\03_Reach\HotR_Recipes.lua
+data\04_Clockwork\CC_Recipes.lua
+data\05_Dragonbones\DragonB_Recipes.lua

-data\Homestead\H_AchievementVendors.lua
-data\Morrowind\M_AchievementVendors.lua
-data\Reach\HotR_AchievementVendors.lua
+data\01_Homestead\H_Cyrodiil.lua
+
+data\01_Homestead\H_AchievementVendors.lua
+data\02_Morrowind\M_AchievementVendors.lua
+data\03_Reach\HotR_AchievementVendors.lua
+data\04_Clockwork\CC_AchievementVendors.lua
 data\AchievementVendors.lua

 data\LuxuryFurnisher.lua
-data\Homestead\H_LuxuryFurnisher.lua
-data\Morrowind\M_LuxuryFurnisher.lua
-data\Reach\HotR_LuxuryFurnisher.lua
-
-data\Homestead\H_Rollis.lua
-data\Reach\HotR_Rollis.lua
-data\Rollis.lua
-
-data\Homestead\H_EventItems.lua
-data\Morrowind\M_EventItems.lua
+data\01_Homestead\H_LuxuryFurnisher.lua
+data\02_Morrowind\M_LuxuryFurnisher.lua
+data\03_Reach\HotR_LuxuryFurnisher.lua
+data\04_Clockwork\CC_LuxuryFurnisher.lua
+data\04_Clockwork\DragonB_LuxuryFurnisher.lua
+
+data\01_Homestead\H_Rolis.lua
+data\03_Reach\HotR_Rolis.lua
+data\Rolis.lua
+
+data\01_Homestead\H_EventItems.lua
+data\02_Morrowind\M_EventItems.lua
 data\EventItems.lua

 data\$(APIVersion).lua
 data\MiscItemSources.lua
+data\Recipes.lua
+data\RecipeSources.lua

-data\Homestead\H_Cyrodiil.lua



diff --git a/data/100023.lua b/data/100023.lua
index baaece5..422651c 100644
--- a/data/100023.lua
+++ b/data/100023.lua
@@ -353,396 +353,8 @@ FurC.MiscItemSources[FURC_ALTMER] 	= {

 FurC.EventItems[FURC_ALTMER] = {}

-FurC.AchievementVendors[FURC_ALTMER] = {
-
-    [GetString(FURC_AV_ALI)] = {
-		[GetString(FURC_AV_UNW)] = {
-			[139122] = { -- Bush, Summerset Spruce
-				itemPrice 	= 100,
-			},
-			[139107] = { -- Coral Shelf, Flat
-				itemPrice 	= 100,
-			},
-			[139108] = { --  Coral Shelf, Large
-				itemPrice 	= 250,
-			},
-			[139127] = { -- Hedge, Overgrown
-				itemPrice 	= 100,
-			},
-			[139128] = { -- Hedge, Overgrown long
-				itemPrice 	= 100,
-			},
-			[139112] = { -- Limestone Border, Boulders
-				itemPrice 	= 100,
-			},
-			[139113] = { -- Limestone Border, Pebbles
-				itemPrice 	= 100,
-			},
-			[139111] = { -- Limestone Border, Stones
-				itemPrice 	= 100,
-			},
-			[139114] = { -- Limestone Retaining Wall, Curved
-				itemPrice 	= 100,
-			},
-			[139116] = { -- Limestone Retaining Wall, Long
-				itemPrice 	= 100,
-			},
-			[139115] = { -- Limestone Retaining Wall, Short
-				itemPrice 	= 100,
-			},
-			[139109] = { -- Limestone Shelf, Curved
-				itemPrice 	= 100,
-			},
-			[139110] = { -- Limestone Shelf, Large
-				itemPrice 	= 250,
-			},
-			[139117] = { -- Limestone Stairway, Natural
-				itemPrice 	= 100,
-			},
-			[139126] = { -- Sapling, Gingko
-				itemPrice 	= 100,
-			},
-			[139121] = { -- Sapling, Growing Shade
-				itemPrice 	= 100,
-			},
-			[139132] = { -- Sapling, Sea Grapes
-				itemPrice 	= 100,
-			},
-			[139124] = { -- Sapling, Summerset Spruce
-				itemPrice 	= 100,
-			},
-			[139120] = { -- Sapling, Young Shade
-				itemPrice 	= 100,
-			},
-			[139130] = { -- Saplings, Mangrove
-				itemPrice 	= 100,
-			},
-			[139125] = { -- Tree, Blooming Gingko
-				itemPrice 	= 2000,
-			},
-			[139131] = { -- Tree, Solitary Mangrove
-				itemPrice 	= 250,
-			},
-			[139134] = { -- Tree, Seagrapes
-				itemPrice 	= 100,
-			},
-			[139136] = { -- Tree, Twin Poplar
-				itemPrice 	= 100,
-			},
-			[139123] = { -- Tree, Summerset Spruce
-				itemPrice 	= 250,
-			},
-			[139119] = { -- Tree, Upstretched Shade
-				itemPrice 	= 250,
-			},
-			[139118] = { -- Tree, Wide-Trunked Shade
-				itemPrice 	= 250,
-			},
-			[139129] = { -- Tree, Young Mangrove
-				itemPrice 	= 100,
-			},
-			[139135] = { -- Tree, Young Poplar
-				itemPrice 	= 100,
-			},
-			[139133] = { -- Tree, Young Sea Grapes
-				itemPrice 	= 100,
-			},
-        },
-
-        [GetString(FURC_AV_TAR)] = {
-            [139369] = { -- Abyssal Pearl, Sealed
-                itemPrice 	= 75000,
-                achievement = 2101, -- Back to the Abyss
-            },
-            [139388] = { -- Banner of the House of Reveries, Hanging
-                itemPrice 	= 10000,
-                achievement = "Manor of Masques", --
-            },
-            [139377] = { -- Banner of the Sapiarchs, Hanging
-                itemPrice 	= 10000,
-                achievement = 2204, -- Resolute Guardian
-            },
-            [139393] = { -- Cloudrest Banner, hanging
-                itemPrice 	= 10000,
-                achievement = 2131, -- Cloudrest Completed
-            },
-            [139379] = { -- Coral Formation, Luminescent
-                itemPrice 	= 15000,
-                achievement = 2202, -- Precious Pearl
-            },
-            [139380] = { -- Crystal Tower Key, Replica
-                itemPrice 	= 150000,
-                achievement = 2208, -- What Must Be Done
-            },
-            [139371] = { -- Crystal Tower Stand
-                itemPrice 	= 50000,
-                achievement = 2193, -- Savior of Summerset
-            },
-            [139386] = { -- Direnni Banner, Hanging
-                itemPrice 	= 10000,
-                achievement = "Lauriel's Lament", --
-            },
-            [139302] = { -- Display Case, Exhibit
-                itemPrice 	= 25000,
-                achievement = 2203, -- Mind Games
-            },
-            [139374] = { -- Enchanted Text, Illusory Forest
-                itemPrice 	= 100000,
-                achievement = 2209, -- Summerset Grand Adventurer
-            },
-            [139381] = { -- Evergloam Wispstone
-                itemPrice 	= 75000,
-                achievement = 2207, -- Enemy of my enemy
-            },
-            [139326] = { -- High Elf Statue, Kinlady
-                itemPrice 	= 20000,
-                achievement = 2204, -- Resolute Guardian
-            },
-            [139373] = { -- High Elf Wine Press, Display
-                itemPrice 	= 50000,
-                achievement = 2007, -- Summerset Cave Delver
-            },
-            [139387] = { -- Lillandril Banner
-                itemPrice 	= 10000,
-                achievement = "Murder in Lilandril",
-            },
-            [139372] = { -- Mind Trap Kelp, Adult
-                itemPrice 	= 20000,
-                achievement = 2203, -- Mind Games
-            },
-            [139383] = { -- Psijic Control Globe, Inactive
-                itemPrice 	= 50000,
-                achievement = 2206, -- Unreliable Narrator
-            },
-            [139370] = { -- Replica of the Transparent Law
-                itemPrice 	= 100000,
-                achievement = 2193, -- Saviour of Summerset
-            },
-            [139378] = { -- Shimmerene Banner, Hanging
-                itemPrice 	= 10000,
-                achievement = 2194, -- The Good of Many
-            },
-            [139446] = { -- Spiral Skein Coral, Brittle-Vein
-                itemPrice 	= 10000,
-                achievement = 2008, -- Summerset Pathfinder
-            },
-            [139382] = { -- Spiral Skein Coral, Elkhorn
-                itemPrice 	= 1000,
-                achievement = 2205, -- Sweet Dreams
-            },
-            [139392] = { -- Sunhold Banner, Hanging
-                itemPrice 	= 10000,
-                achievement = 2095, -- Sunhold Group Event
-            },
-            [139385] = { -- The Keeper's Oath
-                itemPrice 	= 75000,
-                achievement = 2099, -- Relics of Summerset
-            },
-            [139384] = { -- Waterfall, Small Everlasting
-                itemPrice 	= 75000,
-                achievement = 2197, -- Divine Magistrate
-            },
-        },
-    },
-
-}

 FurC.Books[FURC_ALTMER] = {}

-FurC.Recipes[FURC_ALTMER] = {
-    139573, --Sketch: Figurine, the Fish and the Unicorn
-    139571, --Sketch: Figurine, the Sea-Monster's Surprise
-    139572, --Sketch: Figurine, the Taming of the Gryphon
-    139486, --Sketch: High Elf Ancestor Clock, Celestial
-    139613, --Sketch: High Elf Chalice, Delicate
-    139615, --Sketch: High Elf Chalice, Ornate
-    139616, --Sketch: High Elf Goblet, Silver Ornate
-    139612, --Sketch: High Elf Goblet, Silver Plain
-    139614, --Sketch: High Elf Goblet, Silver Stamped
-    139611, --Sketch: High Elf Goblet, Simple
-    139257, --Sketch: Scrimshaw Jewelery Box, Floral
-    139252, --Sketch: Scrimshaw Jewelery Box, Verdant Oval
-    139251, --Sketch: Scrimshaw Jewelery Box, Vineyard
-    139256, --Sketch: Scrimshaw, Ancient Vessel
-    139255, --Sketch: Scrimshaw, Octopus
-    139253, --Sketch: Scrimshaw, Sea Monster
-    139254, --Sketch: Scrimshaw, Ship
-
-    139514, -- Praxis: High Elf Wall, Stone Long",
-    139546, -- Praxis: High Elf Bench, Marble",
-    139556, -- Blueprint: High Elf Nightstand, Noble",
-    139538, -- Blueprint: High Elf Bed, Overhang Full",
-    139640, -- Pattern: High Elf Rug, Alinor Seal",
-    139524, -- Diagram: High Elf Sconce, Arched Glass",
-    139565, -- Blueprint: High Elf Trunk, Noble",
-    139540, -- Blueprint: High Elf Bed, Polished Full",
-    139550, -- Blueprint: High Elf Armchair, Polished",
-    139631, -- Praxis: High Elf Potted Plant, Twin Saplings",
-    139512, -- Praxis: High Elf Post, Stone Wall",
-    139511, -- Praxis: High Elf Wall, Stone Corner",
-    139609, -- Diagram: High Elf Table Setting, Complete",
-    139536, -- Blueprint: High Elf Bed, Noble Full",
-    139585, -- Diagram: Fireplace Grate, Wrought Iron",
-    139604, -- Praxis: High Elf Shrine,  Limestone Raised",
-    139575, -- Sketch: Scrimshaw Jewelry Box, Verdant Oval",
-    139588, -- Praxis: High Elf Fountain, Four-Way Timeworn",
-    139608, -- Praxis: High Elf Wall Shrine, Marble",
-    139569, -- Blueprint: High Elf Jewelry Box, Peaked",
-    139541, -- Blueprint: High Elf Bed, Noble Single",
-    139601, -- Praxis: High Elf Bowl, Stemmed Limestone",
-    139574, -- Sketch: Scrimshaw Jewelry Box, Vineyard",
-    139579, -- Sketch: Scrimshaw, Ancient Vessel",
-    139548, -- Blueprint: High Elf Armchair, Overhang",
-    139632, -- Praxis: High Elf Windowbox, Purple Wisteria",
-    139587, -- Praxis: High Elf Fireplace, Ornate",
-    139577, -- Sketch: Scrimshaw, Ship",
-    139582, -- Diagram: High Elf Pot, Patterned",
-    139486, -- Sketch: High Elf Ancestor Clock, Celestial",
-    139581, -- Diagram: High Elf Pot, Hanging Stamped",
-    139558, -- Blueprint: High Elf Counter, Polished Drawers",
-    139622, -- Blueprint: High Elf Bowl, Carved Wood",
-    139498, -- Praxis: High Elf Archway, Timeworn",
-    139593, -- Blueprint: High Elf Table, Noble Intimate",
-    139637, -- Pattern: High Elf Carpet, Alinor Crescent",
-    139634, -- Pattern: High Elf Curtains, Tall Drawn",
-    139534, -- Diagram: High Elf Streetlight, Paired Wrought Iron",
-    139503, -- Praxis: High Elf Floor, Ballroom Timeworn",
-    139544, -- Blueprint: High Elf Bench, Verdant",
-    139649, -- Blueprint: High Elf Cabinet, Noble",
-    139559, -- Blueprint: High Elf Counter, Polished Corner",
-    139490, -- Blueprint: Psijic Table, Small",
-    139520, -- Diagram: High Elf Sconce, Crenellated",
-    139487, -- Praxis: Book Row, Levitating",
-    139485, -- Blueprint: High Elf Pew, Polished",
-    139647, -- Praxis: High Elf Statue, Orator",
-    139603, -- Praxis: High Elf Shrine, Limestone",
-    139529, -- Diagram: High Elf Sconce, Candles",
-    139532, -- Blueprint: High Elf Candles, Stand",
-    139494, -- Praxis: Psijic Table, Six-fold Symmetry",
-    139525, -- Diagram: High Elf Sconce, Lantern",
-    139627, -- Blueprint: Display Case, Large",
-    139516, -- Praxis: High Elf Fence, Tall",
-    139572, -- Sketch: Figurine, The Taming of the Gryphon",
-    139557, -- Blueprint: High Elf Winerack, Polished",
-    139617, -- Diagram: High Elf Plate, Embossed",
-    139518, -- Praxis: High Elf Archway, Tall",
-    139630, -- Praxis: High Elf Potted Plant, Double Tiered",
-    139620, -- Diagram: High Elf Bread Basket, Wrought Iron",
-    139613, -- Sketch: High Elf Chalice, Delicate",
-    139519, -- Diagram: High Elf Sconce, Arched",
-    139505, -- Praxis: High Elf Sarcophagus, Wedge",
-    139545, -- Blueprint: High Elf Armchair, Backless Verdant",
-    139586, -- Diagram: Fireplace Tools, Wrought Iron",
-    139506, -- Praxis: High Elf Sarcophagus, Peaked",
-    139497, -- Praxis: Psijic Table, Grand",
-    139642, -- Pattern: High Elf Carpet, Intricate",
-    139625, -- Blueprint: Display Case, Standing Arched",
-    139612, -- Sketch: High Elf Goblet, Silver Plain",
-    139598, -- Design: High Elf Amphora, Embossed",
-    139507, -- Praxis: High Elf Plinth, Sarcophagus",
-    139599, -- Diagram: High Elf Urn, Bronze",
-    139638, -- Pattern: High Elf Carpet, Verdant",
-    139583, -- Blueprint: High Elf Divider, Noble",
-    139639, -- Pattern: High Elf Carpet, Vibrant",
-    139619, -- Design: High Elf Meal, Individual",
-    139614, -- Sketch: High Elf Goblet, Silver Stamped",
-    139495, -- Praxis: Psijic Lighting Globe, Large",
-    139646, -- Praxis: High Elf Statue, Kinlord",
-    139645, -- Pattern: High Elf Tapestry, Royal Gryphons",
-    139595, -- Design: High Elf Amphora, Delicate",
-    139542, -- Blueprint: High Elf Bookshelf, Polished",
-    139644, -- Pattern: High Elf Tapestry, Alinor Dusk",
-    139643, -- Pattern: High Elf Tapestry, Alinor Dawn",
-    139571, -- Sketch: Figurine, The Sea-Monster's Surprise",
-    139530, -- Diagram: High Elf Sconce, Candles Tall",
-    139605, -- Praxis: High Elf Pot, Limestone",
-    139566, -- Blueprint: High Elf Trunk, Spired",
-    139624, -- Blueprint: Display Case, Standing",
-    139513, -- Praxis: High Elf Wall, Stone",
-    139635, -- Pattern: High Elf Curtains, Drawn",
-    139539, -- Blueprint: High Elf Bed, Polished Single",
-    139567, -- Blueprint: High Elf Jewelry Box, Noble",
-    139629, -- Praxis: High Elf Potted Plant, Triple Tiered",
-    139628, -- Praxis: High Elf Potted Plant, Perpetual Bloom",
-    139626, -- Blueprint: Display Case, Specimen",
-    139636, -- Pattern: High Elf Drapes, Noble",
-    139543, -- Blueprint: High Elf Wardrobe, Polished",
-    139493, -- Pattern: Psijic Banner",
-    139623, -- Design: High Elf Bowl, Millet",
-    139584, -- Blueprint: High Elf Divider, Polished",
-    139510, -- Praxis: High Elf Stairway, Timeworn Wide",
-    139488, -- Praxis: Book Stack, Levitating",
-    139621, -- Design: High Elf Pie Dish, Cherry Pie",
-    139618, -- Diagram: High Elf Platter, Scalloped",
-    139564, -- Blueprint: High Elf Trunk, Engraved",
-    139526, -- Diagram: High Elf Brazier, Standing Coals",
-    139501, -- Praxis: High Elf Bookshelf Wall, Timeworn",
-    139535, -- Diagram: High Elf Streetlight, Wrought Iron",
-    139615, -- Sketch: High Elf Chalice, Ornate",
-    139537, -- Blueprint: High Elf Bed, Canopy Full",
-    139533, -- Diagram: High Elf Brazier, Hanging Coals",
-    139492, -- Praxis: Psijic Table, Scalloped",
-    139594, -- Design: High Elf Urn, Gilded",
-    139528, -- Diagram: High Elf Candelabra, Wrought Iron",
-    139633, -- Praxis: High Elf Windowbox, Blue Wisteria",
-    139531, -- Blueprint: High Elf Candles, Tall Stand",
-    139504, -- Praxis: High Elf Column, Timeworn",
-    139641, -- Pattern: High Elf Runner, Royal",
-    139611, -- Sketch: High Elf Goblet, Simple",
-    139610, -- Design: High Elf Meal, Complete Setting",
-    139554, -- Blueprint: High Elf Nightstand, Scalloped",
-    139551, -- Blueprint: High Elf Armchair, Backless Polished",
-    139521, -- Diagram: High Elf Lantern, Hanging",
-    139499, -- Praxis: High Elf Column, Heavy Timeworn",
-    139607, -- Praxis: High Elf Display Stand, Marble",
-    139500, -- Praxis: High Elf Pedestal, Timeworn",
-    139606, -- Praxis: High Elf Display Stand, Marble Wide",
-    139527, -- Diagram: High Elf Brazier, Noble",
-    139602, -- Praxis: High Elf Urn, Limestone Large",
-    139547, -- Blueprint: High Elf Armchair, Noble",
-    139508, -- Praxis: High Elf Sarcophagus, Open",
-    139573, -- Sketch: Figurine, The Fish and the Unicorn",
-    139553, -- Blueprint: High Elf Desk, Mirrored",
-    139597, -- Design: High Elf Urn, Stemmed",
-    139517, -- Praxis: High Elf Fence, Tall Long",
-    139491, -- Praxis: Psijic Lighting Globe, Small",
-    139489, -- Blueprint: Psijic Chair, Arched",
-    139596, -- Design: High Elf Amphora, Slender",
-    139600, -- Praxis: High Elf Bowl, Shallow Limestone",
-    139509, -- Praxis: High Elf Stairway, Timeworn",
-    139515, -- Praxis: High Elf Post, Tall Fence",
-    139591, -- Praxis: High Elf Table, Decorative Marble",
-    139590, -- Praxis: High Elf Table, Round Marble",
-    139589, -- Praxis: High Elf Fountain, Timeworn",
-    139592, -- Blueprint: High Elf Table, Noble Grand",
-    139552, -- Blueprint: High Elf Desk, Polished",
-    139578, -- Sketch: Scrimshaw, Octopus",
-    139580, -- Sketch: Scrimshaw Jewelry Box, Floral",
-    139549, -- Blueprint: High Elf Chair, Polished",
-    139496, -- Pattern: Psijic Banner, Large",
-    139576, -- Sketch: Scrimshaw, Sea Monster",
-    139502, -- Praxis: High Elf Column, Slender Timeworn",
-    139568, -- Blueprint: High Elf Jewelry Box, Polished",
-    139523, -- Diagram: High Elf Sconce, Wrought Glass",
-    139616, -- Sketch: High Elf Goblet, Silver Ornate",
-    139563, -- Blueprint: High Elf Trunk, Peaked",
-    139522, -- Diagram: High Elf Lantern, Stationary",
-    139555, -- Blueprint: High Elf Nightstand, Octagonal",
-    139570, -- Blueprint: High Elf Jewelry Box, Octagonal",
-    139648, -- Design: High Elf Amphora, Portrait",
-    139484, -- Blueprint: High Elf Writing Desk, Noble",
-

-}
-
-FurC.LuxuryFurnisher = FurC.LuxuryFurnisher or {}
-FurC.LuxuryFurnisher[FURC_ALTMER] = {
-
-}
-
-
-FurC.Faustina[FURC_ALTMER] = {
-    [139391] = 10, -- Master Craftsman's Banner, Hanging
-	[137870] = 125, -- Basic Jewelry Crafting Station
-}

diff --git a/data/AchievementVendors.lua b/data/AchievementVendors.lua
index eedc452..8b620f4 100644
--- a/data/AchievementVendors.lua
+++ b/data/AchievementVendors.lua
@@ -1,164 +1,199 @@
-FurC.AchievementVendors[FURC_DRAGONS] = {
-	["the Undaunted Enclaves"] = {
-		["Undaunted Quartermaster"] = {
-			[134908] = { -- Blackmarrow Banner
-				itemPrice 	= 15000,
-				achievement = 1975, -- Scalecaller Peak Vanquisher
-			},
-			[134907] = {
-				itemPrice 	= 50000,
-				achievement = 1959, -- Fang Lair Vanquisher
-			},
-		},
-	},
-}
-
-local bookList = {
-	[134553] = { -- The Truth in Sequence, Volume 1
-		itemPrice = 2000,
-	},
-	[134554] = { -- The Truth in Sequence, Volume 2
-		itemPrice = 2000,
-	},
-	[134555] = { -- The Truth in Sequence, Volume 3
-		itemPrice = 2000,
-	},
-	[134556] = { -- The Truth in Sequence, Volume 4
-		itemPrice = 2000,
-	},
-	[134557] = { -- The Truth in Sequence, Volume 5
-		itemPrice = 2000,
-	},
-	[134558] = { -- The Truth in Sequence, Volume 6
-		itemPrice = 2000,
-	},
-	[134559] = { -- The Truth in Sequence, Volume 7
-		itemPrice = 2000,
-	},
-	[134560] = { -- The Truth in Sequence, Volume 8
-		itemPrice = 2000,
-	},
-	[134561] = { -- The Truth in Sequence, Volume 9
-		itemPrice = 2000,
-	},
-	[134562] = { -- The Truth in Sequence, Volume 10
-		itemPrice = 2000,
-	},
-}
-FurC.Books[FURC_CLOCKWORK   ] = bookList
-FurC.AchievementVendors[FURC_CLOCKWORK] = {
+FurC.AchievementVendors[FURC_ALTMER] = {

-
-	["The Brass Citadel, Market"] = {
-		["Razoufa"] = {
-			[134285] = { -- Active Fabrication Tank
-				itemPrice 	= 75000,
-				achievement = 2049, -- Hero of Clockwork City
+    [GetString(FURC_AV_ALI)] = {
+		[GetString(FURC_AV_UNW)] = {
+			[139122] = { -- Bush, Summerset Spruce
+				itemPrice 	= 100,
 			},
-			[134286] = { -- Clockwork Stylus
-				itemPrice = 3000,
-				achievement = 2068, -- CC Adventurer
+			[139107] = { -- Coral Shelf, Flat
+				itemPrice 	= 100,
 			},
-			[134289] = { -- Energetic Anima Core
-				itemPrice = 15000,
-				achievement = 2072, -- Brass Fortress Quarter Master
+			[139108] = { --  Coral Shelf, Large
+				itemPrice 	= 250,
 			},
-			[134284] = { -- Mysterious Clockwork Sphere
-				itemPrice = 35000,
-				achievement = 2018, -- CC Master explorer
+			[139127] = { -- Hedge, Overgrown
+				itemPrice 	= 100,
 			},
-			[134288] = { -- Skeleton Key Replica
-				itemPrice = 7500,
-				achievement = 2064, -- The Burden Of Knowledge
+			[139128] = { -- Hedge, Overgrown long
+				itemPrice 	= 100,
 			},
-			[134283] = { -- The motionless Guardian
-				itemPrice = 12000,
-				achievement = 2067, -- Honorary Blackfeather
+			[139112] = { -- Limestone Border, Boulders
+				itemPrice 	= 100,
 			},
-			[134547] = { -- The Truth in Sequence
-				itemPrice = 20000,
-				achievement = 2069, -- Grand Adventurer
+			[139113] = { -- Limestone Border, Pebbles
+				itemPrice 	= 100,
 			},
-		},
-		["Mulvise Valyn"] = {
-			[134304] = { -- Boulder, Basalt Slap
-				itemPrice = 1000,
+			[139111] = { -- Limestone Border, Stones
+				itemPrice 	= 100,
 			},
-			[134292] = { -- Boulder, Metallic Rubble
-				itemPrice = 500,
+			[139114] = { -- Limestone Retaining Wall, Curved
+				itemPrice 	= 100,
 			},
-			[134293] = { -- Boulder, Metallic Shard
-				itemPrice = 500,
+			[139116] = { -- Limestone Retaining Wall, Long
+				itemPrice 	= 100,
 			},
-			[134305] = { -- Clockwork Junk Heap, Small
-				itemPrice = 1000,
+			[139115] = { -- Limestone Retaining Wall, Short
+				itemPrice 	= 100,
 			},
-			[134303] = { -- Rock, Basalt Slab
-				itemPrice = 500,
+			[139109] = { -- Limestone Shelf, Curved
+				itemPrice 	= 100,
 			},
-			[134296] = { -- Rocks, Sintered Cluster
-				itemPrice = 1000,
+			[139110] = { -- Limestone Shelf, Large
+				itemPrice 	= 250,
 			},
-			[134294] = { -- Rocks, Sintered Column
-				itemPrice = 1000,
+			[139117] = { -- Limestone Stairway, Natural
+				itemPrice 	= 100,
 			},
-			[134295] = { -- Rocks, Sintered Pile
-				itemPrice = 1000,
+			[139126] = { -- Sapling, Gingko
+				itemPrice 	= 100,
 			},
-			[134297] = { -- Scavenged Grating, Narrow
-				itemPrice = 500,
+			[139121] = { -- Sapling, Growing Shade
+				itemPrice 	= 100,
 			},
-			[134298] = { -- Scavenged Grating, Wide
-				itemPrice = 500,
+			[139132] = { -- Sapling, Sea Grapes
+				itemPrice 	= 100,
 			},
-			[134301] = { -- Scavenged Plate, Ornate
-				itemPrice = 500,
+			[139124] = { -- Sapling, Summerset Spruce
+				itemPrice 	= 100,
 			},
-			[134299] = { -- Scavenged Plate, Plain
-				itemPrice = 500,
+			[139120] = { -- Sapling, Young Shade
+				itemPrice 	= 100,
 			},
-			[134300] = { -- Scavenged Plate, Wide
-				itemPrice = 500,
+			[139130] = { -- Saplings, Mangrove
+				itemPrice 	= 100,
 			},
-			[134302] = { -- Scavenged Support, Straight
-				itemPrice = 500,
+			[139125] = { -- Tree, Blooming Gingko
+				itemPrice 	= 2000,
 			},
-		},
-	},
-
-	["any Alliance Capital"] = {
-		[GetString(FURC_AV_HER)] = {
-			[134291] = { -- New Life Bonfire
-				itemPrice = 10000,
-				achievement = 1671,
-			},
-			[134290] = { -- New Life Celebrant's Standard
-				itemPrice = 2500,
-				achievement = 1674,
-			}
-		},
-	},
-}
-
-
+			[139131] = { -- Tree, Solitary Mangrove
+				itemPrice 	= 250,
+			},
+			[139134] = { -- Tree, Seagrapes
+				itemPrice 	= 100,
+			},
+			[139136] = { -- Tree, Twin Poplar
+				itemPrice 	= 100,
+			},
+			[139123] = { -- Tree, Summerset Spruce
+				itemPrice 	= 250,
+			},
+			[139119] = { -- Tree, Upstretched Shade
+				itemPrice 	= 250,
+			},
+			[139118] = { -- Tree, Wide-Trunked Shade
+				itemPrice 	= 250,
+			},
+			[139129] = { -- Tree, Young Mangrove
+				itemPrice 	= 100,
+			},
+			[139135] = { -- Tree, Young Poplar
+				itemPrice 	= 100,
+			},
+			[139133] = { -- Tree, Young Sea Grapes
+				itemPrice 	= 100,
+			},
+        },

-function tableMerge(t1, t2)
-	if nil == t2 and nil == t1 then
-		return {}
-	elseif nil == t2 then
-		return t1
-	elseif nil == t1 then
-		return t2
-	end
+        [GetString(FURC_AV_TAR)] = {
+            [139369] = { -- Abyssal Pearl, Sealed
+                itemPrice 	= 75000,
+                achievement = 2101, -- Back to the Abyss
+            },
+            [139388] = { -- Banner of the House of Reveries, Hanging
+                itemPrice 	= 10000,
+                achievement = "Manor of Masques", --
+            },
+            [139377] = { -- Banner of the Sapiarchs, Hanging
+                itemPrice 	= 10000,
+                achievement = 2204, -- Resolute Guardian
+            },
+            [139393] = { -- Cloudrest Banner, hanging
+                itemPrice 	= 10000,
+                achievement = 2131, -- Cloudrest Completed
+            },
+            [139379] = { -- Coral Formation, Luminescent
+                itemPrice 	= 15000,
+                achievement = 2202, -- Precious Pearl
+            },
+            [139380] = { -- Crystal Tower Key, Replica
+                itemPrice 	= 150000,
+                achievement = 2208, -- What Must Be Done
+            },
+            [139371] = { -- Crystal Tower Stand
+                itemPrice 	= 50000,
+                achievement = 2193, -- Savior of Summerset
+            },
+            [139386] = { -- Direnni Banner, Hanging
+                itemPrice 	= 10000,
+                achievement = "Lauriel's Lament", --
+            },
+            [139302] = { -- Display Case, Exhibit
+                itemPrice 	= 25000,
+                achievement = 2203, -- Mind Games
+            },
+            [139374] = { -- Enchanted Text, Illusory Forest
+                itemPrice 	= 100000,
+                achievement = 2209, -- Summerset Grand Adventurer
+            },
+            [139381] = { -- Evergloam Wispstone
+                itemPrice 	= 75000,
+                achievement = 2207, -- Enemy of my enemy
+            },
+            [139326] = { -- High Elf Statue, Kinlady
+                itemPrice 	= 20000,
+                achievement = 2204, -- Resolute Guardian
+            },
+            [139373] = { -- High Elf Wine Press, Display
+                itemPrice 	= 50000,
+                achievement = 2007, -- Summerset Cave Delver
+            },
+            [139387] = { -- Lillandril Banner
+                itemPrice 	= 10000,
+                achievement = "Murder in Lilandril",
+            },
+            [139372] = { -- Mind Trap Kelp, Adult
+                itemPrice 	= 20000,
+                achievement = 2203, -- Mind Games
+            },
+            [139383] = { -- Psijic Control Globe, Inactive
+                itemPrice 	= 50000,
+                achievement = 2206, -- Unreliable Narrator
+            },
+            [139370] = { -- Replica of the Transparent Law
+                itemPrice 	= 100000,
+                achievement = 2193, -- Saviour of Summerset
+            },
+            [139378] = { -- Shimmerene Banner, Hanging
+                itemPrice 	= 10000,
+                achievement = 2194, -- The Good of Many
+            },
+            [139446] = { -- Spiral Skein Coral, Brittle-Vein
+                itemPrice 	= 10000,
+                achievement = 2008, -- Summerset Pathfinder
+            },
+            [139382] = { -- Spiral Skein Coral, Elkhorn
+                itemPrice 	= 1000,
+                achievement = 2205, -- Sweet Dreams
+            },
+            [139392] = { -- Sunhold Banner, Hanging
+                itemPrice 	= 10000,
+                achievement = 2095, -- Sunhold Group Event
+            },
+            [139385] = { -- The Keeper's Oath
+                itemPrice 	= 75000,
+                achievement = 2099, -- Relics of Summerset
+            },
+            [139384] = { -- Waterfall, Small Everlasting
+                itemPrice 	= 75000,
+                achievement = 2197, -- Divine Magistrate
+            },
+        },
+    },

-    for k,v in pairs(t2) do
-		t1[k] = v
-    end
-    return t1
-end
+}


--- global function, needs to live here, YES MANA
+-- global function, needs to live in latest AchievementVendors.lua, YES FUTURE MANA, THIS IS YOU FROM THE PAST
 function FurC.InitAchievementVendorList()

 	FurC.SetupHomesteadItems()
@@ -167,9 +202,6 @@ function FurC.InitAchievementVendorList()

 	-- local generatedTable, listTable

-	-- FurC.ReachHornData.AchievementVendors["the Mages' guild"]["the Mystic as part of a collection"] = bookList

-	-- listTable = FurC.ReachHornData.AchievementVendors["any Alliance Capital"]["Heralda Garscroft"]
-	-- listTable = tableMerge(listTable, achievementVendor)
 end

diff --git a/data/Homestead/H_AchievementVendors.lua b/data/Homestead/H_AchievementVendors.lua
deleted file mode 100644
index c4be22c..0000000
--- a/data/Homestead/H_AchievementVendors.lua
+++ /dev/null
@@ -1,2588 +0,0 @@
-FurC.AchievementVendors = FurC.AchievementVendors or {}
-FurC.Books	= FurC.Books or {}
-
-function tableMerge(t1, t2)
-	if nil == t2 and nil == t1 then
-		return {}
-	elseif nil == t2 then
-		return t1
-	elseif nil == t1 then
-		return t2
-	end
-
-    for k,v in pairs(t2) do
-		t1[k] = v
-    end
-    return t1
-end
-
-local jesterVendor = {
-	-- tree, Jester's Large
-	[120994]	= {
-		itemPrice 		= 15000,
-		achievement  	= 1723,
-	},
-	-- tree, Jester's Small
-	[118529]	= {
-		itemPrice 		= 5000,
-		achievement  	= 1723,
-	},
-	-- Banner of Mayhem
-	[126720]	= {
-		itemPrice 		= 5000,
-		achievement  	= 1883,
-	},
-	-- Corpse of Mayhem, Argonian
-	[126721]	= {
-		itemPrice 		= 15000,
-		achievement  	= 1888,
-	},
-	-- Corpse of Mayhem, Khajiit
-	[126722]	= {
-		itemPrice 		= 15000,
-		achievement  	= 1888,
-	},
-	-- Corpse of Mayhem, Orc
-	[126723]	= {
-		itemPrice 		= 15000,
-		achievement  	= 1888,
-	},
-	-- Probably-Not-Punch-Bowl of Mayhem
-	[126724]	= {
-		itemPrice 		= 30000,
-		achievement  	= 1892,
-	},
-	-- Stamdard of Mayhem
-	[126719]	= {
-		itemPrice 		= 2500,
-		achievement  	= 1883,
-	},
-	[131433] = { -- Witches Festival, Plunder Skulls
-		itemPrice 	= 10000,
-		-- achievement = 2049,
-	},
-}
-
-local capitalVendor = {
-	[119987] = {		-- Coldharbour Urn
-		itemPrice 	= 5000,
-	},
-	[120037] = {		-- Decorative Skyshard
-		itemPrice 	= 25000,
-		achievement  	= 1009,
-	},
-	[120001] = {		-- Decorative Treasure Chest
-		itemPrice 	= 10000,
-		achievement  	= "",
-	},
-	[119994] = {		-- Depleted Sigil Stone
-		itemPrice 	= 5000,
-		achievement  	= "",
-	},
-	[120066] = {		-- Display Craft Bag
-		itemPrice 	= 5000,
-		achievement  	= "",
-	},
-	[120043] = {		-- Fishing Vessel
-		itemPrice 	= 100000,
-		achievement  	= "",
-	},
-	[120056] = {		-- Hanging Map of Tamriel
-		itemPrice 	= 10000,
-		achievement  	= "",
-	},
-	[119993] = {		-- Lantern of Anguish
-		itemPrice 	= 5000,
-		achievement  	= "",
-	},
-	[120039] = {		-- Primal Altar to Hircine
-		itemPrice 	= 50000,
-		achievement  	= 1009,
-	},
-	[119989] = {		-- Replica Black Soulgem
-		itemPrice 	= 2500,
-		achievement  	= "",
-	},
-	[119988] = {		-- Replica Soul Gem
-		itemPrice 	= 500,
-		achievement  	= "",
-	},
-	[119995] = {		-- Silent Sentinel
-		itemPrice 	= 20000,
-		achievement  	= "",
-	},
-	[119990] = {		-- Soul Gem Case
-		itemPrice 	= 4000,
-		achievement  	= "",
-	},
-	[119992] = {		-- Soul Gem Crate
-		itemPrice 	= 5000,
-		achievement  	= "",
-	},
-	[119996] = {		-- Soul Gem Stand
-		itemPrice 	= 4000,
-		achievement  	= "",
-	},
-	[119991] = {		-- Spare Flesh Atronach Parts
-
-		itemPrice 	= 10000,
-		achievement  	= "",
-	},
-	[119873] = {		-- Tamrith Coffin
-		itemPrice 	= 20000,
-		achievement  	= 1010,
-	},
-	[119872] = {		-- Tamrith Coffin Lid
-		itemPrice 	= 5000,
-		achievement  	= 1010,
-	},
-	[120064] = {		-- DC shield
-		itemPrice 	= 10000,
-		achievement  	= 61,
-	},
-	[120063] = {		-- AD shield
-		itemPrice 	= 10000,
-		achievement  	= 618,
-	},
-	[120065] = {		-- EP shield
-		itemPrice 	= 10000,
-		achievement  	= 617,
-	},
-}
-
-local furnishingVendor = {
-		[120998] = {	-- Block,Wood Cutting
-			itemPrice 	= 100,
-		},
-		[117994] = {	-- Rough Block,Stone Slab
-			itemPrice 	= 100,
-		},
-		[117971] = {	-- Rough Clothesline,Post
-			itemPrice 	= 100,
-		},
-		[117980] = {	-- Rough Firewood,Fireplace
-			itemPrice 	= 100,
-		},
-		[117982] = {	-- Rough Firewood,Stack
-			itemPrice 	= 100,
-		},
-		[117977] = {	-- Rough Stool,Round
-			itemPrice 	= 100,
-		},
-		[117990] = {	-- Tea Table,Carved
-			itemPrice 	= 250,
-		},
-
-}
-
-local morrowindStones = {
-	[120563] = {	-- Stone,Jagged Grey
-		itemPrice 	= 100 ,
-	},
-	[120570] = {	-- Stone,Slanted Grey
-		itemPrice 	= 100 ,
-	},
-	[120571] = {	-- Pebbles,Stacked Grey
-		itemPrice 	= 100,
-	},
-	[120564] = {	-- Pebbles,Stacked Weathered
-		itemPrice 	= 100 ,
-	},
-	[120572] = {	-- Rocks,Jagged Set
-		itemPrice 	= 100,
-	},
-}
-
-local structures = {
-	[117984] = {		-- Rough Block, Dark Stone
-		itemPrice 	= 100,
-	},
-	[117983] = {		-- Rough Block, Light Stone
-		itemPrice 	= 100,
-	},
-	[117995] = {		-- Rough Block, Stone Brick
-		itemPrice 	= 100,
-	},
-	[117993] = {		-- Rough Block, Stone Chunk
-		itemPrice 	= 100,
-	},
-	[117992] = {		-- Rough Block, Stone Section
-		itemPrice 	= 100,
-	},
-	[117994] = {		-- Rough Block, Stone Slab
-		itemPrice 	= 100,
-	},
-
-	[117961] = {		-- Rough Block, Woodcutter's
-		itemPrice 	= 100,
-	},
-
-	[117987] = {		-- Rough Plank, Long
-		itemPrice 	= 100,
-	},
-	[117961] = {		-- Rough Planks, Narrow
-		itemPrice 	= 100,
-	},
-	[117988] = {		-- Rough Planks, Platform
-		itemPrice 	= 100,
-	},
-	[117989] = {		-- Rough Plank, Wide
-		itemPrice 	= 100,
-	},
-	[117973] = {		-- Rough Crate, Dry
-		itemPrice 	= 100,
-	},
-
-}
-
-local boxes = {
-	[120998] = {	-- Block,Wood Cutting
-				itemPrice 	= 100,
-	},
-	[117959] = {		-- Rough Container, Shipping
-		itemPrice 	= 100,
-	},
-
-	[117959] = {		-- Rough Box, Slatted
-		itemPrice 	= 100,
-	},
-	[117931] = {		-- Rough Crate Lid
-		itemPrice 	= 100,
-	},
-	[117957] = {		-- Rough Crate, Cracked
-		itemPrice 	= 100,
-	},
-	[117958] = {		-- Rough Crate, Empty
-		itemPrice 	= 100,
-	},
-	[117930] = {		-- Rough Crate, Open
-		itemPrice 	= 100,
-	},
-	[117953] = {		-- Rough Crate, Sealed
-		itemPrice 	= 100,
-	},
-	[117928] = {		-- Rough Crate, Sturdy
-		itemPrice 	= 100,
-	},
-}
-
-local laundry = {
-		[117968] = {		-- Rough Clothesline, Full
-			itemPrice 	= 100,
-		},
-		[117970] = {		-- Rough Clothesline, Half
-			itemPrice 	= 100,
-		},
-		[117969] = {		-- Rough Clothesline, Long
-			itemPrice 	= 100,
-		},
-		[117972] = {		-- Rough Clothesline, Short
-			itemPrice 	= 100,
-		},
-		[117971] = {		-- Rough Clothesline, Post
-			itemPrice 	= 100,
-		},
-		[117966] = {		-- Rough Tarp, Oversized
-			itemPrice 	= 100,
-		},
-		[117967] = {		-- Rough Tarp, Standard
-			itemPrice 	= 100,
-		},
-}
-
-local fishing_trip = {
-
-		[117965] = {		-- Rough Campfire, Doused
-			itemPrice 	= 100,
-		},
-		[117978] = {		-- Rough Rod, Fishing
-			itemPrice 	= 100,
-		},
-		[117979] = {		-- Rough Spear, Fishing
-			itemPrice 	= 100,
-		},
-		[117977] = {		-- Rough Stool, Fishing
-			itemPrice 	= 100,
-		},
-
-
-}
-
-local bookList = {
-	[120197] = { -- 16 accords of madness, vol vi
-		itemPrice = 500,
-	},
-	[120121] = { -- The Glenmoril Wyrd
-		itemPrice = 500,
-	},
-	[120112] = { -- Legend of the fallen drotto
-		itemPrice = 500,
-	},
-	[120115] = { -- The Posting of the hunt
-		itemPrice = 500,
-	},
-	[120117] = { -- The Viridian Sentinel
-		itemPrice = 500,
-	},
-	[120120] = { -- Ancient Scrolls of the Dwemer IV
-		itemPrice = 500,
-	},
-	[120181] = { -- Antecedent of Dwemer Law
-		itemPrice = 500,
-	},
-	[120116] = { -- Aspects of Lord Hircine
-		itemPrice = 500,
-	},
-	[120114] = { -- Bangkorai, Shield of High Rock
-		itemPrice = 500,
-	},
-	[120104] = { -- Bloodfiends of Rivenspire
-		itemPrice = 500,
-	},
-	[120132] = { -- Circus of Cheerful Slaughter
-		itemPrice = 5000,
-	},
-	[120186] = { -- Dwemer Inquiries, Vol I
-		itemPrice = 500,
-	},
-	[120187] = { -- Dwemer Inquiries, Vol II
-		itemPrice = 500,
-	},
-	[120188] = { -- Dwemer Inquiries, Vol III
-		itemPrice = 500,
-	},
-	[120106] = { -- House-Folk of Silverhoof
-		itemPrice = 500,
-	},
-	[120111] = { -- House Ravenwatch Proclamation
-		itemPrice = 500,
-	},
-	[120108] = { -- House Tamrith - A recent history
-		itemPrice = 500,
-	},
-	[120113] = { -- Living with Lycantrophy
-		itemPrice = 500,
-	},
-	[120194] = { -- Myths of Sheogorath, Vol 1
-		itemPrice = 500,
-	},
-	[120110] = { -- Myths of Sheogorath, Vol 2
-		itemPrice = 500,
-	},
-	[120195] = { -- Myths of Sheogorath, Vol 2
-		itemPrice = 500,
-	},
-	[120236] = { -- Proper Life: Three CHants
-		itemPrice = 500,
-	},
-	[120133] = { -- Robier's Vegetable Garden
-		itemPrice = 5000,
-	},
-	[120109] = { -- Shornhelm, city of the north
-		itemPrice = 500,
-	},
-	[120102] = { -- The Barrows of Westmark Moor
-		itemPrice = 500,
-	},
-	[120232] = { -- The Cantatas of Vivec
-		itemPrice = 500,
-	},
-	[120190] = { -- The Homilies of Blessed Almalexia
-		itemPrice = 500,
-	},
-	[120191] = { -- The Legendary Scourge
-		itemPrice = 500,
-	},
-	[120192] = { -- The LUsty Argonian Maid 1
-		itemPrice = 500,
-	},
-	[120193] = { -- The LUsty Argonian Maid 2
-		itemPrice = 500,
-	},
-	[120199] = { -- Wabbajack
-		itemPrice = 500,
-	},
-	[120235] = { -- Ode to the Tundrastriders
-		itemPrice = 500,
-	},
-	[120237] = { -- Song of the Askelde men
-		itemPrice = 500,
-	},
-	[120230] = { -- Battle of Glenumbra Moors
-		itemPrice = 500,
-	},
-	[120231] = { -- Book of Dawn and Dusk
-		itemPrice = 500,
-	},
-	[120196] = { -- Warrior's Charge
-		itemPrice = 500,
-	},
-	[120082] = {
-		itemPrice = 500,
-	},
-	[120083] = {
-		itemPrice = 500,
-	},
-	[120084] = {
-		itemPrice = 500,
-	},
-	[120085] = {
-		itemPrice = 500,
-	},
-	[120086] = {
-		itemPrice = 500,
-	},
-	[120087] = {
-		itemPrice = 500,
-	},
-	[120088] = {
-		itemPrice = 500,
-	},
-	[120089] = {
-		itemPrice = 500,
-	},
-	[120090] = {
-		itemPrice = 500,
-	},
-	[120091] = {
-		itemPrice = 500,
-	},
-	[120092] = {
-		itemPrice = 500,
-	},
-	[120093] = {
-		itemPrice = 500,
-	},
-	[120094] = {
-		itemPrice = 500,
-	},
-	[120095] = {
-		itemPrice = 500,
-	},
-	[120096] = {
-		itemPrice = 500,
-	},
-	[120097] = {
-		itemPrice = 500,
-	},
-	[120098] = {
-		itemPrice = 500,
-	},
-	[120099] = {
-		itemPrice = 500,
-	},
-	[120100] = {
-		itemPrice = 500,
-	},
-	[120101] = {
-		itemPrice = 500,
-	},
-	[120103] = {
-		itemPrice = 500,
-	},
-	[120105] = {
-		itemPrice = 500,
-	},
-	[120107] = {
-		itemPrice = 500,
-	},
-	[120118] = {
-		itemPrice = 500,
-	},
-	[120119] = {
-		itemPrice = 500,
-	},
-	[120122] = {
-		itemPrice = 500,
-	},
-	[120123] = {
-		itemPrice = 500,
-	},
-	[120124] = {
-		itemPrice = 500,
-	},
-	[120125] = {
-		itemPrice = 500,
-	},
-	[120126] = {
-		itemPrice = 500,
-	},
-	[120127] = {
-		itemPrice = 500,
-	},
-	[120128] = {
-		itemPrice = 500,
-	},
-	[120129] = {
-		itemPrice = 500,
-	},
-	[120130] = {
-		itemPrice = 500,
-	},
-	[120131] = {
-		itemPrice = 500,
-	},
-	[120134] = {
-		itemPrice = 500,
-	},
-	[120135] = {
-		itemPrice = 500,
-	},
-	[120136] = {
-		itemPrice = 500,
-	},
-	[120137] = {
-		itemPrice = 500,
-	},
-	[120138] = {
-		itemPrice = 500,
-	},
-	[120139] = {
-		itemPrice = 500,
-	},
-	[120140] = {
-		itemPrice = 500,
-	},
-	[120141] = {
-		itemPrice = 500,
-	},
-	[120142] = {
-		itemPrice = 500,
-	},
-	[120143] = {
-		itemPrice = 500,
-	},
-	[120144] = {
-		itemPrice = 500,
-	},
-	[120145] = {
-		itemPrice = 500,
-	},
-	[120146] = {
-		itemPrice = 500,
-	},
-	[120147] = {
-		itemPrice = 500,
-	},
-	[120148] = {
-		itemPrice = 500,
-	},
-	[120149] = {
-		itemPrice = 500,
-	},
-	[120150] = {
-		itemPrice = 500,
-	},
-	[120151] = {
-		itemPrice = 500,
-	},
-	[120152] = {
-		itemPrice = 500,
-	},
-	[120153] = {
-		itemPrice = 500,
-	},
-	[120154] = {
-		itemPrice = 500,
-	},
-	[120155] = {
-		itemPrice = 500,
-	},
-	[120156] = {
-		itemPrice = 500,
-	},
-	[120157] = {
-		itemPrice = 500,
-	},
-	[120158] = {
-		itemPrice = 500,
-	},
-	[120159] = {
-		itemPrice = 500,
-	},
-	[120160] = {
-		itemPrice = 500,
-	},
-	[120161] = {
-		itemPrice = 500,
-	},
-	[120162] = {
-		itemPrice = 500,
-	},
-	[120163] = {
-		itemPrice = 500,
-	},
-	[120164] = {
-		itemPrice = 500,
-	},
-	[120165] = {
-		itemPrice = 500,
-	},
-	[120166] = {
-		itemPrice = 500,
-	},
-	[120167] = {
-		itemPrice = 500,
-	},
-	[120168] = {
-		itemPrice = 500,
-	},
-	[120169] = {
-		itemPrice = 500,
-	},
-	[120170] = {
-		itemPrice = 500,
-	},
-	[120171] = {
-		itemPrice = 500,
-	},
-	[120172] = {
-		itemPrice = 500,
-	},
-	[120173] = {
-		itemPrice = 500,
-	},
-	[120174] = {
-		itemPrice = 500,
-	},
-	[120175] = {
-		itemPrice = 500,
-	},
-	[120176] = {
-		itemPrice = 500,
-	},
-	[120177] = {
-		itemPrice = 500,
-	},
-	[120178] = {
-		itemPrice = 500,
-	},
-	[120179] = {
-		itemPrice = 500,
-	},
-	[120180] = {
-		itemPrice = 500,
-	},
-	[120182] = {
-		itemPrice = 500,
-	},
-	[120183] = {
-		itemPrice = 500,
-	},
-	[120184] = {
-		itemPrice = 500,
-	},
-	[120185] = {
-		itemPrice = 500,
-	},
-	[120189] = {
-		itemPrice = 500,
-	},
-	[120197] = {
-		itemPrice = 500,
-	},
-	[120198] = {
-		itemPrice = 500,
-	},
-	[120200] = {
-		itemPrice = 500,
-	},
-	[120201] = {
-		itemPrice = 500,
-	},
-	[120202] = {
-		itemPrice = 500,
-	},
-	[120203] = {
-		itemPrice = 500,
-	},
-	[120204] = {
-		itemPrice = 500,
-	},
-	[120205] = {
-		itemPrice = 500,
-	},
-	[120206] = {
-		itemPrice = 500,
-	},
-	[120207] = {
-		itemPrice = 500,
-	},
-	[120208] = {
-		itemPrice = 500,
-	},
-	[120209] = {
-		itemPrice = 500,
-	},
-	[120210] = {
-		itemPrice = 500,
-	},
-	[120211] = {
-		itemPrice = 500,
-	},
-	[120212] = {
-		itemPrice = 500,
-	},
-	[120213] = {
-		itemPrice = 500,
-	},
-	[120214] = {
-		itemPrice = 500,
-	},
-	[120215] = {
-		itemPrice = 500,
-	},
-	[120216] = {
-		itemPrice = 500,
-	},
-	[120217] = {
-		itemPrice = 500,
-	},
-	[120218] = {
-		itemPrice = 500,
-	},
-	[120219] = {
-		itemPrice = 500,
-	},
-	[120220] = {
-		itemPrice = 500,
-	},
-	[120221] = {
-		itemPrice = 500,
-	},
-	[120222] = {
-		itemPrice = 500,
-	},
-	[120223] = {
-		itemPrice = 500,
-	},
-	[120224] = {
-		itemPrice = 500,
-	},
-	[120225] = {
-		itemPrice = 500,
-	},
-	[120226] = {
-		itemPrice = 500,
-	},
-	[120227] = {
-		itemPrice = 500,
-	},
-	[120228] = {
-		itemPrice = 500,
-	},
-	[120229] = {
-		itemPrice = 500,
-	},
-	[120231] = {
-		itemPrice = 500,
-	},
-	[120233] = {
-		itemPrice = 500,
-	},
-	[120234] = {
-		itemPrice = 500,
-	},
-	[120238] = {
-		itemPrice = 500,
-	},
-	[120239] = {
-		itemPrice = 500,
-	},
-	[120240] = {
-		itemPrice = 500,
-	},
-	[120241] = {
-		itemPrice = 500,
-	},
-	[120242] = {
-		itemPrice = 500,
-	},
-	[120243] = {
-		itemPrice = 500,
-	},
-	[120244] = {
-		itemPrice = 500,
-	},
-	[120245] = {
-		itemPrice = 500,
-	},
-	[120246] = {
-		itemPrice = 500,
-	},
-	[120247] = {
-		itemPrice = 500,
-	},
-	[120248] = {
-		itemPrice = 500,
-	},
-	[120249] = {
-		itemPrice = 500,
-	},
-	[120250] = {
-		itemPrice = 500,
-	},
-	[120251] = {
-		itemPrice = 500,
-	},
-	[120252] = {
-		itemPrice = 500,
-	},
-	[120253] = {
-		itemPrice = 500,
-	},
-	[120254] = {
-		itemPrice = 500,
-	},
-	[120255] = {
-		itemPrice = 500,
-	},
-	[120256] = {
-		itemPrice = 500,
-	},
-	[120257] = {
-		itemPrice = 500,
-	},
-	[120258] = {
-		itemPrice = 500,
-	},
-	[120259] = {
-		itemPrice = 500,
-	},
-	[120260] = {
-		itemPrice = 500,
-	},
-	[120261] = {
-		itemPrice = 500,
-	},
-	[120262] = {
-		itemPrice = 500,
-	},
-	[120263] = {
-		itemPrice = 500,
-	},
-	[120264] = {
-		itemPrice = 500,
-	},
-	[120265] = {
-		itemPrice = 500,
-	},
-	[120266] = {
-		itemPrice = 500,
-	},
-	[120267] = {
-		itemPrice = 500,
-	},
-	[120268] = {
-		itemPrice = 500,
-	},
-	[120269] = {
-		itemPrice = 500,
-	},
-	[120270] = {
-		itemPrice = 500,
-	},
-	[120271] = {
-		itemPrice = 500,
-	},
-	[120272] = {
-		itemPrice = 500,
-	},
-	[120273] = {
-		itemPrice = 500,
-	},
-	[120274] = {
-		itemPrice = 500,
-	},
-	[120275] = {
-		itemPrice = 500,
-	},
-	[120276] = {
-		itemPrice = 500,
-	},
-	[120277] = {
-		itemPrice = 500,
-	},
-	[120278] = {
-		itemPrice = 500,
-	},
-	[120279] = {
-		itemPrice = 500,
-	},
-	[120280] = {
-		itemPrice = 500,
-	},
-	[120281] = {
-		itemPrice = 500,
-	},
-	[120282] = {
-		itemPrice = 500,
-	},
-	[120283] = {
-		itemPrice = 500,
-	},
-	[120284] = {
-		itemPrice = 500,
-	},
-	[120285] = {
-		itemPrice = 500,
-	},
-	[120286] = {
-		itemPrice = 500,
-	},
-	[120287] = {
-		itemPrice = 500,
-	},
-	[120288] = {
-		itemPrice = 500,
-	},
-	[120289] = {
-		itemPrice = 500,
-	},
-	[120290] = {
-		itemPrice = 500,
-	},
-	[120291] = {
-		itemPrice = 500,
-	},
-	[120292] = {
-		itemPrice = 500,
-	},
-	[120293] = {
-		itemPrice = 500,
-	},
-	[120294] = {
-		itemPrice = 500,
-	},
-	[120295] = {
-		itemPrice = 500,
-	},
-	[120296] = {
-		itemPrice = 500,
-	},
-	[120297] = {
-		itemPrice = 500,
-	},
-	[120298] = {
-		itemPrice = 500,
-	},
-	[120299] = {
-		itemPrice = 500,
-	},
-	[120300] = {
-		itemPrice = 500,
-	},
-	[120301] = {
-		itemPrice = 500,
-	},
-	[120302] = {
-		itemPrice = 500,
-	},
-	[120303] = {
-		itemPrice = 500,
-	},
-	[120304] = {
-		itemPrice = 500,
-	},
-	[120305] = {
-		itemPrice = 500,
-	},
-	[120306] = {
-		itemPrice = 500,
-	},
-	[120307] = {
-		itemPrice = 500,
-	},
-	[120308] = {
-		itemPrice = 500,
-	},
-	[120309] = {
-		itemPrice = 500,
-	},
-	[120310] = {
-		itemPrice = 500,
-	},
-	[120311] = {
-		itemPrice = 500,
-	},
-	[120312] = {
-		itemPrice = 500,
-	},
-	[120313] = {
-		itemPrice = 500,
-	},
-	[120314] = {
-		itemPrice = 500,
-	},
-	[120315] = {
-		itemPrice = 500,
-	},
-	[120316] = {
-		itemPrice = 500,
-	},
-	[120317] = {
-		itemPrice = 500,
-	},
-	[120318] = {
-		itemPrice = 500,
-	},
-	[120319] = {
-		itemPrice = 500,
-	},
-	[120320] = {
-		itemPrice = 500,
-	},
-	[120321] = {
-		itemPrice = 500,
-	},
-	[120322] = {
-		itemPrice = 500,
-	},
-	[120323] = {
-		itemPrice = 500,
-	},
-	[120324] = {
-		itemPrice = 500,
-	},
-	[120325] = {
-		itemPrice = 500,
-	},
-	[120326] = {
-		itemPrice = 500,
-	},
-	[120327] = {
-		itemPrice = 500,
-	},
-	[120328] = {
-		itemPrice = 500,
-	},
-	[120329] = {
-		itemPrice = 500,
-	},
-	[120330] = {
-		itemPrice = 500,
-	},
-	[120331] = {
-		itemPrice = 500,
-	},
-	[120332] = {
-		itemPrice = 500,
-	},
-	[120333] = {
-		itemPrice = 500,
-	},
-	[120334] = {
-		itemPrice = 500,
-	},
-	[120335] = {
-		itemPrice = 500,
-	},
-	[120336] = {
-		itemPrice = 500,
-	},
-	[120337] = {
-		itemPrice = 500,
-	},
-	[120338] = {
-		itemPrice = 500,
-	},
-	[120339] = {
-		itemPrice = 500,
-	},
-	[120340] = {
-		itemPrice = 500,
-	},
-	[120341] = {
-		itemPrice = 500,
-	},
-	[120342] = {
-		itemPrice = 500,
-	},
-	[120343] = {
-		itemPrice = 500,
-	},
-	[120344] = {
-		itemPrice = 500,
-	},
-	[120345] = {
-		itemPrice = 500,
-	},
-	[120346] = {
-		itemPrice = 500,
-	},
-	[120347] = {
-		itemPrice = 500,
-	},
-	[120348] = {
-		itemPrice = 500,
-	},
-	[120349] = {
-		itemPrice = 500,
-	},
-	[120350] = {
-		itemPrice = 500,
-	},
-	[120351] = {
-		itemPrice = 500,
-	},
-	[120352] = {
-		itemPrice = 500,
-	},
-	[120353] = {
-		itemPrice = 500,
-	},
-	[120354] = {
-		itemPrice = 500,
-	},
-	[120355] = {
-		itemPrice = 500,
-	},
-	[120356] = {
-		itemPrice = 500,
-	},
-	[120357] = {
-		itemPrice = 500,
-	},
-	[120358] = {
-		itemPrice = 500,
-	},
-	[120359] = {
-		itemPrice = 500,
-	},
-	[120360] = {
-		itemPrice = 500,
-	},
-	[120361] = {
-		itemPrice = 500,
-	},
-	[120362] = {
-		itemPrice = 500,
-	},
-	[120363] = {
-		itemPrice = 500,
-	},
-	[120364] = {
-		itemPrice = 500,
-	},
-	[120365] = {
-		itemPrice = 500,
-	},
-	[120366] = {
-		itemPrice = 500,
-	},
-	[120367] = {
-		itemPrice = 500,
-	},
-	[120368] = {
-		itemPrice = 500,
-	},
-	[120369] = {
-		itemPrice = 500,
-	},
-	[120370] = {
-		itemPrice = 500,
-	},
-	[120371] = {
-		itemPrice = 500,
-	},
-	[120372] = {
-		itemPrice = 500,
-	},
-	[120373] = {
-		itemPrice = 500,
-	},
-	[120374] = {
-		itemPrice = 500,
-	},
-	[120375] = {
-		itemPrice = 500,
-	},
-	[120376] = {
-		itemPrice = 500,
-	},
-	[120406] = {
-		itemPrice = 500,
-	},
-	[120407] = {
-		itemPrice = 500,
-	},
-}
-
-FurC.Books[FURC_HOMESTEAD] = bookList
---[[
-			[""] = {		--
-				itemPrice 	= 100,
-			},
-]]
-
-local miscVendor = tableMerge(tableMerge(tableMerge(structures, boxes), laundry), fishing_trip)
-
-
-FurC.AchievementVendors[FURC_HOMESTEAD] = {
-
-	["any Alliance Capital"] = {
-		[GetString(FURC_AV_NAR)] = capitalVendor,
-		[GetString(FURC_AV_HER)] = jesterVendor,
-	},
-	-- location name
-	["Mournhold Bank"] = {
-		-- vendor name
-		[GetString(FURC_AV_LTS)]	  = {
-			[119908] = {	-- Swamp Anemone
-				itemPrice 	= 15000,
-			},
-			[119914] = {	-- Touch of Plague
-				itemPrice 	= 500,
-			},
-			[119913] = {	-- Tribunal Altar
-				itemPrice 	= 25000,
-			},
-			[119911] = {	-- Tribunal Rug
-				itemPrice 	= 5000,
-			},
-			[119910] = {	-- Veloth's Reliquary
-				itemPrice 	= 50000,
-			},
-		},
-		[GetString(FURC_AV_FRO)] = {
-			[120567] = {	-- Bush,Vibrant Barberry
-				itemPrice 	= 250,
-			},
-			[120566] = {	-- Fern Plant,Healthy Green
-				itemPrice 	= 100,
-			},
-			[120574] = {	-- Mushroom,Huge Chanterelle
-				itemPrice 	= 250,
-			},
-			[120568] = {	-- Mushroom,Tall Chanterelle
-				itemPrice 	= 250,
-			},
-		},
-
-	},
-	["Dhalmora, Bal Foyen"] = {
-
-		[GetString(FURC_AV_FRO)] = {
-			[120502] = {	-- Flower, Grandmother Hibiscus
-				itemPrice 	= 1000,
-			},
-			[120621] = {	-- Plant, Red Aloe
-				itemPrice 	= 250,
-			},
-			[120620] = {	-- Plant, Red Aloe Succulent
-				itemPrice 	= 250,
-			},
-			[120618] = {	-- Tree, Gnarled Ashflower
-				itemPrice 	= 5000,
-			},
-			[120619] = {	-- Tree, Twisted Ashflower
-				itemPrice 	= 7500,
-			},
-			[120622] = {	-- Vines, Clustered Ivy
-				itemPrice 	= 600,
-			},
-
-		},
-		[GetString(FURC_AV_LTS)]	  = {
-			[120956] = {	-- Atmoran Eagle Totem Medallion
-				itemPrice 	= 3000,
-			},
-			[120954] = {	-- Atmoran Snake Totem Medallion
-				itemPrice 	= 3000,
-			},
-			[120955] = {	-- Atmoran Whale Totem Medallion
-				itemPrice 	= 3000,
-			},
-		},
-
-	},
-	["Stonefalls, Ebonheart"] = {
-
-		[GetString(FURC_AV_FRO)] = {
-			[120502] = {	-- Flower, Grandmother Hibiscus
-				itemPrice 	= 1000,
-			},
-			[121028] = {	-- Hedge, Dense Low Wall
-				itemPrice 	= 1300,
-			},
-
-			[121284] = {	-- Dark Elf Column Lantern
-				itemPrice 	= 250,
-			},
-
-			[120621] = {	-- Plant, Red Aloe
-				itemPrice 	= 250,
-			},[120620] = {	-- Plant, Red Aloe Succulent
-				itemPrice 	= 250,
-			},
-			[120618] = {	-- Tree, Gnarled Ashflower
-				itemPrice 	= 5000,
-			},
-			[120619] = {	-- Tree, Twisted Ashflower
-				itemPrice 	= 7500,
-			},
-			[120622] = {	-- Vines, Clustered Ivy
-				itemPrice 	= 600,
-			},
-			[120680] = {	-- Topiary, Fragile Cypress
-				itemPrice 	= 2500,
-			},
-			[120681] = {	-- Topiary, Pruned Cypress
-				itemPrice 	= 1100,
-			},
-			[120677] = {	-- Tree, Autumn Cherry Blossom
-				itemPrice 	= 15000,
-			},
-		},
-
-		[GetString(FURC_AV_LTS)]	  = {
-			[119890] = {	-- Blood Fountain
-				itemPrice 	= 100000,
-			},
-			[119889] = {	-- Daedric Sconce
-				itemPrice 	= 5000,
-			},
-			[119888] = {	-- Lacquered Kwama Egg
-				itemPrice 	= 1000,
-			},
-			[119892] = {	-- Remnant of Balreth
-				itemPrice 	= 15000,
-			},
-			[119887] = {	-- Serien's Stand
-				itemPrice 	= 10000,
-			},
-		},
-
-	},
-	["Eastmarch, Fort Amol"] = {
-
-		[GetString(FURC_AV_FRO)] = miscVendor,
-
-
-		[GetString(FURC_AV_LTS)]	  = {
-			[119905] = {	-- Dragon Shrine Altar
-				itemPrice 	= 20000,
-			},
-			[119901] = {	-- Lob's Challenge Horn
-				itemPrice 	= 1000,
-			},
-			[119904] = {	-- Standing Slab
-				itemPrice 	= 1000,
-			},
-			[119906] = {	-- Throne of the Skald King
-				itemPrice 	= 50000,
-			},
-			[119907] = {	-- Visage of the Skald
-				itemPrice 	= 25000,
-			},
-		},
-
-	},
-	["Shadowfen, Alten Corimont"] = {
-
-		[GetString(FURC_AV_FRO)] = {
-			[120502] = {	-- Flower, Grandmother Hibiscus
-				itemPrice 	= 1000,
-			},
-			[120630] = {	-- Pebble, Stacked Lichen
-				itemPrice 	= 100,
-			},
-			[120632] = {	-- Pebble, Stacked Mossy
-				itemPrice 	= 100,
-			},
-			[120637] = {	-- Plant, Dry Spike
-				itemPrice 	= 100,
-			},
-			[120627] = {	-- Rocks, Stacked Angular
-				itemPrice 	= 100,
-			},
-			[120628] = {	-- Rocks, Slanted Mossy
-				itemPrice 	= 100,
-			},
-			[120629] = {	-- Rocks, Smooth Mossy
-				itemPrice 	= 100,
-			},
-			[120634] = {	-- Tree, Towering Swamp Palm
-				itemPrice 	= 250,
-			},
-			[120636] = {	-- Tree, Mud Palm
-				itemPrice 	= 250,
-			},
-
-		},
-
-		[GetString(FURC_AV_LTS)]	  = {
-			[119897] = {	-- Argonian Egg
-				itemPrice 	= 2500,
-			},
-			[119893] = {	-- Mimic Hist Tree
-				itemPrice 	= 20000,
-			},
-			[119900] = {	-- Oblivion Stone
-				itemPrice 	= 5000,
-			},
-			[119898] = {	-- Replica Mnemic Egg
-				itemPrice 	= 100000,
-			},
-			[119899] = {	-- Replica Stone Nest
-				itemPrice 	= 10000,
-			},
-		},
-
-	},
-	["Riften, Market, Armorer"] = {
-
-		[GetString(FURC_AV_FRO)] = {
-			[120502] = {	-- Flower, Grandmother Hibiscus
-				itemPrice 	= 1000,
-			},
-			[120492] = {	-- Boulder, Flat , Weathered
-				itemPrice 	= 100,
-			},
-			[120496] = {	-- Fern, dead
-				itemPrice 	= 100,
-			},
-			[120494] = {	-- Pebble, Stacked, Weathered
-				itemPrice 	= 100,
-			},
-			[120493] = {	-- Rock, Slanted, Tan
-				itemPrice 	= 100,
-			},
-			[120495] = {	-- Sapling, Budding Red
-				itemPrice 	= 100,
-			},
-			[120500] = {	-- Sapling, Tender Autumn
-				itemPrice 	= 100,
-			},
-			[120499] = {	-- Sapling, Tender Harvest
-				itemPrice 	= 250,
-			},
-		},
-
-		[GetString(FURC_AV_LTS)]	  = {
-			[119915] = {	-- Ancient Cultist Totem
-				itemPrice 	= 5000,
-			},
-			[119918] = {	-- Statue of the Wolf
-				itemPrice 	= 7500,
-			},
-			[119922] = {	-- Torn Worm Cult Banner
-				itemPrice 	= 10000,
-			},
-			[119920] = {	-- Totem of the Reach
-				itemPrice 	= 40000,
-			},
-			[119916] = {	-- Ysgramor Statue
-				itemPrice 	= 20000,
-			},
-		},
-	},
-
-
-	["Alik'r, Kozanzet, Sweetwater Inn"] = {
-		[GetString(FURC_AV_LOT)] = {
-			[119879]	= { 		-- Kneeling Ansei Statue
-				itemPrice 	= 15000,
-			},
-			[119877]	= { 		-- Reconstructed Necromantic Focus
-				itemPrice 	= 5000,
-			},
-			[119880]	= { 		-- Replica Of Shattered Ansei Sword
-				itemPrice 	= 35000,
-			},
-			[119878]	= { 		-- Standing Ansei Statue
-				itemPrice 	= 15000,
-			},
-			[119876]	= { 		-- Tu'whacca's Braizer
-				itemPrice 	= 5000,
-			},
-		},
-		[GetString(FURC_AV_ROH)] = miscVendor,
-	},
-	["Bangkorai, Evermore"] = {
-		[GetString(FURC_AV_LOT)] = {
-			[119885] = {		-- ceremonial Redguard vessel
-				itemPrice 	= 3000,
-			},
-			[119882] = {		-- Damaged Knight of St. Pelin statue
-				itemPrice 	= 5000,
-			},
-			[119883] = {		-- Evermore Mourning Banner
-				itemPrice 	= 4000,
-			},
-			[119881] = {		-- Glenmoril Wyrd Stone
-				itemPrice 	= 5000,
-			},
-			[119884] = {		-- Ragged Imperial Banner
-				itemPrice 	= 4000,
-			},
-
-		},
-		[GetString(FURC_AV_ROH)] = {
-			[120449] = {		-- Bush, Desert Scrub
-				itemPrice 	= 100,
-			},
-			[120457] = {		-- Pebble, smooth desert
-				itemPrice 	= 100,
-			},
-			[120461] = {		-- Cactus, Desert Wine
-				itemPrice 	= 500,
-			},
-			[120452] = {		-- Pebble, smooth grey
-				itemPrice 	= 100,
-			},
-			[120460] = {		-- Plant, green water
-				itemPrice 	= 100,
-			},
-			[120450] = {		-- plant, squat Yucca
-				itemPrice 	= 100,
-			},
-			[120462] = {		-- Plant, tall flowering Yucca
-				itemPrice 	= 100,
-			},
-			[120440] = {		-- Rocks, Scattered, Weatherd
-				itemPrice 	= 100,
-			},
-			[120454] = {		-- Rocks, Stacked Desert
-				itemPrice 	= 100,
-			},
-			[120438] = {		-- Rocks, Stacked Weathered
-				itemPrice 	= 100,
-			},
-			[120441] = {		-- Sapling, Short Highland
-				itemPrice 	= 100,
-			},
-			[120443] = {		-- Sapling, Strong Highland
-				itemPrice 	= 100,
-			},
-			[120443] = {		-- Sapling, Tall Highland
-				itemPrice 	= 100,
-			},
-			[120442] = {		-- Sapling, Squat Highland
-				itemPrice 	= 100,
-			},
-			[120459] = {		-- Shrub, Browncrub
-				itemPrice 	= 100,
-			},
-			[120458] = {		-- Shrub, Speckled Forest
-				itemPrice 	= 250,
-			},
-			[120446] = {		-- Small Juniper Tree
-				itemPrice 	= 100,
-			},
-			[120451] = {		-- Stones, Smooth Gray
-				itemPrice 	= 100,
-			},
-			[120455] = {		-- Stone, stacked desert
-				itemPrice 	= 100,
-			},
-			[120439] = {		-- Stone, tapered weathered
-				itemPrice 	= 100,
-			},
-			[120445] = {		-- Sturdy Juniper Tree
-				itemPrice 	= 100,
-			},
-			[120453] = {		-- Tree, hardened Juniper
-				itemPrice 	= 100,
-			},
-			[120448] = {		-- Tree, old Juniper
-				itemPrice 	= 100,
-			},
-
-		},
-	},
-	["Bethnikh, near tavern"] = {
-		[GetString(FURC_AV_LOT)] = {
-			[119984] = {		-- Pirate Banner
-				itemPrice 	= 10000,
-			},
-		},
-		[GetString(FURC_AV_ROH)] = miscVendor,
-	},
-	["Glenumbra, Daggerfall, The Rosy Lion"] = {
-		[GetString(FURC_AV_LOT)] = {
-			[119855] = {		-- Wyrstone
-				itemPrice 	= 2500,
-			},
-			[119856] = {		-- Torn Lion Guard Banner
-				itemPrice 	= 5000,
-			},
-			[119862] = {		-- Hagraven Totem
-				itemPrice 	= 5000,
-			},
-			[119857] = {		-- Breton Gravewatcher Statue
-				itemPrice 	= 25000,
-			},
-			[119858] = {		-- Bloodthorn Vines, small
-				itemPrice 	= 5000,
-			},
-		},
-		[GetString(FURC_AV_ROH)] = {
-			[121011] = {		-- Trees, young autumn birch
-				itemPrice 	= 100,
-			},
-			[120713] = {		-- Trees, Towering Autumn Birch
-				itemPrice 	= 250,
-			},
-			[120720] = {		-- Shrubs, Small Berry
-				itemPrice 	= 100,
-			},
-			[120718] = {		-- Shrub, Dense Forest
-				itemPrice 	= 100,
-			},
-			[120717] = {		-- Shrub, Autumn Forest
-				itemPrice 	= 100,
-			},
-			[120711] = {		-- Sapling, Young Birch
-				itemPrice 	= 250,
-			},
-			[120716] = {		-- Sapling, Autumn Cluster
-				itemPrice 	= 100,
-			},
-			[120708] = {		-- Rocks, Craggy set
-				itemPrice 	= 100,
-			},
-			[120527] = {		-- Fern Plant, Green Curly
-				itemPrice 	= 100,
-			},
-			[120707] = {		-- Boulder, Mossy Weathered
-				itemPrice 	= 100,
-			},
-			[120705] = {		-- Boulder, Mossy Grey
-				itemPrice 	= 100,
-			},
-			[120706] = {		-- Boulder, Giant Mossy
-				itemPrice 	= 100,
-			},
-
-		},
-	},
-	["Rivenspire, Shornhelm, Dead Wolf Inn"] = {
-		[GetString(FURC_AV_LOT)] = {
-			[119871] = {		-- Wagon of DETH
-				itemPrice 	= 25000,
-			},
-			[120951] = {		-- Hope of Rivenspire
-				itemPrice 	= 5000,
-			},
-			[119875] = {		-- Gargoyle Statue
-				itemPrice 	= 50000,
-			},
-			[120040] = {		-- Crimson-Stained Bowl
-				itemPrice 	= 2500,
-			},
-			[119870] = {		-- Constellation: The Tower
-				itemPrice 	= 10000,
-			},
-			[119869] = {		-- Constellation: The Shadow
-				itemPrice 	= 10000,
-			},
-			[119868] = {		-- Constellation: The Ritual
-				itemPrice 	= 10000,
-			},
-		},
-		[GetString(FURC_AV_ROH)] = {
-			[120578] = {		-- Sapling, Young Aspen
-				itemPrice 	= 100,
-			},
-			[120576] = {		-- Sapling ,Fragile Aspen
-				itemPrice 	= 100,
-			},
-			[120579] = {		-- Flower, Stout Hibiscus
-				itemPrice 	= 250,
-			},
-			[120580] = {		-- Flower, Healthy Hibiscus
-				itemPrice 	= 250,
-			},
-		},
-	},
-	["Stormhaven, Wayrest, Merchant district"] = {
-		[GetString(FURC_AV_LOT)] = {
-			[119865] = {		-- Wayrest Guillotine
-				itemPrice 	= 75000,
-			},
-			[119867] = {		-- Vaermina Statue
-				itemPrice 	= 75000,
-			},
-			[119864] = {		-- Spirit Warden Azura Statue
-				itemPrice 	= 75000,
-			},
-			[119866] = {		-- Replica Dreamshard
-				itemPrice 	= 2000,
-			},
-			[119863] = {		-- Knights of the Flame Banner
-				itemPrice 	= 10000,
-			},
-		},
-		[GetString(FURC_AV_ROH)] = {
-
-			[120582] = {		-- Tree, Yellowing Oak
-				itemPrice 	= 20000,
-			},
-			[120442] = {		-- Sapling, Squat Highland
-				itemPrice 	= 100,
-			},
-			[120444] = {		-- Sapling, Tall Highland
-				itemPrice 	= 100,
-			},
-			[120443] = {		-- Sapling, strong Highland
-				itemPrice 	= 100,
-			},
-		}
-	},
-
-	["Skywatch, Auridon"]	= {
-		[GetString(FURC_AV_ATH)] = {
-			[119823] = {		-- Tanzelwil Culanda Stone
-				itemPrice 	= 5000,
-			},
-			[119824] = {		-- Veiled Crystal
-				itemPrice 	= 5000,
-			},
-			[119825] = {		-- Mehrunes Dagon Brazier
-				itemPrice 	= 10000,
-			},
-			[119826] = {		-- High Elf Throne
-				itemPrice 	= 25000,
-			},
-			[119827] = {		-- Ancient High Elf Statue
-				itemPrice 	= 35000,
-			},
-		},
-		[GetString(FURC_AV_MAL)] = {
-			[120663] = {		-- Saplings, Healthy Forest
-				itemPrice 	= 100,
-			},
-			[120662] = {		-- Saplings, Squat Forest
-				itemPrice 	= 100,
-			},
-			[120661] = {		-- Saplings, Young Forest
-				itemPrice 	= 100,
-			},
-
-		},
-	},
-	["Greenshade, Marbruk"] = {
-		[GetString(FURC_AV_MAL)] = {
-			[120597] = { 		-- Fern Plant, Vibrant
-				itemPrice 	= 100,
-			},
-			[120599] = { 		-- Fern, Healthy Green
-				itemPrice 	= 100,
-			},
-			[120595] = { 		-- Fern, Lush
-				itemPrice 	= 100,
-			},
-			[120600] = { 		-- Fern, Young, Healthy
-				itemPrice 	= 100,
-			},
-			[120598] = { 		-- Plants, Low weeds
-				itemPrice 	= 100,
-			},
-			[120588] = { 		-- Rock, Slanted Algae
-				itemPrice 	= 100,
-			},
-			[120590] = { 		-- Rocks, Smooth Set
-				itemPrice 	= 100,
-			},
-			[120592] = { 		-- Saplings, Highland Cluster
-				itemPrice 	= 100,
-			},
-			[120593] = { 		-- Saplings, Twin Highland
-				itemPrice 	= 100,
-			},
-			[120589] = { 		-- Stone, Slanted Weathered
-				itemPrice 	= 100,
-			},
-			[120591] = { 		-- Tree, Vibrant Privet
-				itemPrice 	= 250,
-			},
-			[120587] = { 		-- Boulder, Flat Grey
-				itemPrice 	= 250,
-			},
-			[120586] = { 		-- Boulder, Moss Covered
-				itemPrice 	= 250,
-			},
-
-		},
-
-
-		[GetString(FURC_AV_ATH)] = {
-			[119839] = { 		-- Fires of the WIlderking
-				itemPrice 	= 4000,
-			},
-			[119841] = { 		-- Hectahame Arboretum Relic
-				itemPrice 	= 10000,
-			},
-			[120991] = { 		-- Rise of the Silvenaar
-				itemPrice 	= 5000,
-			},
-			[119840] = { 		-- Sea Elf Banner
-				itemPrice 	= 10000,
-			},
-			[119842] = { 		--
-				itemPrice 	= 7500,
-			},
-		},
-
-	},
-	["Khenarthi's Roost, Mistral"] = {
-			[GetString(FURC_AV_MAL)] = miscVendor,
-			[GetString(FURC_AV_ATH)] = {
-				[119986] = {		-- Maomer Totem
-					itemPrice 	= 10000,
-				},
-			},
-	},
-	["Malabal Tor, Vulkwaesten, tavern"] = {
-			[GetString(FURC_AV_MAL)] = {
-				[120529] = {		-- Fern Cluster, Healthy
-					itemPrice 	= 100,
-				},
-				[120531] = {		-- Fern Fronts, Healthy Green
-					itemPrice 	= 100,
-				},
-				[120530] = {		-- Fern Fronds, Sunburst
-					itemPrice 	= 100,
-				},
-				[120527] = {		-- Fern Plant, Green Curly
-					itemPrice 	= 100,
-				},
-				[120528] = {		-- Fern Plant, Sturdy Mature
-					itemPrice 	= 100,
-				},
-				[120640] = {		-- Fern, Budding Forest
-					itemPrice 	= 100,
-				},
-				[120641] = {		-- Fern, Low Red
-					itemPrice 	= 100,
-				},
-				[120642] = {		-- Mushrooms, Brown Gilled
-					itemPrice 	= 100,
-				},
-				[120534] = {		-- Mushroom, Bruising Webcap
-					itemPrice 	= 250,
-				},
-				[120532] = {		-- Mushrooms, Poison Pax Cluster
-					itemPrice 	= 100,
-				},
-				[120533] = {		-- Mushrooms, Poison Pax Group
-					itemPrice 	= 100,
-				},
-				[120638] = {		-- Rock, Slanted Weathered
-					itemPrice 	= 100,
-				},
-				[120523] = {		-- Rocks, Mossy Cluster
-					itemPrice 	= 100,
-				},
-				[120524] = {		-- Rocks, Mossy Set
-					itemPrice 	= 100,
-				},
-				[120639] = {		-- Stones, Smooth Mossy
-					itemPrice 	= 100,
-				},
-				[120525] = {		-- Tree, Mossy Swamp
-					itemPrice 	= 100,
-				},
-				[120643] = {		-- Vines, Curtain Ivy
-					itemPrice 	= 750,
-				},
-				[120645] = {		-- Vines, Draped Ivy
-					itemPrice 	= 750,
-				},
-				[120644] = {		-- Vines, Lush Ivy
-					itemPrice 	= 600,
-				},
-			},
-			[GetString(FURC_AV_ATH)] = {
-				[119847] = {		-- Handfast
-					itemPrice 	= 25000,
-				},
-				[119846] = {		-- Handfast Pedestal
-					itemPrice 	= 5000,
-				},
-				[119845] = {		-- Wood Elf Union Trellis
-					itemPrice 	= 15000,
-				},
-				[119843] = {		-- Wood Orc Dream Catcher
-					itemPrice 	= 4000,
-				},
-				[119844] = {		-- Wood Orc Malacath Banner
-					itemPrice 	= 10000,
-				},
-			},
-	},
-	["Grahtwood, Redfur Trading Post"] = {
-			[GetString(FURC_AV_MAL)] = {
-				[120725] = {		-- Boulder, Mossy Crag
-					itemPrice 	= 100,
-				},
-				[121285] = {		-- Tree, Ancient Banyan
-					itemPrice 	= 25000,
-				},
-				[121286] = {		-- Tree, Giant Cypress
-					itemPrice 	= 5000,
-				},
-				[121287] = {		-- Tree, Towering Cypress
-					itemPrice 	= 5000,
-				},
-				[120742] = {		-- Tree, Twisted Banyan
-					itemPrice 	= 25000,
-				},
-				[119578] = {		-- Tree, Towering Palm Cluster
-					itemPrice 	= 100,
-				},
-				[120741] = {		-- Tree, Towering Wax Palm
-					itemPrice 	= 250,
-				},
-				[121288] = {		-- Tree, Mossy Murkmire Cluster
-					itemPrice 	= 250,
-				},
-				[117975] = {		-- Rough Hay Bed, Sloppy
-					itemPrice 	= 100,
-				},
-			},
-			[GetString(FURC_AV_ATH)] = {
-				[119834] = {		-- Aulus's Captive Audience
-					itemPrice 	= 10000,
-				},
-				[119836] = {		-- Guardian Mane
-					itemPrice 	= 10000,
-				},
-				[119837] = {		-- Orrery Control Pillar Replica
-					itemPrice 	= 10000,
-				},
-				[119835] = {		-- Ukaezai's Ward
-					itemPrice 	= 10000,
-				},
-				[119838] = {		-- Valenwood Brazier
-					itemPrice 	= 4000,
-				},
-			},
-	},
-
-	["Reaper's March, Rawl'Kha, Market"] = {
-			[GetString(FURC_AV_MAL)] = {
-				[120998] = { -- Block, Wood Cutting
-                 itemPrice = 100,
-                },
-                [120511] = { -- Bush, Mountain Scrub
-                 itemPrice = 100,
-                },
-                [120690] = { -- Fern Plant, Hardy
-                 itemPrice = 100,
-                },
-                [120510] = { -- Fern Plant, Sturdy Towering
-                 itemPrice = 100,
-                },
-                [120512] = { -- Fern, Fragile
-                 itemPrice = 100,
-                },
-                [120521] = { -- Fern, Withering
-                 itemPrice = 100,
-                },
-                [120691] = { -- Fern, Young Sunburnt
-                 itemPrice = 100,
-                },
-                [120703] = { -- Khajiit Column, Spiked
-                 itemPrice = 4000,
-                },
-                [120561] = { -- Plant, Jungle Leaf
-                 itemPrice = 100,
-                },
-                [120697] = { -- Plant, Leafy Sprouts
-                 itemPrice = 100,
-                },
-                [120560] = { -- Plant, Squat Jungle Leaf
-                 itemPrice = 100,
-                },
-                [120562] = { -- Plant, Towering Jungle Leaf
-                 itemPrice = 100,
-                },
-                [120699] = { -- Platform, Weathered Dock
-                 itemPrice = 250,
-                },
-                [120700] = { -- Post, Barnacle Covered
-                 itemPrice = 100,
-                },
-                [120515] = { -- Shrub, Lanky Highland
-                 itemPrice = 100,
-                },
-                [120522] = { -- Shrub, Tender Privet
-                 itemPrice = 100,
-                },
-                [117990] = { -- Tea Table, Carved
-                 itemPrice = 250,
-                },
-                [121282] = { -- Tree, Ancient Jungle
-                 itemPrice = 5000,
-                },
-                [121283] = { -- Tree, Healthy Jungle
-                 itemPrice = 250,
-                },
-                [120519] = { -- Tree, Healthy Privet
-                 itemPrice = 250,
-                },
-                [120687] = { -- Tree, Sturdy Shade
-                 itemPrice = 250,
-                },
-				[120558] = {		-- Sapling, Eucalyptus Shrub
-					itemPrice 	= 100,
-				},
-
-			},
-			[GetString(FURC_AV_ATH)] = {
-                [119848] = { -- Colovian Projection Crystal
-                  itemPrice      = 5000,
-                  achievement    = 536,
-                },
-                [119853] = { -- Full Moons Tile
-                  itemPrice      = 5000,
-                  achievement    = 602,
-                },
-                [119850] = { -- Khajiiti Shrine Guardian Statue
-                  itemPrice      = 20000,
-                  achievement    = 538,
-                },
-                [119849] = { -- Moonmont Lunar Altar
-                  itemPrice      = 15000,
-                  achievement    = 537,
-                },
-                [119854] = { -- New Moons Tile
-                  itemPrice      = 5000,
-                  achievement    = 602,
-                },
-                [119852] = { -- Waning Moons Tile
-                  itemPrice      = 5000,
-                  achievement    = 602,
-                },
-                [119851] = { -- Waxing Moons Wall Tile
-                  itemPrice      = 5000,
-                  achievement    = 602,
-                },
-            },
-	},
-	["Craglorn, Belkarth Woodworking store"] = {
-		[GetString(FURC_AV_LOT)] = {
-			[119933] = {		-- Craglorn Brazier
-				itemPrice 	= 5000,
-			},
-			[119934] = {		-- Craglorn Sconce
-				itemPrice 	= 5000,
-			},
-			[119931] = {		-- Craglorn Tapestrie
-				itemPrice 	= 35000,
-			},
-			[119925] = {		-- Nirncrux Bowl
-				itemPrice 	= 4000,
-			},
-			[119935] = {		-- Observatory Banner
-				itemPrice 	= 25000,
-			},
-			[119923] = {		-- Serpent Stone
-				itemPrice 	= 5000,
-			},
-			[119929] = {		-- Snake Prayer Tile
-				itemPrice 	= 5000,
-			},
-			[119930] = {		-- Totem of the Serpent
-				itemPrice 	= 10000,
-			},
-
-		},
-		[GetString(FURC_AV_KRR)] = {
-			[120964] = {		-- Boulder, Craggy Heap
-				itemPrice 	= 100,
-			},
-			[120545] = {		-- Tree, Sturdy Summer
-				itemPrice 	= 250,
-			},
-			[120963] = {		-- Boulder, Jagged Crag
-				itemPrice 	= 100,
-			},
-			[120552] = {		-- Bush, Flowering Scrub
-				itemPrice 	= 250,
-			},
-			[120555] = {		-- Flowers, Healthy Goldenrod
-				itemPrice 	= 250,
-			},
-			[120551] = {		-- Plant, Healthy Sage
-				itemPrice 	= 100,
-			},
-			[120977] = {		-- Plant, Strong Sage
-				itemPrice 	= 100,
-			},
-			[120966] = {		-- Rock, Craggy Rubble
-				itemPrice 	= 100,
-			},
-			[120539] = {		-- Rock, Jagged Craggy
-				itemPrice 	= 100,
-			},
-			[120969] = {		-- Sapling, Crabapple
-				itemPrice 	= 100,
-			},
-			[120972] = {		-- Sapling, Desert
-				itemPrice 	= 100,
-			},
-			[120548] = {		-- Sapling, Leaning Ash
-				itemPrice 	= 100,
-			},
-			[120973] = {		-- Sapling, Mountain
-				itemPrice 	= 100,
-			},
-			[120983] = {		-- Sapling, Mountain
-				itemPrice 	= 100,
-			},
-			[120971] = {		-- Sapling, Tall Scrub
-				itemPrice 	= 100,
-			},
-			[120982] = {		-- Sapling, Twisted
-				itemPrice 	= 100,
-			},
-			[120553] = {		-- Sapling, Young Scrub
-				itemPrice 	= 100,
-			},
-			[120976] = {		-- Sapling, Juniper Cluster
-				itemPrice 	= 100,
-			},
-			[120981] = {		-- Sapling, Desert Scrub
-				itemPrice 	= 100,
-			},
-			[120967] = {		-- Stone, Angled Grey
-				itemPrice 	= 100,
-			},
-			[120975] = {		-- Tree, Angled Ash
-				itemPrice 	= 100,
-			},
-			[120543] = {		-- Tree, Blooming Crabapple
-				itemPrice 	= 6000,
-			},
-			[120549] = {		-- Tree, Large Twisted Ash
-				itemPrice 	= 250,
-			},
-			[120547] = {		-- Tree, Leaning Ash
-				itemPrice 	= 250,
-			},
-			[120970] = {		-- Tree, Sturdy Crabapple
-				itemPrice 	= 13000,
-			},
-			[120974] = {		-- Tree, Sturdy Summer
-				itemPrice 	= 250,
-			},
-			[120550] = {		-- Tree, Twisted
-				itemPrice 	= 100,
-			},
-
-		},
-	},
-
-	["Coldharbour, Hollow City, Cicero's General Good"] = {
-
-		[GetString(FURC_AV_LOT)] = {
-			[119828] = {		-- Ayleid Throne
-				itemPrice 	= 50000,
-			},
-			[119830] = {		-- Coldharbour Chandelier
-				itemPrice 	= 25000,
-			},
-			[119831] = {		-- Cowering Statue
-				itemPrice 	= 10000,
-			},
-			[119832] = {		-- Light of Meridia
-				itemPrice 	= 10000,
-			},
-			[119833] = {		-- Molag Bal Banner
-				itemPrice 	= 20000,
-			},
-			[119829] = {		-- Shackle Control Stone
-				itemPrice 	= 25000,
-			},
-		},
-		[GetString(FURC_AV_KRR)] = boxes,
-	},
-
-	["Gold Coast, Kvatch"] = {
-		[GetString(FURC_AV_ATH)] = {
-			[119947] = {		-- Banner of the Kvatch Guard
-				itemPrice 	= 15000,
-			},
-			[119697] = {	-- Blade of Woe, Replica
-				itemPrice 	= 25000,
-			},
-			[119941] = {		-- Brotherhood Poison Vial
-				itemPrice 	= 2500,
-			},
-			[119945] = {		-- Dark Brotherhood Banner
-				itemPrice 	= 10000,
-			},
-			[119953] = {		-- Dark Ledger
-				itemPrice 	= 50000,
-			},
-			[119937] = {		-- Gold Coast Estate Keg
-				itemPrice 	= 500000,
-			},
-			[120950] = {		-- Hanging Hourglass
-				itemPrice 	= 15000,
-			},
-			[119939] = {		-- Hourglass Rug
-				itemPrice 	= 10000,
-			},
-			[119951] = {		-- Litany of Blood
-				itemPrice 	= 25000,
-			},
-			[119944] = {		-- Order of the Hour banner
-				itemPrice 	= 5000,
-			},
-			[119950] = {		-- Preserved Sweetrolls
-				itemPrice 	= 500,
-			},
-			[119940] = {		-- Sanctuary Sconce
-				itemPrice 	= 10000,
-			},
-			[119948] = {		-- Statue of the Mother
-				itemPrice 	= 100000,
-			},
-		},
-		[GetString(FURC_AV_FRO)] = structures,
-	},
-
-	["Hew's Bane"] = {
-		[GetString(FURC_AV_LTS)] = {
-			[119965] = {		-- Abah's Landing Banner
-				itemPrice 	= 10000,
-			},
-			[119961] = {		-- An Adoring Fan
-				itemPrice 	= 2500,
-			},
-			[119969] = {		-- Banner of TAneth
-				itemPrice 	= 10000,
-			},
-			[119968] = {		-- Distracting Harpy Egg
-				itemPrice 	= 1500,
-			},
-			[120989] = {		-- Hanging Wedding Lantern
-				itemPrice 	= 3000,
-			},
-			[119974] = {		-- Hiding Place
-				itemPrice 	= 1000,
-			},
-			[119974] = {		-- Iron Wheel Banner
-				itemPrice 	= 15000,
-			},
-			[119960] = {		-- Jar of Green Dye
-				itemPrice 	= 500,
-			},
-			[120990] = {		-- Large Covered Well
-				itemPrice 	= 15000,
-			},
-			[120952] = {		-- Opulent Dowry Chest
-				itemPrice 	= 50000,
-			},
-			[119955] = {		-- Pale Garden Flowers
-				itemPrice 	= 500,
-			},
-			[119954] = {		-- Reliquary Skull
-				itemPrice 	= 25000,
-			},
-			[119954] = {		-- Statue of Shadows
-				itemPrice 	= 25000,
-			},
-			[119967] = {		-- Vibrant Garden Flowers
-				itemPrice 	= 500,
-			},
-			[119963] = {		-- Yokudan Puzzle Column
-				itemPrice 	= 5000,
-			},
-		},
-		["Rohiza"] = structures,
-	},
-
-	["Orsinium"] = {
-
-		[GetString(FURC_AV_LOT)] = {
-			[119979] = {		-- Fur Throne
-				itemPrice 	= 25000,
-			},
-			[119976] = {		-- Orc Adventuring Backpack
-				itemPrice 	= 500,
-			},
-			[119978] = {		-- Orcish Battle Totem
-				itemPrice 	= 7500,
-			},
-			[119980] = {		-- Orcish Totem
-				itemPrice 	= 10000,
-			},
-			[119977] = {		-- Orcish War Totem
-				itemPrice 	= 5000,
-			},
-			[119975] = {		-- Orsinium Cart
-				itemPrice 	= 10000,
-			},
-			[119981] = {		-- Throne of the Orc King
-				itemPrice 	= 50000,
-			},
-		},
-
-		[GetString(FURC_AV_MAL)] = {
-			[117955] = {		-- Box, Slatted
-				itemPrice 	= 100,
-			},
-			[117964] = {		-- Rough Fire, doused
-				itemPrice 	= 100,
-			},
-			[117985] = {		-- Rough Bread, Morsel
-				itemPrice 	= 100,
-			},
-			[117981] = {		-- Rough Firewood, Smoldering
-				itemPrice 	= 100,
-			},
-			[117976] = {		-- Rough Hay Bed, Sloppy
-				itemPrice 	= 100,
-			},
-			[117976] = {		-- Rough Hay Bed, Covered
-				itemPrice 	= 100,
-			},
-			[117974] = {		-- Rough Hay Bed, Tidy
-				itemPrice 	= 100,
-			},
-			[117986] = {		-- Rough Plank, Long
-				itemPrice 	= 100,
-			},
-
-		},
-
-	},
-
-	["any city"] = {
-		[FURC_AV_ENC] = {
-			[120050] = { -- Enchanter's Sign
-				itemPrice 	= 5000,
-			},
-			[120051] = { -- Enchanting Gem
-				itemPrice 	= 5000,
-				achievement = 1317,
-			},
-		},
-		[GetString(FURC_AV_ALC)] = {
-			[120044] = { -- Alchemy sign
-				itemPrice 	= 10000,
-				achievement = 1031,
-			},
-			[120058] = { -- Harvester's Herbs
-				itemPrice 	= 1000,
-			},
-			[120045] = { -- Poison Satchel
-				itemPrice 	= 5000,
-				achievement = 1464
-			},
-		},
-		[GetString(FURC_AV_COO)] = {
-			[120053] = { -- Chef's Cleaver
-				itemPrice 	= 2500,
-				achievement = 1028,
-			},
-			[120052] = { -- Provisioner's Sign
-				itemPrice 	= 5000,
-				achievement = 1035,
-			},
-		},
-		[GetString(FURC_AV_CLO)] = {
-			[120048] = { -- clothier's sign
-				itemPrice 	= 5000,
-				achievement = 1033,
-			},
-			[120060] = { -- Harvester's Critter Trap
-				itemPrice 	= 5000,
-				achievement = 68,
-			},
-			[120061] = { -- Harvester's Garden Shrub
-				itemPrice 	= 10000,
-				achievement = 68,
-			},
-		},
-		[GetString(FURC_AV_CAR)] = {
-			[120057] = { -- Harvester's Woodpile
-				itemPrice 	= 1000,
-				achievement = 68,
-			},
-			[120054] = { -- Woodworker's Sign
-				itemPrice 	= 5000,
-				achievement = 1036,
-			},
-		},
-		[GetString(FURC_AV_BSM)] = {
-
-			[120046] = { -- Blacksmith's Sign
-				itemPrice 	= 5000,
-				achievement = 1032,
-			},
-			[120059] = { -- Harvester's Ore
-				itemPrice 	= 1000,
-				achievement = 68,
-			},
-			[120062] = { -- Smith's Bellow
-				itemPrice 	= 10000,
-				achievement = 1022,
-			},
-		},
-		[GetString(FURC_AV_OUT)] = {
-			[120028] = { -- Death Marker
-				itemPrice 	= 5000,
-			},
-			[120033] = { -- Decorative Safebox
-				itemPrice 	= 5000,
-				achievement = 1200, -- Safebox Cracker
-			},
-			[120032] = { -- Decorative Thieves Trove
-				itemPrice 	= 5000,
-				achievement = "", -- No Stash Left Behind
-			},
-			[120957] = { -- Faded fence banner
-				itemPrice 	= 10000,
-				achievement = "Ledgerdmain Rank 20",
-			},
-			[120027] = { -- Mass Tombstone
-				itemPrice 	= 10000,
-			},
-			[120026] = { -- Mountain of Loot
-				itemPrice 	= 10000,
-				achievement = "", -- Black Market Mogul
-			},
-			[120029] = { -- Noble Pocket Lint
-				itemPrice 	= 1000,
-				achievement = 1192,-- Sneak Thief Extraordinaire
-			},
-			[120023] = { -- Outlaw Banner
-				itemPrice 	= 5000,
-				achievement = "Ledgerdmain Rank 20",
-			},
-			[120025] = { -- Pile of Coins
-				itemPrice 	= 2500,
-				achievement = 1196, -- Felonious Recompense
-			},
-			[120030] = { -- Pocket Change
-				itemPrice 	= 500,
-			},
-			[120031] = { -- Replica Key, Blank
-				itemPrice 	= 1000,
-				achievement = 1208, -- Master Burglar
-			},
-			[120993] = { -- Scales of Felonious Recompense
-				itemPrice 	= 5000,
-				achievement = 1196, -- Felonious Recompense
-			},
-		},
-
-	},
-
-	["the Mages' guild"] = {
-		["the Mystic as part of a collection"] = {},
-		["the Mystic"] = {
-			[120003] = { -- cheese cutter
-				itemPrice 	= 5000,
-			},
-			[120011] = { -- Mages' Guild Banner
-				itemPrice 	= 10000,
-			},
-		}
-
-	},
-	["the Fighters' guild"] = {
-		["Hall Steward"] = {
-			[120019] = { --Broken Chain
-				itemPrice 	= 50000,
-			},
-			[119999] = { -- Daedric Chest
-				itemPrice 	= 10000,
-			},
-			[120948] = { -- Dark Anchor Pinion
-				itemPrice 	= 100000,
-			},
-			[120019] = { -- Fighters' Guild Banner
-				itemPrice 	= 10000,
-			},
-		},
-	},
-	["the Undaunted Enclaves"] = {
-		["Undaunted Quartermaster"] = {
-			[120036] = { -- Undaunted Banner
-				itemPrice 	= 15000,
-			},
-			[120035] = { -- Undaunted Chest
-				itemPrice 	= 5000,
-			},
-			[120034] = { -- Undaunted Mug
-				itemPrice 	= 1000,
-			},
-		},
-	},
-}
-
-function FurC.SetupHomesteadItems()
-	local generatedTable, listTable
-
-	FurC.AchievementVendors[FURC_HOMESTEAD]["the Mages' guild"]["the Mystic as part of a collection"] = bookList
-
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Dhalmora, Bal Foyen"][GetString(FURC_AV_FRO)]
-	addTable = tableMerge(furnishingVendor, morrowindStones)
-	listTable = tableMerge(listTable, addTable)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Mournhold Bank"][GetString(FURC_AV_FRO)]
-	listTable = tableMerge(listTable, addTable)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Stonefalls, Ebonheart"][GetString(FURC_AV_FRO)]
-	listTable = tableMerge(listTable, addTable)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Shadowfen, Alten Corimont"][GetString(FURC_AV_FRO)]
-	addTable = furnishingVendor
-	listTable = tableMerge(listTable, addTable)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Riften, Market, Armorer"][GetString(FURC_AV_FRO)]
-	addTable = furnishingVendor
-	listTable = tableMerge(listTable, addTable)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Bangkorai, Evermore"][GetString(FURC_AV_ROH)]
-	listTable = tableMerge(listTable, addTable)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Stormhaven, Wayrest, Merchant district"][GetString(FURC_AV_ROH)]
-	listTable = tableMerge(listTable, addTable)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Greenshade, Marbruk"][GetString(FURC_AV_MAL)]
-	listTable = tableMerge(listTable, addTable)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Malabal Tor, Vulkwaesten, tavern"][GetString(FURC_AV_MAL)]
-	listTable = tableMerge(listTable, addTable)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Reaper's March, Rawl'Kha, Market"][GetString(FURC_AV_MAL)]
-	listTable = tableMerge(listTable, structures)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Grahtwood, Redfur Trading Post"][GetString(FURC_AV_MAL)]
-	listTable = tableMerge(listTable, furnishingVendor)
-	listTable = tableMerge(listTable, miscVendor)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Craglorn, Belkarth Woodworking store"][GetString(FURC_AV_KRR)]
-	listTable = tableMerge(listTable, furnishingVendor)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Coldharbour, Hollow City, Cicero's General Good"][GetString(FURC_AV_KRR)]
-	listTable = tableMerge(listTable, structures)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Gold Coast, Kvatch"][GetString(FURC_AV_FRO)]
-	listTable = tableMerge(listTable, furnishingVendor)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Hew's Bane"]["Rohiza"]
-	listTable = tableMerge(listTable, furnishingVendor)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Orsinium"][GetString(FURC_AV_MAL)]
-	listTable = tableMerge(listTable, furnishingVendor)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Glenumbra, Daggerfall, The Rosy Lion"]["Rohiza"]
-	listTable = tableMerge(listTable, furnishingVendor)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Rivenspire, Shornhelm, Dead Wolf Inn"]["Rohiza"]
-	listTable = tableMerge(listTable, furnishingVendor)
-
-	listTable = FurC.AchievementVendors[FURC_HOMESTEAD]["Orsinium"][GetString(FURC_AV_MAL)]
-	listTable = tableMerge(listTable, structures)
-end
-
diff --git a/data/Homestead/H_Cyrodiil.lua b/data/Homestead/H_Cyrodiil.lua
deleted file mode 100644
index a6a8a1b..0000000
--- a/data/Homestead/H_Cyrodiil.lua
+++ /dev/null
@@ -1,131 +0,0 @@
-FurC.PVP = FurC.PVP or {}
-FURC_CYRO = "Cyrodiil"
-FURC_IC = "Imperial City"
-FURC_ITEMSOURCE_VENDOR = "Furnishing vendor"
-FurC.PVP[FURC_HOMESTEAD] = {
-	[FURC_ITEMSOURCE_VENDOR] = {
-		[FURC_CYRO] = {
-			[119656] = {	-- Pennant, Small
-				itemPrice 	= 200,
-				achievement = 92,	-- Volunteer
-			},
-			[119656] = {	-- Wall Banner, Small
-				itemPrice 	= 400,
-				achievement = 93,	-- Recruit
-			},
-			[119635] = {	-- Wall Banner, Medium
-				itemPrice 	= 600,
-				achievement = 94,	-- Tyro
-			},
-			[119636] = {	-- Camp Banner
-				itemPrice 	= 1000,
-				achievement = 95,	-- Legionary
-			},
-			[119675] = {	-- Defaced Covenant Flag
-				itemPrice 	= 2000,
-				achievement = 110,
-			},
-			[119629] = {	-- Defaced Dominion Flag
-				itemPrice 	= 2000,
-				achievement = 110,
-			},
-			[119637] = {	-- Wall Banner, Large
-				itemPrice 	= 3000,
-				achievement = 96,	-- Veteran
-			},
-			[119638] = {	-- Point Capture Flag
-				itemPrice 	= 4000,
-				achievement = 97,	-- Corporal
-			},
-			[119639] = {	-- Spare figurehead
-				itemPrice 	= 5000,
-				achievement = 98, -- Sergeant
-			},
-			[119655] = {	-- Keep Pennant
-				itemPrice 	= 8000,
-				achievement = 113, -- Grand Warlord
-			},
-			[119617] = {	-- Flaming Oil
-				itemPrice 	= 10000,
-				achievement = 104,	-- Tribune
-			},
-			[119642] = {	-- Scattershot Catapult
-				itemPrice 	= 15000,
-				achievement = 100,	-- Captain
-			},
-			[120002] = {	-- Dueling Banner
-				itemPrice 	= 20000,
-				achievement = 1689,
-			},
-			[119641] = {	-- Ballista
-				itemPrice 	= 20000,
-				achievement = 99,
-			},
-			[119644] = {	-- Battering ram
-				itemPrice 	= 25000,
-				achievement = 102,
-			},
-			[119646] = {	-- Oil Catapult
-				itemPrice 	= 25000,
-				achievement = 104,
-			},
-			[119653] = {	-- Cold fire ballista
-				itemPrice 	= 30000,
-				achievement = 111,
-			},
-			[119645] = {	-- Fire Ballista
-				itemPrice 	= 30000,
-				achievement = 103, -- Colonel
-			},
-			[119649] = {	-- Lightning Ballista
-				itemPrice 	= 30000,
-				achievement = 107,
-			},
-			[119650] = {	-- Meatbag Catapult
-				itemPrice 	= 30000,
-				achievement = 107,
-			},
-			[119643] = {	-- Stone Trebuchet
-				itemPrice 	= 40000,
-				achievement = 108,
-			},
-			[119647] = {	-- Fire
-				itemPrice 	= 45000,
-				achievement = 105,
-			},
-			[119654] = {	-- Cold Fire
-				itemPrice 	= 50000,
-				achievement = 112,
-			},
-			[119648] = {	-- Forward Camp
-				itemPrice 	= 50000,
-				achievement = 106,
-			},
-			[119651] = {	-- Iceball Treb
-				itemPrice 	= 50000,
-				achievement = 109,
-			},
-			[120079] = {	-- Transitus shrine
-				itemPrice 	= 100000,
-				achievement = 114,
-			},
-			[120075] = {	-- Elder Scroll
-				itemPrice 	= 200000,
-				achievement = 935,
-			},
-			[120038] = {	-- Throne
-				itemPrice 	= 250000,
-				achievement = 935,
-			},
-		},
-		["Imperial City"] = {
-			[119983] = {	-- Imperial Banner
-				itemPrice 	= 15000,
-			},
-			[119982] = {	-- Molag Bal Brazier
-				itemPrice 	= 25000,
-			},
-		}
-	}
-}
-
diff --git a/data/Homestead/H_EventItems.lua b/data/Homestead/H_EventItems.lua
deleted file mode 100644
index 86138f3..0000000
--- a/data/Homestead/H_EventItems.lua
+++ /dev/null
@@ -1,11 +0,0 @@
-FurC.EventItems = FurC.EventItems or {}
-FurC.EventItems[FURC_HOMESTEAD] = {
-	["Jester Festival"] = {
-		["Jester Boxes"] = {
-			[120995] = true, 	-- Banner, Jester's Standard
-			[134680] = true, 	-- Banner, Jester's Standard
-		}
-	}
-
-}
-
diff --git a/data/Homestead/H_LuxuryFurnisher.lua b/data/Homestead/H_LuxuryFurnisher.lua
deleted file mode 100644
index bb7ff14..0000000
--- a/data/Homestead/H_LuxuryFurnisher.lua
+++ /dev/null
@@ -1,55 +0,0 @@
-FurC.LuxuryFurnisher = FurC.LuxuryFurnisher or {}
-
-FurC.LuxuryFurnisher[FURC_HOMESTEAD] = {
-
-	[120821] = {	-- Sigil Stendarr
-		itemPrice 	= 15000,
-		itemDate	= "2017-04-28",
-	},
-
-
-
-	[120803] = {	-- Hews Bane Bed, Royal
-		itemPrice 	= 20000,
-		itemDate	= "2018-02-24",
-	},
-	[121266] = {	-- Hews Bane Lantern
-		itemPrice 	= 5000,
-		itemDate	= "2018-02-24",
-	},
-	[121267] = {	-- Hews Bane Merchants Basket
-		itemPrice 	= 2500,
-		itemDate	= "2018-02-24",
-	},
-
-	[120802] = {	-- Shrine of Mara, Decorative
-		itemPrice 	= 50000,
-		itemDate	= "2018-02-17",
-	},
-	[120799] = {	-- Wedding Blossoms, Peach
-		itemPrice 	= 2500,
-		itemDate	= "2018-02-17",
-	},
-	[120893] = {	-- Wedding Gazebo
-		itemPrice 	= 50000,
-		itemDate	= "2018-02-17",
-	},
-
-	[120798] = {	-- Wedding Blossoms, Blue
-		itemPrice 	= 2500,
-		itemDate	= "2018-02-10",
-	},
-	[120800] = {	-- Wedding Curtain
-		itemPrice 	= 7500,
-		itemDate	= "2018-02-10",
-	},
-	[120801] = {	-- Wedding Lantern
-		itemPrice 	= 5000,
-		itemDate	= "2018-02-10",
-	},
-	[120797] = {	-- Wedding Flower Trellis
-		itemPrice 	= 10000,
-		itemDate	= "2018-02-10",
-	},
-}
-
diff --git a/data/Homestead/H_Recipes.lua b/data/Homestead/H_Recipes.lua
deleted file mode 100644
index 355d7ab..0000000
--- a/data/Homestead/H_Recipes.lua
+++ /dev/null
@@ -1,1078 +0,0 @@
-FurC.Recipes = FurC.Recipes or {}
-
-FurC.Recipes[FURC_HOMESTEAD] = {
-
-	115721, -- Argonian Chimney Stack
-	115722, -- Argonian Rack, Sturdy
-	115723, -- Argonian Shelves, Half
-	115724, -- Argonian Shelves, Full
-	115725, -- Argonian Snakes on a Rope
-	115726, -- Argonian Dried Leaves
-	115727, -- Argonian Lattice, Rough
-	115728, -- Argonian Tarp, Woven
-	115729, -- Argonian Tarp, Sturdy
-	115730, -- Argonian Counter, Long
-	115731, -- Argonian Pole, Split
-	115732, -- Argonian Stool, Roped
-	115733, -- Argonian Chair, Rough
-	115734, -- Argonian Table, Rough
-	115735, -- Argonian Cup, Tall
-	115736, -- Argonian Cup, Short
-	115737, -- Argonian Bowl, Wooden
-	115738, -- Argonian Baskets, Double
-	115739, -- Argonian Basket, Serving
-	115740, -- Argonian Mug, Tooth
-	115741, -- Argonian Ramekin, Hardened
-	115742, -- Argonian Pan, Frying
-	115743, -- Argonian Banner, Hanging
-	115744, -- Argonian Post, Sturdy
-	115745, -- Argonian Post, Rough
-	115746, -- Argonian Mat, Tidy Reed
-	115747, -- Argonian Mat, Rolled Reed
-	115748, -- Argonian Mat, Reed
-	115749, -- Argonian Tent, Reed
-	115750, -- Argonian Canopy, Reed
-	115751, -- Argonian Basket, Closed
-	115752, -- Argonian Bin, Woven
-	115753, -- Argonian Totem, Painted Skull
-	115754, -- Argonian Rack, Drying
-	115755, -- Argonian Totem, Frilled Skull
-	115756, -- Argonian Cage, Rat
-	115757, -- Argonian Cage, Bird
-	115758, -- Argonian Wind Chimes
-	115759, -- Argonian Bar, Woven Corner
-	115760, -- Argonian Snakes in a Basket
-	115761, -- Argonian Bed, Woven
-	115762, -- Argonian Bench", Woven
-	115763, -- Argonian Chair, Woven
-	115764, -- Argonian Trunk, Sturdy
-	115765, -- Argonian Bookshelf, Woven
-	115766, -- Argonian Dresser, Sturdy
-	115767, -- Argonian Shelf, Woven
-	115768, -- Argonian Bookcase, Sturdy
-	115769, -- Argonian Stool, Woven
-	115770, -- Argonian Table, Formal
-	115771, -- Argonian End Table, Woven
-	115772, -- Argonian Bowl, Serving
-	115773, -- Argonian Cup, Bordered
-	115774, -- Argonian Basket, Woven
-	115775, -- Argonian Bowl, Bordered
-	115776, -- Argonian Ramekin, Bordered
-	115777, -- Argonian Urn, Clawfoot
-	115778, -- Argonian Tray, Woven
-	115779, -- Argonian Curtain, Woven
-	115780, -- Argonian Curtains, Woven
-	115781, -- Argonian Medallion, Stone
-	115782, -- Argonian Scaleskin, Pale
-	115783, -- Argonian Scaleskin, Striped
-	115784, -- Argonian Scaleskin, Faded
-	115785, -- Argonian Lamppost
-	115787, -- Argonian Canopy, Frilled
-	115788, -- Argonian Canopy, Skull
-	115789, -- Argonian Canopy, Scaled
-	115790, -- Argonian Trunk, Painted
-	115791, -- Argonian Chest, Carved
-	115792, -- Argonian Skull, Crocodile
-	115793, -- Argonian Totem of the Snake
-	115794, -- Argonian Skull, Lizard
-	115795, -- Argonian Bone Chimes
-	115796, -- Argonian Hamper, Woven
-	115799, -- Argonian Table, Horn
-	115800, -- Argonian Curtain of Smoke
-	115801, -- Argonian Curtain of the Nest
-	115802, -- Argonian Drum, Ceremonial
-	115803, -- Argonian Bowl, Ritual
-	115804, -- Argonian Jug, Ritual
-	115805, -- Argonian Pot, Ritual
-	115806, -- Argonian Pestle, Bone
-	115807, -- Argonian Seat of Authority
-	115808, -- Argonian Seat of Honor
-	115809, -- Argonian Mortar and Pestle, Bone
-	115810, -- Argonian Mortar, Bone
-	115811, -- Argonian Pedestal, Altar
-	115812, -- Argonian Censer
-	115813, -- Argonian Relic, Small Serpent
-	115814, -- Argonian Relic, Serpent
-	115815, -- Argonian Seat of Comfort
-	115816, -- Argonian Divider, Stretched
-	115817, -- Argonian Bedroll, Woven
-	115818, -- Argonian Banners, Frilled
-	115819, -- Argonian Banner, Half Hands
-	115820, -- Argonian Post, Frilled
-	115821, -- Argonian Lanterns, String
-	115822, -- Argonian Lanterns, Strand
-	115823, -- Argonian Light, Stick
-	115824, -- Argonian Lamp, Mud
-	115825, -- Argonian Brazier, Mud
-	115826, -- Argonian Lights, Branch
-	115827, -- Argonian Bark, Painted
-	115828, -- Argonian Relic, Basin
-	115829, -- Argonian Totem of Skulls
-	115830, -- Argonian Gravestick
-	115831, -- Argonian Tree of Lights
-	115832, -- Argonian Tile, Inscribed
-	115833, -- Wood Elf Stool, Leather
-	115834, -- Wood Elf Counter, Long Leather
-	115835, -- Wood Elf Shelf, Tiered
-	115836, -- Wood Elf Table, Leather
-	115837, -- Wood Elf Bar, Sturdy
-	115838, -- Wood Elf Bar, Long
-	115839, -- Wood Elf Bar, Drying
-	115840, -- Wood Elf Bar, Short
-	115841, -- Wood Elf Rack, Brace
-	115842, -- Wood Elf Divider, Stretched
-	115843, -- Wood Elf Divider, Narrow
-	115844, -- Wood Elf Vase, Swirled
-	115845, -- Wood Elf Urn, Scratched
-	115846, -- Wood Elf Urn, Deer
-	115847, -- Wood Elf Cup, Ceramic
-	115848, -- Wood Elf Cup, Chipped
-	115849, -- Wood Elf Cup, Striped
-	115850, -- Wood Elf Pedestal, Engraved
-	115851, -- Wood Elf Basin, Stone
-	115852, -- Wood Elf Awning, Leather
-	115853, -- Wood Elf Canopy, Leather
-	115854, -- Wood Elf Bedding, Scattered
-	115855, -- Wood Elf Grinding Stone
-	115856, -- Wood Elf Hide, Heavy
-	115857, -- Wood Elf Wall Hide, Pierced
-	115858, -- Wood Elf Wall Hide, Fur
-	115859, -- Wood Elf Wall Hide, Spotted
-	115860, -- Wood Elf Cauldron, Stone
-	115861, -- Wood Elf Tent, Sturdy
-	115862, -- Wood Elf Chair, Leather
-	115863, -- Wood Elf Bookcase, Leather
-	115864, -- Wood Elf Table, Formal
-	115865, -- Wood Elf Barrel, Ceramic
-	115866, -- Wood Elf Cask, Ceramic
-	115867, -- Wood Elf Bladder, Fermenting
-	115868, -- Wood Elf Cauldron, Ceramic
-	115869, -- Wood Elf Hammock, Single
-	115870, -- Wood Elf Hammock, Double
-	115871, -- Wood Elf Rack, Single
-	115872, -- Wood Elf Rack, Double
-	115873, -- Wood Elf Divider, Relaxed
-	115874, -- Wood Elf Divider, Taut
-	115875, -- Wood Elf Vessel, Tiered Ceramic
-	115876, -- Wood Elf Vessel, Tiered Painted
-	115877, -- Wood Elf Pitcher, Painted
-	115878, -- Wood Elf Pitcher, Marked
-	115879, -- Wood Elf Vase, Painted
-	115880, -- Wood Elf Vase, Chipped
-	115881, -- Wood Elf Pitcher, Chipped
-	115882, -- Wood Elf Pitcher, Ceramic
-	115883, -- Wood Elf Bowl, Striped
-	115884, -- Wood Elf Canopy, Braced
-	115885, -- Wood Elf Bedding, Layered
-	115886, -- Wood Elf Censer, Hanging
-	115887, -- Wood Elf Tent, Frame
-	115888, -- Wood Elf Rack, Meat
-	115889, -- Wood Elf Totem, Framed
-	115890, -- Wood Elf Totem, Skull
-	115891, -- Wood Elf Trough", Slop
-	115892, -- Wood Elf Bin, Blue Feathers
-	115893, -- Wood Elf Bin, Feathers
-	115894, -- Wood Elf Cask, Painted
-	121371, -- Wood Elf Hearth, Forest
-	121309, -- High Elf Medal, Winged
-	115895, -- Wood Elf Fish Dish
-	115896, -- Wood Elf Tapestry, Painted
-	115897, -- Wood Elf Tapestry, Deer
-	115898, -- Wood Elf Tapestry, Vine
-	115899, -- Wood Elf Canopy, Spine
-	115900, -- Wood Elf Bedding, Padded
-	115901, -- Wood Elf Skull and Bones
-	115902, -- Wood Elf Bone Chimes
-	115903, -- Wood Elf Rack, Dried Fish
-	115904, -- Wood Elf Rack, Dried Meat
-	115906, -- Breton Stall, Merchant
-	115907, -- Breton Cart, Wheelbarrow
-	115908, -- Breton Bed, Bunk
-	115909, -- Breton Bed, Single
-	115910, -- Breton Pew, Windowed
-	115911, -- Breton Bench", Plain
-	115912, -- Breton Nightstand, Open
-	115913, -- Breton Bookcase, Tall
-	115914, -- Breton Chair, Slatted
-	115915, -- Breton Chair, Windowed
-	115916, -- Breton Shelves, Double
-	115917, -- Breton Rack, Barrel
-	115918, -- Breton Dresser, Open
-	115919, -- Breton Desk
-	115920, -- Breton Table, Dining
-	115921, -- Breton Trestle, Sturdy
-	115922, -- Breton Table, Kitchen
-	115923, -- Breton Shelf, Long
-	115924, -- Breton Pitcher, Ceramic
-	115925, -- Breton Carpet, Bordered
-	115926, -- Breton Carpet, Square
-	115927, -- Breton Amphora, Ceramic
-	115928, -- Breton Vase, Ceramic
-	115929, -- Breton Lightpost, Single
-	115930, -- Breton Sconce, Sturdy Torch
-	115931, -- Breton Street Post, Stone
-	115932, -- Breton Sconce, Torch
-	115933, -- Breton Street Post, Plain
-	115934, -- Breton Bed, Four-poster
-	115935, -- Breton Bed, Full
-	115936, -- Breton Pew, Knotwork
-	115937, -- Breton Bench", Knotwork
-	115938, -- Breton Bookcase, Knotwork
-	115939, -- Breton Chair, Rocking
-	115940, -- Breton Chest, Knotwork
-	115941, -- Breton Hutch", Knotwork
-	115942, -- Breton Cupboard, Knotwork
-	115943, -- Breton Chest of Drawers
-	115944, -- Breton Counter, Long Cabinet
-	115945, -- Breton Shelf, Barrel Rack
-	115946, -- Breton Stool, Plain
-	115947, -- Breton Desk, Knotwork
-	115948, -- Breton Table, Round
-	115949, -- Breton Table, Square
-	115950, -- Breton Shelf, Scrolled
-	115951, -- Breton Rack, Wine
-	115952, -- Breton Carpet, Full
-	115953, -- Breton Rug, Starburst
-	115954, -- Breton Carpet, Dark
-	115955, -- Breton Pottery, Lid
-	115956, -- Breton Urn, Glazed
-	115957, -- Breton Amphora, Glazed
-	115959, -- Breton Vase, Glazed
-	115961, -- Breton Streetlight, Arched Stone
-	115962, -- Breton Streetlight, Paired Stone
-	115963, -- Breton Cart, Covered Open
-	115964, -- Breton Stall, Vending
-	115965, -- Breton Lightpost, Arched
-	115966, -- Breton Streetlight, Paired
-	115967, -- Breton Figure, Stone
-	115968, -- Breton Chandelier, Wrought Iron
-	115969, -- Breton Curtains, Window
-	115970, -- Breton Bed, Canopy
-	115971, -- Breton Sideboard, Knotwork
-	115972, -- Breton Chair, Padded
-	115973, -- Breton Armchair, Padded
-	115974, -- Breton Cabinet, Knotwork
-	115975, -- Breton Curio, Knotwork
-	115976, -- Breton Drapes, Grand
-	115977, -- Breton Coffer, Knotwork
-	115978, -- Breton Cradle, Infant
-	115979, -- Breton Dresser, Knotwork
-	115980, -- Breton Counter, Corner
-	115981, -- Breton Counter, Cabinet
-	115982, -- Breton Mirror, Knotwork
-	115983, -- Breton Nightstand, Knotwork
-	115984, -- Breton Divider, Folded Knotwork
-	115985, -- Breton Divider, Curved Knotwork
-	115986, -- Breton Stool, Padded
-	115987, -- Breton Desk, Scholar's
-	115988, -- Breton Table, Formal
-	115989, -- Breton Trestle, Formal
-	115990, -- Breton Rug, Bordered
-	115991, -- Breton Runner, Bordered
-	115992, -- Breton Carpet, Bordered
-	115993, -- Breton Medallion, Lion
-	115994, -- Breton Tablecloth", Blue
-	115995, -- Breton Lamp, Oil
-	115996, -- Breton Tablecloth", Striped
-	115997, -- Breton Footlocker, Knotwork
-	115998, -- Breton Armoire, Knotwork
-	115999, -- Breton Cart, Palanquin
-	116000, -- Breton Tapestry, Vines
-	116001, -- Breton Tapestry, Boughs
-	116002, -- Breton Urn Lid, Striated
-	116003, -- Breton Urn, Striated
-	116004, -- Breton Lamp, Hanging
-	116005, -- Breton Streetlight, Full Stone
-	116006, -- Breton Vase, Delicate
-	116007, -- Breton Streetlight, Full
-	116008, -- Breton Sconce, Floor
-	116009, -- Breton Sconce, Grand
-	116010, -- Breton Candelabra, Formal
-	116011, -- Breton Sconce, Wall
-	116012, -- Dark Elf Cart, Merchant
-	116013, -- Dark Elf Rack, Barrel
-	116014, -- Dark Elf Armchair, Angled
-	116015, -- Dark Elf Chest of Drawers
-	116016, -- Dark Elf Bed, Single
-	116017, -- Dark Elf Table, Formal
-	116018, -- Dark Elf Shelf, Wall
-	116019, -- Dark Elf Urn, Banded
-	116020, -- Dark Elf Basin, Ringed
-	116021, -- Dark Elf Runner, Bordered
-	116022, -- Dark Elf Carpet, Mottled
-	116023, -- Dark Elf Carpet, Patterned
-	116024, -- Dark Elf Tapestry, Emblazoned
-	116025, -- Dark Elf Candle, Claw Base
-	116026, -- Dark Elf Lantern, Oil
-	116027, -- Dark Elf Streetpost, Banner
-	116028, -- Dark Elf Streetpost, Banners
-	116029, -- Dark Elf Wagon, Merchant
-	116030, -- Dark Elf Caravan, Cargo
-	116031, -- Dark Elf Dresser, Angled
-	116032, -- Dark Elf Bookcase, Sectioned
-	116033, -- Dark Elf Chair, Angled
-	116034, -- Dark Elf Counter, Bar
-	116035, -- Dark Elf Wardrobe, Scaled
-	116036, -- Dark Elf Desk, Angled
-	116037, -- Dark Elf Bed, Full
-	116038, -- Dark Elf Pillow, Body
-	116039, -- Dark Elf Stool, Angled
-	116040, -- Dark Elf Table, Tea
-	116041, -- Dark Elf Trestle, Scaled
-	116042, -- Dark Elf Wine Rack, Sturdy
-	116043, -- Dark Elf Shelf, Barrel
-	116044, -- Dark Elf Pot, Scaled
-	116045, -- Dark Elf Decanter, Glass
-	116046, -- Dark Elf Cruet, Glass
-	116047, -- Dark Elf Flags, Hanging
-	116048, -- Dark Elf Cauldron, Banded
-	116049, -- Dark Elf Carpet, Mossy
-	116050, -- Dark Elf Carpet, Fungal
-	116051, -- Dark Elf Rug, Fungal
-	116052, -- Dark Elf Hook, Wall
-	116053, -- Dark Elf Lantern, Caged
-	116054, -- Dark Elf Lantern, Hanging
-	116055, -- Dark Elf Streetlamp, Stone
-	116056, -- Dark Elf Streetlamps, Stone
-	116057, -- Dark Elf Sofa, Angled
-	116058, -- Dark Elf Bed, Canopy
-	116059, -- Dark Elf Counter, Corner
-	116060, -- Dark Elf Counter, Block
-	116061, -- Dark Elf Nightstand, Angled
-	116062, -- Dark Elf Pillow, Cushion
-	116063, -- Dark Elf Pillow, Roll
-	116064, -- Dark Elf Divider, Folded
-	116065, -- Dark Elf End Table, Angled
-	116066, -- Dark Elf Trunk, Buckled
-	116067, -- Dark Elf Wardrobe, Angled
-	116068, -- Dark Elf Kettle Cooker
-	116069, -- Dark Elf Pot, Banded
-	116070, -- Dark Elf Carpet, Ashen
-	116071, -- Dark Elf Rug, Mossy
-	116072, -- Dark Elf Rug, Striated
-	116073, -- Dark Elf Medallion, Tribunal
-	116074, -- Dark Elf Censer, Hanging
-	116075, -- Dark Elf Thurible, Caged
-	116077, -- Dark Elf Cauldron, Ringed
-	116078, -- Dark Elf Lantern, Ashen
-	116079, -- Dark Elf Candelabra, Angled
-	116080, -- Dark Elf Candle, Votive Tray
-	116081, -- Khajiit Firepit, Brick
-	116082, -- Khajiit Loft, Reed
-	116083, -- Khajiit Dresser, Faded
-	116084, -- Khajiit Stool, Crescent
-	116085, -- Khajiit End Table, Faded
-	116086, -- Khajiit Drapes, Tattered
-	116087, -- Khajiit Bottle, Amber
-	116088, -- Khajiit Flask, Amber
-	116089, -- Khajiit Carpet, Crescent Moons
-	116090, -- Khajiit Vase, Amber
-	116091, -- Khajiit Banner, Moons
-	116092, -- Khajiit Banner, Crescents
-	116093, -- Khajiit Candle, Clawfoot
-	116094, -- Khajiit Frame, Arched
-	116095, -- Khajiit Banner, Claw
-	116096, -- Khajiit Bed, Fur
-	116097, -- Khajiit Bedding, Padded
-	116098, -- Khajiit Signpost, Fortified
-	116099, -- Khajiit Bed, Faded
-	116100, -- Khajiit Bench", Padded
-	116101, -- Khajiit Bookshelf, Arched
-	116102, -- Khajiit Trunk, Arched
-	116103, -- Khajiit Counter, Faded
-	116104, -- Khajiit Nightstand, Gilded
-	116105, -- Khajiit Table, Formal
-	116106, -- Khajiit Jug, Amber
-	116107, -- Khajiit Pitcher, Amber
-	116108, -- Khajiit Carpet, Sun
-	116109, -- Khajiit Cushion, Long
-	116110, -- Khajiit Cushion, Single
-	116111, -- Khajiit Carafe, Amber
-	116112, -- Khajiit Decanter, Amber
-	116113, -- Khajiit Banner, Hooked
-	116114, -- Khajiit Brazier, Claw
-	116115, -- Khajiit Basin, Claw
-	116116, -- Khajiit Lantern, Hanging
-	116117, -- Khajiit Tent, Mercantile
-	116118, -- Khajiit Tent, Storage
-	116119, -- Khajiit Wagon, Reed
-	116120, -- Khajiit Curtains, Moons
-	116121, -- Khajiit Barstool, Clawfoot
-	116122, -- Khajiit Barstool, Padded
-	116123, -- Khajiit Skooma Bubbler
-	116124, -- Khajiit Tent, Vacation
-	116125, -- Khajiit Bed, Canopy
-	116126, -- Khajiit Couch", Padded
-	116127, -- Khajiit Bookcase, Arched
-	116128, -- Khajiit Footlocker, Arched
-	116129, -- Khajiit Counter, Long Cabinet
-	116130, -- Khajiit Desk, Faded
-	116131, -- Khajiit Divider, Folding
-	116132, -- Khajiit Table, Round
-	116133, -- Khajiit Wardrobe, Arched
-	116134, -- Khajiit Rug, Moons
-	116135, -- Khajiit Drapes, Grand
-	116136, -- Khajiit Pillow, Crescents
-	116137, -- Khajiit Vial, Amber
-	116138, -- Khajiit Urn, Amber
-	116139, -- Khajiit Vessel, Amber
-	116140, -- Khajiit Candles, Clawfoot
-	116141, -- Khajiit Sofa, Padded
-	116142, -- Khajiit Pillow, Roll
-	116143, -- Khajiit Rug, Sun
-	116144, -- Khajiit Brazier, Hanging
-	116145, -- Khajiit Sconce, Spiked
-	116146, -- Khajiit Candle-Filled Lamp
-	116147, -- Nord Cart, Hay
-	116148, -- Nord Trunk, Heavy
-	116149, -- Nord Hutch", Rough
-	116150, -- Nord Dresser, Rough
-	116151, -- Nord Nightstand, Rough
-	116152, -- Nord Lantern, Cage
-	116153, -- Nord Pot, Ceramic
-	116154, -- Nord Urn, Ceramic
-	116155, -- Nord Bed, Single
-	116156, -- Nord Bench", Braced
-	116157, -- Nord Stool, Rough
-	116158, -- Nord Table, Kitchen
-	116159, -- Nord Shelf, Wall
-	116160, -- Nord Shelf, Braced
-	116161, -- Nord Pot, Covered
-	116162, -- Nord Pot, Stew
-	116163, -- Nord Candle, Tealight
-	116164, -- Nord Candleholder, Cup
-	116165, -- Nord Torch", Triple
-	116166, -- Nord Cart, Cargo
-	116167, -- Nord Trunk, Faded
-	116168, -- Nord Cauldron, Glazed
-	116169, -- Nord Pot, Chunky Stew
-	116170, -- Nord Amphora, Glazed
-	116171, -- Nord Vase, Bent
-	116172, -- Nord Bed, Sleigh
-	116173, -- Nord Bench", Plank
-	116174, -- Nord Bookshelf, Alcove
-	116175, -- Nord Chair, Braced
-	116176, -- Nord Counter, Long
-	116177, -- Nord Dresser, Braced
-	116178, -- Nord Stool, Braced
-	116179, -- Nord Table, Dining
-	116180, -- Nord Table, Round
-	116181, -- Nord Table, Braced
-	116182, -- Nord Trestle, Braced
-	116183, -- Nord Footlocker, Braced
-	116184, -- Nord Armoire, Lattice
-	116185, -- Nord Rack, Wine
-	116186, -- Nord Crockpot, Carrot Soup
-	116187, -- Nord Crockpot, Covered
-	116188, -- Nord Tapestry, Dragon
-	116189, -- Nord Lantern, Hanging
-	116190, -- Nord Drinking Horn, Empty
-	116191, -- Nord Cart, Covered
-	116192, -- Nord Chest, Latched
-	116193, -- Nord Urn, Braided
-	116194, -- Nord Bed, Canopy
-	116195, -- Nord Bookcase, Alcove
-	116196, -- Nord Chair, Lattice
-	116197, -- Nord Counter, Corner
-	116198, -- Nord Counter, Cabinet
-	116199, -- Nord Desk, Tied
-	116200, -- Nord Nightstand, Braced
-	116201, -- Nord Divider, Folding
-	116202, -- Nord Table, Great
-	116203, -- Nord Table, Formal
-	116204, -- Nord Table, Game
-	116205, -- Nord Trestle, Tied
-	116206, -- Nord Rug, Bearskin
-	116207, -- Nord Banner, Knotwork
-	116208, -- Nord Tapestry, Ship
-	116209, -- Nord Candle, Antler
-	116210, -- Nord Chandelier, Antler
-	116211, -- Nord Streetlamps, Stone
-	116212, -- Nord Lamppost, Stone
-	116213, -- Nord Brazier, Hanging
-	116216, -- Nord Trunk, Buckled
-	118916, -- High Elf Wagon, Covered
-	118917, -- High Elf Bed, Winged Double
-	118918, -- High Elf Bench", Covered
-	118919, -- High Elf Bookshelf, Winged
-	118920, -- High Elf Armoire, Winged
-	118921, -- High Elf Bookcase, Winged
-	118922, -- High Elf Dresser, Corner
-	118923, -- High Elf Chair, Regal Verdant
-	118924, -- High Elf Chair, Regal Winged
-	118925, -- High Elf Trunk, Jeweled
-	118926, -- High Elf Counter, Block
-	118927, -- High Elf Cabinet, Corner
-	118928, -- High Elf Desk, Regal Winged
-	118929, -- High Elf Dresser, Winged
-	118930, -- High Elf Divider, Delicate
-	118931, -- High Elf Divider, Carved
-	118932, -- High Elf Table, Tea
-	118933, -- High Elf Stool, Covered
-	118934, -- High Elf End Table, Winged
-	118935, -- High Elf Table, Winged Formal
-	118936, -- High Elf Table, Winged Kitchen
-	118937, -- High Elf Trestle, Winged
-	118938, -- High Elf Bowl, Serving
-	118939, -- High Elf Pot, Hanging
-	118940, -- High Elf Basin, Standing
-	118941, -- High Elf Platter, Winged
-	118942, -- High Elf Carpet, Eagle
-	118943, -- High Elf Tapestry, Eagle
-	118944, -- High Elf Vase, Winged
-	118945, -- High Elf Decanter, Glass
-	118946, -- High Elf Goblet, Winged
-	118947, -- High Elf Goblet, Glass
-	118948, -- High Elf Brazier, Winged
-	118949, -- High Elf Chandelier, Winged
-	118950, -- High Elf Candle, Winged
-	118951, -- High Elf Lamppost, Stone
-	118952, -- High Elf Candelabra, Winged
-	118953, -- High Elf Crest, Winged
-	118954, -- High Elf Streetlight, Stone
-	118955, -- Breton Cart, Covered Closed
-	118956, -- High Elf Wagon, Sturdy
-	118957, -- High Elf Bed, Winged
-	118958, -- High Elf Bed, Verdant
-	118959, -- High Elf Chest of Drawers
-	118960, -- High Elf Bookcase, Verdant
-	118961, -- High Elf Chair, Verdant
-	118962, -- High Elf Chair, Winged
-	118963, -- High Elf Bar, Overhanging
-	118964, -- High Elf Desk, Verdant
-	118965, -- High Elf Dresser, Verdant
-	118966, -- High Elf End Table, Verdant
-	118967, -- High Elf Table, Verdant Formal
-	118968, -- High Elf Table, Verdant Kitchen
-	118969, -- High Elf Trestle, Verdant
-	118970, -- High Elf Trunk, Winged
-	118971, -- High Elf Wine Rack, Folding
-	118972, -- High Elf Platter, Gilded
-	118973, -- High Elf Carpet, Water-Themed
-	118974, -- High Elf Carpet, Tree-Themed
-	118975, -- High Elf Tapestry, Water-Themed
-	118976, -- High Elf Tapestry, Tree-Themed
-	118977, -- High Elf Carafe, Gilded
-	118978, -- High Elf Vase, Gilded
-	118979, -- High Elf Bottle, Winged
-	118980, -- High Elf Flute, Wine
-	118981, -- High Elf Basin, Winged
-	118982, -- High Elf Lamppost, Spiked
-	118983, -- High Elf Lamp, Oil
-	118984, -- High Elf Bed, Bunk
-	118985, -- High Elf Bed, Single
-	118986, -- High Elf Bench", Curved
-	118987, -- High Elf Bookshelf, Verdant
-	118988, -- High Elf Counter, Long Cabinet
-	118989, -- High Elf Desk, Sturdy
-	118990, -- High Elf Dresser, Sturdy
-	118991, -- High Elf Stool, Curved
-	118992, -- High Elf End Table, Sturdy
-	118993, -- High Elf Table, Sturdy Formal
-	118994, -- High Elf Table, Sturdy Kitchen
-	118995, -- High Elf Trestle, Sturdy
-	118996, -- High Elf Shelf, Short
-	118997, -- High Elf Shelf, Long
-	118998, -- High Elf Basin, Gilded
-	118999, -- High Elf Cup, Gilded
-	119000, -- High Elf Flask, Gilded
-	119001, -- High Elf Plate, Dinner
-	119002, -- High Elf Carpet, Rustic
-	119003, -- High Elf Tapestry, Rustic
-	119004, -- High Elf Candleholder, Sturdy
-	119005, -- Orcish Tent, Shingled
-	119006, -- Orcish Platform, Block
-	119007, -- Orcish Counter, Island Stall
-	119008, -- Orcish Wash Tub
-	119009, -- Orcish Bedding, Stone
-	119010, -- Orcish Bedding, Fur
-	119011, -- Orcish Table, Block
-	119012, -- Orcish Table, Braced Formal
-	119013, -- Orcish Table, Braced Kitchen
-	119014, -- Orcish Trunk, Braced
-	119015, -- Orcish Bench", Cabled
-	119016, -- Orcish Shelves, Braced
-	119017, -- Orcish Bar, Long Block
-	119018, -- Orcish Counter, Block
-	119019, -- Orcish Bar, Side
-	119020, -- Orcish Shelf, Long
-	119021, -- Orcish Shelf, Short
-	119022, -- Orcish Stool, Cabled
-	119023, -- Orcish Bowl, Rugged
-	119024, -- Orcish Mug, Rugged
-	119025, -- Orcish Canister, Rugged
-	119026, -- Orcish Cask, Rugged
-	119027, -- Orcish Carpet, Fringed
-	119028, -- Orcish Brazier, Smoldering
-	119029, -- Orcish Lantern, Hooded
-	119030, -- Orcish Banner, Faded
-	119031, -- Orcish Banner, Worn
-	119032, -- Breton Chamberstick, Short
-	119033, -- Breton Chamberstick, Tall
-	119034, -- Orcish Canopy, Shingled
-	119035, -- Orcish Shelter, Shingled
-	119036, -- Orcish Platform, Stage
-	119037, -- Orcish Sack, Grain
-	119038, -- Orcish Sack, Flour
-	119039, -- Orcish Sack, Bean
-	119040, -- Orcish Bucket, Cistern
-	119041, -- Orcish Curtain, Folding
-	119042, -- Orcish Curtain, Curved
-	119043, -- Orcish Armchair, Peaked
-	119044, -- Orcish Pew, Peaked
-	119045, -- Orcish Bedding, Peaked
-	119046, -- Orcish Bookshelf, Engraved
-	119047, -- Orcish Bunkbed, Leather
-	119048, -- Orcish Chair, Peaked
-	119049, -- Orcish Trunk, Heavy
-	119050, -- Orcish Desk, Engraved
-	119051, -- Orcish Bar, Long Branded Block
-	119052, -- Orcish Counter, Branded
-	119053, -- Orcish Cabinet, Branded
-	119054, -- Orcish Dresser, Open
-	119055, -- Orcish Nightstand, Open
-	119056, -- Orcish Table, Engraved
-	119057, -- Orcish Trestle, Engraved
-	119058, -- Orcish Table, Kitchen
-	119059, -- Orcish Table, Formal
-	119060, -- Orcish Footlocker, Buckled
-	119061, -- Orcish Bowl, Stone
-	119062, -- Orcish Goblet, Stone
-	119063, -- Orcish Plate, Stone
-	119064, -- Orcish Saucer, Stone
-	119065, -- Orcish Vessel, Sealed Ceramic
-	119066, -- Orcish Urn, Ceramic
-	119067, -- Orcish Lantern, Hanging
-	119068, -- Orcish Brazier, Pedestal
-	119069, -- Orcish Chandelier, Practical
-	119070, -- Orcish Sconce, Caged
-	119071, -- Orcish Banner, Hammer Fist
-	119072, -- Orcish Strongbox, Buckled
-	119073, -- Orcish Trunk, Buckled
-	119074, -- Orcish Chest, Buckled
-	119075, -- Orcish Chair, Peaked
-	119076, -- Orcish Throne, Stone
-	119077, -- Orcish Throne, Engraved
-	119078, -- Orcish Capsule, Sealed
-	119079, -- Orcish Armoire, Peaked
-	119080, -- Orcish Bed, Peaked
-	119081, -- Orcish Bookcase, Peaked
-	119082, -- Orcish Bookshelf, Peaked
-	119083, -- Orcish Sideboard, Engraved
-	119084, -- Orcish Cabinet, Engraved
-	119085, -- Orcish Hutch", Engraved
-	119086, -- Orcish Coffer, Bolted
-	119087, -- Orcish Cupboards, Peaked
-	119088, -- Orcish Dresser, Engraved
-	119089, -- Orcish Cabinet, Bedside
-	119090, -- Orcish Counter, Corner
-	119091, -- Orcish Hutch", Storage
-	119092, -- Orcish Shelves, Storage
-	119093, -- Orcish Nightstand, Engraved
-	119094, -- Orcish Divider, Folded
-	119095, -- Orcish Divider, Curved
-	119096, -- Orcish Table, Game
-	119097, -- Orcish Table, Grand
-	119098, -- Orcish Throne, Peaked
-	119099, -- Orcish Stein, Horn
-	119100, -- Orcish Mug, Horn
-	119101, -- Orcish Knife, Kitchen
-	119102, -- Orcish Backpack
-	119103, -- Orcish Bowl, Buffed
-	119104, -- Orcish Platter, Serving
-	119105, -- Orcish Urn, Sealed
-	119106, -- Orcish Tapestry, Axe
-	119107, -- Orcish Tapestry, Heroes
-	119108, -- Orcish Tapestry, Sword
-	119109, -- Orcish Vessel, Sealed
-	119110, -- Orcish Cauldron, Sealed
-	119111, -- Orcish Candleholder, Horn
-	119112, -- Orcish Candlestick, Horn
-	119113, -- Orcish Candle Sconce, Horn
-	119114, -- Orcish Brazier, Bordered
-	119115, -- Orcish Brazier, Hanging
-	119116, -- Orcish Brazier, Tabletop
-	119117, -- Orcish Brazier, Floor
-	119118, -- Orcish Sconce, Bordered
-	119119, -- Orcish Sconce, Scrolled
-	119120, -- Orcish Cradle, Peaked
-	121306, -- Orcish Figurine, Strength
-	119121, -- Orcish Mirror, Peaked
-	119122, -- Orcish Tapestry, War
-	119123, -- Orcish Chandelier, Spiked
-	119124, -- Redguard Carriage, Practical
-	119125, -- Redguard Cart, Practical
-	119126, -- Redguard Wagon, Merchant
-	119127, -- Redguard Cart, Work
-	119128, -- Redguard Bin, Roped
-	119129, -- Redguard Bin, Sealed
-	119130, -- Redguard Pot, Sealed
-	119131, -- Redguard Pot, Capped
-	119132, -- Redguard Desk, Florid
-	119133, -- Redguard Rack, Barrel
-	119134, -- Redguard Bar, Long Cabinet
-	119135, -- Redguard Trunk, Heavy
-	119136, -- Redguard Bed, Wide
-	119137, -- Redguard Bed, Full
-	119138, -- Redguard Couch", Bolted
-	119139, -- Redguard Bench", Slatted
-	119140, -- Redguard Armchair, Slatted
-	119141, -- Redguard Chair, Backless
-	119142, -- Redguard Chair, Slatted
-	119143, -- Redguard Desk, Sturdy
-	119144, -- Redguard Nightstand, Sturdy
-	119145, -- Redguard Table, Sturdy
-	119146, -- Redguard Stool, Sturdy
-	119147, -- Redguard Stool, Block
-	119148, -- Redguard Shelf, Sturdy
-	119149, -- Redguard Pot, Hanging Brushed
-	119150, -- Redguard Kabobs, Wax
-	119151, -- Redguard Vessel, Lacquered
-	119152, -- Redguard Urn, Lacquered
-	119153, -- Redguard Pot, Ceramic
-	119154, -- Redguard Curtain, Smoky
-	119155, -- Redguard Curtain, Desert Rose
-	119156, -- Redguard Banner, Post
-	119157, -- Redguard Candlestick, Practical
-	119158, -- Redguard Candleholder, Practical
-	119159, -- Redguard Candelabra, Practical
-	119160, -- Redguard Well, Covered
-	119161, -- Redguard Cup, Empty
-	119162, -- Redguard Cup, Full
-	119163, -- Redguard Caravan, Practical
-	119164, -- Redguard Carriage, Merchant
-	119165, -- Redguard Vase, Lacquered
-	119166, -- Redguard Pot, Lacquered
-	119167, -- Redguard Amphora, Polished
-	119168, -- Redguard Cask, Sealed
-	119169, -- Redguard Keg, Hefty
-	119170, -- Redguard Couch", Padded
-	119171, -- Redguard Cabinet, Inlaid
-	119172, -- Redguard Armchair, Cushioned
-	119173, -- Redguard Cupboard, Lattice
-	119174, -- Redguard Vanity, Florid
-	119175, -- Redguard Counter, Corner
-	119176, -- Redguard Counter, Cabinet
-	119177, -- Redguard Shelf, Barrel
-	119178, -- Redguard Nightstand, Florid
-	119179, -- Redguard Divider, Florid
-	119180, -- Redguard Sofa, Desert Flame
-	119181, -- Redguard Tuffet, Flames
-	119182, -- Redguard Stool, Padded
-	119183, -- Redguard Bed, Wide Grand
-	119184, -- Redguard Bed, Full Arched
-	119185, -- Redguard Bowl, Hanging Star
-	119186, -- Redguard Urn, Star
-	119187, -- Redguard Footlocker, Braced
-	119188, -- Redguard Table, Grand Oasis
-	119189, -- Redguard Table, Oasis
-	119190, -- Redguard End Table, Oasis
-	119191, -- Redguard Trunk, Bolted
-	119192, -- Redguard Wine Rack, Sturdy
-	119193, -- Redguard Shelf, Arched
-	119194, -- Redguard Wardrobe, Inlaid
-	119195, -- Redguard Kabobs, Plate
-	119196, -- Redguard Runner, Sun
-	119197, -- Redguard Mat, Sunset
-	119198, -- Redguard Carpet, Dunes
-	119199, -- Redguard Tapestry, Lattice
-	119200, -- Redguard Satchel, Heavy
-	119201, -- Redguard Goblet, Empty
-	119202, -- Redguard Goblet, Full
-	119203, -- Redguard Spittoon, Gilded
-	119204, -- Redguard Cauldron, Clawfoot
-	119205, -- Redguard Sconce, Polished
-	119206, -- Redguard Mug, Empty
-	119207, -- Redguard Mug, Full
-	119208, -- Redguard Tankard, Empty
-	119209, -- Redguard Tankard, Full
-	119210, -- Redguard Streetlamp, Single
-	119211, -- Redguard Streetlamps, Paired
-	119212, -- Redguard Streetlamps, Triple
-	119213, -- Redguard Brazier, Robust
-	119214, -- Redguard Candlestick, Polished
-	119215, -- Redguard Candleholder, Polished
-	119216, -- Redguard Well, Arched
-	119217, -- Redguard Bowl, Gilded
-	119218, -- Redguard Censer, Hanging Bell
-	119219, -- Redguard Censer, Hanging Horn
-	119220, -- Redguard Basket, Closed
-	119221, -- Redguard Mat, Meditation
-	119222, -- Redguard Mat, Desert Sun
-	119223, -- Redguard Mat, Sunrise
-	119224, -- Redguard Awning, Desert Flame
-	119225, -- Redguard Tent, Scaled Flames
-	119226, -- Redguard Canopy, Dawn
-	119228, -- Redguard Caravan, Cargo
-	119229, -- Redguard Caravan, Merchant
-	119230, -- Redguard Brazier, Garish
-	119231, -- Redguard Urn, Mural
-	119232, -- Redguard Pillow, Sunset
-	119233, -- Redguard Pillow, Oasis
-	119234, -- Redguard Pillow, Florid Oasis
-	119235, -- Redguard Pillow Roll, Oasis
-	119236, -- Redguard Throw Pillow, Oasis
-	119238, -- Redguard Bed, Wide Canopy
-	119239, -- Redguard Couch", Slatted
-	119240, -- Redguard Bench", Padded
-	119241, -- Redguard Wardrobe, Braced
-	119242, -- Redguard Bookcase, Arched
-	119243, -- Redguard Wardrobe, Sturdy
-	119244, -- Redguard Bookcase, Piled
-	119245, -- Redguard Bookcase, Full
-	119246, -- Redguard Armchair, Starry
-	119247, -- Redguard Chair, Starry
-	119248, -- Redguard Desk, Bolted
-	119249, -- Redguard Vanity, Bolted
-	119250, -- Redguard Nightstand, Bolted
-	119251, -- Redguard Pot, Hanging Garish
-	119252, -- Redguard Table, Formal
-	119253, -- Redguard Table, Game
-	119254, -- Redguard Divider, Lattice
-	119255, -- Redguard Stool, Starry
-	119256, -- Redguard Footstool, Starry
-	119257, -- Redguard Cupboard, Sturdy
-	119258, -- Redguard Shelf, Bolted
-	119259, -- Redguard Wine Rack, Inlaid
-	119260, -- Redguard Bench", Arc
-	119261, -- Redguard Pot, Mosaic
-	119262, -- Redguard Pot, Hanging Mosaic
-	119263, -- Redguard Slices, Wax
-	119264, -- Redguard Runner, Oasis
-	119265, -- Redguard Mat, Desert
-	119266, -- Redguard Carpet, Mirage
-	119267, -- Redguard Tapestry, Oasis
-	119268, -- Redguard Chalice, Empty
-	119269, -- Redguard Chalice, Full
-	119270, -- Redguard Hourglass of Desert Sands
-	119271, -- Redguard Jar, Oasis
-	119272, -- Redguard Vase, Baroque
-	119273, -- Redguard Bottle, Delicate
-	119274, -- Redguard Jar, Baroque
-	119275, -- Redguard Decanter, Delicate
-	119276, -- Redguard Lantern, Delicate
-	119277, -- Redguard Streetlamps, Full
-	119278, -- Redguard Candelabra, Twisted
-	119279, -- Redguard Candelabra, Polished
-	119280, -- Redguard Chandelier, Polished
-	119281, -- Redguard Chandelier, Polished Grated
-	119282, -- Redguard Awning, Oasis
-	119283, -- Redguard Tent, Starry
-	119284, -- Redguard Firepit, Stone
-	119285, -- Redguard Counter, Block Island
-	119286, -- Redguard Counter, Bar Island
-	119287, -- Redguard Counter, Grill
-	119288, -- Redguard Brazier, Enchanted
-	119290, -- Redguard Canopy, Stars
-	119291, -- Redguard Pillow, Lattice Flames
-	119292, -- Redguard Pillow, Florid Flames
-	119293, -- Redguard Pillow, Florid Sunset
-	119295, -- Redguard Table, Inlaid
-	119296, -- Redguard Table, Grand Inlaid
-	119297, -- Redguard End Table, Tea
-	119298, -- Redguard Pillow Roll, Desert Flame
-	119299, -- Redguard Throw Pillow, Desert Flame
-	119300, -- Redguard Tuffet, Oasis
-	119301, -- Redguard End Table, Inlaid
-	119302, -- Redguard Decanter, Glass
-	119303, -- Redguard Bottle, Stained Glass
-	119304, -- Redguard Vial, Stained Glass
-	119305, -- Redguard Carpet, Oasis
-	119306, -- Redguard Mat, Mirage
-	119307, -- Redguard Mat, Starburst
-	119308, -- Redguard Lantern, Cannister
-	119309, -- Redguard Lamp, Caged
-	119310, -- Redguard Lantern, Caged
-	119311, -- Redguard Lantern, Caged Stand
-	119312, -- Redguard Tapestry, Starry
-	121373, -- Redguard Censer, Hanging Bulb
-	119314, -- Rough Stretcher, Military
-	119317, -- Rough Crate, Reinforced
-	119325, -- Rough Bag, Burlap
-	119328, -- Rough Hatchet, Practical
-	119330, -- Rough Knife, Butcher
-	119331, -- Rough Bowl, Common
-	119338, -- Rough Platform, Stage
-	119342, -- Rough Crate, Bolted
-	119344, -- Rough Box, Boarded
-	119348, -- Rough Container, Cargo
-	119350, -- Rough Bedroll, Basic
-	119351, -- Lettuce, Display
-	119352, -- Pumpkin, Display
-	119353, -- Winter Squash", Display
-	119354, -- Beet String, Display
-	119355, -- Garlic String, Display
-	119356, -- Beets, Display
-	119357, -- Common Counter, Island Stall
-	119358, -- Common Barrel, Sealed
-	119359, -- Common Basket, Closed
-	119360, -- Common Basket, Lid
-	119361, -- Common Basket, Open
-	119362, -- Common Basket, Tall
-	119363, -- Common Bucket, Basic
-	119364, -- Common Bucket, Rope
-	119365, -- Common Cargo, Covered
-	119366, -- Common Crate, Sealed
-	119367, -- Common Washtub, Empty
-	119368, -- Footstool, Block
-	119369, -- Common Trough
-	119370, -- Common Wheelbarrow, Flat
-	119371, -- Common Wheelbarrow, Barrel
-	119372, -- Common Wheelbarrow, Sided
-	119373, -- Apple, Display
-	119374, -- Common Pack, Backpack
-	119375, -- Common Pack, Satchel
-	119376, -- Banana, Wax
-	119377, -- Common Bowl of Soup, Display
-	119378, -- Carrots, Wax
-	119379, -- Common Cleaver, Cooking
-	119380, -- Common Pot, Cooking
-	119381, -- Grapes, Wax
-	119382, -- Common Inkwell, Practical
-	119383, -- Common Plate, Simple
-	119384, -- Common Plate, Setting
-	119385, -- Sugar Pumpkin, Wax
-	119386, -- Radish", Wax
-	119387, -- Bowl, Serving
-	119388, -- Common Bowl of Stew, Display
-	119389, -- Common Platter, Serving
-	119390, -- Common Skillet, Practical
-	119391, -- Common Candle, Set
-	119392, -- Common Candles, Pair
-	119393, -- Common Candle, Lasting
-	119394, -- Common Bookrest, Practical
-	119395, -- Common Post, Flag Pole
-	119396, -- Common Lantern, Hanging
-	119397, -- Common Lantern, Stationary
-	119399, -- Common Post, Sign Holder
-	119400, -- Hammer, Forge
-	119401, -- Tongs, Forge
-	119402, -- Potato, Wax
-	119403, -- Common Table, Slanted
-	119404, -- Common Cage, Hunting
-	119405, -- Common Trap, Hunting
-	119406, -- Common Cargo, Sealed
-	119407, -- Common Cargo, Reinforced
-	119408, -- Simple Blue Banner
-	119413, -- Cauldron of Soup
-	119416, -- Cauldron of Stew
-	119418, -- Cauldron, Covered
-	119420, -- Cart, Sided
-	119421, -- Coffin, Lid
-	119422, -- Coffin, Case
-	119423, -- Keg
-	119424, -- Cleaver, Butcher's
-	119425, -- Hearty Bread
-	119426, -- Bread, Plain
-	119427, -- Cheese Wedge
-	119428, -- Common Bowl, Serving
-	119429, -- Ham, Display
-	119432, -- Hourglass, Common
-	119438, -- Baked Potato, Display
-	119439, -- Pot Pie, Display
-	119440, -- Pie Dish", Empty
-	119443, -- Drumstick
-	119444, -- Candle, Group
-	119445, -- Lantern, Stationary
-	119446, -- Lantern, Hanging
-	119447, -- Candles, Lasting
-	119448, -- Minecart, Empty
-	119449, -- Minecart, Push
-	119450, -- Knife, Carving
-	119451, -- Kennel, Locked
-	119462, -- Plums, Bunch
-	119463, -- Tangerines, Bunch
-	119464, -- Peaches, Bunch
-	119465, -- Oranges, Bunch
-	119467, -- Cured Meat
-	119468, -- Cured Meats
-	119469, -- Cured Meat Chunks
-	119470, -- Cured Meat Chunk
-	119471, -- Cured Meat Pile
-	119472, -- Cured Meat Hock
-	119476, -- Grilling Rack
-	119477, -- Basket of Apples
-	119478, -- Basket of Apples, Full
-	119479, -- Basket of Lettuce
-	119480, -- Basket of Gourds
-	119481, -- Basket of Corn
-	119482, -- Basket of Tomatoes
-	119483, -- Gibbet, Single
-	119484, -- Bottle, Elixir
-	119485, -- Bottle, Liquor
-	119486, -- Vial, Delicate
-	119487, -- Pie Dish", Display
-	119488, -- Bottle, Wine
-	119489, -- Candle Set, Ritual
-	119490, -- Horn, Ritual
-	119491, -- Cured Meat Shank
-	119518, -- Cage, Wild Animal
-	119520, -- Cage, Covered
-	119524, -- Stockade
-	119525, -- Bread, Braided
-	119526, -- Goblet, Wine
-	119527, -- Bread, Round
-	119529, -- Bread Loaves, Round
-	119532, -- Bread, Hearty Loaves
-	119533, -- Box of Plums
-	119539, -- Sweetroll
-	119540, -- Desk, Engraved
-	119541, -- Fish", Small
-	119542, -- Fish", Medium
-	119543, -- Fish", Large
-	119592, -- Target Skeleton, Humanoid
-
-
-	-- Rollis's recipes
-	121200, -- Cabinet, Poisonmaker's
-	121166, -- Podium, Skinning
-	121168, -- Tools, Case
-	121199, -- Mortar and Pestle
-	121214, -- Orcish Skull Goblet, Full
-	121163, -- Apparatus, Boiler
-	121197, -- Bottle, Poison Elixir
-	121164, -- Case of Vials
-	121209, -- Orcish Tapestry, Spear
-	121207, -- Orcish Table with Fur
-	121207, -- Orcish Table with Fur
-	121315, -- Target Skeleton, Robust Humanoid
-	119592, -- Target Skeleton, Humanoid
-
-	121311, -- Breton Throne
-	121120, -- Chair, Carved
-	121308, -- High Elf Banner, Gilded
-
-	121546, -- Argonian Box, Woven
-	121374, -- Redguard Censer, Hanging Disc
-	121108, -- Simple Brown Banner
-	121310, -- High Elf Sconce, Winged
-	121307, -- Orcish Brazier, Pillar
-
-	-- 116214, -- Nord Banner, Bear
-	-- 115786, -- Argonian Skiff, Common Reed
-
-
-	121207, -- Orcish Table with Fur
-	121203, -- Khajiit Brazier, Enchanted
-	121201, -- Sack of Beans
-
-
-	121111, -- Simple Red Banner
-	121110, -- Simple Purple Banner
-	121109, -- Simple Gray Banner
-	121372, -- Noble Standing Cauldron
-
-	121101, -- Sack of Millet,
-	121100, -- Common Stewpot, Hanging
-	121091, -- Stool, Carved
-	121059, -- Rough Cup, Empty
-
-	121313, -- Wood Elf Throne, Vine
-	121104, -- Common Quill, Feather
-
-	121305, -- Redguard Chandelier, Dark
-	121304, -- Redguard Chandelier, Grated
-	121366, -- Orcish Tapestry, Hunt
-	121365, -- High Elf Tapestry, Gilded
-}
-
diff --git a/data/Homestead/H_Rollis.lua b/data/Homestead/H_Rollis.lua
deleted file mode 100644
index ce88278..0000000
--- a/data/Homestead/H_Rollis.lua
+++ /dev/null
@@ -1,34 +0,0 @@
-FurC.Rolis 		= FurC.Rolis or {}
-FurC.Rollis_Recipes = FurC.Rollis_Recipes or {}
-
-
-FurC.Rolis[FURC_HOMESTEAD] = {
-	-- Alchemy station
-	[118328] = 35,
-	-- Blacksmithing station
-	[119781] = 35,
-	-- Clothing station
-	[119707] = 35,
-	-- Dye Station
-	[118329] = 35,
-	-- Enchanting station
-	[118330] = 35,
-	-- Provisioning station
-	[118327] = 35,
-	-- Woodworking station
-	[119744] = 35,
-
-	-- Attunable Blacksmithing station
-	[119594] = 250,
-	-- Attunable Clothing station
-	[119821] = 250,
-	-- Attunable Woodworking station
-	[119822] = 250,
-}
-
-FurC.Rollis_Recipes[FURC_HOMESTEAD] = {
-	 121207,	-- Target Skeleton
-	 121315,	-- Robust Target Skeleton
-	 126582,	-- Target Centurion
-	 126583,	-- Robust Target Centurion
-}
diff --git a/data/LuxuryFurnisher.lua b/data/LuxuryFurnisher.lua
index c7a73f9..ebac311 100644
--- a/data/LuxuryFurnisher.lua
+++ b/data/LuxuryFurnisher.lua
@@ -1,468 +1,5 @@
 FurC.LuxuryFurnisher = FurC.LuxuryFurnisher or {}
-FurC.LuxuryFurnisher[FURC_DRAGONS] = {
+FurC.LuxuryFurnisher[FURC_ALTMER] = {

-
-	[134839] = {	-- Necromancer's Brazier, Cold Flame
-		itemPrice 	= 10000,
-		itemDate	= "2018-05-12",
-	},
-	[134840] = {	-- Necromancer's Spire, Compact
-		itemPrice 	= 75000,
-		itemDate	= "2018-05-12",
-	},
-	[134841] = {	-- Necromancer's Spire, Huge
-		itemPrice 	= 100000,
-		itemDate	= "2018-05-12",
-	},
-
-	[134836] = {	-- Necromancer's Brazier, Flame
-		itemPrice 	= 10000,
-		itemDate	= "2018-05-04",
-	},
-	[134838] = {	-- Necromancer's Spire, Alcove
-		itemPrice 	= 75000,
-		itemDate	= "2018-05-04",
-	},
-	[134837] = {	-- Necromancer's Spire, Narrow
-		itemPrice 	= 50000,
-		itemDate	= "2018-05-04",
-	},
-
-
-	[134834] = {	-- Bandages, Blood-Soaked
-		itemPrice 	= 2000,
-		itemDate	= "2018-04-28",
-	},
-	[134835] = {	-- Orcish Burial Urn, Exhumed
-		itemPrice 	= 20000,
-		itemDate	= "2018-04-28",
-	},
-	[120824] = {	-- Body Cage
-		itemPrice 	= 5000,
-		itemDate	= "2018-04-28",
-	},
-	[120829] = {	-- Torture Rack
-		itemPrice 	= 5000,
-		itemDate	= "2018-04-28",
-	},
-	[120828] = {	-- Torture Wheel
-		itemPrice 	= 100000,
-		itemDate	= "2018-04-28",
-	},
-
-
-	[134833] = {	-- Gibbet, Hanging Hooked
-		itemPrice 	= 75000,
-		itemDate	= "2018-04-21",
-	},
-
-	[120826] = {	-- Iron Cross
-		itemPrice 	= 10000,
-		itemDate	= "2017-04-21",
-	},
-	[120825] = {	-- Iron Cross, Large
-		itemPrice 	= 25000,
-		itemDate	= "2017-04-21",
-	},
-	[120827] = {	-- Iron Maiden, Chained
-		itemPrice 	= 20000,
-		itemDate	= "2017-04-21",
-	},
-
-
-
-	[134832] = {	-- Basin of the Divines
-		itemPrice 	= 35000,
-		itemDate	= "2018-04-14",
-	},
-    [120823] = {	-- Sigil Stand
-		itemPrice 	= 15000,
-		itemDate	= "2018-04-14",
-	},
-    [120819] = {	-- Sigil, Kynareth
-		itemPrice 	= 20000,
-		itemDate	= "2018-04-14",
-	},
-    [120820] = {	-- Sigil, Mara
-		itemPrice 	= 20000,
-		itemDate	= "2018-04-14",
-	},
-    [120821] = {	-- Sigil, Stendarr
-		itemPrice 	= 20000,
-		itemDate	= "2018-04-14",
-	},
-    [120822] = {	-- Sigil, Zenithar
-		itemPrice 	= 20000,
-		itemDate	= "2018-04-14",
-	},
-
-
-    [120823] = {	-- Sigil Stand
-		itemPrice 	= 15000,
-		itemDate	= "2018-04-07",
-	},
-	[120815] = {	-- Sigil, Akatosh
-		itemPrice 	= 20000,
-		itemDate	= "2018-04-07",
-	},
-	[120816] = {	-- Sigil, Arkay
-		itemPrice 	= 20000,
-		itemDate	= "2018-04-07",
-	},
-	[120817] = {	-- Sigil, Dibella
-		itemPrice 	= 20000,
-		itemDate	= "2018-04-07",
-	},
-	[120818] = {	-- Sigil, Julianos
-		itemPrice 	= 20000,
-		itemDate	= "2018-04-07",
-	},
-	[134831] = {	-- Altar of the Divines
-		itemPrice 	= 50000,
-		itemDate	= "2018-04-07",
-	},
-
-	[134830] = {	-- Flowers, Blue Starbloom
-		itemPrice 	= 15000,
-		itemDate	= "2018-03-31",
-	},
-	[120888] = {	-- Bat Bloom
-		itemPrice 	= 10000,
-		itemDate	= "2018-03-31",
-	},
-	[120887] = {	-- Fan Bush
-		itemPrice 	= 1000,
-		itemDate	= "2018-03-31",
-	},
-	[120889] = {	-- Glow Bush, Purple
-		itemPrice 	= 20000,
-		itemDate	= "2018-03-31",
-	},
-	-- April, 7-9
-	[120885] = {	-- Alik'r Cactus
-		itemPrice 	= 2000,
-		itemDate	= "2018-03-24",
-	},
-	[120884] = {	-- Buckthorn
-		itemPrice 	= 4000,
-		itemDate	= "2018-03-24",
-	},
-	[120883] = {	-- Voidflower
-		itemPrice 	= 5000,
-		itemDate	= "2018-03-24",
-	},
-	[134829] = {	-- Fern, Woody Slough
-		itemPrice 	= 3000,
-		itemDate	= "2018-03-24",
-	},
-	[120886] = {	-- White Hosta
-		itemPrice 	= 3000,
-		itemDate	= "2018-03-24",
-	},
-	[134828] = {	-- Antler Coral, Branched Spiree
-		itemPrice 	= 100000,
-		itemDate	= "2018-03-17",
-	},
-	[120847] = {	-- Dock Winch
-		itemPrice 	= 4000,
-		itemDate	= "2018-03-17",
-	},
-	[120849] = {	-- Anchor
-		itemPrice 	= 10000,
-		itemDate	= "2018-03-17",
-	},
-	[120848] = {	-- Fishing Pole Rack
-		itemPrice 	= 2500,
-		itemDate	= "2018-03-17",
-	},
-	[121269] = {	-- Ocean Antler Coral
-		itemPrice 	= 7500,
-		itemDate	= "2018-03-31",
-	},
-	[121268] = {	-- Fisher's Catch of the Day Rack
-		itemPrice 	= 5000,
-		itemDate	= "2018-03-10",
-	},
-	[120850] = { -- Harbor Floats
-		itemPrice 	= 5000,
-		itemDate	= "2018-03-10",
-	},
-	[120846] = { -- Dock Rope Wheel
-		itemPrice 	= 3000,
-		itemDate	= "2018-03-10",
-	},
-	[134827] = { -- Mooring Line, Coiled
-		itemPrice 	= 7500,
-		itemDate	= "2018-03-10",
-	},
-	[134826] = { -- Mooring Line, Tidy
-		itemPrice 	= 5000,
-		itemDate	= "2018-03-10",
-	},
-	[120806] = {	-- Hew'S Bane Candlestick
-		itemPrice 	= 2500,
-		itemDate	= "2018-03-03",
-	},
-	[120805] = {	-- Hew's Bane Rug
-		itemPrice 	= 5000,
-		itemDate	= "2018-03-03",
-	},
-	[120807] = {	-- Hew's Bane Well
-		itemPrice 	= 10000,
-		itemDate	= "2018-03-03",
-	},
-	[134825] = {	-- Redguard Tent, Squared Silk
-		itemPrice 	= 100000,
-		itemDate	= "2018-03-03",
-	},
-	[117876] = {	-- Wedding Curtain, Wide
-		itemPrice 	= 7500,
-		itemDate	= "2018-02-10",
-	},
-	[134469] = { -- Ayleid Constellation Stele, the Mage
-		itemPrice	= 20000,
-		itemDate	= "2018-02-30",
-	},
-	[134470] = { -- Ayleid Constellation Stele, Thief
-		itemPrice	= 20000,
-		itemDate	= "2018-02-30",
-	},
-	[134471] = { -- Ayleid Constellation Stele, Warrior
-		itemPrice	= 20000,
-		itemDate	= "2018-02-30",
-	},
-	[117875] = {	-- Wedding Gazebo, Bare
-		itemPrice 	= 35000,
-		itemDate	= "2018-02-17",
-	},
-	[134824] = {	-- Redguard Tent, Rounded Silk
-		itemPrice 	= 100000,
-		itemDate	= "2018-02-24",
-	},
-}
-FurC.LuxuryFurnisher[FURC_CLOCKWORK] = {
-	[134466] = { -- Ayleid Sconce, Empty
-		itemPrice	= 4000,
-		itemDate	= "2018-01-27",
-	},
-	[134467] = { -- Culanda Stone ,Glowing
-		itemPrice	= 5000,
-		itemDate	= "2018-01-27",
-	},
-	[134465] = { -- Varla Stone ,Glowing
-		itemPrice	= 5000,
-		itemDate	= "2018-01-27",
-	},
-	[134463] = { -- Riekling Brazier, Ceremonial
-		itemPrice	= 4000,
-		itemDate	= "2018-01-19",
-	},
-	[134462] = { -- Riekling Grinding Stone
-		itemPrice	= 450,
-		itemDate	= "2018-01-19",
-	},
-	[134461] = { -- Riekling Tanning Rack, Stretched
-		itemPrice	= 450,
-		itemDate	= "2018-01-19",
-	},
-	[134457] = {	-- Riekling Bedding, Icy Straw
-		itemPrice 	= 2500,
-		itemDate	= "2018-01-12",
-	},
-	[134458] = {	-- Riekling Pelt, Boar
-		itemPrice 	= 4000,
-		itemDate	= "2018-01-12",
-	},
-	[134459] = {	-- Riekling Pit, Ash and Bone
-		itemPrice 	= 7500,
-		itemDate	= "2018-01-12",
-	},
-	[134453] = {	-- Ancient Orcish Counterweight
-		itemPrice 	= 20000,
-		itemDate	= "2018-01-05",
-	},
-	[134450] = {	-- Seal of Clan Morkul, Stone
-		itemPrice 	= 4000,
-		itemDate	= "2018-01-05",
-	},
-	[134451] = {	-- Seal of Clan Shatul, Stone
-		itemPrice 	= 4000,
-		itemDate	= "2018-01-05",
-	},
-	[134452] = {	-- Seal of Clan Tumnosh, Stone
-		itemPrice 	= 4000,
-		itemDate	= "2018-01-05",
-	},
-	-- Dec. 30thst
-	[134442] = {	-- Seal of Clan Bagrakh, Stone
-		itemPrice 	= 4000,
-		itemDate	= "2017-12-29",
-	},
-	[134443] = {	-- Seal of Clan Fharun, Stone
-		itemPrice 	= 4000,
-		itemDate	= "2017-12-29",
-	},
-	[134444] = {	-- Seal of Clan Igrun, Stone
-		itemPrice 	= 4000,
-		itemDate	= "2017-12-29",
-	},
-	[134446] = {	-- Ancient Orcish Sarcophagus Lid
-		itemPrice 	= 10000,
-		itemDate	= "2017-12-29",
-	},
-	[134445] = {	-- Ancient Orcish Sarcophagus, Peaked
-		itemPrice 	= 14000,
-		itemDate	= "2017-12-29",
-	},
-	-- Dec. 23rd
-	[134439] = {	-- Clockwork Alchemy Flask
-		itemPrice 	= 3000,
-		itemDate	= "2017-12-22",
-	},
-	[134438] = {	-- Clockwork Alchemy Rack, Tubes
-		itemPrice 	= 3000,
-		itemDate	= "2017-12-22",
-	},
-	[134440] = {	-- Clockwork Alchemy Titration Stand
-		itemPrice 	= 3000,
-		itemDate	= "2017-12-22",
-	},
-	-- Dec. 16th
-	[134435] = {	-- Clockwork Loom, Sturdy
-		itemPrice 	= 20000,
-		itemDate	= "2017-12-15",
-	},
-	[134434] = {	-- Quality Fabric, Stacked
-		itemPrice 	= 450,
-		itemDate	= "2017-12-15",
-	},
-	[134436] = {	-- Spool, Blue Thread
-		itemPrice 	= 450,
-		itemDate	= "2017-12-15",
-	},
-	-- Dec. 8th
-	[134432] = {	-- Banker's Sign, Small
-		itemPrice 	= 3000,
-		itemDate	= "2017-12-08",
-	},
-	[134431] = {	-- Merchant's Sign, Small
-		itemPrice 	= 3000,
-		itemDate	= "2017-12-08",
-	},
-	[134433] = {	-- Stablemaster's Sign, Small
-		itemPrice 	= 3000,
-		itemDate	= "2017-12-08",
-	},
-	-- Dec. 1st
-	[134428] = {	-- Banker's Sign, Large
-		itemPrice 	= 12000,
-		itemDate	= "2017-12-01",
-	},
-	[134429] = {	-- Merchant's Sign, Large
-		itemPrice 	= 12000,
-		itemDate	= "2017-12-01",
-	},
-	[134430] = {	-- Stablemaster's Sign, Large
-		itemPrice 	= 12000,
-		itemDate	= "2017-12-01",
-	},
-	-- Nov. 25th
-	[134424] = {	-- Clockwork Gear Display, Bell Jar
-		itemPrice 	= 2500,
-		itemDate	= "2017-11-24",
-	},
-	[134423] = {	-- Clockwork Gear Display, Tall Jar
-		itemPrice 	= 3000,
-		itemDate	= "2017-11-24",
-	},
-	[134426] = {	-- Clockwork Globe, Stand
-		itemPrice 	= 4000,
-		itemDate	= "2017-11-24",
-	},
-	[134425] = {	-- Clockwork Orrery, Compact
-		itemPrice 	= 20000,
-		itemDate	= "2017-11-24",
-	},
-	-- Nov. 18th
-	[134419] = {	-- Clockwork Calibration Guide
-		itemPrice = 50000,
-		itemDate	= "2017-11-24",
-	},
-	[134420] = {	-- Clockwork Calibration Guide
-		itemPrice = 50000,
-		itemDate	= "2017-11-24",
-	},
-	[134421] = {	-- Clockwork Calibration Guide
-		itemPrice = 50000,
-		itemDate	= "2017-11-24",
-	},
-	[134418] = {	-- Clockwork Telescope, Surveyor's
-		itemPrice = 15000,
-		itemDate	= "2017-11-24",
-	},
-	-- Nov. 18th
-	[134419] = {	-- Clockwork Calibration Guide
-		itemPrice = 50000,
-		itemDate	= "2017-11-17",
-	},
-	[134420] = {	-- Clockwork Calibration Guide
-		itemPrice = 50000,
-		itemDate	= "2017-11-17",
-	},
-	[134421] = {	-- Clockwork Calibration Guide
-		itemPrice = 50000,
-		itemDate	= "2017-11-17",
-	},
-	[134418] = {	-- Clockwork Telescope, Surveyor's
-		itemPrice = 15000,
-		itemDate	= "2017-11-17",
-	},
-	-- Nov. 11th
-	[118285] = {	-- Carcass, Fresh Pheasant
-		itemPrice = 7500,
-		itemDate	= "2017-11-10",
-	},
-	[118292] = {	-- Elk Head, Wall Mount
-		itemPrice = 20000,
-		itemDate	= "2017-11-10",
-	},
-	[116506] = {	-- Orcish Grand Table with Skins
-		itemPrice = 50000,
-		itemDate	= "2017-11-10",
-	},
-	[118243] = {	-- Tapestry, Echatere Pelt
-		itemPrice = 25000,
-		itemDate	= "2017-11-10",
-	},
-	-- Nov. 4th
-	[118286] = {	-- Carcass, Grey Hare
-		itemPrice = 5000,
-		itemDate	= "2017-11-03",
-	},
-	[118281] = {	-- Carcass, Hanging Geese
-		itemPrice = 7000,
-		itemDate	= "2017-11-03",
-	},
-	[118279] = {	-- Deer Head, Wall Mount
-		itemPrice = 15000,
-		itemDate	= "2017-11-03",
-	},
-	[118298] = {	-- Wolf Head, Wall Mount
-		itemPrice = 20000,
-		itemDate	= "2017-11-03",
-	},
-	-- Oct 28th
-	[132143] = {	-- Reach Sapling, Briarheart
-		itemPrice = 50000,
-		itemDate	= "2017-10-27",
-	},
-	[132158] = {	-- Witch's Remains, Offering
-		itemPrice = 50000,
-		itemDate	= "2017-10-27",
-	},
-	[132157] = {	-- Witch's Remains, Sacrificial
-		itemPrice = 50000,
-		itemDate	= "2017-10-27",
-	},
 }

diff --git a/data/Morrowind/M_AchievementVendors.lua b/data/Morrowind/M_AchievementVendors.lua
deleted file mode 100644
index 44c504d..0000000
--- a/data/Morrowind/M_AchievementVendors.lua
+++ /dev/null
@@ -1,374 +0,0 @@
-
---[[
-			[""] = {		--
-				itemPrice 		= 100,
-			},
-]]
-function tableMerge(t1, t2)
-	if nil == t2 and nil == t1 then
-		return {}
-	elseif nil == t2 then
-		return t1
-	elseif nil == t1 then
-		return t2
-	end
-
-    for k,v in pairs(t2) do
-		t1[k] = v
-    end
-    return t1
-end
-
-local bookList = {
-	-- [120197] = { -- 16 accords of madness, vol vi
-		-- itemPrice = 500,
-	-- },
-}
-
-local boxes = {}
-local b2 = {
-	[120998] = {	-- Block,Wood Cutting
-		itemPrice 		= 100,
-	},
-	[117959] = {		-- Rough Container, Shipping
-		itemPrice 		= 100,
-	},
-	[117959] = {		-- Rough Box, Slatted
-		itemPrice 		= 100,
-	},
-	[117931] = {		-- Rough Crate Lid
-		itemPrice 		= 100,
-	},
-	[117957] = {		-- Rough Crate, Cracked
-		itemPrice 		= 100,
-	},
-	[117958] = {		-- Rough Crate, Empty
-		itemPrice 		= 100,
-	},
-	[117930] = {		-- Rough Crate, Open
-		itemPrice 		= 100,
-	},
-	[117953] = {		-- Rough Crate, Sealed
-		itemPrice 		= 100,
-	},
-	[117928] = {		-- Rough Crate, Sturdy
-		itemPrice 		= 100,
-	},
-}
-FurC.Books[FURC_MORROWIND] = bookList
-
-FurC.AchievementVendors[FURC_MORROWIND] = {
-	["Vivec City, Saint Delyn Inn"] = {
-		["Drops-No-Glass"] = {
-			[126638] = { -- Ashlander Altar, Anticipations
-				itemPrice 		= 50000,
-				achievement 	= 1825, -- Clanfriend
-			},
-			[126640] = { -- Ashlander Fence, Totems
-				itemPrice 		= 10000,
-				achievement 	= 1881, -- Ashlander Relic Preserver
-			},
-			[126613] = { -- Ashlander Throne
-				itemPrice 		= 100000,
-				achievement 	= 1849, -- Voices of the Failed Incarnates
-			},
-			[126639] = { -- Ashlander Yurt, Netch-Hide
-				itemPrice 		= 75000,
-				achievement 	= 1880,  -- Ashlands Stalker
-			},
-			[126623] = { -- Banner of House Dres
-				itemPrice 		= 10000,
-				achievement 	= 1867,  -- Morrowind Grand Adventurer
-			},
-			[126621] = { -- Banner of House Hlaalu
-				itemPrice 		= 10000,
-				achievement 	= 1867,  -- Morrowind Grand Adventurer
-			},
-			[126620] = { -- Banner of House Redoran
-				itemPrice 		= 10000,
-				achievement 	= 1867,  -- Morrowind Grand Adventurer
-			},
-			[126622] = { -- Banner of House Telvanni
-				itemPrice 		= 10000,
-				achievement 	= 1867,  -- Morrowind Grand Adventurer
-			},
-			[126628] = { -- Banner, Morag Tong
-				itemPrice 		= 25000,
-				achievement 	= 1870,  -- Naryu's Confidant
-			},
-			[126615] = { -- Blessing Stone
-				itemPrice 		= 10000,
-				achievement 	= 1850,  -- Bearer of the Blessed Staff
-			},
-			[126614] = { -- Blessing Stone Device
-				itemPrice 		= 20000,
-				achievement 	= 1850,  -- Bearer of the Blessed Staff
-			},
-			[126618] = { -- Dwarven Brazier, Eternal
-				itemPrice 		= 50000,
-				achievement 	= 1854,  -- N'chow conqueror
-			},
-			[126632] = { -- Glass Crystal, Plume
-				itemPrice 		= 15000,
-				achievement 	= 1874,  -- Pilgrim Protector
-			},
-			[126631] = { -- Glass Crystal, Radiance
-				itemPrice 		= 15000,
-				achievement 	= 1874,  -- Pilgrim Protector
-			},
-			[126633] = { -- Glass Crystals, Bed
-				itemPrice 		= 20000,
-				achievement 	= 1874,  -- Pilgrim Protector
-			},
-			[126629] = { -- Kwama Queen Egg
-				itemPrice 		= 15000,
-				achievement 	= 1872,  -- Kwama Miner
-			},
-			[126630] = { -- Replica Stone of Ashalmwia
-				itemPrice 		= 75000,
-				achievement 	= 1873,  -- Dratha Quest
-			},
-			[126635] = { -- Sacred Guar Skull
-				itemPrice 		= 15000,
-				achievement 	= 1876,  -- Ald'Ruhn Annalist
-			},
-			[126642] = { -- Silt Strider Shell, Hollow
-				itemPrice 		= 10000,
-				achievement 	= 1826,  -- Strider Carawaner
-			},
-			[126617] = { -- Statue of Vivec the Champion
-				itemPrice 		= 150000,
-				achievement 	= 1852,  -- Champion of Vivec
-			},
-			[126636] = { -- Statue, Cowering Ebony
-				itemPrice 		= 50000,
-				achievement 	= 1877,  -- Ebony Enforcer
-			},
-			[126637] = { -- Statue, Terrified Ebony
-				itemPrice 		= 50000,
-				achievement 	= 1877,  -- Ebony Enforcer
-			},
-			[126616] = { -- Statuette of Clavicus Vile, Masked
-				itemPrice 		= 100000,
-				achievement 	= 1851,  -- Hand of a Living God
-			},
-			[126627] = { -- Tapestry, Morag Tong
-				itemPrice 		= 35000,
-				achievement 	= 1870,  -- Naryu's Confidant
-			},
-			[126634] = { -- Tapestry, St. Veloth
-				itemPrice 		= 20000,
-
-				achievement 	= 1875,  -- Narsis's Apprentice
-			},
-			[126626] = { -- Telvanni Device
-				itemPrice 		= 50000,
-				achievement 	= 1869,  -- Telvanni quest
-			},
-			[126792] = { -- Temple Doctrine: the 36
-				itemPrice 		= 130000,
-				achievement 	= 1824,  -- Tribunal Preacher
-			},
-			[126619] = { -- Totem of the Sixth House
-				itemPrice 		= 100000,
-				achievement 	= 1856,  -- Forgotten Wastes Vanquisher
-			},
-			[126625] = { -- Tribunal Shrine in Fountain
-				itemPrice 		= 50000,
-				achievement 	= 1868,  -- Savior of Morrowind
-			},
-			[126641] = { -- Triptych of the Triune
-				itemPrice 		= 20000,
-				achievement 	= 1827,  -- The Pilgrim's Path
-			},
-		},
-		["Uzipa"] = {
-			[120998] = { -- Block, Wood Cutting
-				itemPrice 		= 100,
-			},
-			[125481] = { -- Boulder, Volcanic Column
-				itemPrice 		= 500,
-			},
-			[125483] = { -- Boulder, Volcanic Plug
-				itemPrice 		= 500,
-			},
-			[125587] = { -- Mushroom ,Funnel Caps
-				itemPrice 		= 15000,
-			},
-			[125588] = { -- Mushroom, Lanky Erupted Stinkcap
-				itemPrice 		= 750,
-			},
-			[125593] = { -- Mushroom, Netch Shield Platform
-				itemPrice 		= 25000,
-			},
-			[125594] = { -- Mushroom, Netch Shield Tower
-				itemPrice 		= 20000,
-			},
-			[125599] = { --
-				itemPrice 		= 750,
-			},
-			[125602] = { --
-				itemPrice 		= 750,
-			},
-			[125601] = { --
-				itemPrice 		= 750,
-			},
-			[125604] = { --
-				itemPrice 		= 750,
-			},
-			[125612] = { -- Mushrooms, Funnel Cap Cluster
-				itemPrice 		= 22500,
-			},
-			[125614] = { -- Mushrooms, Netch Hide Shade
-				itemPrice 		= 750,
-			},
-			[125638] = { -- Rock, Volcanic Chunk
-				itemPrice 		= 100,
-			},
-			[125639] = { -- Rock, Volcanic Slab
-				itemPrice 		= 100,
-			},
-			[125641] = { -- Sapling, Forked Ashland
-				itemPrice 		= 250,
-			},
-			[125642] = { -- Sapling, Lanky Ash Laurel
-				itemPrice 		= 250,
-			},
-			[125643] = { -- Sapling, Sturdy Ash Laurel
-				itemPrice 		= 250,
-			},
-			[125644] = { -- Sapling, Tall Ashland
-				itemPrice 		= 250,
-			},
-			[125645] = { -- Saplings, Ashland
-				itemPrice 		= 250,
-			},
-			[125673] = { -- Tree, Lanky Poplar
-				itemPrice 		= 500,
-			},
-			[125678] = { -- Tree, Sturdy Poplar
-				itemPrice 		= 500,
-			},
-			[125679] = { -- Tree, Poplar Cluster
-				itemPrice 		= 500,
-			},
-			[125677] = { -- Tree, Rooted Ashland
-				itemPrice 		= 40000,
-			},
-			[125676] = { -- Tree, Rooted Cedar
-				itemPrice 		= 50000,
-			},
-
-		},
-	},
-	["Vivec City, Gladiator's Quarters"] = {
-		["Brelda Ofemalen"] = {
-			[126649]	= { -- Banner of the Fire Drakes
-				itemPrice 		= 50000,
-				achievement 	= 1909, -- Crowd Favorite
-			},
-			[126712]	= { -- Banner of the PD
-				itemPrice 		= 50000,
-				achievement 	= 1909, -- Crowd Favorite
-			},
-			[126650]	= { -- Banner of the SL
-				itemPrice 		= 50000,
-				achievement 	= 1909, -- Crowd Favorite
-			},
-			[126646]	= { -- Standard of the FD
-				itemPrice 		= 25000,
-				achievement 	= 1907, -- Grand Standard-Guardian
-			},
-			[126648]	= { -- Standard of the PD
-				itemPrice 		= 25000,
-				achievement 	= 1907, -- Grand Standard-Guardian
-			},
-			[126647]	= { -- Standard of the SL
-				itemPrice 		= 25000,
-				achievement 	= 1907, -- Grand Standard-Guardian
-			},
-
-			[126713]	= { -- Tapestry of the FD
-				itemPrice 		= 100000,
-				achievement 	= 1910, -- Conquering Hero
-			},
-			[126715]	= { -- Tapestry of the PD
-				itemPrice 		= 100000,
-				achievement 	= 1910, -- Conquering Hero
-			},
-			[126714]	= { -- Tapestry of the SL
-				itemPrice 		= 100000,
-
-				achievement 	= 1910, -- Conquering Hero
-			},
-		},
-		["Llivas Driler"] = {
-			[126716]	= { -- Brazier of the FD
-				itemPrice 		= 50000,
-				achievement 	= 1913, -- Grand Champion
-			},
-			[126718]	= { -- Chained Skull of the PD
-				itemPrice 		= 100000,
-				achievement 	= 1913, -- Grand Champion
-			},
-			[126717]	= { -- Weathervane of the SL
-				itemPrice 		= 125000,
-				achievement 	= 1913, -- Grand Champion
-			},
-			[126643]	= { -- Crown of the SL
-				itemPrice 		= 75000,
-				achievement 	= 1901, -- Grand Relic Guardian
-			},
-			[126644]	= { -- FD's Skull
-				itemPrice 		= 150000,
-				achievement 	= 1901, -- Grand Relic Guardian
-			},
-			[126645]	= { -- Skull of the PD
-				itemPrice 		= 100000,
-				achievement 	= 1901, -- Grand Relic Guardian
-			},
-		},
-	},
-	["any Alliance Capital"] = {
-		[GetString(FURC_AV_HER)] = {
-			[126720]	= { -- Banner of Mayhem
-				itemPrice 		= 5000,
-				achievement 	= 1883, -- Mayhem Connaiseour
-			},
-			[126721]	= { -- Corpse of Mayhem, Argonian
-				itemPrice 		= 15000,
-				achievement 	= 1888, -- Wrath of the Whitestrake
-			},
-			[126722]	= { -- Corpse of Mayhem,Khajiit
-				itemPrice 		= 15000,
-				achievement 	= 1888, -- Wrath of the Whitestrake
-			},
-			[126723]	= { -- Corpse of Mayhem, Orc
-				itemPrice 		= 15000,
-				achievement 	= 1888, -- Wrath of the Whitestrake
-			},
-			[126724]	= { -- Propbably-Not-Punch Bowl of Mayhem
-				itemPrice 		= 30000,
-				achievement 	= 1892, -- Star-made Knight
-			},
-			[126719]	= { -- Standard of Mayhem
-				itemPrice 		= 2500,
-				achievement 	= 1883, -- Mayhem Connaiseour
-			},
-		},
-	},
-	["the Mages' guild"] = {
-		["the Mystic as part of a collection"] = bookList,
-	},
- }
-
-
--- global function, needs to live here, YES MANA
-function FurC.SetupMorrowindItems()
-
-	-- FurC.AchievementVendors[FURC_MORROWIND]["the Mages' guild"]["the Mystic as part of a collection"] = bookList
-	local listTable
-	listTable = FurC.AchievementVendors[FURC_MORROWIND]["Vivec City, Saint Delyn Inn"]["Uzipa"]
-	listTable = tableMerge(listTable, boxes)
-end
-
diff --git a/data/Morrowind/M_EventItems.lua b/data/Morrowind/M_EventItems.lua
deleted file mode 100644
index 0ab989f..0000000
--- a/data/Morrowind/M_EventItems.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-local t = {
-	[126157] = {},	-- Song of Pelinal, #1
-	[126158] = {},	-- Song of Pelinal, #2
-	[126159] = {},	-- Song of Pelinal, #3
-	[126160] = {},	-- Song of Pelinal, #4
-	[126161] = {},	-- Song of Pelinal, #5
-	[126162] = {},	-- Song of Pelinal, #6
-	[126163] = {},	-- Song of Pelinal, #7
-	[126164] = {},	-- Song of Pelinal, #8
-}
-
-FurC.EventItems[FURC_MORROWIND] = FurC.EventItems[FURC_MORROWIND] or {}
-FurC.EventItems[FURC_MORROWIND]["Midyear Mayhem"] = {}
-FurC.EventItems[FURC_MORROWIND]["Midyear Mayhem"]["Boon Box"] = t
-
-FurC.Books[FURC_MORROWIND] = t
-
diff --git a/data/Morrowind/M_LuxuryFurnisher.lua b/data/Morrowind/M_LuxuryFurnisher.lua
deleted file mode 100644
index 835951d..0000000
--- a/data/Morrowind/M_LuxuryFurnisher.lua
+++ /dev/null
@@ -1,185 +0,0 @@
-FurC.LuxuryFurnisher = FurC.LuxuryFurnisher or {}
-
-FurC.LuxuryFurnisher[FURC_MORROWIND] = {
-
-	-- August 5+6
-	[126573] = { -- Velothi Candle, Mourning
-		itemPrice 	= 5417,
-		itemDate	= "2017-08-11",
-	},
-	[126574] = { -- Velothi Cerecloth, Prayer
-		itemPrice 	= 5417,
-		itemDate	= "2017-08-11",
-	},
-	[126575] = { -- Velothi Shroud, Mourning
-		itemPrice 	= 5417,
-		itemDate	= "2017-08-11",
-	},
-	[126576] = { -- Velothi Seat, Meditation
-		itemPrice 	= 10834,
-		itemDate	= "2017-08-11",
-	},
-
-	-- August 5+6
-	[126611] = { -- Vvardenfell Anemone, Sprout
-		itemPrice 	= 5417,
-		itemDate	= "2017-08-04",
-	},
-	[126612] = { -- Vvardenfell Anemone, Strong
-		itemPrice 	= 27084,
-		itemDate	= "2017-08-04",
-	},
-	[126610] = { -- Vvardenfell Coral Plant,
-		itemPrice 	= 10834,
-		itemDate	= "2017-08-04",
-	},
-	[126591] = { -- Vvardenfell Coral Plant, Young
-		itemPrice 	= 5417,
-		itemDate	= "2017-08-04",
-	},
-
-	--July 29 + 30
-	[126587] = {	-- Vvardenfell Glowstalk, Sprout
-		itemPrice 	= 2500,
-		itemDate	= "2017-07-28",
-	},
-	[126585] = {	-- Vvardenfell Glowstalk, Strong
-		itemPrice 	= 10834,
-		itemDate	= "2017-07-28",
-	},
-	[126580] = {	-- Vvardenfell Glowstalk, Towering
-		itemPrice 	= 16250,
-		itemDate	= "2017-07-28",
-	},
-	[126586] = {	-- Vvardenfell Glowstalk, Young
-		itemPrice 	= 5417,
-		itemDate	= "2017-07-28",
-	},
-
-	-- July 22 - July 23
-	[126571] = {	-- Daedric Chandelier, Spiked
-		itemPrice 	= 8125,
-		itemDate	= "2017-07-21",
-	},
-	[126569] = {	-- Daedric Chest, Sealed
-		itemPrice 	= 8125,
-		itemDate	= "2017-07-21",
-	},
-	[126570] = {	-- Daedric Throne, Skulls
-		itemPrice 	= 0,
-		itemDate	= "2017-07-21",
-	},
-
-	-- July 15 - July 16
-	[126567] = {	-- Daedric Brazier, Ritual
-		itemPrice 	= 10834,
-		itemDate	= "2017-07-14",
-	},
-	[126565] = {	-- Daedric Platform, Sarcophagus
-		itemPrice 	= 8125,
-		itemDate	= "2017-07-14",
-	},
-	[126566] = {	-- Daedric Sarcophagus, Sealed
-		itemPrice 	= 27084,
-		itemDate	= "2017-07-14",
-	},
-
-
-	-- July 8 - July 9
-	[126562] = {	-- Dwarven Crystal Mechanism
-		itemPrice 	= 53571,
-		itemDate	= "2017-07-07",
-	},
-	[126563] = {	-- Dwarven Orrery, Reference
-		itemPrice 	= 27084,
-		itemDate	= "2017-07-07",
-	},
-	[126559] = {	-- Dwarven Schematics, technical
-		itemPrice 	= 8125,
-		itemDate	= "2017-07-07",
-	},
-
-
-	-- July 1st - 2nd
-	[126560] = {	-- Dwarven fountain, forged
-		itemPrice 	= 53571,
-		itemDate	= "2017-06-30",
-	},
-	[126564] = {	-- Dwarven Clock, Deactivated
-		itemPrice 	= 16250,
-		itemDate	= "2017-06-30",
-	},
-	[126561] = {	-- Dwarven Pillar, Forged
-		itemPrice 	= 10834,
-		itemDate	= "2017-06-30",
-	},
-
-
-	-- June, 23 - 26
-	[121270] = {	-- Brotherhood Banner, Large
-		itemPrice 	= 27084,
-		itemDate	= "2017-06-23",
-	},
-	[120836] = {	-- Brotherhood Candelabra, Floor
-		itemPrice 	= 8125,
-		itemDate	= "2017-06-23",
-	},
-	[120839] = {	-- Brotherhood Ledger, Stand
-		itemPrice 	= 4000,
-		itemDate	= "2017-06-23",
-	},
-	[120838] = {	-- Brotherhood Plaque, Wolf
-		itemPrice 	= 27084,
-		itemDate	= "2017-06-23",
-	},
-
-	-- June, 16
-
-	[120837] = {	-- Brotherhood Window, Stained Glass
-		itemPrice 	= 107143,
-		itemDate	= "2017-06-16",
-	},
-
-	[121271] = {	-- Brotherhood Tapestry
-		itemPrice 	= 10834,
-		itemDate	= "2017-06-16",
-	},
-
-	[120835] = {	-- Brotherhood Candelabra, Table
-		itemPrice 	= 2500,
-		itemDate	= "2017-06-16",
-	},
-
-	-- June, 9-11
-	[120808] = {	-- Statue Base, Circular
-		itemPrice 	= 10000,
-		itemDate	= "2017-06-09",
-	},
-	[120811] = {	-- Statue, Justice
-		itemPrice 	= 25000,
-		itemDate	= "2017-06-09",
-	},
-	[120814] = {	-- Statue, Order
-		itemPrice 	= 25000,
-		itemDate	= "2017-06-09",
-	},
-	[120813] = {	-- Statue, Truth
-		itemPrice 	= 25000,
-		itemDate	= "2017-06-09",
-	},
-
-	-- June, 3-5
-	[120809] = {	-- Statue Base, Square
-		itemPrice 	= 10000,
-		itemDate	= "2017-06-02",
-	},
-	[120810] = {	-- Statue, Faith
-		itemPrice 	= 25000,
-		itemDate	= "2017-06-02",
-	},
-	[120812] = {	-- Statue, Light
-		itemPrice 	= 25000,
-		itemDate	= "2017-06-02",
-	},
-}
-
diff --git a/data/Morrowind/M_Recipes.lua b/data/Morrowind/M_Recipes.lua
deleted file mode 100644
index da3b1de..0000000
--- a/data/Morrowind/M_Recipes.lua
+++ /dev/null
@@ -1,323 +0,0 @@
-FurC.Recipes = FurC.Recipes or {}
-
-FurC.Recipes[FURC_MORROWIND] = {
-
-	126966, -- Redoran Trestle, Corridor
-	126881, -- Dwarven Jar, Sealed
-	126865, -- Dwarven Engine, Turbine
-	126899, -- Dwarven Sconce, Framework
-	121545, -- Redguard Cannister, Gilded
-	121099, -- Common Firepit, Outdoor
-	127084, -- Indoril Candelabra, Shrine
-	127015, -- Hlaalu Censer, Mesh
-	127092, -- Hlaalu Lantern, Classic Vellum
-	126869, -- Dwarven Table, Workbench
-	126877, -- Dwarven Candlestick, Laboratory
-	121175, -- Geese, Hanging
-	127067, -- Dres Jar, Stoneflower
-	127075, -- Indoril Brazier, Cauldron
-	126941, -- Hlaalu Wardrobe, Formal
-	126925, -- Redoran Bed, Canopy
-	126903, -- Redoran Urn, Pale Marble
-	127019, -- Indoril Incense Cup, Silver
-	127027, -- Indoril Rug, Almalexia
-	126907, -- Hlaalu Settee, Polished
-	126978, -- Telvanni Bed, Organic
-	121061, -- Common Firepit, Piled
-	126860, -- Dwarven Engine, Boiler
-	121156, -- Papers, Stack
-	127080, -- Indoril Candelabra, Shrine Chamber
-	121192, -- Wolf Head, Wall Mount
-	126847, -- Indoril Streetlight, Full Stone
-	126991, -- Indoril Bellows, Practical
-	126834, -- Daedric Candles, Group
-	121183, -- Haj Mota Shell, Wall Mount
-	121187, -- Echatere, Wall Mount
-	126890, -- Dwarven Basin, Forged
-	127059, -- Hlaalu Banner, Floral
-	126963, -- Indoril Footlocker, Fortified
-	127023, -- Redoran Plate, Meal
-	126582, -- Target Centurion, Dwarf-Brass
-	121206, -- Orcish Desk with Furs
-	126954, -- Hlaalu Rack, Barrel
-	127051, -- Redoran Mantle Cloth, Crimson Cover
-	126937, -- Redoran Stool, Sanded
-	121210, -- Orcish Throne, Skull
-	127038, -- Indoril Runner, Sotha Sil
-	126916, -- Dres Sideboard, Display
-	121198, -- Shelf, Poison
-	126898, -- Dwarven Sconce, Barred
-	126894, -- Dwarven Chandelier, Framework
-	126866, -- Dwarven Pew, Refined
-	121305, -- Redguard Chandelier, Dark
-	127068, -- Redoran Fork, Wooden
-	127072, -- Indoril Banner, Sotha Sil
-	126983, -- Telvanni Nightstand, Organic
-	126878, -- Dwarven Goblet, Forged
-	126886, -- Dwarven Valve, Disconnected
-	127048, -- Hlaalu Box, Trinket
-	126870, -- Dwarven Table, Assembly
-	126846, -- Indoril Streetlight, Stone
-	127104, -- Hlaalu Boxes, Compact
-	126910, -- Hlaalu Stool, Mossy Cushion
-	126837, -- Daedric Urn, Ashen
-	126862, -- Dwarven Pipeline Cap, Sealed
-	126942, -- Hlaalu Bookcase, Orderly
-	121217, -- Redguard Lamp, Oil
-	121213, -- Orcish Skull Goblet, Empty
-	126902, -- Redoran Amphora, Sealed Marble
-	126958, -- Hlaalu Nightstand, Formal
-	127026, -- Indoril Runner, Almalexia
-	127018, -- Redoran Incense Holder, Ceramic Pan
-	121193, -- Bottle, Beaker
-	126861, -- Dwarven Boiler, Central
-	126874, -- Dwarven Candles, Plate
-	126854, -- Dwarven Pipe, Elbow
-	126891, -- Dwarven Chandelier, Caged
-	126919, -- Hlaalu Table, Formal Turtle
-	127035, -- Dres Carpet, Chains
-	127009, -- Redoran Cup, Mazte
-	126841, -- Daedric Brazier, Standing
-	126975, -- Hlaalu Shelf, Long
-	126887, -- Dwarven Vase, Forged
-	126962, -- Indoril Chest, Fortified
-	127022, -- Redoran Plate, Floral
-	126850, -- Dwarven Engine, Fan
-	127056, -- Dres Tapestry, Vines
-	126938, -- Redoran Armchair, Fungal Cushion
-	121161, -- Ram Horns, Mounted
-	126951, -- Redoran End Table, sanded
-	121369, -- Redguard Bed, Full Lattice
-	126955, -- Hlaalu Cabinet, Clerk
-	126988, -- Telvanni Stool, Organic
-	126923, -- Redoran Bed, Single Pillow
-	126915, -- Dres Trestle, Corridor
-	121216, -- Redguard Divider, Gilded
-	126897, -- Dwarven Sconce, Powered
-	126893, -- Dwarven Chandelier, Braced
-	121313, -- Wood Elf Throne, Vine
-	126968, -- Redoran Table, Kitchen
-	126913, -- Hlaalu Armchair, Polished
-	127090, -- Indoril Lantern, Hanging
-	127103, -- Hlaalu Hanger, Mounted
-	127099, -- Telvanni Arched Light, Organic Azure
-	126863, -- Dwarven Pipeline Cap, Sealed
-	127073, -- Indoril Banner, Vivec
-	126840, -- Daedric Brazier, Table
-	127082, -- Indoril Sconce, Shrine
-	127013, -- Redoran Incense Holder, Curved
-	126871, -- Dwarven Table, Refined
-	126867, -- Dwarven Bench, Forged
-	126845, -- Indoril Lightpost, Stone
-	126947, -- Hlaalu Sideboard, Scholar's
-	126875, -- Dwarven Candles, Cup
-	127078, -- Indoril Candle, Temple
-	121177, -- Horn, Display, Huge
-	121185, -- Durzog Head, Wall Mount
-	127004, -- Dres Cup, Empty Greef
-	121212, -- Orcish Effigy, Bear
-	127102, -- Tribunal Tablet of Almalexia
-	127101, -- Velothi Brazier, Temple
-	126888, -- Dwarven Pot, Sealed
-	127100, -- Telvanni Sconce, Organic Azure
-	127061, -- Indoril Tapestry, Vivec
-	121171, -- Rug, Bearskin
-	127097, -- Telvanni Candelabra, Organic
-	127096, -- Telvanni Lamp, Organic Azure
-	127094, -- Hlaalu Lantern, Stationary
-	127093, -- Hlaalu Lantern, Modest Vellum
-	127089, -- Hlaalu Streetlight, Vellum
-	127088, -- Hlaalu Sconce, Vellum
-	127087, -- Indoril Streetlight, Brick
-	127012, -- Indoril Platter, Floral
-	126905, -- Hlaalu Cannister, Sealed Azurite
-	126946, -- Hlaalu Cabinet of drawers, Clerk
-	121097, -- Plaque, Bordered Deer Antlers
-	127086, -- Indoril Chandelier, Knotwork
-	127085, -- Indoril Candelabra, Temple
-	127083, -- Dres Candles, Meditation
-	127081, -- Indoril Sconce, Temple
-	121190, -- Mantikora Head, Wall Mount
-	127077, -- Indoril Brazier, Pedestal
-	127076, -- Indoril Brazier, Kettle
-	127071, -- Indoril Banner, Almalexia
-	127070, -- Redoran Spoon, Wooden
-	127069, -- Redoran Knife, Wooden
-	127065, -- Hlaalu Vase, Gilded
-	127064, -- Hlaalu Jar, Garden Moss
-	127063, -- Redoran Urn, Imprinted Clay
-	126976, -- Indoril Shelf, Long
-	127008, -- Redoran Cup, Empty
-	127062, -- Dres Teapot, Ceramic
-	127060, -- Indoril Tapestry, Sotha Sil
-	127058, -- Hlaalu Tapestry, Floral
-	127057, -- Indoril Tapestry, Almalexia
-	127055, -- Telvanni Table Runner, Bordered Azure
-	127054, -- Redoran Table Runner, Gilded Ochre
-	121194, -- Bottle, Poison
-	126989, -- Telvanni Table, Organic Game
-	127052, -- Telvanni Table Runner, Gilded Azure
-	127050, -- Redoran Steamer, Iron
-	127040, -- Indoril Carpet, Sotha Sil
-	127049, -- Indoril Box, Trinket
-	127047, -- Hlaalu Cannister, Trinket
-	127032, -- Dres Carpet, Fertile Peat
-	127046, -- Indoril Cannister, Trinket
-	127045, -- Indoril Carpet, Grand Vivec
-	127044, -- Indoril Carpet, Vivec
-	127043, -- Indoril Rug, Vivec
-	127042, -- Indoril Runner, Vivec
-	127039, -- Indoril Rug, Sotha Sil
-	127034, -- Redoran Carpet, Volcanic Sands
-	127031, -- Hlaalu Carpet, Garden Moss
-	127030, -- Redoran Carpet, Volcanic Ash
-	127029, -- Indoril Carpet, Grand Almalexia
-	127028, -- Indoril Carpet, Almalexia
-	127025, -- Dres Pot, Sauce
-	127024, -- Redoran Tray, Floral
-	127021, -- Hlaalu Towels, Folded
-	127020, -- Redoran Incense Pot, Beastly
-	127017, -- Dres Censer, Chains
-	127014, -- Redoran Incense Holder, Mesh
-	127010, -- Dres Cup, Empty Mazte
-	127007, -- Dres Cup, Sujamma
-	127006, -- Dres Cup, Empty Sujamma
-	127005, -- Dres Cup, Greef
-	127003, -- Ashlander Cup, Mazte
-	127002, -- Ashlander Cup, Empty
-	127001, -- Dres Cannister, Portable
-	127000, -- Dres Cauldron, Floral Banded
-	126999, -- Ashlander Platter, Bread and Cheese
-	126996, -- Dres Bowl, Empty
-	126995, -- Redoran Bowl, Saltrice Mash
-	126997, -- Dres Bowl, Saltrice Mash
-	126993, -- Dres Bowl, Dinner
-	126992, -- Dres Bowl, Serving
-	127053, -- Redoran Mantle Cloth, Crimson Coverle
-	126987, -- Telvanni Shelves, Organic t
-	126836, -- Daedric Bench, Ashen
-	126952, -- Hlaalu End Table, Formal Turtle
-	126984, -- Telvanni Desk, Organic
-	121304, -- Redguard Chandelier, Grated
-	126982, -- Telvanni Sofa, Organic
-	126981, -- Telvanni Throne, Organic
-	126980, -- Telvanni Armchair, Organic
-	126979, -- Telvanni Chair, Organic
-	126977, -- Hlaalu Dresser, Scroll Rack
-	126974, -- Indoril Shelf, Block
-	126973, -- Dres Shelf, Block
-	126971, -- Hlaalu Footlocker, Secure
-	126972, -- Hlaalu Chest, Secure
-	126970, -- Redoran Table, Formal Turtle
-	126969, -- Redoran Table, Formal Floral
-	126967, -- Redoran Sideboard, Display
-	126965, -- Indoril Cassone, Sealed
-	126964, -- Indoril Vault, Sealed
-	126961, -- Dres Divider, Honeycomb
-	126959, -- Dres Divider, Screen
-	126956, -- Hlaalu Mirror, Standing
-	127036, -- Dres Runner, Chains
-	126950, -- Indoril End Table, Rounded
-	126949, -- Hlaalu Sideboard, Scribe's
-	126946, -- Hlaalu Cabinet of Drawers, Clerk
-	126945, -- Hlaalu Sideboard, Low Cabinet
-	126943, -- Hlaalu Cupboard, Formal
-	126939, -- Redoran Armchair, Sanded
-	126936, -- Redoran Stool, Fungal Cushion
-	126935, -- Hlaalu Dresser, Open
-	126934, -- Hlaalu Cabinet, Open
-	126933, -- Hlaalu Cupboard, Open
-	126932, -- Hlaalu Bookcase, Empty
-	126931, -- Redoran Bench, Sanded
-	126930, -- Redoran Bench, Fungal Cushion
-	126929, -- Redoran Settee, Sanded
-	126928, -- Redoran Settee, Fungal Cushion
-	126927, -- Redoran Bed, Single
-	126926, -- Hlaalu Bed, Single
-	126924, -- Redoran Bed, Double Pillow
-	126922, -- Hlaalu Bed, Canopy
-	126921, -- Hlaalu Bed, Double Pillow
-	126920, -- Hlaalu Bed, Single Pillow
-	126918, -- Hlaalu Table, Formal Floral
-	126917, -- Dres Table, Kitchen
-	126914, -- Hlaalu Chair, Polished
-	126857, -- Dwarven Pipeline, Junction
-	126911, -- Hlaalu Stool, Polished
-	126909, -- Hlaalu Bench, Polished
-	126906, -- Hlaalu Settee, Mossy Cushion
-	126904, -- Redoran Urn, Dusky Marble
-	126901, -- Hlaalu Amphora, Sealed Orichalcum
-	126900, -- Hlaalu Jar, Sealed Malachite
-	126873, -- Dwarven Bowl, Forged Serving
-	126895, -- Dwarven Lantern, Oil
-	126885, -- Dwarven Cannister, Sealed
-	121191, -- Mantikora Horns, Wall Mount
-	126883, -- Dwarven Platform, Steps
-	126882, -- Dwarven Plate, Forged
-	126880, -- Dwarven Amphora, Sealed
-	126879, -- Dwarven Jug, Sealed
-	121106, -- Common Cargo Crate, Dry
-	121215, -- Redguard Canopy, Dusk
-	126896, -- Dwarven Lamppost, Powered
-	126859, -- Dwarven Pipeline, Column
-	126858, -- Dwarven Pipeline, Full Column
-	126912, -- Hlaalu Armchair, Mossy Cushion
-	126855, -- Dwarven Pipe, Corner
-	126853, -- Dwarven Pipe, Full Column
-	126851, -- Dwarven Pipe, Quarter Column
-	126849, -- Dwarven Pipe Cap, Bolted
-	126842, -- Daedric Chandelier, Ritual
-	126838, -- Daedric Base, Ashen
-	126985, -- Telvanni End Table, Organic
-	126835, -- Daedric Candles, Ritual Set
-	121102, -- Chicken Dinner, Display
-	126583, -- Target Centurion, Robust Refabricated
-	126884, -- Dwarven Vessel, Sealed
-	121189, -- Haj Mota Head, Wall Mount
-	121188, -- Echatere Horns, Wall Mount
-	121184, -- Antlers, Wall Mount
-	127091, -- Hlaalu Lantern, Oversized Vellum
-	121174, -- Sack of Grain
-	127098, -- Telvanni Lantern, Organic Azure
-	126839, -- Daedric Platform, Ashen
-	127074, -- Indoril Brazier, Knotwork
-	121107, -- Steak Dinner
-	126876, -- Dwarven Candlestick, Orrery
-	121105, -- Common Barrel, Dry
-	121103, -- Chicken Meal, Display
-	126944, -- Hlaalu Desk, Scholar's
-	121098, -- Common Campfire, Outdoor
-	127066, -- Redoran Jar, Jazbay
-	126872, -- Dwarven Bowl, Forged
-	126908, -- Hlaalu Bench, Mossy Cushion
-	126868, -- Dwarven Bookcase, Full
-	121366, -- Orcish Tapestry, Hunt
-	126892, -- Dwarven Chandelier, Barred
-	126948, -- Hlaalu Dresser, Scroll Drawers
-	126864, -- Dwarven Engine, Switch
-	126844, -- Daedric Pedestal, Ritual
-	121157, -- Sack of Rice
-	126960, -- Dres Divider, Chains
-	127079, -- Indoril Candelabra, Temple Chamber
-	121178, -- Horn, Display, Cracked
-	127095, -- Hlaalu Lamp, Portable
-	126940, -- Redoran Chair, Sanded
-	126889, -- Dwarven Urn, Sealed
-	126856, -- Dwarven Pipeline, Elbow
-	127041, -- Indoril Carpet, Grand Sotha Sil
-	126848, -- Dwarven Altar, Stairs
-	127016, -- Dres Incense Stand, Chains
-	127011, -- Dres Cup, Mazte
-	127033, -- Hlaalu Mat, Welcoming
-	126998, -- Ashlander Platter, Ceramic
-	126986, -- Telvanni Bookcase, Organic
-	126994, -- Redoran Bowl, Empty
-	126990, -- Telvanni Table, Organic Grand
-	126953, -- Hlaalu End Table, Formal Scales
-	121211, -- Orcish Effigy, Mammoth
-	126852, -- Dwarven Pipe, Half Column
-	121205, -- Nord Drinking Horn, Display
-	126957, -- Hlaalu Nightstand, Scholar's
-	127037, -- Dres Rug, Chains
-}
-
diff --git a/data/Reach/HotR_AchievementVendors.lua b/data/Reach/HotR_AchievementVendors.lua
deleted file mode 100644
index c387029..0000000
--- a/data/Reach/HotR_AchievementVendors.lua
+++ /dev/null
@@ -1,253 +0,0 @@
-FurC.AchievementVendors[FURC_REACH] = {
-	["Coldharbour, Cicero's General Goods"] = {
-		[GetString(FURC_AV_KRR)] = {
-			[130273] = { -- Boulder, Coldharbour Fan
-				itemPrice 	= 5000,
-			},
-			[130274] = { -- Boulder, Coldharbour Shard
-				itemPrice 	= 5000,
-			},
-			[130275] = { -- Boulder, Coldharbour Spikes
-				itemPrice 	= 5000,
-			},
-			[130276] = { -- Boulder, Coldharbour Spikes
-				itemPrice 	= 250,
-			},
-			[131421] = { -- Sapling, Withered Thicket
-				itemPrice 	= 250,
-			},
-			[130279] = { -- Tree, Petrified AShen
-				itemPrice 	= 2500,
-			},
-			[130278] = { -- Tree, Strong Withered
-				itemPrice 	= 5000,
-			},
-			[130277] = { -- Tree, Towering Withered
-				itemPrice 	= 5000,
-			},
-		}
-	},
-	 ["Glenumbra, Daggerfall, The Rosy Lion"] = {
-		[GetString(FURC_AV_ROH)] = {
-
-			[120706] = {		-- Boulder, Giant Mossy
-				itemPrice 	= 100,
-			},
-			[130309] = {		-- Boulder, Swampy Growth
-				itemPrice 	= 250,
-			},
-			[132221] = {		-- Lily Pads, Swamp Cluster
-				itemPrice 	= 5000,
-			},
-			[130287] = {		-- Log, Fallen Laurel
-				itemPrice 	= 250,
-			},
-			[130288] = {		-- Log, Fallen Pine
-				itemPrice 	= 250,
-			},
-			[130286] = {		-- Log, Rotten Log
-				itemPrice 	= 250,
-			},
-			[130307] = {		-- Rocks, Swampy Slan
-				itemPrice 	= 250,
-			},
-			[130304] = {		-- Saplings, Marsh Cluster
-				itemPrice 	= 250,
-			},
-			[130303] = {		-- Shrug, Swamp Sprig
-				itemPrice 	= 250,
-			},
-			[130289] = {		-- Stump, Mossy Cypress
-				itemPrice 	= 250,
-			},
-			[130290] = {		-- Stump, Rotten Hollow
-				itemPrice 	= 250,
-			},
-			[130315] = {		-- Tree, Ancient Rotten
-				itemPrice 	= 7500,
-			},
-			[130310] = {		-- Tree, Dead Marsh
-				itemPrice 	= 7500,
-			},
-			[130312] = {		-- Tree, Dead Pine
-				itemPrice 	= 2500,
-			},
-			[130311] = {		-- Tree, Dead Swamp
-				itemPrice 	= 5000,
-			},
-			[130313] = {		-- Tree, Gnarled Marsh
-				itemPrice 	= 5000,
-			},
-			[130314] = {		-- Tree, Withering Marsh
-				itemPrice 	= 2500,
-			},
-
-		},
-	},
-	["the Undaunted Enclaves"] = {
-		["Undaunted Quartermaster"] = {
-			[131428] = { -- Horn of the Reachclans
-				itemPrice 	= 50000,
-			},
-			[131429] = { -- Vine, Bloodroot Wiggler
-				itemPrice 	= 5000,
-			},
-			[131432] = { -- Vine, Bloodroot Stem
-				itemPrice 	= 5000,
-			},
-			[131430] = { -- Vine, Bloodroot Mangler
-				itemPrice 	= 5000,
-			},
-			[131431] = { -- Vine, Bloodroot Grasper
-				itemPrice 	= 5000,
-			},
-
-		},
-	},
-	["Eastmarch"] = {
-		[GetString(FURC_AV_FRO)] = {
-			[132215] = { -- Boulder, Granite Cap
-				itemPrice 	= 1000,
-			},
-			[132213] = { -- Boulder, Granite Chunk
-				itemPrice 	= 1000,
-			},
-			[132214] = { -- Boulder, Granite Slab
-				itemPrice 	= 1000,
-			},
-			[132217] = { -- Rock, Granite Chunk
-				itemPrice 	= 5000,
-			},
-			[132209] = { -- Sapling, Foothills Pine
-				itemPrice 	= 250,
-			},
-			[132212] = { -- Shrub, Mountain Thistle
-				itemPrice 	= 250,
-			},
-			[132220] = { -- Stones, Granite Cluster
-				itemPrice 	= 250,
-			},
-			[132219] = { -- Stones, Granite Group
-				itemPrice 	= 250,
-			},
-			[132218] = { -- Stones, Granite Pair
-				itemPrice 	= 250,
-			},
-			[132210] = { -- Tree, Ancient Cedar
-				itemPrice 	= 2500,
-			},
-			[132207] = { -- Tree, Ancient Mountain Pine
-				itemPrice 	= 1000,
-			},
-			[132208] = { -- Tree, Foothills Pine
-				itemPrice 	= 1000,
-			},
-			[132205] = { -- Tree, Hardy Cedar
-				itemPrice 	= 250,
-			},
-			[132206] = { -- Tree, Towering Mountain Pine
-				itemPrice 	= 1000,
-			},
-
-		},
-	},
-	["Auridon, Skywatch"] = {
-		[GetString(FURC_AV_MAL)] = {
-			[120652] = { -- Boulder, Flat Lichen
-				itemPrice 	= 100,
-			},
-			[120651] = { -- Boulder, Grey Saddle
-				itemPrice 	= 100,
-			},
-			[120648] = { -- Boulder, Lichen Covered
-				itemPrice 	= 100,
-			},
-
-			[120672] = { -- Hedge, Green Short
-				itemPrice 	= 1000,
-			},
-			[120673] = { -- Hedge, Long Horseshoe
-				itemPrice 	= 2500,
-			},
-			[120671] = { -- Hedge, Small Horseshoe
-				itemPrice 	= 1250,
-			},
-			[120674] = { -- Hedge, Tall Green
-				itemPrice 	= 1250,
-			},
-			[121005] = { -- Hedge, Wall Arc
-				itemPrice 	= 3000,
-			},
-
-			[120653] = { -- Rock, Slanted Lichen
-				itemPrice 	= 100,
-			},
-			[120655] = { -- Stone, Slanted Lichen
-				itemPrice 	= 100,
-			},
-			[120654] = { -- Stone, Slanted Rough
-				itemPrice 	= 100,
-			},
-			[120656] = { -- Stones, Gray Mossy
-				itemPrice 	= 100,
-			},
-			[120675] = { -- Topiary, Manicured Evergreen
-				itemPrice 	= 2000,
-			},
-			[120676] = { -- Topiary, Pruned Evergreen
-				itemPrice 	= 1000,
-			},
-
-			[120670] = { -- Tree, Sturdy Jungle
-				itemPrice 	= 250,
-			},
-			[120664] = { -- Tree, Tiered Light Cherry
-				itemPrice 	= 15000,
-			},
-			[120665] = { -- Tree, Tiered Pink Cherry
-				itemPrice 	= 15000,
-			},
-			[120666] = { -- Tree, Tiered White Cherry
-				itemPrice 	= 25000,
-			},
-			[120657] = { -- Tree, twisted Pink cherry
-				itemPrice 	= 15000,
-			},
-			[120667] = { -- Tree, twisted white cherry
-				itemPrice 	= 12000,
-			},
-			[120659] = { -- Trees, Crooked Swamp
-				itemPrice 	= 100,
-			},
-			[120668] = {		-- Tree, Squat Pink Cherry
-				itemPrice 	= 10000,
-			},
-			[120669] = {		-- Tree, Squat White Cherry
-				itemPrice 	= 10000,
-			},
-
-		},
-
-	}
-
-}
-function tableMerge(t1, t2)
-	if nil == t2 and nil == t1 then
-		return {}
-	elseif nil == t2 then
-		return t1
-	elseif nil == t1 then
-		return t2
-	end
-
-    for k,v in pairs(t2) do
-		t1[k] = v
-    end
-    return t1
-end
-
-
--- global function, needs to live here, YES MANA
-function FurC.SetupReachItems()
-
-end
diff --git a/data/Reach/HotR_LuxuryFurnisher.lua b/data/Reach/HotR_LuxuryFurnisher.lua
deleted file mode 100644
index 4fe627b..0000000
--- a/data/Reach/HotR_LuxuryFurnisher.lua
+++ /dev/null
@@ -1,165 +0,0 @@
-FurC.LuxuryFurnisher = FurC.LuxuryFurnisher or {}
-
-FurC.LuxuryFurnisher[FURC_REACH] = {
-
-	-- Oct. 21
-	[132155] = { -- Witch's Torch, Wretched
-		itemPrice 	= 5000,
-		itemDate	= "2017-10-20",
-	},
-	[132154] = { -- Witch's Totem, Bog
-		itemPrice 	= 50000,
-		itemDate	= "2017-10-20",
-	},
-	[132153] = { -- Witch's Tree, Captive
-		itemPrice 	= 35000,
-		itemDate	= "2017-10-20",
-	},
-
-	-- Oct. 14
-	[119977] = { -- Orcish War Totem
-		itemPrice 	= 5000,
-		itemDate	= "2017-10-13",
-	},
-	[119978] = { -- Orcish Battle Totem
-		itemPrice 	= 7500,
-		itemDate	= "2017-10-13",
-	},
-	[119980] = { -- Orchish Totem
-		itemPrice 	= 10000,
-		itemDate	= "2017-10-13",
-	},
-
-	-- Oct. 7
-	[132145] = { -- Orsinium Tent, Chief’s
-		itemPrice 	= 5000,
-		itemDate	= "2017-10-06",
-	},
-	[132146] = { -- Orsinium Relief, Malacath
-		itemPrice 	= 25000,
-		itemDate	= "2017-10-06",
-	},
-	[132148] = { -- Orsinium Statue, Head
-		itemPrice 	= 25000,
-		itemDate	= "2017-10-06",
-	},
-	[132147] = { -- Orsinium Statue, Honor’s Rest
-		itemPrice 	= 25000,
-		itemDate	= "2017-10-06",
-	},
-
-	-- Sept. 30
-	[132144] = { -- Reach Briarheart, Blood Red
-		itemPrice 	= 15000,
-		itemDate	= "2017-09-29",
-	},
-	[132141] = { -- Reach Skull, Mammoth
-		itemPrice 	= 50000,
-		itemDate	= "2017-09-29",
-	},
-	[132142] = { -- Reach Tent, Camp
-		itemPrice 	= 2500,
-		itemDate	= "2017-09-29",
-	},
-
-
-	-- Sept. 23rd
-	[131435] = { -- Reach Bowl, Nirncrux
-		itemPrice 	= 5000,
-		itemDate	= "2017-09-22",
-	},
-	[131438] = { -- Reach Grinder, Nirncrux
-		itemPrice 	= 50000,
-		itemDate	= "2017-09-22",
-	},
-	[131436] = { -- Reach Vine, Bloodroot Sprout
-		itemPrice 	= 15000,
-		itemDate	= "2017-09-22",
-	},
-	[131437] = { -- Reach Vine, Bloodroot Tendril
-		itemPrice 	= 20000,
-		itemDate	= "2017-09-22",
-	},
-
-	-- Craglorn items
-	[120844] = { -- Craglorn Brazier, Ornate
-		itemPrice 	= 15000,
-		itemDate	= "2017-09-15, 2017-04-28",
-	},
-	[120843] = { -- Craglorn Skull, Carved
-		itemPrice 	= 35000,
-		itemDate	= "2017-09-15, 2017-04-28",
-	},
-	[120845] = { -- Craglorn Sword Sconce
-		itemPrice 	= 5000,
-		itemDate	= "2017-09-15, 2017-04-28",
-	},
-
-
-	[120842] = { -- Craglorn Chair, Serpent
-		itemPrice 	= 2500,
-		itemDate	= "2017-09-08, 2017-04-21",
-	},
-	[120841] = { -- Craglorn Urn, Standing
-		itemPrice 	= 7500,
-		itemDate	= "2017-09-08, 2017-04-21",
-	},
-	[120840] = { -- Craglorn Coffer, Ornate
-		itemPrice 	= 5000,
-		itemDate	= "2017-09-08, 2017-04-21",
-	},
-
-
-	-- Sept. 2nd + 3rd
-	[120832] = { -- Blue Crystal Spire
-		itemPrice 	= 12000,
-		itemDate	= "2017-09-01",
-	},
-	[120834] = { -- Blue Flame Brazier
-		itemPrice 	= 5000,
-		itemDate	= "2017-09-01",
-	},
-	[121272] = { -- Great Soul Gem
-		itemPrice 	= 20000,
-		itemDate	= "2017-09-01",
-	},
-
-
-	-- Aug 26+27
-	[120831] = { -- Blue Crystal Cluster
-		itemPrice 	= 10834,
-		itemDate	= "2017-08-25",
-	},
-	[120833] = { -- Blue Crystal Fragments
-		itemPrice 	= 8125,
-		itemDate	= "2017-08-25",
-	},
-	[120830] = { -- Blue Flame Candles
-		itemPrice 	= 2500,
-		itemDate	= "2017-08-25",
-	},
-	[121273] = { -- Soul Gem, Grand
-		itemPrice 	= 5417,
-		itemDate	= "2017-08-25",
-	},
-
-	-- August 19-20
-	[126579] = { -- Velothi Altar, Sacrificial
-		itemPrice 	= 10834,
-		itemDate	= "2017-08-18",
-	},
-	[126576] = { -- Velothi Kneeler, Prayer
-		itemPrice 	= 3000,
-		itemDate	= "2017-08-18",
-	},
-
-	[126577] = { -- Velothi Podium of Recitation
-		itemPrice 	= 37500,
-		itemDate	= "2017-08-18",
-	},
-
-	[126578] = { -- Velothi Burial Urn
-		itemPrice 	= 10834,
-		itemDate	= "2017-08-18",
-	},
-}
diff --git a/data/Reach/HotR_Recipes.lua b/data/Reach/HotR_Recipes.lua
deleted file mode 100644
index 5ea7019..0000000
--- a/data/Reach/HotR_Recipes.lua
+++ /dev/null
@@ -1,48 +0,0 @@
-FurC.Recipes = FurC.Recipes or {}
-FurC.Recipes[FURC_REACH] = {
-	132179,
-	132168,
-	132178,
-	132176,
-	132177,
-	132188,
-	132180,
-	132169,
-	132195,
-	132194,
-	132186,
-	132170,
-	132192,
-	132167,
-	132193,
-	132191,
-	132182,
-	132190,
-	132183,
-	132181,
-	132189,
-	132196,
-	132187,
-	132184,
-	132175,
-	132185,
-	132173,
-	132174,
-	132172,
-	132171,
-
-
-	-- witches festival ayleid stuff
-	132342, -- Ayleid Table, Carved
-	132343, -- Ayleid Bench, Carved
-	132344, -- Ayleid Brazier, Welkynd Holder
-	132187, -- Ayleid Bookcase, Cluttered
-	132188, -- Ayleid Bookshelf, Cluttered
-	132189, -- Ayleid Brazier, Fiery
-
-	-- witches festival
-	132167,	-- Praxis, Hagraven Cauldron, Rough Stone
-	132196, -- Pattern: Witches Corpse, Wrapped",
-	132173, -- Blueprint: Witches Brazier, Primitive Log",
-	132179, -- Blueprint: Witches Totem, Antler Charms",
-}
diff --git a/data/Reach/HotR_Rollis.lua b/data/Reach/HotR_Rollis.lua
deleted file mode 100644
index 23de1e4..0000000
--- a/data/Reach/HotR_Rollis.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-FurC.Rollis_Recipes = FurC.Rollis_Recipes or {}
-
-FurC.Rollis_Recipes[FURC_REACH] = {
-	[132195] = true, -- Telvanni Candelabra, Masterwork
-	[132194] = true, -- Mammoth Cheese, Mastercrafted
-	[132191] = true, -- Dwarven Gyroscope
-	[132190] = true, -- Mages Apparatus, Master
-	[132192] = true, -- Dres Sewing Kit
-	[132193] = true, -- Hlaalu Bathtub, Masterwork
-}
diff --git a/data/RecipeSources.lua b/data/RecipeSources.lua
index 6897a33..a973054 100644
--- a/data/RecipeSources.lua
+++ b/data/RecipeSources.lua
@@ -1,10 +1,6 @@
-
-local vendorColor 	= "d68957"
-local goldColor 	= "e5da40"
-local apColor 		= "25C31E"
-local tvColor		= "5EA4FF"
-local voucherColor	= "82BCFF"
-local p 			= FurC.DebugOut -- debug function calling zo_strformat with up to 10 args
+local vendorColor 	= FurC.Const.vendorColor
+local goldColor 	= FurC.Const.goldColor
+local voucherColor	= FurC.Const.voucherColor

 local function colorise(str, col, ret)
 	str = tostring(str)
@@ -12,11 +8,11 @@ local function colorise(str, col, ret)
 	if ret then return str end
 	return string.format("|c%s%s|r", col, str)
 end
+
 local requires = GetString(SI_FURC_REQUIRES_ACHIEVEMENT)
 local psijicRank = GetString(SI_FURC_PSIJIC_RANK)
-local function rank(aNumber)
-    return requires .. psijicRank .. aNumber
-end
+
+local function rank(aNumber) return requires .. psijicRank .. aNumber end

 local function soldBy(vendorName, locationName, price, requirement)
     return zo_strformat(
@@ -29,8 +25,8 @@ local function soldBy(vendorName, locationName, price, requirement)
 end


-local artaeum = GetString(FURC_AV_ARTAEUM)
-local nalirsewen = GetString(FURC_AV_NAL)
+local artaeum       = GetString(FURC_AV_ARTAEUM)
+local nalirsewen    = GetString(FURC_AV_NAL)

 FurC.RecipeSources = {
     [139489] = soldBy(nalirsewen, artaeum, 5000,    rank(2)),  -- Blueprint: Psijic Chair, Arched
@@ -81,10 +77,12 @@ local faustinaRecipes = {

 for itemId, itemPrice in pairs(rolisRecipes) do
     local priceString = zo_strformat(GetString(SI_FURC_STRING_FOR_VOUCHERS), itemPrice, voucherColor)
-    FurC.RecipeSources[itemId] = zo_strformat(GetString(SI_FURC_STRING_ROLLIS), priceString)
+    FurC.RecipeSources[itemId] = zo_strformat(GetString(SI_FURC_STRING_Rolis), priceString)
 end
-local unsurpassedCrafter = GetAchievementLink(1801)
+
+
 for itemId, itemPrice in pairs(faustinaRecipes) do
+    local unsurpassedCrafter = GetAchievementLink(1801)
     local priceString = zo_strformat(GetString(SI_FURC_STRING_FOR_VOUCHERS), itemPrice, voucherColor)
     local soldByFaustinaFor = zo_strformat(GetString(SI_FURC_STRING_FAUSTINA), priceString)
     FurC.RecipeSources[itemId] = soldByFaustinaFor .. requires .. unsurpassedCrafter
diff --git a/data/Recipes.lua b/data/Recipes.lua
index 7985b07..f4862f1 100644
--- a/data/Recipes.lua
+++ b/data/Recipes.lua
@@ -1,81 +1,187 @@
+if GetAPIVersion() < 100023 then return end
 FurC.Recipes = FurC.Recipes or {}
-FurC.Recipes[FURC_DRAGONS] = {
-	127101, -- Velothi Brazier, Temple - talked to a Russian who sold it
-	127102, -- Praxis: Tribunal Tablet of Almalexia, comfirmed by Almariel
-	134999, -- Praxis: Table, Blackmarrow Slab, drops in Fang Lair
-	127054,	-- Pattern: Redoran Table Runner, Gilded Ochre
-	134998,	-- Pattern: Jester's Pavillon, Open

-}
-FurC.Recipes[FURC_CLOCKWORK] = {
-	134527, -- Design: Clockwork Meal, Dish
-	134512, -- Diagram: Clockwork Table, Octagonal
-	134478, -- Formula: Fabricant Saplings, Electrum
-	134531, -- Diagram: Clockwork Sequence Plaque, Single
-	134543, -- Diagram: Clockwork Wall Machinery, Arched
-	134479, -- Formula: Fabricant Tree, Electrum
-	134486, -- Diagram: Clockwork Barrel, Sealed
-	134505, -- Diagram: Clockwork Drafting Table, Flat
-	134509, -- Diagram: Clockwork Cabinet, Sequence Plaque Storag
-	134500, -- Diagram: Clockwork Furnace, Socketed
-	134484, -- Formula: Fabricant Shrub, Gold
-	134496, -- Praxis: Clockwork Switch, Sturdy
-	134490, -- Diagram: Clockwork Crate, Wide
-	134476, -- Formula: Fabricant Tree, Gnarled Cypress
-	134504, -- Diagram: Clockwork Drafting Table, Raised
-	132188, -- Praxis: Ayleid Bookshelf, Cluttered
-	134477, -- Formula: Fabricant Trees, Clustered Maple
-	134518, -- Diagram: Clockwork Coffer, Robust
-	134515, -- Diagram: Clockwork Wardrobe, Precision Engineered
-	134526, -- Design: Clockwork Meal, Plate
-	134513, -- Diagram: Clockwork Nightstand, Octagonal
-	134546, -- Design: Clockwork Paste Dispenser, Empty
-	134492, -- Diagram: Clockwork Crate, Large Open
-	134487, -- Diagram: Clockwork Barrel, Wide
-	134493, -- Formula: Clockwork Lamppost, Gas
-	134485, -- Formula: Fabricant Shrub, Copper
-	134506, -- Diagram: Clockwork Sequence Spool, Single
-	134525, -- Diagram: Clockwork Mug, Reinforced
-	134582, -- Diagram: Clockwork Shelf, Wall
-	134545, -- Praxis: Clockwork Charging Station, Factotum
-	134508, -- Diagram: Clockwork Lectern, Empty
-	134520, -- Design: Clockwork Cup, Recycled Water
-	134488, -- Diagram: Clockwork Keg, Sturdy
-	134540, -- Praxis: Clockwork Illuminator, Compact
-	134516, -- Design: Clockwork Bowl, Large Nutriment Paste
-	134538, -- Praxis: Clockwork Illuminator, Capsule Tower
-	134517, -- Design: Clockwork Bowl, Nutriment Paste
-	134537, -- Praxis: Clockwork Illuminator, Powered Capsule
-	134536, -- Praxis: Clockwork Illuminator, Solitary Capsule
-	134497, -- Diagram: Clockwork Vent, Octagonal Fan
-	134535, -- Praxis: Clockwork Illuminator, Personal Desk
-	134534, -- Diagram: Clockwork Surveyor's Tripod, Calibrated
-	134483, -- Formula: Fabricant Shrubs, Beryl
-	134533, -- Diagram: Clockwork Flask Stand, Tall
-	134494, -- Diagram: Clockwork Pump, Vertical
-	134489, -- Diagram: Clockwork Crate, Square
-	134532, -- Diagram: Clockwork Flask Stand, Short
-	134530, -- Diagram: Clockwork Sequence Plaques, Unfolded
-	134491, -- Diagram: Clockwork Crate, Large Closed
-	134529, -- Diagram: Clockwork Sequence Plaques, Folded
-	134528, -- Diagram: Clockwork Scales, Precision Calibrated
-	134524, -- Praxis: Clockwork Mortar and Pestle, Sintered
-	134523, -- Praxis: Clockwork Measuring Cup, Sintered
-	134522, -- Design: Clockwork Goblet, Recycled Water
-	134511, -- Diagram: Clockwork Table, Beveled
-	134521, -- Diagram: Clockwork Goblet, Empty
-	134544, -- Praxis: Clockwork Charging Station, Animo Core
-	134519, -- Diagram: Clockwork Cup, Empty
-	134502, -- Diagram: Clockwork Chair, Practical
-	134514, -- Diagram: Clockwork Table, Grand
-	134510, -- Diagram: Clockwork Stool, Practical
-	134539, -- Praxis: Clockwork Illuminator, Compact Stand
-	134507, -- Diagram: Clockwork Sequence Spool, Triple
-	134482, -- Formula: Fabricant Tree, Cobalt Spruce
-	134481, -- Formula: Fabricant Tree, Miniature Cherry Blossom
-	134503, -- Diagram: Clockwork Chair, Reinforced
-	134501, -- Diagram: Clockwork Somnolostation
-	134480, -- Formula: Fabricant Tree, Vibrant Cherry Blossom
-	134498, -- Praxis: Clockwork Control Panel, Single
+FurC.Recipes[FURC_ALTMER] = {
+    139573, --Sketch: Figurine, the Fish and the Unicorn
+    139571, --Sketch: Figurine, the Sea-Monster's Surprise
+    139572, --Sketch: Figurine, the Taming of the Gryphon
+    139486, --Sketch: High Elf Ancestor Clock, Celestial
+    139613, --Sketch: High Elf Chalice, Delicate
+    139615, --Sketch: High Elf Chalice, Ornate
+    139616, --Sketch: High Elf Goblet, Silver Ornate
+    139612, --Sketch: High Elf Goblet, Silver Plain
+    139614, --Sketch: High Elf Goblet, Silver Stamped
+    139611, --Sketch: High Elf Goblet, Simple
+    139257, --Sketch: Scrimshaw Jewelery Box, Floral
+    139252, --Sketch: Scrimshaw Jewelery Box, Verdant Oval
+    139251, --Sketch: Scrimshaw Jewelery Box, Vineyard
+    139256, --Sketch: Scrimshaw, Ancient Vessel
+    139255, --Sketch: Scrimshaw, Octopus
+    139253, --Sketch: Scrimshaw, Sea Monster
+    139254, --Sketch: Scrimshaw, Ship
+
+    139514, -- Praxis: High Elf Wall, Stone Long",
+    139546, -- Praxis: High Elf Bench, Marble",
+    139556, -- Blueprint: High Elf Nightstand, Noble",
+    139538, -- Blueprint: High Elf Bed, Overhang Full",
+    139640, -- Pattern: High Elf Rug, Alinor Seal",
+    139524, -- Diagram: High Elf Sconce, Arched Glass",
+    139565, -- Blueprint: High Elf Trunk, Noble",
+    139540, -- Blueprint: High Elf Bed, Polished Full",
+    139550, -- Blueprint: High Elf Armchair, Polished",
+    139631, -- Praxis: High Elf Potted Plant, Twin Saplings",
+    139512, -- Praxis: High Elf Post, Stone Wall",
+    139511, -- Praxis: High Elf Wall, Stone Corner",
+    139609, -- Diagram: High Elf Table Setting, Complete",
+    139536, -- Blueprint: High Elf Bed, Noble Full",
+    139585, -- Diagram: Fireplace Grate, Wrought Iron",
+    139604, -- Praxis: High Elf Shrine,  Limestone Raised",
+    139575, -- Sketch: Scrimshaw Jewelry Box, Verdant Oval",
+    139588, -- Praxis: High Elf Fountain, Four-Way Timeworn",
+    139608, -- Praxis: High Elf Wall Shrine, Marble",
+    139569, -- Blueprint: High Elf Jewelry Box, Peaked",
+    139541, -- Blueprint: High Elf Bed, Noble Single",
+    139601, -- Praxis: High Elf Bowl, Stemmed Limestone",
+    139574, -- Sketch: Scrimshaw Jewelry Box, Vineyard",
+    139579, -- Sketch: Scrimshaw, Ancient Vessel",
+    139548, -- Blueprint: High Elf Armchair, Overhang",
+    139632, -- Praxis: High Elf Windowbox, Purple Wisteria",
+    139587, -- Praxis: High Elf Fireplace, Ornate",
+    139577, -- Sketch: Scrimshaw, Ship",
+    139582, -- Diagram: High Elf Pot, Patterned",
+    139486, -- Sketch: High Elf Ancestor Clock, Celestial",
+    139581, -- Diagram: High Elf Pot, Hanging Stamped",
+    139558, -- Blueprint: High Elf Counter, Polished Drawers",
+    139622, -- Blueprint: High Elf Bowl, Carved Wood",
+    139498, -- Praxis: High Elf Archway, Timeworn",
+    139593, -- Blueprint: High Elf Table, Noble Intimate",
+    139637, -- Pattern: High Elf Carpet, Alinor Crescent",
+    139634, -- Pattern: High Elf Curtains, Tall Drawn",
+    139534, -- Diagram: High Elf Streetlight, Paired Wrought Iron",
+    139503, -- Praxis: High Elf Floor, Ballroom Timeworn",
+    139544, -- Blueprint: High Elf Bench, Verdant",
+    139649, -- Blueprint: High Elf Cabinet, Noble",
+    139559, -- Blueprint: High Elf Counter, Polished Corner",
+    139490, -- Blueprint: Psijic Table, Small",
+    139520, -- Diagram: High Elf Sconce, Crenellated",
+    139487, -- Praxis: Book Row, Levitating",
+    139485, -- Blueprint: High Elf Pew, Polished",
+    139647, -- Praxis: High Elf Statue, Orator",
+    139603, -- Praxis: High Elf Shrine, Limestone",
+    139529, -- Diagram: High Elf Sconce, Candles",
+    139532, -- Blueprint: High Elf Candles, Stand",
+    139494, -- Praxis: Psijic Table, Six-fold Symmetry",
+    139525, -- Diagram: High Elf Sconce, Lantern",
+    139627, -- Blueprint: Display Case, Large",
+    139516, -- Praxis: High Elf Fence, Tall",
+    139572, -- Sketch: Figurine, The Taming of the Gryphon",
+    139557, -- Blueprint: High Elf Winerack, Polished",
+    139617, -- Diagram: High Elf Plate, Embossed",
+    139518, -- Praxis: High Elf Archway, Tall",
+    139630, -- Praxis: High Elf Potted Plant, Double Tiered",
+    139620, -- Diagram: High Elf Bread Basket, Wrought Iron",
+    139613, -- Sketch: High Elf Chalice, Delicate",
+    139519, -- Diagram: High Elf Sconce, Arched",
+    139505, -- Praxis: High Elf Sarcophagus, Wedge",
+    139545, -- Blueprint: High Elf Armchair, Backless Verdant",
+    139586, -- Diagram: Fireplace Tools, Wrought Iron",
+    139506, -- Praxis: High Elf Sarcophagus, Peaked",
+    139497, -- Praxis: Psijic Table, Grand",
+    139642, -- Pattern: High Elf Carpet, Intricate",
+    139625, -- Blueprint: Display Case, Standing Arched",
+    139612, -- Sketch: High Elf Goblet, Silver Plain",
+    139598, -- Design: High Elf Amphora, Embossed",
+    139507, -- Praxis: High Elf Plinth, Sarcophagus",
+    139599, -- Diagram: High Elf Urn, Bronze",
+    139638, -- Pattern: High Elf Carpet, Verdant",
+    139583, -- Blueprint: High Elf Divider, Noble",
+    139639, -- Pattern: High Elf Carpet, Vibrant",
+    139619, -- Design: High Elf Meal, Individual",
+    139614, -- Sketch: High Elf Goblet, Silver Stamped",
+    139495, -- Praxis: Psijic Lighting Globe, Large",
+    139646, -- Praxis: High Elf Statue, Kinlord",
+    139645, -- Pattern: High Elf Tapestry, Royal Gryphons",
+    139595, -- Design: High Elf Amphora, Delicate",
+    139542, -- Blueprint: High Elf Bookshelf, Polished",
+    139644, -- Pattern: High Elf Tapestry, Alinor Dusk",
+    139643, -- Pattern: High Elf Tapestry, Alinor Dawn",
+    139571, -- Sketch: Figurine, The Sea-Monster's Surprise",
+    139530, -- Diagram: High Elf Sconce, Candles Tall",
+    139605, -- Praxis: High Elf Pot, Limestone",
+    139566, -- Blueprint: High Elf Trunk, Spired",
+    139624, -- Blueprint: Display Case, Standing",
+    139513, -- Praxis: High Elf Wall, Stone",
+    139635, -- Pattern: High Elf Curtains, Drawn",
+    139539, -- Blueprint: High Elf Bed, Polished Single",
+    139567, -- Blueprint: High Elf Jewelry Box, Noble",
+    139629, -- Praxis: High Elf Potted Plant, Triple Tiered",
+    139628, -- Praxis: High Elf Potted Plant, Perpetual Bloom",
+    139626, -- Blueprint: Display Case, Specimen",
+    139636, -- Pattern: High Elf Drapes, Noble",
+    139543, -- Blueprint: High Elf Wardrobe, Polished",
+    139493, -- Pattern: Psijic Banner",
+    139623, -- Design: High Elf Bowl, Millet",
+    139584, -- Blueprint: High Elf Divider, Polished",
+    139510, -- Praxis: High Elf Stairway, Timeworn Wide",
+    139488, -- Praxis: Book Stack, Levitating",
+    139621, -- Design: High Elf Pie Dish, Cherry Pie",
+    139618, -- Diagram: High Elf Platter, Scalloped",
+    139564, -- Blueprint: High Elf Trunk, Engraved",
+    139526, -- Diagram: High Elf Brazier, Standing Coals",
+    139501, -- Praxis: High Elf Bookshelf Wall, Timeworn",
+    139535, -- Diagram: High Elf Streetlight, Wrought Iron",
+    139615, -- Sketch: High Elf Chalice, Ornate",
+    139537, -- Blueprint: High Elf Bed, Canopy Full",
+    139533, -- Diagram: High Elf Brazier, Hanging Coals",
+    139492, -- Praxis: Psijic Table, Scalloped",
+    139594, -- Design: High Elf Urn, Gilded",
+    139528, -- Diagram: High Elf Candelabra, Wrought Iron",
+    139633, -- Praxis: High Elf Windowbox, Blue Wisteria",
+    139531, -- Blueprint: High Elf Candles, Tall Stand",
+    139504, -- Praxis: High Elf Column, Timeworn",
+    139641, -- Pattern: High Elf Runner, Royal",
+    139611, -- Sketch: High Elf Goblet, Simple",
+    139610, -- Design: High Elf Meal, Complete Setting",
+    139554, -- Blueprint: High Elf Nightstand, Scalloped",
+    139551, -- Blueprint: High Elf Armchair, Backless Polished",
+    139521, -- Diagram: High Elf Lantern, Hanging",
+    139499, -- Praxis: High Elf Column, Heavy Timeworn",
+    139607, -- Praxis: High Elf Display Stand, Marble",
+    139500, -- Praxis: High Elf Pedestal, Timeworn",
+    139606, -- Praxis: High Elf Display Stand, Marble Wide",
+    139527, -- Diagram: High Elf Brazier, Noble",
+    139602, -- Praxis: High Elf Urn, Limestone Large",
+    139547, -- Blueprint: High Elf Armchair, Noble",
+    139508, -- Praxis: High Elf Sarcophagus, Open",
+    139573, -- Sketch: Figurine, The Fish and the Unicorn",
+    139553, -- Blueprint: High Elf Desk, Mirrored",
+    139597, -- Design: High Elf Urn, Stemmed",
+    139517, -- Praxis: High Elf Fence, Tall Long",
+    139491, -- Praxis: Psijic Lighting Globe, Small",
+    139489, -- Blueprint: Psijic Chair, Arched",
+    139596, -- Design: High Elf Amphora, Slender",
+    139600, -- Praxis: High Elf Bowl, Shallow Limestone",
+    139509, -- Praxis: High Elf Stairway, Timeworn",
+    139515, -- Praxis: High Elf Post, Tall Fence",
+    139591, -- Praxis: High Elf Table, Decorative Marble",
+    139590, -- Praxis: High Elf Table, Round Marble",
+    139589, -- Praxis: High Elf Fountain, Timeworn",
+    139592, -- Blueprint: High Elf Table, Noble Grand",
+    139552, -- Blueprint: High Elf Desk, Polished",
+    139578, -- Sketch: Scrimshaw, Octopus",
+    139580, -- Sketch: Scrimshaw Jewelry Box, Floral",
+    139549, -- Blueprint: High Elf Chair, Polished",
+    139496, -- Pattern: Psijic Banner, Large",
+    139576, -- Sketch: Scrimshaw, Sea Monster",
+    139502, -- Praxis: High Elf Column, Slender Timeworn",
+    139568, -- Blueprint: High Elf Jewelry Box, Polished",
+    139523, -- Diagram: High Elf Sconce, Wrought Glass",
+    139616, -- Sketch: High Elf Goblet, Silver Ornate",
+    139563, -- Blueprint: High Elf Trunk, Peaked",
+    139522, -- Diagram: High Elf Lantern, Stationary",
+    139555, -- Blueprint: High Elf Nightstand, Octagonal",
+    139570, -- Blueprint: High Elf Jewelry Box, Octagonal",
+    139648, -- Design: High Elf Amphora, Portrait",
+    139484, -- Blueprint: High Elf Writing Desk, Noble",
 }

diff --git a/data/Rollis.lua b/data/Rollis.lua
deleted file mode 100644
index 3dce5ee..0000000
--- a/data/Rollis.lua
+++ /dev/null
@@ -1,44 +0,0 @@
-FurC.Rollis_Recipes = FurC.Rollis_Recipes 		or {}
-FurC.FaustinaRecipes	= FurC.FaustinaRecipes 	or {}
-FurC.Faustina			= FurC.Faustina 		or {}
-
-
-FurC.Rollis_Recipes[FURC_CLOCKWORK] = {
-	[133576] = 50,
-}
-
-FurC.FaustinaRecipes[FURC_DRAGONS] = {
-	 121200,	-- Cabinet, Poisonmaker's
-	 121166,	-- Heirloom Podium, Skinning
-	 121168,	-- Tools, Case
-	 121214,	-- Mortar + Pestle
-	 121163,	-- Orcish Skull Goblet, Full
-	 121163,	-- Apparatus, Boiler
-	 121165,	-- Apparatus, Gem Caliper
-	 121197,	-- Bottle, Poison Elixir
-	 121164,	-- Case of Vials
-	 121209,	-- Orcish Tapestry, Spear
-	 132194,	-- Mammoth Cheese
-	 132191,	-- Dwarven Gyroscope, Masterwork
-	 132190,	-- Mages' Apparatus, Master
-	 132192,	-- Dres Sewing Kit
-	 132193,	-- Hlaalu Bathtub
-	 132195,	-- Telvanni Candelabra
-	 121166,	-- Podium, Skinning
-}
-
-FurC.Faustina[FURC_DRAGONS] = {
-	[134675] = 1500,
-}
-
-FurC.Rolis[FURC_DRAGONS] = {
-	134983,
-	134984,
-	134985,
-	134986,
-	134987,
-}
-FurC.Rollis_Recipes[FURC_DRAGONS] = {
-	[133576] = 50,
-}
-
diff --git a/locale/de.lua b/locale/de.lua
index 9cf5eaf..1118eea 100644
--- a/locale/de.lua
+++ b/locale/de.lua
@@ -35,7 +35,7 @@ local strings = {

 	SI_FURC_STRING_WRIT_VENDOR =				"Master Writ Vendor",
 	SI_FURC_STRING_WRIT_VENDOR_TT =				"Obtainable for Master Writs in your alliance's capital",
-	SI_FURC_STRING_ROLLIS = 					"Sold by |cd68957Rolis Hlaalu|r <<1>>",
+	SI_FURC_STRING_Rolis = 					"Sold by |cd68957Rolis Hlaalu|r <<1>>",
 	SI_FURC_STRING_FAUSTINA = 					"Sold by |cd68957Faustina Curio|r <<1>>",
 	SI_FURC_STRING_FOR_VOUCHERS =				"for <<1>> vouchers",

diff --git a/locale/en.lua b/locale/en.lua
index a25e504..638f105 100644
--- a/locale/en.lua
+++ b/locale/en.lua
@@ -66,7 +66,7 @@ local strings = {
 	SI_FURC_PSIJIC_RANK                         = "Psijic Order Rank ",
 	SI_FURC_STRING_WRIT_VENDOR =				"Master Writ Vendor",
 	SI_FURC_STRING_WRIT_VENDOR_TT =				"Obtainable for Master Writs in your alliance's capital",
-	SI_FURC_STRING_ROLLIS = 					"Sold by |cd68957Rolis Hlaalu|r <<1>>",
+	SI_FURC_STRING_Rolis = 					"Sold by |cd68957Rolis Hlaalu|r <<1>>",
 	SI_FURC_STRING_FAUSTINA = 					"Sold by |cd68957Faustina Curio|r <<1>>",
 	SI_FURC_STRING_FOR_VOUCHERS =				"for <<1>> vouchers",
 	SI_FURC_FESTIVAL_DROP = 					"can be acquired during <<1>> (<<2>>)",
diff --git a/locale/fr.lua b/locale/fr.lua
index 9987044..1711204 100644
--- a/locale/fr.lua
+++ b/locale/fr.lua
@@ -36,7 +36,7 @@ local strings = {
 	SI_FURC_STRING_WRIT_VENDOR =				"Master Writ Vendor",
 	SI_FURC_STRING_WRIT_VENDOR_TT =				"Obtainable for Master Writs in your alliance's capital",

-	SI_FURC_STRING_ROLLIS = 					"Sold by |cd68957Rolis Hlaalu|r <<1>>",
+	SI_FURC_STRING_Rolis = 					"Sold by |cd68957Rolis Hlaalu|r <<1>>",
 	SI_FURC_STRING_FAUSTINA = 					"Sold by |cd68957Faustina Curio|r <<1>>",
 	SI_FURC_STRING_FOR_VOUCHERS =				"for <<1>> vouchers",

diff --git a/locale/jp.lua b/locale/jp.lua
index 2662925..23d894d 100644
--- a/locale/jp.lua
+++ b/locale/jp.lua
@@ -36,7 +36,7 @@ local strings = {
 	SI_FURC_STRING_WRIT_VENDOR =				"Master Writ Vendor",
 	SI_FURC_STRING_WRIT_VENDOR_TT =				"Obtainable for Master Writs in your alliance's capital",

-	SI_FURC_STRING_ROLLIS = 					"Sold by |cd68957Rolis Hlaalu|r <<1>>",
+	SI_FURC_STRING_Rolis = 					"Sold by |cd68957Rolis Hlaalu|r <<1>>",
 	SI_FURC_STRING_FAUSTINA = 					"Sold by |cd68957Faustina Curio|r <<1>>",
 	SI_FURC_STRING_FOR_VOUCHERS =				"for <<1>> vouchers",

diff --git a/locale/ru.lua b/locale/ru.lua
index 8bd56d3..044c321 100644
--- a/locale/ru.lua
+++ b/locale/ru.lua
@@ -36,7 +36,7 @@ local strings = {
 	SI_FURC_STRING_WRIT_VENDOR =				"Master Writ Vendor",
 	SI_FURC_STRING_WRIT_VENDOR_TT =				"Obtainable for Master Writs in your alliance's capital",

-	SI_FURC_STRING_ROLLIS = 					"Sold by |cd68957Rolis Hlaalu|r <<1>>",
+	SI_FURC_STRING_Rolis = 					"Sold by |cd68957Rolis Hlaalu|r <<1>>",
 	SI_FURC_STRING_FAUSTINA = 					"Sold by |cd68957Faustina Curio|r <<1>>",
 	SI_FURC_STRING_FOR_VOUCHERS =				"for <<1>> vouchers",

diff --git a/startup.lua b/startup.lua
index 5ee8f3c..1148c93 100644
--- a/startup.lua
+++ b/startup.lua
@@ -1,28 +1,25 @@
 FurnitureCatalogue 					= {}
 FurnitureCatalogue.name				= "FurnitureCatalogue"
 FurnitureCatalogue.author			= "manavortex"
-FurnitureCatalogue.version          = "2.3.3"
+FurnitureCatalogue.version          = "2.4"
 FurnitureCatalogue.CharacterName	= nil
 FurnitureCatalogue.settings			= {}

 FurC 								= FurnitureCatalogue
-FurC.DevDebug						= false
+FurC.DevDebug						= string.find(GetWorldName(), "PTS") and GetUnitDisplayName("player") == "@manavortex"
 FurC.AccountName					= GetDisplayName()

 FurC.AchievementVendors				= {}
 FurC.LuxuryFurnisher				= {}
 FurC.Recipes						= {}
 FurC.Rolis							= {}
-FurC.RollisRecipes					= {}
+FurC.Faustina						= {}
+FurC.RolisRecipes					= {}
+FurC.FaustinaRecipes				= {}
 FurC.Books							= {}
 FurC.EventItems						= {}
 FurC.PVP							= {}
 FurC.MiscItemSources                = {}
-FurC.HomesteadData 					= {}
-FurC.MorrowindData 					= {}
-FurC.ReachHornData 					= {}
-FurC.Cyrodiil						= {}
-FurC.ClockworkData					= {}


 -- versioning
@@ -33,6 +30,14 @@ FURC_CLOCKWORK						= 5
 FURC_DRAGONS						= 6
 FURC_ALTMER						    = 7

+FurC.Const                          = {
+    vendorColor     = "d68957",
+    goldColor 	    = "e5da40",
+    apColor 	    = "25C31E",
+    tvColor		    = "5EA4FF",
+    voucherColor	= "82BCFF",
+}
+
 FurC.version						= 2.2

 local defaults 						= {
@@ -95,8 +100,8 @@ FURC_CROWN 				= FURC_PVP +1
 FURC_RUMOUR 			= FURC_CROWN +1
 FURC_LUXURY 			= FURC_RUMOUR +1
 FURC_OTHER 				= FURC_LUXURY +1
-FURC_ROLLIS 			= FURC_OTHER +1
-FURC_DROP 				= FURC_ROLLIS +1
+FURC_Rolis 			= FURC_OTHER +1
+FURC_DROP 				= FURC_Rolis +1
 FURC_WRIT_VENDOR 		= FURC_DROP +1
 FURC_JUSTICE 			= FURC_WRIT_VENDOR +1
 FURC_FISHING 			= FURC_JUSTICE +1
@@ -298,12 +303,16 @@ function FurnitureCatalogue_Initialize(eventCode, addOnName)

 	FurC.SetFilter(true)

-    FurC.IsDebugging = GetWorldName() == "PTS" and GetUnitDisplayName("player") == "@manavortex"
-
 	EVENT_MANAGER:UnregisterForEvent("FurnitureCatalogue", EVENT_ADD_ON_LOADED)

 end

+if "@manavortex" == FurC.AccountName or "@Manorin" == FurC.AccountName then
+    SLASH_COMMANDS["/furc_debug"] = function()
+        FurC.DevDebug = not FurC.DevDebug
+    end
+end
+
 ZO_CreateStringId("SI_BINDING_NAME_TOGGLE_FURNITURE_CATALOGUE", "Toggle Furniture Catalogue")
 EVENT_MANAGER:RegisterForEvent("FurnitureCatalogue", EVENT_ADD_ON_LOADED, FurnitureCatalogue_Initialize)