From 47ebab22da52da2c90ff065d1253b5b899c0a285 Mon Sep 17 00:00:00 2001 From: Mat Date: Sat, 18 May 2024 08:52:31 +0200 Subject: [PATCH] wip LLM (large language modification) --- FurCContextMenu.lua | 4 +- FurCControlBridge.lua | 4 +- FurCDatabaseQuery.lua | 4 +- FurCEvents.lua | 4 +- FurCUtil.lua | 79 +- FurnitureCatalogue_DevUtility/ContextMenu.lua | 2 +- data/AchievementVendors.lua | 2 +- data/MiscItemSources.lua | 2430 +++++++++-------- data/Rumours.lua | 2 +- docs/autocomplete_definitions.lua | 120 +- locale/de.lua | 108 +- locale/en.lua | 125 +- locale/fr.lua | 120 +- locale/jp.lua | 120 +- locale/ru.lua | 120 +- startup.lua | 48 +- 16 files changed, 1681 insertions(+), 1611 deletions(-) diff --git a/FurCContextMenu.lua b/FurCContextMenu.lua index 4766b6fe..e9e52f47 100644 --- a/FurCContextMenu.lua +++ b/FurCContextMenu.lua @@ -1,7 +1,7 @@ FurC_LinkHandlerBackup_OnLinkMouseUp = nil -local FURC_S_SHOPPINGLIST_1 = GetString(SI_FURC_ONE_TO_SHOPPINGLIST) -local FURC_S_SHOPPINGLIST_5 = GetString(SI_FURC_FIVE_TO_SHOPPINGLIST) +local FURC_S_SHOPPINGLIST_1 = GetString(SI_FURC_PLUGIN_SL_ADD_ONE) +local FURC_S_SHOPPINGLIST_5 = GetString(SI_FURC_PLUGIN_SL_ADD_FIVE) local FURC_S_TOGGLE_SL = GetString(SI_FURC_TOGGLE_SHOPPINGLIST) local linkStyle = LINK_STYLE_DEFAULT diff --git a/FurCControlBridge.lua b/FurCControlBridge.lua index 4fcc66dd..044aa009 100644 --- a/FurCControlBridge.lua +++ b/FurCControlBridge.lua @@ -89,10 +89,10 @@ function FurC.GuiHideTooltip(control) end function FurC.GetRumourTooltip() - return GetString((FurC.GetShowRumours() and SI_FURC_HIDE_RUMOUR_TT) or SI_FURC_SHOW_RUMOUR_TT) + return GetString((FurC.GetShowRumours() and SI_FURC_FILTER_RUMOUR_HIDE_TT) or SI_FURC_SHOW_RUMOUR_TT) end function FurC.GetCrownTooltip() - return GetString((FurC.GetShowCrownstore() and SI_FURC_HIDE_CROWN_TT) or SI_FURC_SHOW_CROWN_TT) + return GetString((FurC.GetShowCrownstore() and SI_FURC_FILTER_CROWN_HIDE_TT) or SI_FURC_SHOW_CROWN_TT) end function FurC.GuiOnSearchBoxClick(control, mouseButton, doubleClick) diff --git a/FurCDatabaseQuery.lua b/FurCDatabaseQuery.lua index 7601589f..06a126e2 100644 --- a/FurCDatabaseQuery.lua +++ b/FurCDatabaseQuery.lua @@ -189,7 +189,7 @@ local function getEventDropSource(recipeKey, recipeArray, stripColor) end FurC.getEventDropSource = getEventDropSource -local emptyString = GetString(SI_FURC_ITEMSOURCE_EMPTY) +local emptyString = GetString(SI_FURC_SRC_EMPTY) local function registerEmptyItem(recipeKey) if recipeKey and tonumber(recipeKey) > 0 then FurC.settings.emptyItemSources[recipeKey] = ", --" .. GetItemLinkName(FurC.GetItemLink(recipeKey)) @@ -236,7 +236,7 @@ end FurC.getRecipeSource = getRecipeSource function FurC.getRumourSource(recipeKey, recipeArray) - return (recipeArray.blueprint and GetString(SI_FURC_RUMOUR_SOURCE_RECIPE)) or GetString(SI_FURC_RUMOUR_SOURCE_ITEM) + return (recipeArray.blueprint and GetString(SI_FURC_SRC_RUMOUR_RECIPE)) or GetString(SI_FURC_SRC_RUMOUR_ITEM) end function FurC.GetCrafterList(itemLink, recipeArray) diff --git a/FurCEvents.lua b/FurCEvents.lua index aca1d1df..f200456b 100644 --- a/FurCEvents.lua +++ b/FurCEvents.lua @@ -56,7 +56,9 @@ local function updateItemInInventory(control) WINDOW_MANAGER:ApplyTemplateToControl(icon, templateName) icon.data = { - tooltipText = ((known and GetString(SI_FURC_FILTER_CRAFTING_KNOWN)) or GetString(SI_FURC_FILTER_CRAFTING_UNKNOWN)), + tooltipText = ((known and GetString(SI_FURC_FILTER_SRC_CRAFTING_KNOWN)) or GetString( + SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN + )), } icon:SetHandler("OnMouseEnter", ZO_Options_OnMouseEnter) icon:SetHandler("OnMouseExit", ZO_Options_OnMouseExit) diff --git a/FurCUtil.lua b/FurCUtil.lua index 0f6f0970..2c28cd5c 100644 --- a/FurCUtil.lua +++ b/FurCUtil.lua @@ -110,20 +110,21 @@ function this.Join(strings, conjunction) return "" end - conjunction = conjunction or (" " .. GetString(SI_FURC_OR) .. " ") + conjunction = conjunction or (" " .. GetString(SI_FURC_GRAMMAR_CONJ_OR) .. " ") return table.concat(strings, conjunction) end -- GAME UTILS -- --- TODO #REFACTOR: collecting those in 1 place for now, move later, make some available in API - ---Get the current character name in desired format ---@return string function this.GetCurrentChar() return zo_strformat(GetUnitName("player")) end +-- TODO #REFACTOR: collecting those in 1 place for now, move later, make some available in API +-- TODO #REFACTOR: for now separate formatters for each use case for more flexibility, later merge into one + local colours = FurC.ItemLinkColours local currencies = { [CURT_NONE] = { @@ -201,29 +202,71 @@ function this.FormatPartOf(itemid, note) return result_str end -local prepDefault = GetString(SI_FURC_GRAMMAR_LOC_PREP_DEFAULT) ----Format a location string containing an optional preposition like "Summerset^on". ----
Will remove the preposition by default. ----@param locRef string location reference like SI_FURC_LOC_SUMMERSET, saved as "Summerset^on" ----@param showPrep boolean|nil show the preposition, defaults to false +local prepDefault = GetString(SI_FURC_GRAMMAR_PREP_LOC_DEFAULT) -- "in" +local wordOrder = GetString(SI_FURC_GRAMMAR_ORDER_LOC) -- "<<1>> <<2>>" +---Format a location string containing an optional preposition form. +---
- if a preposition is requested but missing, the default is used (EN: "in") +---@param loc string location resolved by GetString like "Summerset;on Summerset" +---@param showPrep boolean|nil show the preposition form, defaults to false ---@return string locStr location with or without preposition, like "on Summerset" and "Summerset" -function this.GetLocationString(locRef, showPrep) - local format = GetString(SI_FURC_GRAMMAR_WORDORDER_LOC) - local locStr = GetString(locRef) +function this.FormatLocation(loc, showPrep) + local locStr = GetString(loc) + local prepIndex = string.find(locStr, ";") + local withPrep = "" + local noPrep = locStr - -- if the translation contains a preposition, get it out of the location string - local preposition = prepDefault - local prepIndex = string.find(locStr, "^") if prepIndex then - preposition = string.sub(locStr, prepIndex + 1) - locStr = string.sub(locStr, 1, prepIndex - 1) + withPrep = string.sub(locStr, prepIndex + 1) + noPrep = string.sub(locStr, 1, prepIndex - 1) end if showPrep then - return zo_strformat(format, preposition, locStr) + return prepIndex and withPrep or zo_strformat(wordOrder, prepDefault, noPrep) + end + + return noPrep +end + +---Formatted Event String +---@param events table Resolved names from GetString(SI_FURC_XYZ) like {"Bounties of Blackwood", "Elsweyr Dragons"} +---@return string formatted like "Events: Bounties of Blackwood, Elsweyr Dragons" +function this.FormatEvent(events) + local prefix = GetString(SI_FURC_EVENT) + local colonIndex = string.find(prefix, ";") + + local joined = "" + -- decide on singular or plural from event;events + if #events > 1 then + joined = this.Join(events, ", ") + prefix = string.sub(prefix, colonIndex + 1) else - return locStr + joined = events[1] + prefix = string.sub(prefix, 1, colonIndex - 1) end + + prefix = LocaleAwareToUpper(string.sub(prefix, 1, 1)) .. string.sub(prefix, 2) + return prefix .. ": " .. joined +end + +---Formatted Dungeon String +---@param dungeons table Resolved names from GetString(SI_FURC_XYZ) like {"Fungal Grotto", "Depths of Malatar"} +---@return string formatted like "Dungeon: Depths of Malatar" +function this.FormatDungeon(dungeons) + local prefix = GetString(SI_FURC_DUNG) + local colonIndex = string.find(prefix, ";") + + local joined = "" + -- decide on singular or plural from dungeon;dungeons + if #dungeons > 1 then + joined = this.Join(dungeons, ", ") + prefix = string.sub(prefix, colonIndex + 1) + else + joined = dungeons[1] + prefix = string.sub(prefix, 1, colonIndex - 1) + end + + prefix = LocaleAwareToUpper(string.sub(prefix, 1, 1)) .. string.sub(prefix, 2) + return prefix .. ": " .. joined end -- TODO #INVESTIGATE: GetZoneNameById, GetZoneNameByIndex for all map available zones? diff --git a/FurnitureCatalogue_DevUtility/ContextMenu.lua b/FurnitureCatalogue_DevUtility/ContextMenu.lua index 5b410cfb..1d14ee59 100644 --- a/FurnitureCatalogue_DevUtility/ContextMenu.lua +++ b/FurnitureCatalogue_DevUtility/ContextMenu.lua @@ -112,7 +112,7 @@ FurCDev.GetQuestId = getQuestId local s2 = "\t" local s4 = "\t\t" -- local s_default = (s2 .. "[%d] = GetString(SI_FURC_EXISITING_ITEMSOURCE_UNKNOWN_YET)," .. s2 .. "-- %s\n") -local s_default = (s2 .. "[%d] = getCrownPrice(99)," .. s4 .. " " .. "-- %s") +local s_default = (s2 .. "[%d] = strCrown(99)," .. s4 .. " " .. "-- %s") local s_letter = (s2 .. "[%d] = rumourSource," .. s4 .. " " .. "-- %s") local s_withPrice = (s2 .. "[%d] = {" .. s4 .. "-- %s\n" .. s4 .. "itemPrice = %d,\n" .. s2 .. "},") local s_withAchievement = ( diff --git a/data/AchievementVendors.lua b/data/AchievementVendors.lua index 7b9fbc21..3834b6ae 100644 --- a/data/AchievementVendors.lua +++ b/data/AchievementVendors.lua @@ -11,7 +11,7 @@ local function getQuestString(questIdOrName) if type(questIdOrName) == "number" then questName = GetQuestName(questIdOrName) end - return zo_strformat("<<1>>: <<2>>", GetString(SI_FURC_ITEMSRC_QUEST), questName) + return zo_strformat("<<1>>: <<2>>", GetString(SI_FURC_SRC_QUEST), questName) end local b2 = { diff --git a/data/MiscItemSources.lua b/data/MiscItemSources.lua index 4c8a41fe..8da047a8 100644 --- a/data/MiscItemSources.lua +++ b/data/MiscItemSources.lua @@ -3,11 +3,14 @@ FurC.MiscItemSources = FurC.MiscItemSources or {} local ver = FurC.Constants.Versioning local src = FurC.Constants.ItemSources -local strPrice = FurC.Utils.FormatPrice +local strEvent = FurC.Utils.FormatEvent +local strLoc = FurC.Utils.FormatLocation +local strNPC = FurC.Utils.GetNPCString local strPartOf = FurC.Utils.FormatPartOf +local strPrice = FurC.Utils.FormatPrice +local strDungeon = FurC.Utils.FormatDungeon +local strQuest = FurC.Utils.GetQuestString local join = FurC.Utils.Join -local strLoc = FurC.Utils.GetLocationString -local strNPC = FurC.Utils.GetNPCString -- locations local backwaterSwamp = GetString(SI_FURC_LOC_MURKMIRE) @@ -20,21 +23,25 @@ local hewsbane = GetString(SI_FURC_LOC_HEW) local in_nelsweyr = GetString(SI_FURC_LOC_NELSWEYR) local in_selsweyr = GetString(SI_FURC_LOC_SELSWEYR) local in_skyrim = GetString(SI_FURC_LOC_WSKYRIM) -local on_summerset = GetString(SI_FURC_LOC_SUMMERSET) +local summerset = GetString(SI_FURC_LOC_SUMMERSET) local wrothgar = GetString(SI_FURC_LOC_WROTHGAR) +local dung_fl = strDungeon(GetString(SI_FURC_DUNG_FL)) +local dung_scp = GetString(SI_FURC_DUNG_SCP) +local dung_dragonbones = GetString(SI_FURC_SRC_DROP_DUNG) .. ": " .. join({ dung_fl, dung_scp }, "/") + -- Quests and Guilds local questRewardString = GetString(SI_FURC_QUESTREWARD) local questRewardSuran = zo_strformat("<<1>> <<2>>", questRewardString, GetString(SI_FURC_LOC_VVARDENFELL_SURAN)) local questRewardLilandril = zo_strformat("<<1>> <<2>>", questRewardString, GetString(SI_FURC_LOC_LILANDRIL)) -local tribute = GetString(SI_FURC_ITEMSRC_TRIBUTE) -local tribute_ranked = GetString(SI_FURC_ITEMSRC_TRIBUTE_RANKED) +local tribute = GetString(SI_FURC_SRC_TOT) +local tribute_ranked = GetString(SI_FURC_SRC_TOT_RANKED) local db_poison = zo_strformat("<<1>> <<2>>", GetString(SI_FURC_DB), GetString(SI_FURC_DB_POISON)) local db_sneaky = zo_strformat("<<1>> <<2>>", GetString(SI_FURC_DB), GetString(SI_FURC_DB_STEALTH)) local db_equip = zo_strformat("<<1>> <<2>>", GetString(SI_FURC_DB), GetString(SI_FURC_DB_EQUIP)) -- Events -local blackwood_event = GetString(SI_FURC_EVENT_BLACKWOOD) +local blackwood_event = strEvent(SI_FURC_EVENT_BLACKWOOD) local sinister_hollowjack = GetString(SI_FURC_EVENT_HOLLOWJACK) local elsweyr_event = GetString(SI_FURC_EVENT_ELSWEYR) @@ -43,7 +50,7 @@ local elsweyr_event = GetString(SI_FURC_EVENT_ELSWEYR) local stealable = GetString(SI_FURC_LOOT_STEALING) local pickpocketable = GetString(SI_FURC_LOOT_PICKPOCKET) local stealable_guard = pickpocketable .. ": " .. strNPC(SI_FURC_NPC_GUARD) -local stealable_cc = stealable .. strLoc(SI_FURC_LOC_CC, true) +local stealable_cc = stealable .. strLoc(GetString(SI_FURC_LOC_CC), true) local stealable_scholars = stealable .. strNPC(SI_FURC_NPC_SCHOLAR) local stealable_mages = stealable .. ": " .. strNPC(SI_FURC_NPC_MAGE) local stealable_nerds = stealable .. ": " .. join({ strNPC(SI_FURC_NPC_MAGE), strNPC(SI_FURC_NPC_SCHOLAR) }) @@ -56,7 +63,7 @@ local stealable_wrothgar = stealable .. ": " .. wrothgar local stealable_swamp = stealable .. backwaterSwamp local stealable_elsewhere = stealable .. elsweyr local pickpocket_necrom = pickpocketable .. telpocrypha -local painting_summerset = GetString(SI_FURC_ITEMSOURCE_SAFEBOX) .. on_summerset +local painting_summerset = GetString(SI_FURC_SRC_SAFEBOX) .. strLoc(summerset, true) -- Looting/Harvesting local scrying = GetString(SI_FURC_LOOT_SCRYING) @@ -66,7 +73,7 @@ local automaton_loot_cc = GetString(SI_FURC_NPC_AUTOMATON) .. strLoc(SI_FURC_LOC local automaton_loot_vv = GetString(SI_FURC_NPC_AUTOMATON) .. strLoc(SI_FURC_LOC_VVARDENFELL, true) local chests_skyrim = chests_string .. in_skyrim local chests_blackwood = chests_string .. blackwood -local chests_summerset = chests_string .. on_summerset +local chests_summerset = chests_string .. summerset local chests_elsweyr = chests_string .. elsweyr local chests_high = chests_string .. " in High Isle" local chests_blackr_grcaverns = chests_string .. " in Blackreach: Greymoor Caverns" @@ -75,16 +82,17 @@ local nymic = "From Bastion Nymic reward chests" local chests_necrom = chests_string .. telpocrypha local puplicdungeon_fw_vv = GetString(SI_FURC_DROP) .. " in Forgotten Wastes" .. gloriousHome local plants_vvardenfell = GetString(SI_FURC_PLANTS) .. gloriousHome -local fishing_summerset = GetString(SI_FURC_CANBEFISHED) .. on_summerset -local fishing_swamp = GetString(SI_FURC_CANBEFISHED) .. backwaterSwamp +local fishing = GetString(SI_FURC_LOOT_FISH) +local fishing_summerset = fishing .. summerset +local fishing_swamp = fishing .. backwaterSwamp local endless_archive = "From chests in the Infinite Archive" -- Crowns -local function getCrownPrice(price) +local function strCrown(price) return strPrice(price, CURT_CROWNS) end -local function getGemPrice(price) +local function strGem(price) return strPrice(price, CURT_CROWN_GEMS) end @@ -96,7 +104,7 @@ local function getHouseString(houseId1, houseId2) -- use collectible number from end return zo_strformat(housesource, houseName) end -local mischouse = GetString(SI_FURC_ITEMSOURCE_MISCHOUSE) +local mischouse = GetString(SI_FURC_SRC_MISCHOUSE) local scamboxes = { -- Source: https://en.uesp.net/wiki/Online:Crown_Crates @@ -135,7 +143,7 @@ local scamboxes = { ["wildhunt"] = SI_FURC_CRATE_WILDHUNT, -- 2017-04 -- no exclusive furnishings in Storm Atronach Crate 2016-12 } -local function getScamboxString(scamboxName) +local function strCrate(scamboxName) scamboxName = string.lower(scamboxName) return zo_strformat("<<1>> [<<2>>]", GetString(SI_FURC_SCAMBOX), GetString(scamboxes[scamboxName])) end @@ -174,18 +182,18 @@ local itempacks = { ["astula"] = SI_FURC_ITEMPACK_ASTULA, ["mephala"] = SI_FURC_ITEMPACK_MEPHALA, } -local function getItempackString(itempackName) +local function strPack(itempackName) itempackName = string.lower(itempackName) - return zo_strformat(GetString(SI_FURC_ITEMSOURCE_ITEMPACK), GetString(itempacks[itempackName])) + return zo_strformat(GetString(SI_FURC_SRC_ITEMPACK), GetString(itempacks[itempackName])) end -- 28 Secrets of the Telvanni FurC.MiscItemSources[ver.ENDLESS] = { [src.CROWN] = { - [199112] = getScamboxString("allmaker"), -- Chandelier, Kyne's Radiance", - [199111] = getScamboxString("allmaker"), -- Fountain, Kyne's Radiance", - [199110] = getScamboxString("allmaker"), -- Snowfall, Gentle", - [199109] = getScamboxString("allmaker"), -- Boulder, Clear Ice", + [199112] = strCrate("allmaker"), -- Chandelier, Kyne's Radiance", + [199111] = strCrate("allmaker"), -- Fountain, Kyne's Radiance", + [199110] = strCrate("allmaker"), -- Snowfall, Gentle", + [199109] = strCrate("allmaker"), -- Boulder, Clear Ice", }, [src.DROP] = { @@ -311,7 +319,7 @@ FurC.MiscItemSources[ver.ENDLESS] = { [199118] = scrying .. telpocrypha .. " (5 pieces)", -- Apocrypha Clothing Station", [198576] = scrying .. " in Deadlands", -- Shelf, Black Soul Gems", [198575] = scrying .. in_selsweyr, -- Khajiiti Well", - [198573] = scrying .. on_summerset, -- High Elf Altar, Crystal", + [198573] = scrying .. summerset, -- High Elf Altar, Crystal", [198572] = scrying .. " in Clockwork City", -- Clockwork Wall Gears", [198571] = scrying .. goldcoast, -- Shrine to Dibella", [198570] = scrying .. " in Shadowfen", -- Painted Stone Frog", @@ -327,22 +335,22 @@ FurC.MiscItemSources[ver.ENDLESS] = { -- 27 Base Game Patch FurC.MiscItemSources[ver.BASED] = { [src.CROWN] = { - [197823] = getScamboxString("armiger"), -- Necrom Podium, Buoyant Armiger - [197824] = getScamboxString("armiger"), -- Harrowstorm Mists - [197822] = getScamboxString("armiger"), -- Redoran Sconce, Beetle - [197821] = getScamboxString("armiger"), -- Spellscar Bridge + [197823] = strCrate("armiger"), -- Necrom Podium, Buoyant Armiger + [197824] = strCrate("armiger"), -- Harrowstorm Mists + [197822] = strCrate("armiger"), -- Redoran Sconce, Beetle + [197821] = strCrate("armiger"), -- Spellscar Bridge }, } -- 26 Necrom FurC.MiscItemSources[ver.NECROM] = { [src.CROWN] = { - [197624] = getCrownPrice(1200), -- Apocryphal Shifting Sculpture", + [197624] = strCrown(1200), -- Apocryphal Shifting Sculpture", - [197622] = join({ getScamboxString("feather"), getGemPrice(400) }, ", "), -- Constellation Projection Apparatus", - [197621] = join({ getScamboxString("feather"), getGemPrice(40) }, ", "), -- Household Shrine, Meridian", - [197620] = join({ getScamboxString("feather"), getGemPrice(100) }, ", "), -- Throne of the Lich", - [197619] = join({ getScamboxString("feather"), getGemPrice(100) }, ", "), -- Meridian Mote", + [197622] = join({ strCrate("feather"), strGem(400) }, ", "), -- Constellation Projection Apparatus", + [197621] = join({ strCrate("feather"), strGem(40) }, ", "), -- Household Shrine, Meridian", + [197620] = join({ strCrate("feather"), strGem(100) }, ", "), -- Throne of the Lich", + [197619] = join({ strCrate("feather"), strGem(100) }, ", "), -- Meridian Mote", }, [src.DROP] = { @@ -391,27 +399,27 @@ FurC.MiscItemSources[ver.NECROM] = { FurC.MiscItemSources[ver.SCRIBE] = { [src.CROWN] = { - [194411] = getCrownPrice(240), -- Stonelore Tale Pillar, Rounded Stone, - [194410] = getCrownPrice(240), -- Stonelore Tale Pillar, Slanted Stone, - [194409] = getCrownPrice(140), -- Potted Tree, Systres Pine, - [194408] = getCrownPrice(150), -- Systres Brewing Still, Copper, - [194407] = getCrownPrice(40), -- Harbor Rope, Hanging, - [194406] = getCrownPrice(110), -- Harbor Rope, Coiled Buoy, - [194405] = getCrownPrice(40), -- Harbor Line, Coiled, - [194404] = getCrownPrice(40), -- Harbor Line, Loose, - [194403] = getCrownPrice(110), -- Harbor Netting, Buoy Cluster, - [194402] = getCrownPrice(110), -- Harbor Netting, Hanging Wall, - [194401] = getCrownPrice(150), -- Galen Dogwood, Medium Cluster, - [194400] = getCrownPrice(170), -- Galen Dogwood, Large, - [194399] = getCrownPrice(1000), -- Music Box, Unfathomable Knowledge, - - [193818] = getItempackString("astula"), -- Shad Astula Scholar, Right, - [193817] = getItempackString("astula"), -- Shad Astula Scholar, Left, - - [193796] = join({ getScamboxString("rage"), getGemPrice(100) }, ", "), -- Orb of the Spirit Queen, - [193795] = join({ getScamboxString("rage"), getGemPrice(40) }, ", "), -- Rite of the Harrowforged, - [193794] = join({ getScamboxString("rage"), getGemPrice(100) }, ", "), -- Target Hagraven, Robust, - [193793] = join({ getScamboxString("rage"), getGemPrice(40) }, ", "), -- Reach Chandelier, Hagraven, + [194411] = strCrown(240), -- Stonelore Tale Pillar, Rounded Stone, + [194410] = strCrown(240), -- Stonelore Tale Pillar, Slanted Stone, + [194409] = strCrown(140), -- Potted Tree, Systres Pine, + [194408] = strCrown(150), -- Systres Brewing Still, Copper, + [194407] = strCrown(40), -- Harbor Rope, Hanging, + [194406] = strCrown(110), -- Harbor Rope, Coiled Buoy, + [194405] = strCrown(40), -- Harbor Line, Coiled, + [194404] = strCrown(40), -- Harbor Line, Loose, + [194403] = strCrown(110), -- Harbor Netting, Buoy Cluster, + [194402] = strCrown(110), -- Harbor Netting, Hanging Wall, + [194401] = strCrown(150), -- Galen Dogwood, Medium Cluster, + [194400] = strCrown(170), -- Galen Dogwood, Large, + [194399] = strCrown(1000), -- Music Box, Unfathomable Knowledge, + + [193818] = strPack("astula"), -- Shad Astula Scholar, Right, + [193817] = strPack("astula"), -- Shad Astula Scholar, Left, + + [193796] = join({ strCrate("rage"), strGem(100) }, ", "), -- Orb of the Spirit Queen, + [193795] = join({ strCrate("rage"), strGem(40) }, ", "), -- Rite of the Harrowforged, + [193794] = join({ strCrate("rage"), strGem(100) }, ", "), -- Target Hagraven, Robust, + [193793] = join({ strCrate("rage"), strGem(40) }, ", "), -- Reach Chandelier, Hagraven, }, [src.DROP] = { @@ -447,30 +455,30 @@ FurC.MiscItemSources[ver.SCRIBE] = { -- 24 Firesong FurC.MiscItemSources[ver.DRUID] = { [src.CROWN] = { - [192429] = join({ getCrownPrice(110), getItempackString("maormer") }), -- Maormer Sconce, Serpentine - [192427] = join({ getCrownPrice(70), getItempackString("maormer") }), -- Maormer Lamp, Serpentine - [192425] = join({ getCrownPrice(150), getItempackString("maormer") }), -- Maormer Teapot, Serpentine - [192423] = join({ getCrownPrice(340), getItempackString("maormer") }), -- Maormer Runner, Amethyst Waves - [192422] = join({ getCrownPrice(80), getItempackString("maormer") }), -- Maormer Half-Rug - [192420] = join({ getCrownPrice(180), getItempackString("maormer") }), -- Maormer Rug, Serpentine - [192418] = join({ getCrownPrice(10), getItempackString("maormer") }), -- Maormer Mug, Serpentine - [192414] = join({ getCrownPrice(160), getItempackString("maormer") }), -- Maormer Armchair, Carved - [192413] = join({ getCrownPrice(180), getItempackString("maormer") }), -- Maormer Table, Carved - [192412] = join({ getCrownPrice(340), getItempackString("maormer") }), -- Maormer Curtain, Serpentine Cloth - [192410] = join({ getCrownPrice(85), getItempackString("maormer") }), -- Maormer Chair, Carved - [192409] = join({ getCrownPrice(3000), getItempackString("maormer") }), -- Maormer Cookfire - [192408] = join({ getCrownPrice(70), getItempackString("maormer") }), -- Maormer Trunk, Carved - [192407] = join({ getCrownPrice(720), getItempackString("maormer") }), -- Maormer Tent, Raider's - [192406] = getItempackString("maormer"), -- Maormer Ship's Prow, Serpentine - [192405] = getItempackString("maormer"), -- Maormer Tent, Raid Leader's - - [190945] = getCrownPrice(5000), -- Tree, Seasons of Y'ffre - [190940] = getCrownPrice(1000), -- Music Box, Songbird's Paradise", - - [190951] = join({ getScamboxString("stonelore"), getGemPrice(100) }, ", "), -- Target Spriggan, Robust - [190950] = join({ getScamboxString("stonelore"), getGemPrice(40) }, ", "), -- Rose Petal Cascade - [190947] = join({ getScamboxString("stonelore"), getGemPrice(40) }, ", "), -- Druidic Arch, Floral - [190946] = join({ getScamboxString("stonelore"), getGemPrice(40) }, ", "), -- Earthen Root Essence + [192429] = join({ strCrown(110), strPack("maormer") }), -- Maormer Sconce, Serpentine + [192427] = join({ strCrown(70), strPack("maormer") }), -- Maormer Lamp, Serpentine + [192425] = join({ strCrown(150), strPack("maormer") }), -- Maormer Teapot, Serpentine + [192423] = join({ strCrown(340), strPack("maormer") }), -- Maormer Runner, Amethyst Waves + [192422] = join({ strCrown(80), strPack("maormer") }), -- Maormer Half-Rug + [192420] = join({ strCrown(180), strPack("maormer") }), -- Maormer Rug, Serpentine + [192418] = join({ strCrown(10), strPack("maormer") }), -- Maormer Mug, Serpentine + [192414] = join({ strCrown(160), strPack("maormer") }), -- Maormer Armchair, Carved + [192413] = join({ strCrown(180), strPack("maormer") }), -- Maormer Table, Carved + [192412] = join({ strCrown(340), strPack("maormer") }), -- Maormer Curtain, Serpentine Cloth + [192410] = join({ strCrown(85), strPack("maormer") }), -- Maormer Chair, Carved + [192409] = join({ strCrown(3000), strPack("maormer") }), -- Maormer Cookfire + [192408] = join({ strCrown(70), strPack("maormer") }), -- Maormer Trunk, Carved + [192407] = join({ strCrown(720), strPack("maormer") }), -- Maormer Tent, Raider's + [192406] = strPack("maormer"), -- Maormer Ship's Prow, Serpentine + [192405] = strPack("maormer"), -- Maormer Tent, Raid Leader's + + [190945] = strCrown(5000), -- Tree, Seasons of Y'ffre + [190940] = strCrown(1000), -- Music Box, Songbird's Paradise", + + [190951] = join({ strCrate("stonelore"), strGem(100) }, ", "), -- Target Spriggan, Robust + [190950] = join({ strCrate("stonelore"), strGem(40) }, ", "), -- Rose Petal Cascade + [190947] = join({ strCrate("stonelore"), strGem(40) }, ", "), -- Druidic Arch, Floral + [190946] = join({ strCrate("stonelore"), strGem(40) }, ", "), -- Earthen Root Essence }, [src.DROP] = { @@ -489,14 +497,14 @@ FurC.MiscItemSources[ver.DRUID] = { -- 23 Lost Depths FurC.MiscItemSources[ver.DEPTHS] = { [src.CROWN] = { - [189465] = getCrownPrice(1200), -- Music Box, Gonfalon Galliard, - [189464] = getCrownPrice(1000), -- Music Box, Deeproot Dirge, - [189463] = getCrownPrice(3500), -- Statue, Bendu Olo, - - [188344] = join({ getScamboxString("wraith"), getGemPrice(40) }, ", "), -- Y'ffre's Falling Leaves, Autumn, - [188343] = join({ getScamboxString("wraith"), getGemPrice(100) }, ", "), -- Moonlight Path Bridge, - [188342] = join({ getScamboxString("wraith"), getGemPrice(40) }, ", "), -- Bat Swarm, Domesticated, - [188341] = join({ getScamboxString("wraith"), getGemPrice(100) }, ", "), -- Red Diamond Stained Glass, + [189465] = strCrown(1200), -- Music Box, Gonfalon Galliard, + [189464] = strCrown(1000), -- Music Box, Deeproot Dirge, + [189463] = strCrown(3500), -- Statue, Bendu Olo, + + [188344] = join({ strCrate("wraith"), strGem(40) }, ", "), -- Y'ffre's Falling Leaves, Autumn, + [188343] = join({ strCrate("wraith"), strGem(100) }, ", "), -- Moonlight Path Bridge, + [188342] = join({ strCrate("wraith"), strGem(40) }, ", "), -- Bat Swarm, Domesticated, + [188341] = join({ strCrate("wraith"), strGem(100) }, ", "), -- Red Diamond Stained Glass, }, [src.DROP] = { @@ -510,19 +518,19 @@ FurC.MiscItemSources[ver.DEPTHS] = { -- 22 High Isle FurC.MiscItemSources[ver.BRETON] = { [src.CROWN] = { - [187865] = getCrownPrice(55), -- Flowers, Butterweed Cluster - [187861] = getCrownPrice(110), -- High Isle Hourglass, Compass Rose - [187860] = getCrownPrice(65), -- High Isle Vase, Gilded - [187667] = getCrownPrice(1200), -- Music Box, High Isle Duel - [187666] = getCrownPrice(1000), -- Music Box, Steadfast Armistice - [187665] = getCrownPrice(3500), -- Statue, Kynareth's Blessings - [187664] = getCrownPrice(6000), -- Target Deadlands Harvester, Trial - [147926] = getCrownPrice(6000), -- Target Iron Atronach, Trial - - [187663] = join({ getScamboxString("dark"), getGemPrice(40) }, ", "), -- Blue Fang Shark, Mounted - [187662] = join({ getScamboxString("dark"), getGemPrice(100) }, ", "), -- House Dufort Chandelier - [187661] = join({ getScamboxString("dark"), getGemPrice(40) }, ", "), -- Mage's Flame - [187660] = join({ getScamboxString("dark"), getGemPrice(100) }, ", "), -- Mages Guild Stained Glass + [187865] = strCrown(55), -- Flowers, Butterweed Cluster + [187861] = strCrown(110), -- High Isle Hourglass, Compass Rose + [187860] = strCrown(65), -- High Isle Vase, Gilded + [187667] = strCrown(1200), -- Music Box, High Isle Duel + [187666] = strCrown(1000), -- Music Box, Steadfast Armistice + [187665] = strCrown(3500), -- Statue, Kynareth's Blessings + [187664] = strCrown(6000), -- Target Deadlands Harvester, Trial + [147926] = strCrown(6000), -- Target Iron Atronach, Trial + + [187663] = join({ strCrate("dark"), strGem(40) }, ", "), -- Blue Fang Shark, Mounted + [187662] = join({ strCrate("dark"), strGem(100) }, ", "), -- House Dufort Chandelier + [187661] = join({ strCrate("dark"), strGem(40) }, ", "), -- Mage's Flame + [187660] = join({ strCrate("dark"), strGem(100) }, ", "), -- Mages Guild Stained Glass }, [src.DROP] = { @@ -563,42 +571,42 @@ FurC.MiscItemSources[ver.BRETON] = { -- 21 Ascending Tide FurC.MiscItemSources[ver.TIDES] = { [src.CROWN] = { - [184250] = getCrownPrice(240), -- Nedic Banner, Ancient, - [184249] = join({ getCrownPrice(20), getItempackString("aquatic") }), -- Elkhorn Coral, Branching, - [184248] = join({ getCrownPrice(20), getItempackString("aquatic") }), -- Stones, Coral Cluster, - [184247] = join({ getCrownPrice(45), getItempackString("aquatic") }), -- Brittle-Vein Coral, Cluster, - [184246] = getCrownPrice(130), -- Nedic Bench, Carved, - [184245] = getCrownPrice(610), -- Nedic Chandelier, Swords, - [184244] = getCrownPrice(110), -- Nedic Sconce, Torch, - [184243] = getCrownPrice(640), -- Nedic Brazier, Cold-Flame Pillar, - [184242] = getCrownPrice(370), -- Nedic Brazier, Cold-Flame, - [184205] = join({ getCrownPrice(120), getItempackString("aquatic") }), -- Sand Drift, Oceanic, - [184175] = getCrownPrice(3500), -- Statue, Ancestor-King Auri-El, - [184112] = join({ getCrownPrice(170), getItempackString("aquatic") }), -- Lilac Coral, Strong, - [184111] = join({ getCrownPrice(170), getItempackString("aquatic") }), -- Lilac Anemone, Sprout, - [184110] = join({ getCrownPrice(170), getItempackString("aquatic") }), -- Verdant Anemone, Strong, - [184109] = join({ getCrownPrice(90), getItempackString("aquatic") }), -- Kelp Grouping, Robust, - [184108] = join({ getCrownPrice(90), getItempackString("aquatic") }), -- Kelp Grouping, Thin, - [184107] = join({ getCrownPrice(20), getItempackString("aquatic") }), -- Kelp Stalk, Tall, - [184106] = join({ getCrownPrice(20), getItempackString("aquatic") }), -- Kelp Stalk, Plain, - [184105] = join({ getCrownPrice(45), getItempackString("aquatic") }), -- Green Algae Coral Formation, Tree Capped, - [184104] = join({ getCrownPrice(45), getItempackString("aquatic") }), -- Red Algae Coral Formation, Waving Hands, - [184103] = join({ getCrownPrice(45), getItempackString("aquatic") }), -- Red Algae Coral Formation, Tree Antler, - [183894] = getItempackString("aquatic"), -- Nedic Chest, Bubbling, - [183893] = join({ getCrownPrice(1500), getItempackString("aquatic") }), -- Bubbles of Aeration, - [183892] = join({ getCrownPrice(430), getItempackString("aquatic") }), -- Minnow School, - [183891] = getItempackString("aquatic"), -- Jellyfish Bloom, Heliotrope, - [183856] = getItempackString("aquatic"), -- Target Mudcrab, Robust Coral, - [183201] = getCrownPrice(1000), -- Music Box: Bleak Beacon Shanty, - [183200] = getCrownPrice(1100), -- Music Box: Wonders of the Shoals, - [183198] = join({ GetString(FURC_AV_FARGRAVE_FF), getCrownPrice(10) }), -- Bushes, Withered Cluster, - [178477] = getCrownPrice(170), -- Nedic Bookcase, Filled, - [120853] = "This is craftable, or " .. getCrownPrice(430), -- Stockade, - - [184127] = join({ getScamboxString("sunken"), getGemPrice(40) }, ", "), -- Tranquility Pond, Botanical, - [184126] = join({ getScamboxString("sunken"), getGemPrice(100) }, ", "), -- Waterfall Fountain, Round, - [184072] = join({ getScamboxString("sunken"), getGemPrice(100) }, ", "), -- Aquarium, Large Abecean Coral, - [184071] = join({ getScamboxString("sunken"), getGemPrice(40) }, ", "), -- Aquarium, Abecean Coral, + [184250] = strCrown(240), -- Nedic Banner, Ancient, + [184249] = join({ strCrown(20), strPack("aquatic") }), -- Elkhorn Coral, Branching, + [184248] = join({ strCrown(20), strPack("aquatic") }), -- Stones, Coral Cluster, + [184247] = join({ strCrown(45), strPack("aquatic") }), -- Brittle-Vein Coral, Cluster, + [184246] = strCrown(130), -- Nedic Bench, Carved, + [184245] = strCrown(610), -- Nedic Chandelier, Swords, + [184244] = strCrown(110), -- Nedic Sconce, Torch, + [184243] = strCrown(640), -- Nedic Brazier, Cold-Flame Pillar, + [184242] = strCrown(370), -- Nedic Brazier, Cold-Flame, + [184205] = join({ strCrown(120), strPack("aquatic") }), -- Sand Drift, Oceanic, + [184175] = strCrown(3500), -- Statue, Ancestor-King Auri-El, + [184112] = join({ strCrown(170), strPack("aquatic") }), -- Lilac Coral, Strong, + [184111] = join({ strCrown(170), strPack("aquatic") }), -- Lilac Anemone, Sprout, + [184110] = join({ strCrown(170), strPack("aquatic") }), -- Verdant Anemone, Strong, + [184109] = join({ strCrown(90), strPack("aquatic") }), -- Kelp Grouping, Robust, + [184108] = join({ strCrown(90), strPack("aquatic") }), -- Kelp Grouping, Thin, + [184107] = join({ strCrown(20), strPack("aquatic") }), -- Kelp Stalk, Tall, + [184106] = join({ strCrown(20), strPack("aquatic") }), -- Kelp Stalk, Plain, + [184105] = join({ strCrown(45), strPack("aquatic") }), -- Green Algae Coral Formation, Tree Capped, + [184104] = join({ strCrown(45), strPack("aquatic") }), -- Red Algae Coral Formation, Waving Hands, + [184103] = join({ strCrown(45), strPack("aquatic") }), -- Red Algae Coral Formation, Tree Antler, + [183894] = strPack("aquatic"), -- Nedic Chest, Bubbling, + [183893] = join({ strCrown(1500), strPack("aquatic") }), -- Bubbles of Aeration, + [183892] = join({ strCrown(430), strPack("aquatic") }), -- Minnow School, + [183891] = strPack("aquatic"), -- Jellyfish Bloom, Heliotrope, + [183856] = strPack("aquatic"), -- Target Mudcrab, Robust Coral, + [183201] = strCrown(1000), -- Music Box: Bleak Beacon Shanty, + [183200] = strCrown(1100), -- Music Box: Wonders of the Shoals, + [183198] = join({ GetString(FURC_AV_FARGRAVE_FF), strCrown(10) }), -- Bushes, Withered Cluster, + [178477] = strCrown(170), -- Nedic Bookcase, Filled, + [120853] = "This is craftable, or " .. strCrown(430), -- Stockade, + + [184127] = join({ strCrate("sunken"), strGem(40) }, ", "), -- Tranquility Pond, Botanical, + [184126] = join({ strCrate("sunken"), strGem(100) }, ", "), -- Waterfall Fountain, Round, + [184072] = join({ strCrate("sunken"), strGem(100) }, ", "), -- Aquarium, Large Abecean Coral, + [184071] = join({ strCrate("sunken"), strGem(40) }, ", "), -- Aquarium, Abecean Coral, }, } @@ -629,9 +637,9 @@ FurC.MiscItemSources[ver.DEADL] = { Craglorn Multicultural Parlor Cyrodilic Parlor - Can I add a separate crown source for housing editor vs normal crown store? Seems like it should be fairly easy. Model after SI_FURC_ITEMSRC_CROWNSTORE and getCrownPrice + Can I add a separate crown source for housing editor vs normal crown store? Seems like it should be fairly easy. Model after SI_FURC_SRC_CROWNSTORE and strCrown - Add seals of endeavor prices with the gem prices for crate items (can I add a constant for pricing? ie: getGemPrice(40) would output "40 Gems or 2000 Endeavors" + Add seals of endeavor prices with the gem prices for crate items (can I add a constant for pricing? ie: strGem(40) would output "40 Gems or 2000 Endeavors" Learn how to add housing sources (I see it there, just need to play with it) @@ -687,327 +695,327 @@ FurC.MiscItemSources[ver.DEADL] = { }, [src.CROWN] = { - [171857] = getCrownPrice(3000), -- Aetherial Well, + [171857] = strCrown(3000), -- Aetherial Well, -- ==================== Crown Housing Editor ============================== - [182915] = getCrownPrice(260), -- Fargrave Container Plants, Long, - [182916] = getCrownPrice(260), -- Fargrave Container Plant, Large Square, - [182917] = getCrownPrice(260), -- Fargrave Container Plants, Large Round, - [182914] = getCrownPrice(140), -- Fargrave Container Plants, - [182913] = getCrownPrice(140), -- Fargrave Container Plants, Small, - [141832] = getCrownPrice(70), -- Tree, Robust Fig, - [141833] = getCrownPrice(150), -- Tree, Ancient Fig, - [141834] = getCrownPrice(170), -- Tree, Towering Fig, - [141835] = getCrownPrice(70), -- Tree, Whorled Fig, - [181532] = getCrownPrice(3600), -- Leyawiin Fountain, Round Grand, - [182281] = getCrownPrice(2300), -- Fargrave Fountain, - [118148] = join({ getCrownPrice(80), mischouse }), --Firelogs, Ashen, - [118146] = join({ getCrownPrice(80), mischouse }), --Firelogs, Flaming, - [118147] = join({ getCrownPrice(80), mischouse }), --Firelogs, Charred, - [167294] = join({ getCrownPrice(20), mischouse }), -- Boulder, Jagged Stone, - [118350] = getCrownPrice(25), --Box of Tangerines, - [118352] = getCrownPrice(25), --Box of Oranges, - [118353] = getCrownPrice(25), --Box of Grapes, - [118354] = getCrownPrice(25), --Box of Fruit, - [134278] = getCrownPrice(3500), --Clockwork Alchemy Station, - [134279] = getCrownPrice(3500), --Clockwork Blacksmithing Station, - [134282] = getCrownPrice(3500), --Clockwork Woodworking Station, - [134281] = getCrownPrice(3500), --Clockwork Clothing Station, - [134277] = getCrownPrice(3000), --Clockwork Provisioning Station, - [134276] = getCrownPrice(4500), --Clockwork Dye Station, - [134280] = getCrownPrice(3500), --Clockwork Enchanting Station, - [139064] = join({ getCrownPrice(20), mischouse }), -- Flowers, Hummingbird Mint - [118175] = getCrownPrice(170), --Shutters, Hinged Lattice, - [118174] = getCrownPrice(170), --Shutters, Blue Lattice, - [118173] = getCrownPrice(170), --Shutters, Blue Hinged, - [118172] = getCrownPrice(170), --Shutters, Blue Slatted, - [118171] = getCrownPrice(170), --Shutters, Blue Hatch, - [118170] = getCrownPrice(170), --Shutters, Blue Double, - [118169] = getCrownPrice(170), --Shutters, Blue Single, - [141845] = getCrownPrice(370), -- Mushrooms, Climbing Ambershine - [141846] = getCrownPrice(370), -- Mushrooms, Ambershine Cluster - [141844] = getCrownPrice(70), -- Plants, Amber Spadeleaf Cluster - [182918] = getCrownPrice(160), -- Boulder, Weathered Fargrave, - [182919] = getCrownPrice(160), -- Rocks, Fargrave Cluster, - [141841] = getCrownPrice(40), -- Tree Ferns, Cluster, - [141842] = getCrownPrice(10), -- Tree Ferns, Juvenile Cluster, - [171817] = join({ getCrownPrice(730), mischouse }), -- Ayleid Chandelier, Caged, - [181602] = getCrownPrice(30), -- Bush, Low Greenleaf Cluster, - [181604] = getCrownPrice(30), -- Bush, Snow Lillies, - [182935] = getCrownPrice(140), -- Stump, Charred Deadlands, - [182934] = getCrownPrice(140), -- Log, Charred Deadlands, - [182933] = getCrownPrice(260), -- Tree, Charred Large Deadlands, - [182932] = getCrownPrice(260), -- Tree, Charred Large Twisted Deadlands, - [182931] = getCrownPrice(140), -- Tree, Charred Deadlands, - [182930] = getCrownPrice(110), -- Plant, Pixas, - [182929] = getCrownPrice(110), -- Plant, Hynvik, - [125581] = getCrownPrice(25), -- Mushroom, Buttercake, + [182915] = strCrown(260), -- Fargrave Container Plants, Long, + [182916] = strCrown(260), -- Fargrave Container Plant, Large Square, + [182917] = strCrown(260), -- Fargrave Container Plants, Large Round, + [182914] = strCrown(140), -- Fargrave Container Plants, + [182913] = strCrown(140), -- Fargrave Container Plants, Small, + [141832] = strCrown(70), -- Tree, Robust Fig, + [141833] = strCrown(150), -- Tree, Ancient Fig, + [141834] = strCrown(170), -- Tree, Towering Fig, + [141835] = strCrown(70), -- Tree, Whorled Fig, + [181532] = strCrown(3600), -- Leyawiin Fountain, Round Grand, + [182281] = strCrown(2300), -- Fargrave Fountain, + [118148] = join({ strCrown(80), mischouse }), --Firelogs, Ashen, + [118146] = join({ strCrown(80), mischouse }), --Firelogs, Flaming, + [118147] = join({ strCrown(80), mischouse }), --Firelogs, Charred, + [167294] = join({ strCrown(20), mischouse }), -- Boulder, Jagged Stone, + [118350] = strCrown(25), --Box of Tangerines, + [118352] = strCrown(25), --Box of Oranges, + [118353] = strCrown(25), --Box of Grapes, + [118354] = strCrown(25), --Box of Fruit, + [134278] = strCrown(3500), --Clockwork Alchemy Station, + [134279] = strCrown(3500), --Clockwork Blacksmithing Station, + [134282] = strCrown(3500), --Clockwork Woodworking Station, + [134281] = strCrown(3500), --Clockwork Clothing Station, + [134277] = strCrown(3000), --Clockwork Provisioning Station, + [134276] = strCrown(4500), --Clockwork Dye Station, + [134280] = strCrown(3500), --Clockwork Enchanting Station, + [139064] = join({ strCrown(20), mischouse }), -- Flowers, Hummingbird Mint + [118175] = strCrown(170), --Shutters, Hinged Lattice, + [118174] = strCrown(170), --Shutters, Blue Lattice, + [118173] = strCrown(170), --Shutters, Blue Hinged, + [118172] = strCrown(170), --Shutters, Blue Slatted, + [118171] = strCrown(170), --Shutters, Blue Hatch, + [118170] = strCrown(170), --Shutters, Blue Double, + [118169] = strCrown(170), --Shutters, Blue Single, + [141845] = strCrown(370), -- Mushrooms, Climbing Ambershine + [141846] = strCrown(370), -- Mushrooms, Ambershine Cluster + [141844] = strCrown(70), -- Plants, Amber Spadeleaf Cluster + [182918] = strCrown(160), -- Boulder, Weathered Fargrave, + [182919] = strCrown(160), -- Rocks, Fargrave Cluster, + [141841] = strCrown(40), -- Tree Ferns, Cluster, + [141842] = strCrown(10), -- Tree Ferns, Juvenile Cluster, + [171817] = join({ strCrown(730), mischouse }), -- Ayleid Chandelier, Caged, + [181602] = strCrown(30), -- Bush, Low Greenleaf Cluster, + [181604] = strCrown(30), -- Bush, Snow Lillies, + [182935] = strCrown(140), -- Stump, Charred Deadlands, + [182934] = strCrown(140), -- Log, Charred Deadlands, + [182933] = strCrown(260), -- Tree, Charred Large Deadlands, + [182932] = strCrown(260), -- Tree, Charred Large Twisted Deadlands, + [182931] = strCrown(140), -- Tree, Charred Deadlands, + [182930] = strCrown(110), -- Plant, Pixas, + [182929] = strCrown(110), -- Plant, Hynvik, + [125581] = strCrown(25), -- Mushroom, Buttercake, --======================= Limited Time Crown Store Items ========================== - [156645] = getCrownPrice(4000), -- Statue, Kaalgrontiid's Ascent - [159439] = getCrownPrice(3500), -- Statue, Pride of Alkosh Hero - [147646] = getCrownPrice(3000), -- Meridia, Lady of Infinite Energies, - [165991] = getCrownPrice(3500), -- Statue, Vampiric Sovereign - [147747] = getCrownPrice(2500), -- Cadwell's Astounding Portal - [147746] = getCrownPrice(1400), -- Bust: Abnur Tharn + [156645] = strCrown(4000), -- Statue, Kaalgrontiid's Ascent + [159439] = strCrown(3500), -- Statue, Pride of Alkosh Hero + [147646] = strCrown(3000), -- Meridia, Lady of Infinite Energies, + [165991] = strCrown(3500), -- Statue, Vampiric Sovereign + [147747] = strCrown(2500), -- Cadwell's Astounding Portal + [147746] = strCrown(1400), -- Bust: Abnur Tharn --======================= Music Boxes =========================================== - [156554] = getCrownPrice(800), -- Music Box, A Frost Melt Melody - [171943] = getCrownPrice(1000), -- Music Box, The Liberation of Leyawiin, - [142235] = getCrownPrice(800), -- Music Box, Flickering Shadows - [171543] = getCrownPrice(1000), -- Music Box, Feast of All Flames, - [171944] = getCrownPrice(1000), -- Music Box, The Mirefrog's Hymn, - [171542] = getCrownPrice(800), -- Music Box, Farewell to Nenalata, - [167428] = getCrownPrice(1000), -- Music Box, Mother Morrowind's Sacred Lullaby, - [167429] = getCrownPrice(1000), -- Music Box, Never Fall, Never Die, - [167007] = getCrownPrice(1000), -- Music Box, Subterranean Sonata, - [167006] = getCrownPrice(1000), -- Music Box, Hymn of Five-Hundred Axes, - [153634] = getCrownPrice(800), -- Music Box, Diamond Melody - [163428] = getCrownPrice(800), -- Music Box, The Shadows Stir - [163429] = getCrownPrice(1000), -- Music Box, Enigmas of the Elder Way - [156553] = getCrownPrice(800), -- Music Box, That Breezy Night in Bruma - [159596] = getCrownPrice(800), -- Music Box, The Mad Harlequin's Reverie - [159598] = getCrownPrice(800), -- Music Box, Dreams of Yokuda - [151909] = getCrownPrice(800), -- Music Box, A Clash of Fang and Flame - [151910] = getCrownPrice(800), -- Music Box, Dancing Among the Flowers Fine - [147507] = getCrownPrice(800), -- Music Box, Hinterlands - [147505] = getCrownPrice(800), -- Music Box, Y'ffre in Every Leaf - [147506] = getCrownPrice(800), -- Music Box, Sands of the Alik'r - [178522] = getCrownPrice(800), -- Music Box, Silver Rose - [181636] = getCrownPrice(1000), -- Music Box, \"Fargrave Daydreams\", - [181637] = getCrownPrice(1200), -- Music Box, \"Time's Architect\", - [153633] = getCrownPrice(800), -- Music Box, The Ghosts of Frostfall - [178521] = getCrownPrice(1000), -- Music Box, \"Invitation to Chaos\", + [156554] = strCrown(800), -- Music Box, A Frost Melt Melody + [171943] = strCrown(1000), -- Music Box, The Liberation of Leyawiin, + [142235] = strCrown(800), -- Music Box, Flickering Shadows + [171543] = strCrown(1000), -- Music Box, Feast of All Flames, + [171944] = strCrown(1000), -- Music Box, The Mirefrog's Hymn, + [171542] = strCrown(800), -- Music Box, Farewell to Nenalata, + [167428] = strCrown(1000), -- Music Box, Mother Morrowind's Sacred Lullaby, + [167429] = strCrown(1000), -- Music Box, Never Fall, Never Die, + [167007] = strCrown(1000), -- Music Box, Subterranean Sonata, + [167006] = strCrown(1000), -- Music Box, Hymn of Five-Hundred Axes, + [153634] = strCrown(800), -- Music Box, Diamond Melody + [163428] = strCrown(800), -- Music Box, The Shadows Stir + [163429] = strCrown(1000), -- Music Box, Enigmas of the Elder Way + [156553] = strCrown(800), -- Music Box, That Breezy Night in Bruma + [159596] = strCrown(800), -- Music Box, The Mad Harlequin's Reverie + [159598] = strCrown(800), -- Music Box, Dreams of Yokuda + [151909] = strCrown(800), -- Music Box, A Clash of Fang and Flame + [151910] = strCrown(800), -- Music Box, Dancing Among the Flowers Fine + [147507] = strCrown(800), -- Music Box, Hinterlands + [147505] = strCrown(800), -- Music Box, Y'ffre in Every Leaf + [147506] = strCrown(800), -- Music Box, Sands of the Alik'r + [178522] = strCrown(800), -- Music Box, Silver Rose + [181636] = strCrown(1000), -- Music Box, \"Fargrave Daydreams\", + [181637] = strCrown(1200), -- Music Box, \"Time's Architect\", + [153633] = strCrown(800), -- Music Box, The Ghosts of Frostfall + [178521] = strCrown(1000), -- Music Box, \"Invitation to Chaos\", -- ====================== Crown Furnishing Packs ============================= - [156775] = getItempackString("heart"), -- Bed, Petal-Strewn Double - [156764] = join({ getCrownPrice(85), getItempackString("heart") }), -- Bouquet, Small Dibella's - [156776] = join({ getCrownPrice(85), getItempackString("heart") }), -- Bouquet, Large Dibella's - [156777] = join({ getCrownPrice(85), getItempackString("heart") }), -- Bouquet, Medium Dibella's - [156765] = join({ getCrownPrice(290), getItempackString("heart") }), -- Chair, Love-Blessed - [156766] = join({ getCrownPrice(180), getItempackString("heart") }), -- Petals, Blanket - [156767] = getItempackString("heart"), -- Sweetroll Platter - [156768] = join({ getCrownPrice(100), getItempackString("heart") }), -- Love's Flame Candlestick - [156769] = join({ getCrownPrice(500), getItempackString("heart") }), -- Kitten Moppet, Heart's Promise - [156770] = join({ getCrownPrice(500), getItempackString("heart") }), -- Kitten Moppet, Love-Blessed - [156771] = join({ getCrownPrice(410), getItempackString("heart") }), -- Table, Love-Blessed - [156772] = join({ getCrownPrice(340), getItempackString("heart") }), -- Petals, Large Blanket - [156773] = join({ getCrownPrice(180), getItempackString("heart") }), -- Rug, Love-Blessed - [156774] = join({ getCrownPrice(180), getItempackString("heart") }), -- Tapestry, Love-Blessed - [156778] = join({ getCrownPrice(85), getItempackString("heart") }), -- Flower, Dibella's Promise - [134971] = join({ getCrownPrice(100), getItempackString("heart") }), -- Candles, Votive Group - - [134879] = getItempackString("hubtreasure"), -- Hubalajad's Reflection - [134880] = getItempackString("hubtreasure"), -- Ra Gada Reliquary, Miniature Palace, - [134881] = getItempackString("hubtreasure"), -- In Defense of Prince Hubalajad, - [134882] = join({ getCrownPrice(90), getItempackString("hubtreasure") }), -- Gold Drakes, Pristine, - [134883] = join({ getCrownPrice(360), getItempackString("hubtreasure") }), -- Ra Gada Funerary Statue, Stone Cat, - [134884] = join({ getCrownPrice(360), getItempackString("hubtreasure") }), -- Ra Gada Funerary Statue, Gilded Cat, - [134885] = join({ getCrownPrice(360), getItempackString("hubtreasure") }), -- Ra Gada Funerary Statue, Gilded Ibis, - [134886] = join({ getCrownPrice(360), getItempackString("hubtreasure") }), -- Ra Gada Funerary Statue, Gilded Servant, - [134887] = join({ getCrownPrice(2000), getItempackString("hubtreasure") }), -- Ra Gada Guardian Statue, Lion Ibis, - [134888] = join({ getCrownPrice(2000), getItempackString("hubtreasure") }), -- Ra Gada Guardian Statue, Winged Bull, - [134889] = join({ getCrownPrice(2000), getItempackString("hubtreasure") }), -- Ra Gada Guardian Statue, Riding Camel, - [117901] = join({ getCrownPrice(140), getItempackString("hubtreasure") }), --Redguard Amphora, Gilded, - [117894] = join({ getCrownPrice(240), getItempackString("hubtreasure") }), --Redguard Divider, Gilded, - [117904] = join({ getCrownPrice(190), getItempackString("hubtreasure") }), --Redguard Trunk, Garish, - [134823] = getItempackString("hubtreasure"), -- Target Mournful Aegis, - - [117906] = join({ elsweyr_event, getItempackString("cragknicks") }), -- Redguard Urn, Gilded + [156775] = strPack("heart"), -- Bed, Petal-Strewn Double + [156764] = join({ strCrown(85), strPack("heart") }), -- Bouquet, Small Dibella's + [156776] = join({ strCrown(85), strPack("heart") }), -- Bouquet, Large Dibella's + [156777] = join({ strCrown(85), strPack("heart") }), -- Bouquet, Medium Dibella's + [156765] = join({ strCrown(290), strPack("heart") }), -- Chair, Love-Blessed + [156766] = join({ strCrown(180), strPack("heart") }), -- Petals, Blanket + [156767] = strPack("heart"), -- Sweetroll Platter + [156768] = join({ strCrown(100), strPack("heart") }), -- Love's Flame Candlestick + [156769] = join({ strCrown(500), strPack("heart") }), -- Kitten Moppet, Heart's Promise + [156770] = join({ strCrown(500), strPack("heart") }), -- Kitten Moppet, Love-Blessed + [156771] = join({ strCrown(410), strPack("heart") }), -- Table, Love-Blessed + [156772] = join({ strCrown(340), strPack("heart") }), -- Petals, Large Blanket + [156773] = join({ strCrown(180), strPack("heart") }), -- Rug, Love-Blessed + [156774] = join({ strCrown(180), strPack("heart") }), -- Tapestry, Love-Blessed + [156778] = join({ strCrown(85), strPack("heart") }), -- Flower, Dibella's Promise + [134971] = join({ strCrown(100), strPack("heart") }), -- Candles, Votive Group + + [134879] = strPack("hubtreasure"), -- Hubalajad's Reflection + [134880] = strPack("hubtreasure"), -- Ra Gada Reliquary, Miniature Palace, + [134881] = strPack("hubtreasure"), -- In Defense of Prince Hubalajad, + [134882] = join({ strCrown(90), strPack("hubtreasure") }), -- Gold Drakes, Pristine, + [134883] = join({ strCrown(360), strPack("hubtreasure") }), -- Ra Gada Funerary Statue, Stone Cat, + [134884] = join({ strCrown(360), strPack("hubtreasure") }), -- Ra Gada Funerary Statue, Gilded Cat, + [134885] = join({ strCrown(360), strPack("hubtreasure") }), -- Ra Gada Funerary Statue, Gilded Ibis, + [134886] = join({ strCrown(360), strPack("hubtreasure") }), -- Ra Gada Funerary Statue, Gilded Servant, + [134887] = join({ strCrown(2000), strPack("hubtreasure") }), -- Ra Gada Guardian Statue, Lion Ibis, + [134888] = join({ strCrown(2000), strPack("hubtreasure") }), -- Ra Gada Guardian Statue, Winged Bull, + [134889] = join({ strCrown(2000), strPack("hubtreasure") }), -- Ra Gada Guardian Statue, Riding Camel, + [117901] = join({ strCrown(140), strPack("hubtreasure") }), --Redguard Amphora, Gilded, + [117894] = join({ strCrown(240), strPack("hubtreasure") }), --Redguard Divider, Gilded, + [117904] = join({ strCrown(190), strPack("hubtreasure") }), --Redguard Trunk, Garish, + [134823] = strPack("hubtreasure"), -- Target Mournful Aegis, + + [117906] = join({ elsweyr_event, strPack("cragknicks") }), -- Redguard Urn, Gilded [121053] = join({ - getCrownPrice(170), - getItempackString("cragknicks"), - getItempackString("hubtreasure"), + strCrown(170), + strPack("cragknicks"), + strPack("hubtreasure"), }), -- Jar, Gilded Canopic - [121046] = getItempackString("cragknicks"), -- Cheeses of Tamriel, - [121049] = getItempackString("cragknicks"), -- Parcels, Wrapped, - [120417] = getItempackString("cragknicks"), -- Redguard Barrel, Corded - [118490] = getItempackString("cragknicks"), --Scroll, Rolled, - [134890] = getItempackString("dibella"), -- Dibella, Lady of Love, - [134848] = join({ getCrownPrice(1500), getItempackString("dibella"), getItempackString("oasis") }), -- Blue Butterfly Flock - [134961] = getItempackString("dibella"), -- Dibella's Mysteries and Revelations, - [134899] = join({ getCrownPrice(45), getItempackString("dibella") }), -- Flower Spray, Crimson Daisies, - [134901] = join({ getCrownPrice(45), getItempackString("dibella") }), -- Flower Spray, Starlight Daisies, - [134896] = join({ getCrownPrice(45), getItempackString("dibella") }), -- Flower, Lover's Lily - [134898] = join({ getCrownPrice(45), getItempackString("dibella") }), -- Flowers, Midnight Sage, - [134900] = join({ getCrownPrice(20), getItempackString("dibella") }), -- Flowers, Red Poppy, - [134902] = join({ getCrownPrice(20), getItempackString("dibella") }), -- Flowers, Violet Bellflower, - [134903] = join({ getCrownPrice(45), getItempackString("dibella") }), -- Flowers, Midnight Glory, - [94163] = join({ getCrownPrice(290), getItempackString("dibella") }), --Imperial Bench, Scrollwork - [134849] = join({ getCrownPrice(1500), getItempackString("dibella"), getItempackString("oasis") }), -- Monarch Butterfly Flock - [134891] = join({ getCrownPrice(2500), getItempackString("dibella") }), -- Pergola, Festive Flowers - [134895] = join({ getCrownPrice(1800), getItempackString("dibella") }), -- Redguard Fountain, Mosaic - [134904] = join({ getCrownPrice(260), getItempackString("dibella") }), -- Seal of Dibella - [134905] = join({ getCrownPrice(260), getItempackString("dibella") }), -- Ritual Stone, Dibella - [134906] = join({ getCrownPrice(240), getItempackString("dibella") }), -- Ritual Brazier, Gilded - [134892] = join({ getCrownPrice(85), getItempackString("dibella") }), -- Tree, Pale Gold - [134893] = join({ getCrownPrice(85), getItempackString("dibella") }), -- Tree, Argent Blue - [134894] = join({ getCrownPrice(20), getItempackString("dibella") }), -- Wildflowers, Yellow and Orange - [134897] = join({ getCrownPrice(45), getItempackString("dibella") }), -- Vine Curtain, Festive Flowers - - [181547] = join({ getCrownPrice(1000), getItempackString("mermaid") }), -- Leyawiin Fountain, Corner, - [181486] = join({ getCrownPrice(2700), getItempackString("mermaid") }), -- Leyawiin Fountain, Round, - [181599] = join({ getCrownPrice(1100), getItempackString("mermaid") }), -- Leyawiin Fountain, Tall, - [181485] = getItempackString("mermaid"), -- Statue, Mermaid of Anvil, - [181435] = join({ getCrownPrice(1500), getItempackString("mermaid") }), -- Steam of Repose, - - [175695] = join({ getCrownPrice(510), getItempackString("zeni") }), -- Leyawiin Shrine of the Eight, - [175696] = join({ getCrownPrice(410), getItempackString("zeni") }), -- Leyawiin Tapestry, Divines Horizontal, - [175697] = join({ getCrownPrice(410), getItempackString("zeni") }), -- Leyawiin Tapestry, Divines Vertical, - [175698] = getItempackString("zeni"), -- Zenithar, God of Work and Commerce, - [175699] = join({ getItempackString("zeni"), getItempackString("windows") }), -- Stained Glass of Zenithar, - - [181483] = getItempackString("windows"), -- Stained Glass of Akatosh, - [181484] = getItempackString("windows"), -- Stained Glass of Julianos, - [181482] = getItempackString("windows"), -- Stained Glass of Arkay, - [181481] = getItempackString("windows"), -- Stained Glass of Dibella, - [181480] = getItempackString("windows"), -- Stained Glass of Stendarr, - [181479] = getItempackString("windows"), -- Stained Glass of Mara, - [181478] = getItempackString("windows"), -- Stained Glass of Kynareth, - - [182292] = join({ getCrownPrice(260), getItempackString("ambitions") }), -- Deadlands Base, Tower, - [182291] = join({ getCrownPrice(1500), getItempackString("ambitions") }), -- Deadlands Window, Fireglass, - [182290] = join({ getCrownPrice(140), getItempackString("ambitions") }), -- Deadlands Grate, Large, - [182289] = join({ getCrownPrice(140), getItempackString("ambitions") }), -- Deadlands Wall, Etched, - [182295] = join({ getCrownPrice(510), getItempackString("ambitions") }), -- Deadlands Firepit, Large, - [182294] = join({ getCrownPrice(770), getItempackString("ambitions") }), -- Deadlands Platform, Tower, - [182293] = join({ getCrownPrice(260), getItempackString("ambitions") }), -- Deadlands Stairway, Tower, - [182912] = join({ getCrownPrice(270), getItempackString("ambitions") }), -- Deadlands Pillar, Tall, - - [147585] = join({ getCrownPrice(40), getItempackString("forge") }), -- Dwarven Gear, Large Spokes, - [147586] = join({ getCrownPrice(50), getItempackString("forge") }), -- Dwarven Hub, Sentry Wheel, - [147587] = join({ getCrownPrice(40), getItempackString("forge") }), -- Dwarven Gear, Large Open, - [147588] = join({ getCrownPrice(220), getItempackString("forge") }), -- Dwarven Conduit, Rounded, - [147589] = join({ getCrownPrice(150), getItempackString("forge") }), -- Dwarven Brazier, Open, - [147590] = getItempackString("forge"), -- Dwarven Bust, Forge-Lord, - [147664] = join({ getCrownPrice(270), getItempackString("forge") }), -- Dwarven Dais, Conduit, - [147574] = getItempackString("forge"), -- Dwarven Frieze, Wrathstone, - [147575] = getItempackString("forge"), -- Dwarven Frieze, Power in Twain, - [147576] = getItempackString("forge"), -- Dwarven Frieze, Colossal Power, - [147577] = join({ getCrownPrice(920), getItempackString("forge") }), -- Dwarven Platform, Fan, - [147578] = join({ getCrownPrice(1400), getItempackString("forge") }), -- Dwarven Throne, Conduit, - [147579] = join({ getCrownPrice(240), getItempackString("forge") }), -- Dwarven Gearwork, Perpetual, - [147580] = join({ getCrownPrice(310), getItempackString("forge") }), -- Dwarven Lamps, Heavy, - [147581] = join({ getCrownPrice(350), getItempackString("forge") }), -- Dwarven Table, Heavy Workbench, - [147582] = join({ getCrownPrice(50), getItempackString("forge") }), -- Dwarven Part, Sentry Head, - [147583] = join({ getCrownPrice(220), getItempackString("forge") }), -- Dwarven Valve, Sealed, - [147584] = join({ getCrownPrice(160), getItempackString("forge") }), -- Dwarven Rack, Spider Legs, - - [130226] = join({ getCrownPrice(85), getItempackString("coven") }), -- Carcass, Hanging Deer - [131424] = getItempackString("coven"), -- Fogs of the Hag Fen, - [130220] = join({ getCrownPrice(3300), getItempackString("coven") }), -- Hagraven Altar, - [130222] = join({ getCrownPrice(260), getItempackString("coven") }), -- Hagraven Totem, Skull - [131423] = join({ getCrownPrice(750), getItempackString("coven") }), -- Mists of the Hag Fen - [130221] = join({ getCrownPrice(430), getItempackString("coven") }), -- Reachmen Cage, Sturdy - [130216] = join({ getCrownPrice(510), getItempackString("coven") }), -- Witches' Basin, Scrying - [130219] = join({ getCrownPrice(240), getItempackString("coven") }), -- Witches' Brazier, Beast Skull - [130223] = join({ getCrownPrice(340), getItempackString("coven") }), -- Reachmen Rug, Mottled Skin - [130224] = join({ getCrownPrice(180), getItempackString("coven") }), -- Reachmen Rug, Smooth Skin - [130225] = join({ getCrownPrice(340), getItempackString("coven") }), -- Skulls, Heap - [130227] = join({ getCrownPrice(850), getItempackString("coven") }), -- Witches' Tent, Lean-To - [130229] = join({ getCrownPrice(290), getItempackString("coven") }), -- Tree, Wretched Cypress - [130230] = join({ getCrownPrice(90), getItempackString("coven") }), -- Stump, Wretched Cypress - [130247] = join({ getCrownPrice(290), getItempackString("coven") }), -- Tree, Fetid Cypress - [130228] = getItempackString("coven"), -- The Witches of Hag Fen, - [130215] = getItempackString("coven"), -- Witches' Cauldron, Provisioning, - [130334] = join({ getCrownPrice(260), getItempackString("coven") }), -- Witches Totem, Antler Charms, - - [134870] = getItempackString("tyrants"), -- Ancient Nord Chest, Dragon Crest, - [134871] = getItempackString("tyrants"), -- Ancient Nord Urn, Dragon Crest, - [134873] = getItempackString("tyrants"), -- Ancient Nord Bookshelf, Wide, - [134874] = getItempackString("tyrants"), -- Ancient Nord Bookshelf, Narrow, - [134875] = getItempackString("tyrants"), -- Ancient Nord Funerary Jar, Linked Rings, - [134876] = getItempackString("tyrants"), -- Ancient Nord Funerary Jar, Crimson Sash, - [134877] = getItempackString("tyrants"), -- Ancient Nord Funerary Jar, Dragon Figure, - [134878] = getItempackString("tyrants"), -- Ancient Nord Funerary Jar, Dragon Crest, - [134872] = getItempackString("tyrants"), -- Ancient Nord Brazier, Dragon Crest - [134863] = getItempackString("tyrants"), -- Ancient Nord Sconce, Dragon Crest - [134862] = getItempackString("tyrants"), -- Ancient Nord Runestone, Memorial, - [134856] = getItempackString("tyrants"), -- Dragon Skeleton, Mid-Flight, - [134857] = getItempackString("tyrants"), -- Dragon Priest Frieze: Triumph, - [134858] = getItempackString("tyrants"), -- Dragon Priest Frieze: Exodus, - [134859] = getItempackString("tyrants"), -- Dragon Priest Frieze: Restoration, - [134860] = getItempackString("tyrants"), -- Dragon Priest Frieze: Ascension, - [134861] = getItempackString("tyrants"), -- The History of Zaan The Scalecaller, - [134864] = getItempackString("tyrants"), -- Dragon Cranium, Ancient, - [134865] = getItempackString("tyrants"), -- Unidentified Bones, Gargantuan, - [134866] = getItempackString("tyrants"), -- Lamia Cranium, Ancient, - [134867] = getItempackString("tyrants"), -- Argonian Skull, Complete, - [134868] = getItempackString("tyrants"), -- Khajiit Skull, Complete, - [134869] = getItempackString("tyrants"), -- Orc Skull, Complete, - - [151901] = join({ getCrownPrice(20), getItempackString("khajiit") }), -- Elsweyr Bowl, Moon-Sugar, - [153660] = join({ getCrownPrice(560), getItempackString("khajiit") }), -- Elsweyr Cart, Moons-Blessed - [153669] = join({ getCrownPrice(300), getItempackString("khajiit") }), -- Elsweyr Well, Simple Arched - [153658] = join({ getCrownPrice(70), getItempackString("khajiit") }), -- Moon-Sugar, Row - [153659] = join({ getCrownPrice(30), getItempackString("khajiit") }), -- Moon-Sugar, Cluster - [153667] = join({ getCrownPrice(170), getItempackString("khajiit") }), -- Moon-Sugar, Harvested Large - [153668] = join({ getCrownPrice(90), getItempackString("khajiit") }), -- Moon-Sugar, Harvested Small - [153632] = join({ getCrownPrice(1500), getItempackString("khajiit") }), -- Sapphire Candlefly Gathering - [153661] = join({ getCrownPrice(40), getItempackString("khajiit") }), -- Straw Pile - [153662] = join({ getCrownPrice(40), getItempackString("khajiit") }), -- Tool, Plow - [153663] = join({ getCrownPrice(40), getItempackString("khajiit") }), -- Tool, Sickle - [153664] = join({ getCrownPrice(40), getItempackString("khajiit") }), -- Tool, Pitchfork - [153665] = join({ getCrownPrice(40), getItempackString("khajiit") }), -- Tool, Hoe - [153666] = join({ getCrownPrice(40), getItempackString("khajiit") }), -- Tool, Two-Person Crosscut Saw - - [134270] = join({ getCrownPrice(85), getItempackString("malacath") }), -- Cave Deposit, Large Double-Sided - [134271] = join({ getCrownPrice(85), getItempackString("malacath") }), -- Cave Deposit, Tall Stalagmite - [134272] = join({ getCrownPrice(10), getItempackString("malacath") }), -- Cave Deposit, Stalagmite Cluster, - [134258] = getItempackString("malacath"), -- Prayer to the Furious One, - [134259] = getItempackString("malacath"), -- Malacath, God of Oaths and Curses, - [134260] = getItempackString("malacath"), -- Orcish Bas-Relief, Axe, - [134261] = getItempackString("malacath"), -- Orcish Bas-Relief, Sword, - [134262] = getItempackString("malacath"), -- Orcish Bas-Relief, Spear, - [134268] = join({ getCrownPrice(570), getItempackString("malacath") }), -- Orcish Brazier, Column - [134269] = join({ getCrownPrice(220), getItempackString("malacath") }), -- Orcish Dais, Raised - [116518] = join({ getCrownPrice(270), getItempackString("malacath") }), -- Orcish Drop Hammer, Repeating, - [152147] = getItempackString("malacath"), -- Orcish Statue, Strength, - [134267] = join({ getCrownPrice(380), getItempackString("malacath") }), -- Orcish Table, Grand Furs - [134263] = join({ getCrownPrice(410), getItempackString("malacath") }), -- Orcish Throne, Ancient - - [126114] = getItempackString("azura"), -- Statue of Azura, Queen of Dawn and Dusk, - [126115] = getItempackString("azura"), -- Statue of Azura's Moon, - [126116] = getItempackString("azura"), -- Statue of Azura's Sun, - [126117] = getItempackString("azura"), -- Tapestry of Azura, - [126118] = getItempackString("azura"), -- Banner of Azura, - [125489] = getItempackString("azura"), -- Daedric Brazier, Flaming, - [126128] = getItempackString("azura"), -- The Five Points of the Star, - - [134251] = getItempackString("coldharbour"), -- Coldharbour Bookshelf, Filled, - [134252] = getItempackString("coldharbour"), -- Coldharbour Bookshelf, Black Laboratory, - [134253] = getItempackString("coldharbour"), -- Coldharbour Bookshelf, Filled Wide, - [134256] = getItempackString("coldharbour"), -- Coldharbour Bookshelf, Filled Pillar, - [134254] = getItempackString("coldharbour"), -- Seal of Molag Bal, - [134255] = getItempackString("coldharbour"), -- Transliminal Rupture, - [134257] = getItempackString("coldharbour"), -- Daedra Dossier: Cold-Flame Atronach - [134264] = join({ getCrownPrice(190), getItempackString("coldharbour") }), -- Daedric Brazier, Cold-Flame - [134273] = join({ getCrownPrice(200), getItempackString("coldharbour") }), -- Daedric Plinth, Sacrificial - [134274] = join({ getCrownPrice(200), getItempackString("coldharbour") }), -- Coldharbour Crate, Black Soul Gem - [134275] = join({ getCrownPrice(200), getItempackString("coldharbour") }), -- Coldharbour Bin, Black Soul Gem - - [182285] = join({ getCrownPrice(160), getItempackString("fargrave") }), -- Book Wall, Levitating, - [182286] = join({ getCrownPrice(860), getItempackString("fargrave") }), -- Fargrave Terrarium, Snakevine, - [182288] = join({ getCrownPrice(820), getItempackString("fargrave") }), -- Fargrave Terrarium, Massive Gas Blossom, - [182284] = join({ getCrownPrice(20), getItempackString("fargrave") }), -- Fargrave Bread Loaves, Round, - [182283] = join({ getCrownPrice(870), getItempackString("fargrave") }), -- Fargrave Terrarium, Lantern Flower, - [182282] = join({ getCrownPrice(560), getItempackString("fargrave") }), -- Fargrave Water Globules, Levitating, - [182258] = join({ getCrownPrice(540), getItempackString("fargrave") }), -- Fargrave Terrarium, Claws, - [182230] = join({ getCrownPrice(140), getItempackString("fargrave") }), -- Mushrooms, Glowing Shelf, - - [182280] = getScamboxString("celestial"), -- Fargrave Relic Case, - [182207] = getScamboxString("celestial"), -- Celestial Vortex, - [181643] = getScamboxString("celestial"), -- Warrior's Flame, - [181487] = getScamboxString("harlequin"), -- Grim Harlequin Chandelier, - [181438] = getScamboxString("harlequin"), -- Mad God's Monarch Flock, - [178800] = getScamboxString("harlequin"), -- Amethyst Candlefly Gathering, - [171947] = getScamboxString("irony"), -- Deadlands Chandelier, Bladed, - [171946] = getScamboxString("irony"), -- Deadlands Cage, Bladed, - [171945] = getScamboxString("irony"), -- Deadlands Sconce, Horned, - [171546] = getScamboxString("ayleid"), -- Ayleid Relief, Blessed Life-Tree, - [171545] = getScamboxString("ayleid"), -- Ayleid Gate, Large, - [171544] = getScamboxString("ayleid"), -- Comet, Aetherial, - [156644] = join({ getScamboxString("frosty"), getGemPrice(40) }, ", "), -- Books, Towering Pile + [121046] = strPack("cragknicks"), -- Cheeses of Tamriel, + [121049] = strPack("cragknicks"), -- Parcels, Wrapped, + [120417] = strPack("cragknicks"), -- Redguard Barrel, Corded + [118490] = strPack("cragknicks"), --Scroll, Rolled, + [134890] = strPack("dibella"), -- Dibella, Lady of Love, + [134848] = join({ strCrown(1500), strPack("dibella"), strPack("oasis") }), -- Blue Butterfly Flock + [134961] = strPack("dibella"), -- Dibella's Mysteries and Revelations, + [134899] = join({ strCrown(45), strPack("dibella") }), -- Flower Spray, Crimson Daisies, + [134901] = join({ strCrown(45), strPack("dibella") }), -- Flower Spray, Starlight Daisies, + [134896] = join({ strCrown(45), strPack("dibella") }), -- Flower, Lover's Lily + [134898] = join({ strCrown(45), strPack("dibella") }), -- Flowers, Midnight Sage, + [134900] = join({ strCrown(20), strPack("dibella") }), -- Flowers, Red Poppy, + [134902] = join({ strCrown(20), strPack("dibella") }), -- Flowers, Violet Bellflower, + [134903] = join({ strCrown(45), strPack("dibella") }), -- Flowers, Midnight Glory, + [94163] = join({ strCrown(290), strPack("dibella") }), --Imperial Bench, Scrollwork + [134849] = join({ strCrown(1500), strPack("dibella"), strPack("oasis") }), -- Monarch Butterfly Flock + [134891] = join({ strCrown(2500), strPack("dibella") }), -- Pergola, Festive Flowers + [134895] = join({ strCrown(1800), strPack("dibella") }), -- Redguard Fountain, Mosaic + [134904] = join({ strCrown(260), strPack("dibella") }), -- Seal of Dibella + [134905] = join({ strCrown(260), strPack("dibella") }), -- Ritual Stone, Dibella + [134906] = join({ strCrown(240), strPack("dibella") }), -- Ritual Brazier, Gilded + [134892] = join({ strCrown(85), strPack("dibella") }), -- Tree, Pale Gold + [134893] = join({ strCrown(85), strPack("dibella") }), -- Tree, Argent Blue + [134894] = join({ strCrown(20), strPack("dibella") }), -- Wildflowers, Yellow and Orange + [134897] = join({ strCrown(45), strPack("dibella") }), -- Vine Curtain, Festive Flowers + + [181547] = join({ strCrown(1000), strPack("mermaid") }), -- Leyawiin Fountain, Corner, + [181486] = join({ strCrown(2700), strPack("mermaid") }), -- Leyawiin Fountain, Round, + [181599] = join({ strCrown(1100), strPack("mermaid") }), -- Leyawiin Fountain, Tall, + [181485] = strPack("mermaid"), -- Statue, Mermaid of Anvil, + [181435] = join({ strCrown(1500), strPack("mermaid") }), -- Steam of Repose, + + [175695] = join({ strCrown(510), strPack("zeni") }), -- Leyawiin Shrine of the Eight, + [175696] = join({ strCrown(410), strPack("zeni") }), -- Leyawiin Tapestry, Divines Horizontal, + [175697] = join({ strCrown(410), strPack("zeni") }), -- Leyawiin Tapestry, Divines Vertical, + [175698] = strPack("zeni"), -- Zenithar, God of Work and Commerce, + [175699] = join({ strPack("zeni"), strPack("windows") }), -- Stained Glass of Zenithar, + + [181483] = strPack("windows"), -- Stained Glass of Akatosh, + [181484] = strPack("windows"), -- Stained Glass of Julianos, + [181482] = strPack("windows"), -- Stained Glass of Arkay, + [181481] = strPack("windows"), -- Stained Glass of Dibella, + [181480] = strPack("windows"), -- Stained Glass of Stendarr, + [181479] = strPack("windows"), -- Stained Glass of Mara, + [181478] = strPack("windows"), -- Stained Glass of Kynareth, + + [182292] = join({ strCrown(260), strPack("ambitions") }), -- Deadlands Base, Tower, + [182291] = join({ strCrown(1500), strPack("ambitions") }), -- Deadlands Window, Fireglass, + [182290] = join({ strCrown(140), strPack("ambitions") }), -- Deadlands Grate, Large, + [182289] = join({ strCrown(140), strPack("ambitions") }), -- Deadlands Wall, Etched, + [182295] = join({ strCrown(510), strPack("ambitions") }), -- Deadlands Firepit, Large, + [182294] = join({ strCrown(770), strPack("ambitions") }), -- Deadlands Platform, Tower, + [182293] = join({ strCrown(260), strPack("ambitions") }), -- Deadlands Stairway, Tower, + [182912] = join({ strCrown(270), strPack("ambitions") }), -- Deadlands Pillar, Tall, + + [147585] = join({ strCrown(40), strPack("forge") }), -- Dwarven Gear, Large Spokes, + [147586] = join({ strCrown(50), strPack("forge") }), -- Dwarven Hub, Sentry Wheel, + [147587] = join({ strCrown(40), strPack("forge") }), -- Dwarven Gear, Large Open, + [147588] = join({ strCrown(220), strPack("forge") }), -- Dwarven Conduit, Rounded, + [147589] = join({ strCrown(150), strPack("forge") }), -- Dwarven Brazier, Open, + [147590] = strPack("forge"), -- Dwarven Bust, Forge-Lord, + [147664] = join({ strCrown(270), strPack("forge") }), -- Dwarven Dais, Conduit, + [147574] = strPack("forge"), -- Dwarven Frieze, Wrathstone, + [147575] = strPack("forge"), -- Dwarven Frieze, Power in Twain, + [147576] = strPack("forge"), -- Dwarven Frieze, Colossal Power, + [147577] = join({ strCrown(920), strPack("forge") }), -- Dwarven Platform, Fan, + [147578] = join({ strCrown(1400), strPack("forge") }), -- Dwarven Throne, Conduit, + [147579] = join({ strCrown(240), strPack("forge") }), -- Dwarven Gearwork, Perpetual, + [147580] = join({ strCrown(310), strPack("forge") }), -- Dwarven Lamps, Heavy, + [147581] = join({ strCrown(350), strPack("forge") }), -- Dwarven Table, Heavy Workbench, + [147582] = join({ strCrown(50), strPack("forge") }), -- Dwarven Part, Sentry Head, + [147583] = join({ strCrown(220), strPack("forge") }), -- Dwarven Valve, Sealed, + [147584] = join({ strCrown(160), strPack("forge") }), -- Dwarven Rack, Spider Legs, + + [130226] = join({ strCrown(85), strPack("coven") }), -- Carcass, Hanging Deer + [131424] = strPack("coven"), -- Fogs of the Hag Fen, + [130220] = join({ strCrown(3300), strPack("coven") }), -- Hagraven Altar, + [130222] = join({ strCrown(260), strPack("coven") }), -- Hagraven Totem, Skull + [131423] = join({ strCrown(750), strPack("coven") }), -- Mists of the Hag Fen + [130221] = join({ strCrown(430), strPack("coven") }), -- Reachmen Cage, Sturdy + [130216] = join({ strCrown(510), strPack("coven") }), -- Witches' Basin, Scrying + [130219] = join({ strCrown(240), strPack("coven") }), -- Witches' Brazier, Beast Skull + [130223] = join({ strCrown(340), strPack("coven") }), -- Reachmen Rug, Mottled Skin + [130224] = join({ strCrown(180), strPack("coven") }), -- Reachmen Rug, Smooth Skin + [130225] = join({ strCrown(340), strPack("coven") }), -- Skulls, Heap + [130227] = join({ strCrown(850), strPack("coven") }), -- Witches' Tent, Lean-To + [130229] = join({ strCrown(290), strPack("coven") }), -- Tree, Wretched Cypress + [130230] = join({ strCrown(90), strPack("coven") }), -- Stump, Wretched Cypress + [130247] = join({ strCrown(290), strPack("coven") }), -- Tree, Fetid Cypress + [130228] = strPack("coven"), -- The Witches of Hag Fen, + [130215] = strPack("coven"), -- Witches' Cauldron, Provisioning, + [130334] = join({ strCrown(260), strPack("coven") }), -- Witches Totem, Antler Charms, + + [134870] = strPack("tyrants"), -- Ancient Nord Chest, Dragon Crest, + [134871] = strPack("tyrants"), -- Ancient Nord Urn, Dragon Crest, + [134873] = strPack("tyrants"), -- Ancient Nord Bookshelf, Wide, + [134874] = strPack("tyrants"), -- Ancient Nord Bookshelf, Narrow, + [134875] = strPack("tyrants"), -- Ancient Nord Funerary Jar, Linked Rings, + [134876] = strPack("tyrants"), -- Ancient Nord Funerary Jar, Crimson Sash, + [134877] = strPack("tyrants"), -- Ancient Nord Funerary Jar, Dragon Figure, + [134878] = strPack("tyrants"), -- Ancient Nord Funerary Jar, Dragon Crest, + [134872] = strPack("tyrants"), -- Ancient Nord Brazier, Dragon Crest + [134863] = strPack("tyrants"), -- Ancient Nord Sconce, Dragon Crest + [134862] = strPack("tyrants"), -- Ancient Nord Runestone, Memorial, + [134856] = strPack("tyrants"), -- Dragon Skeleton, Mid-Flight, + [134857] = strPack("tyrants"), -- Dragon Priest Frieze: Triumph, + [134858] = strPack("tyrants"), -- Dragon Priest Frieze: Exodus, + [134859] = strPack("tyrants"), -- Dragon Priest Frieze: Restoration, + [134860] = strPack("tyrants"), -- Dragon Priest Frieze: Ascension, + [134861] = strPack("tyrants"), -- The History of Zaan The Scalecaller, + [134864] = strPack("tyrants"), -- Dragon Cranium, Ancient, + [134865] = strPack("tyrants"), -- Unidentified Bones, Gargantuan, + [134866] = strPack("tyrants"), -- Lamia Cranium, Ancient, + [134867] = strPack("tyrants"), -- Argonian Skull, Complete, + [134868] = strPack("tyrants"), -- Khajiit Skull, Complete, + [134869] = strPack("tyrants"), -- Orc Skull, Complete, + + [151901] = join({ strCrown(20), strPack("khajiit") }), -- Elsweyr Bowl, Moon-Sugar, + [153660] = join({ strCrown(560), strPack("khajiit") }), -- Elsweyr Cart, Moons-Blessed + [153669] = join({ strCrown(300), strPack("khajiit") }), -- Elsweyr Well, Simple Arched + [153658] = join({ strCrown(70), strPack("khajiit") }), -- Moon-Sugar, Row + [153659] = join({ strCrown(30), strPack("khajiit") }), -- Moon-Sugar, Cluster + [153667] = join({ strCrown(170), strPack("khajiit") }), -- Moon-Sugar, Harvested Large + [153668] = join({ strCrown(90), strPack("khajiit") }), -- Moon-Sugar, Harvested Small + [153632] = join({ strCrown(1500), strPack("khajiit") }), -- Sapphire Candlefly Gathering + [153661] = join({ strCrown(40), strPack("khajiit") }), -- Straw Pile + [153662] = join({ strCrown(40), strPack("khajiit") }), -- Tool, Plow + [153663] = join({ strCrown(40), strPack("khajiit") }), -- Tool, Sickle + [153664] = join({ strCrown(40), strPack("khajiit") }), -- Tool, Pitchfork + [153665] = join({ strCrown(40), strPack("khajiit") }), -- Tool, Hoe + [153666] = join({ strCrown(40), strPack("khajiit") }), -- Tool, Two-Person Crosscut Saw + + [134270] = join({ strCrown(85), strPack("malacath") }), -- Cave Deposit, Large Double-Sided + [134271] = join({ strCrown(85), strPack("malacath") }), -- Cave Deposit, Tall Stalagmite + [134272] = join({ strCrown(10), strPack("malacath") }), -- Cave Deposit, Stalagmite Cluster, + [134258] = strPack("malacath"), -- Prayer to the Furious One, + [134259] = strPack("malacath"), -- Malacath, God of Oaths and Curses, + [134260] = strPack("malacath"), -- Orcish Bas-Relief, Axe, + [134261] = strPack("malacath"), -- Orcish Bas-Relief, Sword, + [134262] = strPack("malacath"), -- Orcish Bas-Relief, Spear, + [134268] = join({ strCrown(570), strPack("malacath") }), -- Orcish Brazier, Column + [134269] = join({ strCrown(220), strPack("malacath") }), -- Orcish Dais, Raised + [116518] = join({ strCrown(270), strPack("malacath") }), -- Orcish Drop Hammer, Repeating, + [152147] = strPack("malacath"), -- Orcish Statue, Strength, + [134267] = join({ strCrown(380), strPack("malacath") }), -- Orcish Table, Grand Furs + [134263] = join({ strCrown(410), strPack("malacath") }), -- Orcish Throne, Ancient + + [126114] = strPack("azura"), -- Statue of Azura, Queen of Dawn and Dusk, + [126115] = strPack("azura"), -- Statue of Azura's Moon, + [126116] = strPack("azura"), -- Statue of Azura's Sun, + [126117] = strPack("azura"), -- Tapestry of Azura, + [126118] = strPack("azura"), -- Banner of Azura, + [125489] = strPack("azura"), -- Daedric Brazier, Flaming, + [126128] = strPack("azura"), -- The Five Points of the Star, + + [134251] = strPack("coldharbour"), -- Coldharbour Bookshelf, Filled, + [134252] = strPack("coldharbour"), -- Coldharbour Bookshelf, Black Laboratory, + [134253] = strPack("coldharbour"), -- Coldharbour Bookshelf, Filled Wide, + [134256] = strPack("coldharbour"), -- Coldharbour Bookshelf, Filled Pillar, + [134254] = strPack("coldharbour"), -- Seal of Molag Bal, + [134255] = strPack("coldharbour"), -- Transliminal Rupture, + [134257] = strPack("coldharbour"), -- Daedra Dossier: Cold-Flame Atronach + [134264] = join({ strCrown(190), strPack("coldharbour") }), -- Daedric Brazier, Cold-Flame + [134273] = join({ strCrown(200), strPack("coldharbour") }), -- Daedric Plinth, Sacrificial + [134274] = join({ strCrown(200), strPack("coldharbour") }), -- Coldharbour Crate, Black Soul Gem + [134275] = join({ strCrown(200), strPack("coldharbour") }), -- Coldharbour Bin, Black Soul Gem + + [182285] = join({ strCrown(160), strPack("fargrave") }), -- Book Wall, Levitating, + [182286] = join({ strCrown(860), strPack("fargrave") }), -- Fargrave Terrarium, Snakevine, + [182288] = join({ strCrown(820), strPack("fargrave") }), -- Fargrave Terrarium, Massive Gas Blossom, + [182284] = join({ strCrown(20), strPack("fargrave") }), -- Fargrave Bread Loaves, Round, + [182283] = join({ strCrown(870), strPack("fargrave") }), -- Fargrave Terrarium, Lantern Flower, + [182282] = join({ strCrown(560), strPack("fargrave") }), -- Fargrave Water Globules, Levitating, + [182258] = join({ strCrown(540), strPack("fargrave") }), -- Fargrave Terrarium, Claws, + [182230] = join({ strCrown(140), strPack("fargrave") }), -- Mushrooms, Glowing Shelf, + + [182280] = strCrate("celestial"), -- Fargrave Relic Case, + [182207] = strCrate("celestial"), -- Celestial Vortex, + [181643] = strCrate("celestial"), -- Warrior's Flame, + [181487] = strCrate("harlequin"), -- Grim Harlequin Chandelier, + [181438] = strCrate("harlequin"), -- Mad God's Monarch Flock, + [178800] = strCrate("harlequin"), -- Amethyst Candlefly Gathering, + [171947] = strCrate("irony"), -- Deadlands Chandelier, Bladed, + [171946] = strCrate("irony"), -- Deadlands Cage, Bladed, + [171945] = strCrate("irony"), -- Deadlands Sconce, Horned, + [171546] = strCrate("ayleid"), -- Ayleid Relief, Blessed Life-Tree, + [171545] = strCrate("ayleid"), -- Ayleid Gate, Large, + [171544] = strCrate("ayleid"), -- Comet, Aetherial, + [156644] = join({ strCrate("frosty"), strGem(40) }, ", "), -- Books, Towering Pile }, } @@ -1017,10 +1025,10 @@ FurC.MiscItemSources[ver.BLACKW] = {} -- 18 Flames of Ambition FurC.MiscItemSources[ver.FLAMES] = { [src.CROWN] = { - [171932] = getCrownPrice(160), -- Daedric Sconce, Torch, - [171933] = getCrownPrice(80), -- Daedric Candles, Tall Stand, - [171934] = getCrownPrice(360), -- Daedric Brazier, Plinth, - [118482] = getCrownPrice(25), -- Book Stack, Tall + [171932] = strCrown(160), -- Daedric Sconce, Torch, + [171933] = strCrown(80), -- Daedric Candles, Tall Stand, + [171934] = strCrown(360), -- Daedric Brazier, Plinth, + [118482] = strCrown(25), -- Book Stack, Tall }, [src.DROP] = { @@ -1035,153 +1043,153 @@ FurC.MiscItemSources[ver.MARKAT] = { }, [src.CROWN] = { - [167935] = getScamboxString("potentate"), -- Dwarven Work Lamp, Powered Floor, - [167934] = getScamboxString("potentate"), -- Dwarven Orrery, Scholastic, - [167933] = getScamboxString("potentate"), -- Dwarven Beam Emitter, Medium, - - [171397] = getItempackString("alchemist"), -- Stone Garden Tank, Vacant, - [171398] = getItempackString("alchemist"), -- Stone Garden Vat, Alchemized Bristleback, - [171399] = getItempackString("alchemist"), -- Stone Garden Vat, Alchemized Chaurus, - [171400] = getItempackString("alchemist"), -- Stone Garden Vat, Alchemized Durzog, - [171401] = getItempackString("alchemist"), -- Stone Garden Vat, Vacant, - [171402] = getItempackString("alchemist"), -- Stone Garden Circulator, Rootbound, - [171403] = getItempackString("alchemist"), -- Stone Garden Casket, Alchemized Bloodknight, - [169117] = getItempackString("alchemist"), -- Target Bloodknight, - - [167299] = getCrownPrice(920), -- Dwarven Chandelier, Polished Braced, - [167301] = getCrownPrice(560), -- Dwarven Lamppost, Polished Powered, - [167300] = getCrownPrice(160), -- Dwarven Lantern, Polished Wall, - [167298] = getCrownPrice(310), -- Dwarven Sconce, Polished Barred, + [167935] = strCrate("potentate"), -- Dwarven Work Lamp, Powered Floor, + [167934] = strCrate("potentate"), -- Dwarven Orrery, Scholastic, + [167933] = strCrate("potentate"), -- Dwarven Beam Emitter, Medium, + + [171397] = strPack("alchemist"), -- Stone Garden Tank, Vacant, + [171398] = strPack("alchemist"), -- Stone Garden Vat, Alchemized Bristleback, + [171399] = strPack("alchemist"), -- Stone Garden Vat, Alchemized Chaurus, + [171400] = strPack("alchemist"), -- Stone Garden Vat, Alchemized Durzog, + [171401] = strPack("alchemist"), -- Stone Garden Vat, Vacant, + [171402] = strPack("alchemist"), -- Stone Garden Circulator, Rootbound, + [171403] = strPack("alchemist"), -- Stone Garden Casket, Alchemized Bloodknight, + [169117] = strPack("alchemist"), -- Target Bloodknight, + + [167299] = strCrown(920), -- Dwarven Chandelier, Polished Braced, + [167301] = strCrown(560), -- Dwarven Lamppost, Polished Powered, + [167300] = strCrown(160), -- Dwarven Lantern, Polished Wall, + [167298] = strCrown(310), -- Dwarven Sconce, Polished Barred, }, } -- 16 Stonethorn FurC.MiscItemSources[ver.STONET] = { [src.CROWN] = { - [119587] = getCrownPrice(10), -- Auridon Coneplants, Cluster - [118347] = getCrownPrice(20), -- Bread, Various Loaves - [118344] = getCrownPrice(20), -- Breads, Assortment - [118287] = getCrownPrice(85), -- Carcass, Brown Hare - [118282] = getCrownPrice(85), -- Carcass, Fresh Goose - [118162] = getCrownPrice(340), -- Carpet of the Desert Flame, Faded - [118167] = getCrownPrice(340), -- Carpet of the Desert Flame, Faded - [118166] = getCrownPrice(340), -- Carpet of the Desert, Faded - [118161] = getCrownPrice(340), -- Carpet of the Mirage, Faded - [118159] = getCrownPrice(340), -- Carpet of the Oasis, Faded - [118158] = getCrownPrice(340), -- Carpet of the Sun, Faded Summer - [118043] = getCrownPrice(25), -- Common Torch, Holder - [118261] = getCrownPrice(25), -- Cushion, Faded Yellow - [118260] = getCrownPrice(25), -- Cushion, Faded Blue - [118259] = getCrownPrice(25), -- Cushion, Faded Red - [94091] = getCrownPrice(95), -- Imperial Carpet, Akatosh - [94092] = getCrownPrice(95), -- Imperial Carpet, Kyne - [94093] = getCrownPrice(95), -- Imperial Carpet, Stendarr - [94094] = getCrownPrice(140), -- Imperial Banner, Akatosh - [94095] = getCrownPrice(140), -- Imperial Banner, Kyne - [94096] = getCrownPrice(140), -- Imperial Banner, Stendarr - [94097] = getCrownPrice(95), -- Imperial Bed, Bunk - [94099] = getCrownPrice(60), -- Imperial Dresser, Short - [94101] = getCrownPrice(45), -- Imperial Chair, Slatted - [94102] = getCrownPrice(120), -- Imperial Rack, Cask - [94103] = getCrownPrice(60), -- Imperial Dresser, Open - [94104] = getCrownPrice(40), -- Imperial Stool, Sturdy - [94105] = getCrownPrice(95), -- Imperial Table, Family - [94106] = getCrownPrice(95), -- Imperial Desk, Sturdy - [94107] = getCrownPrice(50), -- Imperial Table, Common - [94108] = getCrownPrice(50), -- Imperial Shelf, Wall - [94109] = getCrownPrice(50), -- Imperial Lantern, Wall - [94110] = getCrownPrice(110), -- Imperial Lightpost, Stone - [94111] = getCrownPrice(95), -- Imperial Well, Grated - [94112] = getCrownPrice(70), -- Imperial Pedestal, Stone - [94113] = getCrownPrice(70), -- Imperial Basin, Stone - [94114] = getCrownPrice(430), -- Imperial Statue, Monolith - [94115] = getCrownPrice(430), -- Imperial Statue, Obelisk - [94117] = getCrownPrice(220), -- Imperial Rug, Akatosh - [94118] = getCrownPrice(220), -- Imperial Rug, Kynareth - [94119] = getCrownPrice(220), -- Imperial Rug, Stars - [94120] = getCrownPrice(220), -- Imperial Rug, Stendarr - [94129] = getCrownPrice(220), -- Imperial Tapestry, Akatosh - [94130] = getCrownPrice(220), -- Imperial Tapestry, Kynareth - [94131] = getCrownPrice(220), -- Imperial Tapestry, Stendarr - [94132] = getCrownPrice(150), -- Imperial Brazier, Firepot - [94133] = getCrownPrice(220), -- Imperial Bed, Four-Poster - [94134] = getCrownPrice(220), -- Imperial Bed, Double - [94135] = getCrownPrice(160), -- Imperial Pew, Windowed - [94136] = getCrownPrice(160), -- Imperial Bench, Fitted - [94137] = getCrownPrice(110), -- Imperial Bookcase, Scrollwork - [94138] = getCrownPrice(100), -- Imperial Chair, Rocking - [94139] = getCrownPrice(100), -- Imperial Chair, Windowed - [94140] = getCrownPrice(85), -- Imperial Chest, Sturdy - [94141] = getCrownPrice(120), -- Imperial Hutch, Scrollwork - [94142] = getCrownPrice(120), -- Imperial Cupboard, Scrollwork - [94143] = getCrownPrice(180), -- Imperial Chest of Drawers - [94144] = getCrownPrice(220), -- Imperial Counter, Long Cabinet - [94145] = getCrownPrice(110), -- Imperial Shelf, Barrel - [94146] = getCrownPrice(220), -- Imperial Desk, Swirled - [94147] = getCrownPrice(220), -- Imperial Table, Dining - [94148] = getCrownPrice(220), -- Imperial Trestle, Sturdy - [94149] = getCrownPrice(85), -- Imperial Table, Game - [94150] = getCrownPrice(220), -- Imperial Table, Kitchen - [94151] = getCrownPrice(240), -- Imperial Lightpost, Pair - [94152] = getCrownPrice(240), -- Imperial Lightpost, Single - [94153] = getCrownPrice(220), -- Imperial Well, Arched - [94154] = getCrownPrice(160), -- Imperial Basin, Heavy - [94155] = getCrownPrice(1000), -- Imperial Tent, Commander's - [94156] = getCrownPrice(290), -- Imperial Brazier, Caged - [94157] = getCrownPrice(410), -- Imperial Medallion, Crest - [94158] = getCrownPrice(410), -- Imperial Tapestry, Stars - [94159] = getCrownPrice(450), -- Imperial Streetlight, Imperial City - [94161] = getCrownPrice(310), -- Imperial Pedestal, Chiseled - [94162] = getCrownPrice(290), -- Imperial Pew, Scrollwork - [94163] = getCrownPrice(290), -- Imperial Bench, Scrollwork - [94164] = getCrownPrice(220), -- Imperial Sideboard, Scrollwork - [94165] = getCrownPrice(200), -- Imperial Chair, Scrollwork - [94166] = getCrownPrice(220), -- Imperial Armchair, Scrollwork - [94167] = getCrownPrice(220), -- Imperial Cabinet, Scrollwork - [94168] = getCrownPrice(220), -- Imperial Curio, Scrollwork - [94169] = getCrownPrice(160), -- Imperial Coffer, Scrollwork - [94170] = getCrownPrice(270), -- Imperial Dresser, Scrollwork - [94171] = getCrownPrice(240), -- Imperial Counter, Corner - [94172] = getCrownPrice(490), -- Imperial Bar, Cabinet - [94173] = getCrownPrice(200), -- Imperial Mirror, Standing - [94174] = getCrownPrice(120), -- Imperial Nightstand, Scrollwork - [94175] = getCrownPrice(200), -- Imperial Divider, Folding - [94176] = getCrownPrice(200), -- Imperial Divider, Curved - [94177] = getCrownPrice(170), -- Imperial Stool, Padded - [94178] = getCrownPrice(410), -- Imperial Desk, Scrollwork - [94179] = getCrownPrice(410), -- Imperial Table, Formal - [94180] = getCrownPrice(410), -- Imperial Trestle, Scrollwork - [94182] = getCrownPrice(160), -- Imperial Footlocker, Scrollwork - [94183] = getCrownPrice(350), -- Imperial Wardrobe, Scrollwork - [94184] = getCrownPrice(240), -- Imperial Wine Rack, Scrollwork - [94185] = getCrownPrice(450), -- Imperial Lightpost, Full - [94187] = getCrownPrice(410), -- Imperial Well, Covered - [94188] = getCrownPrice(410), -- Imperial Carpet, Gilded Dibella - [94189] = getCrownPrice(410), -- Imperial Carpet, Verdant Dibella - [94190] = getCrownPrice(410), -- Imperial Rug, Dibella - [94191] = getCrownPrice(410), -- Imperial Tapestry, Dibella - [94192] = getCrownPrice(610), -- Imperial Banner, Dibella - [94193] = getCrownPrice(410), -- Imperial Pillar, Straight - [94194] = getCrownPrice(410), -- Imperial Pillar, Chipped - [94195] = getCrownPrice(410), -- Imperial Bed, Canopy - [94196] = getCrownPrice(410), -- Imperial Cradle, Scrollwork - [94197] = getCrownPrice(610), -- Imperial Shrine of the Bay - [94198] = getCrownPrice(610), -- Imperial Altar of the Bay - [94200] = getCrownPrice(1000), -- Imperial Fountain of the Bay - [94201] = getCrownPrice(820), -- Imperial Statue, Knight - [94202] = getCrownPrice(820), -- Imperial Statue, Emperor - [94203] = getCrownPrice(820), -- Imperial Statue, Warrior - [118160] = getCrownPrice(340), -- Mat of Meditation, Faded - [118164] = getCrownPrice(340), -- Mat of the Sunset, Faded - [118163] = getCrownPrice(340), -- Mat of the Oasis, Faded - [118165] = getCrownPrice(340), -- Mat of the Sunrise, Faded - [115421] = getCrownPrice(110), -- Nord Sconce, Torch - [118244] = getCrownPrice(340), -- Orc Rug, Echatere Skin - [118131] = getCrownPrice(180), -- Pelt, Bear - [118107] = getCrownPrice(40), -- Pie, Display - - [119685] = getScamboxString("wildhunt"), -- Tapestry of Hircine - [119684] = getScamboxString("wildhunt"), -- Statue of Hircine + [119587] = strCrown(10), -- Auridon Coneplants, Cluster + [118347] = strCrown(20), -- Bread, Various Loaves + [118344] = strCrown(20), -- Breads, Assortment + [118287] = strCrown(85), -- Carcass, Brown Hare + [118282] = strCrown(85), -- Carcass, Fresh Goose + [118162] = strCrown(340), -- Carpet of the Desert Flame, Faded + [118167] = strCrown(340), -- Carpet of the Desert Flame, Faded + [118166] = strCrown(340), -- Carpet of the Desert, Faded + [118161] = strCrown(340), -- Carpet of the Mirage, Faded + [118159] = strCrown(340), -- Carpet of the Oasis, Faded + [118158] = strCrown(340), -- Carpet of the Sun, Faded Summer + [118043] = strCrown(25), -- Common Torch, Holder + [118261] = strCrown(25), -- Cushion, Faded Yellow + [118260] = strCrown(25), -- Cushion, Faded Blue + [118259] = strCrown(25), -- Cushion, Faded Red + [94091] = strCrown(95), -- Imperial Carpet, Akatosh + [94092] = strCrown(95), -- Imperial Carpet, Kyne + [94093] = strCrown(95), -- Imperial Carpet, Stendarr + [94094] = strCrown(140), -- Imperial Banner, Akatosh + [94095] = strCrown(140), -- Imperial Banner, Kyne + [94096] = strCrown(140), -- Imperial Banner, Stendarr + [94097] = strCrown(95), -- Imperial Bed, Bunk + [94099] = strCrown(60), -- Imperial Dresser, Short + [94101] = strCrown(45), -- Imperial Chair, Slatted + [94102] = strCrown(120), -- Imperial Rack, Cask + [94103] = strCrown(60), -- Imperial Dresser, Open + [94104] = strCrown(40), -- Imperial Stool, Sturdy + [94105] = strCrown(95), -- Imperial Table, Family + [94106] = strCrown(95), -- Imperial Desk, Sturdy + [94107] = strCrown(50), -- Imperial Table, Common + [94108] = strCrown(50), -- Imperial Shelf, Wall + [94109] = strCrown(50), -- Imperial Lantern, Wall + [94110] = strCrown(110), -- Imperial Lightpost, Stone + [94111] = strCrown(95), -- Imperial Well, Grated + [94112] = strCrown(70), -- Imperial Pedestal, Stone + [94113] = strCrown(70), -- Imperial Basin, Stone + [94114] = strCrown(430), -- Imperial Statue, Monolith + [94115] = strCrown(430), -- Imperial Statue, Obelisk + [94117] = strCrown(220), -- Imperial Rug, Akatosh + [94118] = strCrown(220), -- Imperial Rug, Kynareth + [94119] = strCrown(220), -- Imperial Rug, Stars + [94120] = strCrown(220), -- Imperial Rug, Stendarr + [94129] = strCrown(220), -- Imperial Tapestry, Akatosh + [94130] = strCrown(220), -- Imperial Tapestry, Kynareth + [94131] = strCrown(220), -- Imperial Tapestry, Stendarr + [94132] = strCrown(150), -- Imperial Brazier, Firepot + [94133] = strCrown(220), -- Imperial Bed, Four-Poster + [94134] = strCrown(220), -- Imperial Bed, Double + [94135] = strCrown(160), -- Imperial Pew, Windowed + [94136] = strCrown(160), -- Imperial Bench, Fitted + [94137] = strCrown(110), -- Imperial Bookcase, Scrollwork + [94138] = strCrown(100), -- Imperial Chair, Rocking + [94139] = strCrown(100), -- Imperial Chair, Windowed + [94140] = strCrown(85), -- Imperial Chest, Sturdy + [94141] = strCrown(120), -- Imperial Hutch, Scrollwork + [94142] = strCrown(120), -- Imperial Cupboard, Scrollwork + [94143] = strCrown(180), -- Imperial Chest of Drawers + [94144] = strCrown(220), -- Imperial Counter, Long Cabinet + [94145] = strCrown(110), -- Imperial Shelf, Barrel + [94146] = strCrown(220), -- Imperial Desk, Swirled + [94147] = strCrown(220), -- Imperial Table, Dining + [94148] = strCrown(220), -- Imperial Trestle, Sturdy + [94149] = strCrown(85), -- Imperial Table, Game + [94150] = strCrown(220), -- Imperial Table, Kitchen + [94151] = strCrown(240), -- Imperial Lightpost, Pair + [94152] = strCrown(240), -- Imperial Lightpost, Single + [94153] = strCrown(220), -- Imperial Well, Arched + [94154] = strCrown(160), -- Imperial Basin, Heavy + [94155] = strCrown(1000), -- Imperial Tent, Commander's + [94156] = strCrown(290), -- Imperial Brazier, Caged + [94157] = strCrown(410), -- Imperial Medallion, Crest + [94158] = strCrown(410), -- Imperial Tapestry, Stars + [94159] = strCrown(450), -- Imperial Streetlight, Imperial City + [94161] = strCrown(310), -- Imperial Pedestal, Chiseled + [94162] = strCrown(290), -- Imperial Pew, Scrollwork + [94163] = strCrown(290), -- Imperial Bench, Scrollwork + [94164] = strCrown(220), -- Imperial Sideboard, Scrollwork + [94165] = strCrown(200), -- Imperial Chair, Scrollwork + [94166] = strCrown(220), -- Imperial Armchair, Scrollwork + [94167] = strCrown(220), -- Imperial Cabinet, Scrollwork + [94168] = strCrown(220), -- Imperial Curio, Scrollwork + [94169] = strCrown(160), -- Imperial Coffer, Scrollwork + [94170] = strCrown(270), -- Imperial Dresser, Scrollwork + [94171] = strCrown(240), -- Imperial Counter, Corner + [94172] = strCrown(490), -- Imperial Bar, Cabinet + [94173] = strCrown(200), -- Imperial Mirror, Standing + [94174] = strCrown(120), -- Imperial Nightstand, Scrollwork + [94175] = strCrown(200), -- Imperial Divider, Folding + [94176] = strCrown(200), -- Imperial Divider, Curved + [94177] = strCrown(170), -- Imperial Stool, Padded + [94178] = strCrown(410), -- Imperial Desk, Scrollwork + [94179] = strCrown(410), -- Imperial Table, Formal + [94180] = strCrown(410), -- Imperial Trestle, Scrollwork + [94182] = strCrown(160), -- Imperial Footlocker, Scrollwork + [94183] = strCrown(350), -- Imperial Wardrobe, Scrollwork + [94184] = strCrown(240), -- Imperial Wine Rack, Scrollwork + [94185] = strCrown(450), -- Imperial Lightpost, Full + [94187] = strCrown(410), -- Imperial Well, Covered + [94188] = strCrown(410), -- Imperial Carpet, Gilded Dibella + [94189] = strCrown(410), -- Imperial Carpet, Verdant Dibella + [94190] = strCrown(410), -- Imperial Rug, Dibella + [94191] = strCrown(410), -- Imperial Tapestry, Dibella + [94192] = strCrown(610), -- Imperial Banner, Dibella + [94193] = strCrown(410), -- Imperial Pillar, Straight + [94194] = strCrown(410), -- Imperial Pillar, Chipped + [94195] = strCrown(410), -- Imperial Bed, Canopy + [94196] = strCrown(410), -- Imperial Cradle, Scrollwork + [94197] = strCrown(610), -- Imperial Shrine of the Bay + [94198] = strCrown(610), -- Imperial Altar of the Bay + [94200] = strCrown(1000), -- Imperial Fountain of the Bay + [94201] = strCrown(820), -- Imperial Statue, Knight + [94202] = strCrown(820), -- Imperial Statue, Emperor + [94203] = strCrown(820), -- Imperial Statue, Warrior + [118160] = strCrown(340), -- Mat of Meditation, Faded + [118164] = strCrown(340), -- Mat of the Sunset, Faded + [118163] = strCrown(340), -- Mat of the Oasis, Faded + [118165] = strCrown(340), -- Mat of the Sunrise, Faded + [115421] = strCrown(110), -- Nord Sconce, Torch + [118244] = strCrown(340), -- Orc Rug, Echatere Skin + [118131] = strCrown(180), -- Pelt, Bear + [118107] = strCrown(40), -- Pie, Display + + [119685] = strCrate("wildhunt"), -- Tapestry of Hircine + [119684] = strCrate("wildhunt"), -- Statue of Hircine }, [src.DROP] = { @@ -1306,28 +1314,28 @@ FurC.MiscItemSources[ver.SKYRIM] = { }, [src.CROWN] = { - [153675] = getCrownPrice(200), -- Daedric Altar, Four Alcoves - [153676] = getCrownPrice(270), -- Daedric Sarcophagus, Stone - [159462] = getCrownPrice(170), -- Redguard Fence, Wooden - [166452] = getCrownPrice(440), -- Vampiric Column, Ancient - [166044] = getCrownPrice(90), -- Watering Trough, Full - [159460] = getCrownPrice(310), -- Tree, Slim Wrothgar Pine - [159461] = getCrownPrice(30), -- Shrubs, Desert Scrub - [159496] = getCrownPrice(240), -- Tree, Ancient Bristlecone - [159456] = getCrownPrice(410), -- Orsinium Well, Open - [159457] = getCrownPrice(170), -- Tree, Dagger Bark - [159458] = getCrownPrice(310), -- Tree, Broad Wrothgar Pine - [159459] = getCrownPrice(310), -- Trees, Paired Wrothgar Pine - - [167332] = join({ getScamboxString("sovngarde"), getGemPrice(40) }, ", "), -- The Mage's Staff Painting, Gold - [167231] = join({ getScamboxString("sovngarde"), getGemPrice(100) }, ", "), -- Celestial Nimbus - [167230] = join({ getScamboxString("sovngarde"), getGemPrice(100) }, ", "), -- Alkosh's Hourglass, Replica - [166030] = getScamboxString("nightfall"), -- Greymoor Tapestry, Harrowstorm - [166029] = getScamboxString("nightfall"), -- Vampiric Fountain, Bat Swarm - [165568] = getScamboxString("nightfall"), -- Ancient Nord Gate - [156669] = getScamboxString("frosty"), -- Target Frost Atronach - [153650] = getScamboxString("newmoon"), -- Crystal Sconce, Green, - [153631] = getScamboxString("newmoon"), -- Emerald Candlefly Gathering + [153675] = strCrown(200), -- Daedric Altar, Four Alcoves + [153676] = strCrown(270), -- Daedric Sarcophagus, Stone + [159462] = strCrown(170), -- Redguard Fence, Wooden + [166452] = strCrown(440), -- Vampiric Column, Ancient + [166044] = strCrown(90), -- Watering Trough, Full + [159460] = strCrown(310), -- Tree, Slim Wrothgar Pine + [159461] = strCrown(30), -- Shrubs, Desert Scrub + [159496] = strCrown(240), -- Tree, Ancient Bristlecone + [159456] = strCrown(410), -- Orsinium Well, Open + [159457] = strCrown(170), -- Tree, Dagger Bark + [159458] = strCrown(310), -- Tree, Broad Wrothgar Pine + [159459] = strCrown(310), -- Trees, Paired Wrothgar Pine + + [167332] = join({ strCrate("sovngarde"), strGem(40) }, ", "), -- The Mage's Staff Painting, Gold + [167231] = join({ strCrate("sovngarde"), strGem(100) }, ", "), -- Celestial Nimbus + [167230] = join({ strCrate("sovngarde"), strGem(100) }, ", "), -- Alkosh's Hourglass, Replica + [166030] = strCrate("nightfall"), -- Greymoor Tapestry, Harrowstorm + [166029] = strCrate("nightfall"), -- Vampiric Fountain, Bat Swarm + [165568] = strCrate("nightfall"), -- Ancient Nord Gate + [156669] = strCrate("frosty"), -- Target Frost Atronach + [153650] = strCrate("newmoon"), -- Crystal Sconce, Green, + [153631] = strCrate("newmoon"), -- Emerald Candlefly Gathering }, [src.FISHING] = {}, @@ -1371,71 +1379,71 @@ FurC.MiscItemSources[ver.KITTY] = { }, [src.CROWN] = { - [151838] = getItempackString("oasis"), -- Elsweyr Fountain, Moons-Blessed, - [151840] = join({ getCrownPrice(70), getItempackString("oasis") }), -- Plant, Desert Fan, - [151841] = join({ getCrownPrice(70), getItempackString("oasis") }), -- Plant, Tall Desert Fan, - [151842] = join({ getCrownPrice(20), getItempackString("oasis") }), -- Plant, Cask Palm, - [151843] = join({ getCrownPrice(45), getItempackString("oasis") }), -- Cactus, Flowering Cluster, - [151844] = join({ getCrownPrice(30), getItempackString("oasis") }), -- Cactus, Bilberry, - [151845] = join({ getCrownPrice(95), getItempackString("oasis") }), -- Elsweyr Potted Cactus, Flowering, - [151846] = join({ getCrownPrice(35), getItempackString("oasis"), getItempackString("mermaid") }), -- Elsweyr Potted Plant, Cask Palm, - [151835] = getItempackString("oasis"), -- Cathay-Raht Statue, Warrior, - [151836] = getItempackString("oasis"), -- Tojay Statue, Dancer, - [151837] = getItempackString("oasis"), -- Ohmes-Raht Statue, Trickster, - [151847] = join({ getCrownPrice(20), getItempackString("oasis") }), -- Plant, Flowering Desert Aloe, - [151848] = join({ getCrownPrice(15), getItempackString("oasis") }), -- Trees, Sunset Palm Cluster, - [151849] = join({ getCrownPrice(45), getItempackString("oasis") }), -- Cactus, Lily Flower, - [151850] = join({ getCrownPrice(20), getItempackString("oasis") }), -- Tree, Anequina Bonsai, - [151834] = join({ getCrownPrice(90), getItempackString("oasis") }), -- Tree, Desert Acacia Shade, - - [151906] = getItempackString("moonbishop"), -- Robust Target Dro-m'Athra, - [151829] = getItempackString("moonbishop"), -- Suthay Statue, Nimble Bishop, - [151824] = getItempackString("moonbishop"), -- Lunar Tapestry, The Open Path, - [151825] = getItempackString("moonbishop"), -- Lunar Tapestry, The Gathering, - [151826] = getItempackString("moonbishop"), -- Lunar Tapestry, The Dance, - [151827] = getItempackString("moonbishop"), -- Lunar Tapestry, The Gate, - [151828] = getItempackString("moonbishop"), -- Lunar Tapestry, The Demon, - [151830] = join({ getCrownPrice(190), getItempackString("moonbishop") }), -- Elsweyr Divider, Elegant Wooden, - [151832] = join({ getCrownPrice(100), getItempackString("moonbishop") }), -- Elsweyr Ceremonial Lantern, Jone, - [151833] = join({ getCrownPrice(100), getItempackString("moonbishop") }), -- Elsweyr Ceremonial Lantern, Jode, - - [165578] = getItempackString("vampire"), -- Basin of Loss - [165569] = getItempackString("vampire"), -- Soul-Sworn Thrall - - [151808] = getCrownPrice(10), -- Tree, Fan Palm, - [151813] = getCrownPrice(10), -- Sapling, Desert Acacia, - [151816] = getCrownPrice(10), -- Plant, Flowering Thorned Succulent, - [151820] = getCrownPrice(10), -- Desert Grass, Tall, - [151821] = getCrownPrice(15), -- Desert Grass, Patch, - [151831] = getCrownPrice(290), -- Elsweyr Sugar Pipe, Ceremonial, - [151857] = getCrownPrice(150), -- Elsweyr Gazebo, Ancient Stone, - [151867] = getCrownPrice(340), -- Hakoshae Lanterns, Festival, - [151868] = getCrownPrice(180), -- Hakoshae Banners, Festival, - [151869] = getCrownPrice(300), -- Elsweyr Wagon, Covered, - [151870] = getCrownPrice(560), -- Elsweyr Wagon, Pedlar, - [151871] = getCrownPrice(300), -- Elsweyr Dais, Temple, - [151874] = getCrownPrice(300), -- Elsweyr Shrine, Ancient Stone, - [151875] = getCrownPrice(560), -- Elsweyr Bridge, Ancient Stone, - [151876] = getCrownPrice(590), -- Elsweyr Tent, Caravan, - [151877] = getCrownPrice(590), -- Elsweyr Canopy, Bazaar, - [151878] = getCrownPrice(450), -- Elsweyr Canopy, Peaked, - [151883] = getCrownPrice(240), -- Tree, Towering Iroko, - [151905] = getCrownPrice(10), -- Rock, Wide Flat Slate, - [151911] = getCrownPrice(5), -- Rock, Flat Slate, - [151912] = getCrownPrice(10), -- Stepping Stones, Slate, - [151914] = getCrownPrice(25), -- Tree, Desert Acacia Tall, - [151804] = getCrownPrice(30), -- Elsweyr Pillar, Rough Wooden, - [151807] = getCrownPrice(5), -- Rock Field, Ancient Stone, - [151884] = getCrownPrice(310), -- Tree, Giant Ficus, - [151885] = getCrownPrice(310), -- Tree, Massive Ficus, - [151872] = getCrownPrice(110), -- Boulder, Towering Lunar Spire, - [151873] = getCrownPrice(50), -- Boulder, Lunar Crag, - [151879] = getCrownPrice(560), -- Cactus, Lunar Tendrils, - [151880] = getCrownPrice(640), -- Cactus, Lunar Branching, - [151881] = getCrownPrice(640), -- Cactus, Lunar Branching Tall, - [151882] = getCrownPrice(140), -- Cactus, Banded Lunar Violet Trio, - [151904] = getCrownPrice(370), -- Glowgrass, Patch, - [151913] = getCrownPrice(5), -- Rock, Slate, + [151838] = strPack("oasis"), -- Elsweyr Fountain, Moons-Blessed, + [151840] = join({ strCrown(70), strPack("oasis") }), -- Plant, Desert Fan, + [151841] = join({ strCrown(70), strPack("oasis") }), -- Plant, Tall Desert Fan, + [151842] = join({ strCrown(20), strPack("oasis") }), -- Plant, Cask Palm, + [151843] = join({ strCrown(45), strPack("oasis") }), -- Cactus, Flowering Cluster, + [151844] = join({ strCrown(30), strPack("oasis") }), -- Cactus, Bilberry, + [151845] = join({ strCrown(95), strPack("oasis") }), -- Elsweyr Potted Cactus, Flowering, + [151846] = join({ strCrown(35), strPack("oasis"), strPack("mermaid") }), -- Elsweyr Potted Plant, Cask Palm, + [151835] = strPack("oasis"), -- Cathay-Raht Statue, Warrior, + [151836] = strPack("oasis"), -- Tojay Statue, Dancer, + [151837] = strPack("oasis"), -- Ohmes-Raht Statue, Trickster, + [151847] = join({ strCrown(20), strPack("oasis") }), -- Plant, Flowering Desert Aloe, + [151848] = join({ strCrown(15), strPack("oasis") }), -- Trees, Sunset Palm Cluster, + [151849] = join({ strCrown(45), strPack("oasis") }), -- Cactus, Lily Flower, + [151850] = join({ strCrown(20), strPack("oasis") }), -- Tree, Anequina Bonsai, + [151834] = join({ strCrown(90), strPack("oasis") }), -- Tree, Desert Acacia Shade, + + [151906] = strPack("moonbishop"), -- Robust Target Dro-m'Athra, + [151829] = strPack("moonbishop"), -- Suthay Statue, Nimble Bishop, + [151824] = strPack("moonbishop"), -- Lunar Tapestry, The Open Path, + [151825] = strPack("moonbishop"), -- Lunar Tapestry, The Gathering, + [151826] = strPack("moonbishop"), -- Lunar Tapestry, The Dance, + [151827] = strPack("moonbishop"), -- Lunar Tapestry, The Gate, + [151828] = strPack("moonbishop"), -- Lunar Tapestry, The Demon, + [151830] = join({ strCrown(190), strPack("moonbishop") }), -- Elsweyr Divider, Elegant Wooden, + [151832] = join({ strCrown(100), strPack("moonbishop") }), -- Elsweyr Ceremonial Lantern, Jone, + [151833] = join({ strCrown(100), strPack("moonbishop") }), -- Elsweyr Ceremonial Lantern, Jode, + + [165578] = strPack("vampire"), -- Basin of Loss + [165569] = strPack("vampire"), -- Soul-Sworn Thrall + + [151808] = strCrown(10), -- Tree, Fan Palm, + [151813] = strCrown(10), -- Sapling, Desert Acacia, + [151816] = strCrown(10), -- Plant, Flowering Thorned Succulent, + [151820] = strCrown(10), -- Desert Grass, Tall, + [151821] = strCrown(15), -- Desert Grass, Patch, + [151831] = strCrown(290), -- Elsweyr Sugar Pipe, Ceremonial, + [151857] = strCrown(150), -- Elsweyr Gazebo, Ancient Stone, + [151867] = strCrown(340), -- Hakoshae Lanterns, Festival, + [151868] = strCrown(180), -- Hakoshae Banners, Festival, + [151869] = strCrown(300), -- Elsweyr Wagon, Covered, + [151870] = strCrown(560), -- Elsweyr Wagon, Pedlar, + [151871] = strCrown(300), -- Elsweyr Dais, Temple, + [151874] = strCrown(300), -- Elsweyr Shrine, Ancient Stone, + [151875] = strCrown(560), -- Elsweyr Bridge, Ancient Stone, + [151876] = strCrown(590), -- Elsweyr Tent, Caravan, + [151877] = strCrown(590), -- Elsweyr Canopy, Bazaar, + [151878] = strCrown(450), -- Elsweyr Canopy, Peaked, + [151883] = strCrown(240), -- Tree, Towering Iroko, + [151905] = strCrown(10), -- Rock, Wide Flat Slate, + [151911] = strCrown(5), -- Rock, Flat Slate, + [151912] = strCrown(10), -- Stepping Stones, Slate, + [151914] = strCrown(25), -- Tree, Desert Acacia Tall, + [151804] = strCrown(30), -- Elsweyr Pillar, Rough Wooden, + [151807] = strCrown(5), -- Rock Field, Ancient Stone, + [151884] = strCrown(310), -- Tree, Giant Ficus, + [151885] = strCrown(310), -- Tree, Massive Ficus, + [151872] = strCrown(110), -- Boulder, Towering Lunar Spire, + [151873] = strCrown(50), -- Boulder, Lunar Crag, + [151879] = strCrown(560), -- Cactus, Lunar Tendrils, + [151880] = strCrown(640), -- Cactus, Lunar Branching, + [151881] = strCrown(640), -- Cactus, Lunar Branching Tall, + [151882] = strCrown(140), -- Cactus, Banded Lunar Violet Trio, + [151904] = strCrown(370), -- Glowgrass, Patch, + [151913] = strCrown(5), -- Rock, Slate, [152145] = mischouse .. " or Craftable", -- Orcish Tapestry, War, CRAFTABLE [152149] = mischouse .. " or Craftable", -- Orcish Brazier, Pillar, CRAFTABLE @@ -1446,13 +1454,13 @@ FurC.MiscItemSources[ver.KITTY] = { [152143] = mischouse .. " or Craftable", -- Orcish Sconce, Scrolled, CRAFTABLE [152142] = mischouse .. " or Craftable", -- Orcish Sconce, Bordered, CRAFTABLE - [159438] = getScamboxString("gloomspore"), -- Fungus, Gloomspore Ghost - [159437] = getScamboxString("gloomspore"), -- Painting of Blackreach, Rough - [159436] = getScamboxString("gloomspore"), -- Dwarven Miniature Sun, Portable - [153630] = join({ getScamboxString("newmoon"), " (55 gems)" }), -- Shadow Tendril Patch - [151612] = getScamboxString("baandari"), -- Pile of Dubious Riches, - [151611] = getScamboxString("baandari"), -- The Mane, Moons-Blessed, - [151589] = getScamboxString("baandari"), -- Baandari Lunar Compass, + [159438] = strCrate("gloomspore"), -- Fungus, Gloomspore Ghost + [159437] = strCrate("gloomspore"), -- Painting of Blackreach, Rough + [159436] = strCrate("gloomspore"), -- Dwarven Miniature Sun, Portable + [153630] = join({ strCrate("newmoon"), " (55 gems)" }), -- Shadow Tendril Patch + [151612] = strCrate("baandari"), -- Pile of Dubious Riches, + [151611] = strCrate("baandari"), -- The Mane, Moons-Blessed, + [151589] = strCrate("baandari"), -- Baandari Lunar Compass, }, [src.FISHING] = {}, @@ -1461,9 +1469,9 @@ FurC.MiscItemSources[ver.KITTY] = { -- 10 Wrathstone FurC.MiscItemSources[ver.WOTL] = { [src.CROWN] = { - [147600] = getScamboxString("dragonscale"), -- Tapestry of Namira, - [147599] = getScamboxString("dragonscale"), -- Banner of Namira, - [147591] = getScamboxString("dragonscale"), -- Namira, Mistress of Decay, + [147600] = strCrate("dragonscale"), -- Tapestry of Namira, + [147599] = strCrate("dragonscale"), -- Banner of Namira, + [147591] = strCrate("dragonscale"), -- Namira, Mistress of Decay, }, } @@ -1491,151 +1499,151 @@ FurC.MiscItemSources[ver.WEREWOLF] = { }, [src.CROWN] = { - [141836] = getCrownPrice(170), -- Monolith, Lord Hircine Ritual - [141843] = getCrownPrice(30), -- Plants, Yellow Frond Cluster - [125681] = getCrownPrice(50), -- Vines, Volcanic Roses - [134921] = getCrownPrice(520), -- Redguard Lamppost, Stone - [134922] = getCrownPrice(250), -- Redguard Pillar, Tiered - [134923] = getCrownPrice(2000), -- Redguard Trellis, Peaked - [134924] = getCrownPrice(380), -- Redguard Fence, Brass Capped - [134925] = getCrownPrice(2200), -- Redguard Fountain, Pillar - [134926] = getCrownPrice(1200), -- Redguard Awning, Wall - [134927] = getCrownPrice(1200), -- Wedding Pergola, Double - [134928] = getCrownPrice(1200), -- Wedding Pergola, Triple - [134929] = getCrownPrice(45), -- Trees, Savanna Cluster - [134930] = getCrownPrice(30), -- Bushes, Swordgrass Cluster - [134931] = getCrownPrice(50), -- Boulder, Weathered Desert - [134932] = getCrownPrice(50), -- Boulder, Tiered Desert - [134933] = getCrownPrice(90), -- Cranium, Jawless - [134934] = getCrownPrice(10), -- Rocks, Basalt Chunks - [134936] = getCrownPrice(110), -- Cave Deposit, Tall Stalagmite Cluster - [134938] = getCrownPrice(110), -- Cave Deposit, Stalagmite Group - [134945] = getCrownPrice(200), -- Cave Deposit, Extended Spire - [134973] = getCrownPrice(200), -- Cave Deposit, Stalactite Cone Cluster - [134939] = getCrownPrice(110), -- Cave Deposit, Stalactite Cone - [134941] = getCrownPrice(110), -- Cave Deposit, Spire - [120603] = getCrownPrice(20), -- Boulder, Flat Mossy - [120604] = getCrownPrice(20), -- Rock, Slanted Mossy - [120605] = getCrownPrice(20), -- Rocks, Deep Mossy - [120606] = getCrownPrice(20), -- Stones, Mossy Cluster - [134943] = getCrownPrice(1000), -- Brotherhood Banner, Long - [134944] = getCrownPrice(340), -- Brotherhood Column, Tall Ornate - [134946] = getCrownPrice(340), -- Brotherhood Column, Ornate - [120612] = getCrownPrice(10), -- Plant, Tall Mammoth Ear - [120613] = getCrownPrice(10), -- Plant, Towering Mammoth Ear - [120614] = getCrownPrice(10), -- Plant Cluster, Jungle Leaf - [134951] = getCrownPrice(30), -- Mushrooms, Assorted Cluster - [134952] = getCrownPrice(30), -- Mushrooms, Sporous Browncap - [134953] = getCrownPrice(340), -- Brotherhood Carpet, Large Worn - [126774] = getCrownPrice(510), -- Dres Tapestry, House - [126775] = getCrownPrice(510), -- Hlaalu Tapestry, House - [126777] = getCrownPrice(510), -- Redoran Tapestry, House - [126778] = getCrownPrice(510), -- Telvanni Tapestry, House - [134974] = getCrownPrice(340), -- Brotherhood Carpet, Worn - [126830] = getCrownPrice(10), -- Mushrooms, Volcanic Cluster - [120631] = getCrownPrice(5), -- Pebble, Stacked Mossy - [134330] = getCrownPrice(490), -- Clockwork Control Panel, Double - [134337] = getCrownPrice(1800), -- Clockwork Somnolostation, Octet - [121036] = getCrownPrice(30), -- Shrub, Sparse Violet - [121035] = getCrownPrice(30), -- Plant, Paired Verdant Hosta - [121034] = getCrownPrice(10), -- Shrub, Delicate Forest - [121032] = getCrownPrice(25), -- Saplings, Young Laurel - [121031] = getCrownPrice(45), -- Topiary, Paired Cypress - [121030] = getCrownPrice(54), -- Topiary, Young Cypress - [121029] = getCrownPrice(45), -- Topiary, Strong Cypress - [120709] = getCrownPrice(70), -- Tree, Sturdy Young Birch - [121026] = getCrownPrice(45), -- Hedge, Dense High Wall - [121025] = getCrownPrice(70), -- Trees, Sprawling Juniper Cluster - [121024] = getCrownPrice(70), -- Trees, Paired Leaning Juniper - [121021] = getCrownPrice(10), -- Plants, Dry Underbrush - [121020] = getCrownPrice(10), -- Plants, Sparse Underbrush - [121018] = getCrownPrice(10), -- Plant, Forest Sprig - [121014] = getCrownPrice(20), -- Topiary, Sparse - [121012] = getCrownPrice(70), -- Trees, Fragile Autumn Birch - [121009] = getCrownPrice(70), -- Tree, Young Healthy Birch - [120726] = getCrownPrice(20), -- Rock, Jagged Algae Coated - [120727] = getCrownPrice(5), -- Stone, Angled Mossy - [120728] = getCrownPrice(20), -- Rock, Jagged Lichen - [121006] = getCrownPrice(45), -- Flower Patch, Violets - [120730] = getCrownPrice(45), -- Topiary, Lush Evergreen - [120731] = getCrownPrice(25), -- Tree, Mossy Summer - [120732] = getCrownPrice(70), -- Tree, Mossy Forest - [120733] = getCrownPrice(70), -- Tree, Gnarled Forest - [120734] = getCrownPrice(25), -- Saplings, Squat Desert - [120735] = getCrownPrice(52), -- Saplings, Young Desert - [120736] = getCrownPrice(290), -- Tree, Gentle Weeping Willow - [120737] = getCrownPrice(150), -- Tree, Weeping Willow - [120738] = getCrownPrice(70), -- Tree, Towering Willow - [120743] = getCrownPrice(70), -- Tree, Strong Cypress - [120996] = getCrownPrice(120), -- Banner, Tattered Red - [120745] = getCrownPrice(60), -- Tree, Water Palm - [120483] = getCrownPrice(30), -- Cactus, Lemon Bulbs - [120748] = getCrownPrice(70), -- Tree, Leaning Swamp - [120749] = getCrownPrice(10), -- Grass, Tall Bamboo Shoots - [120750] = getCrownPrice(10), -- Grass, Drying Bamboo Shoots - [120751] = getCrownPrice(10), -- Grass, Twin Bamboo Shoots - [120752] = getCrownPrice(10), -- Grass, Young Bamboo Shoots - [120471] = getCrownPrice(25), -- Tree, Wilted Palm - [120756] = getCrownPrice(10), -- Plant, Palm Fronds - [120463] = getCrownPrice(20), -- Boulder, Weathered Flat - [120456] = getCrownPrice(5), -- Stone, Smooth Desert - [134579] = getCrownPrice(5), -- Rubble Pile, Worked Stone - [120760] = getCrownPrice(50), -- Flower, Red Honeysuckle - [125544] = getCrownPrice(30), -- Fern, Strong Dusky - [125547] = getCrownPrice(85), -- Flower, Healthy Purple Bat Bloom - [125546] = getCrownPrice(85), -- Flower Patch, Lava Blooms - [120765] = getCrownPrice(15), -- Breton Cup, Empty - [120766] = getCrownPrice(15), -- Breton Cup, Full - [134950] = getCrownPrice(31), -- Mushrooms, Flapjack Stack - [139238] = getCrownPrice(190), -- Alinor Wall Mirror, Ornate - [139239] = getCrownPrice(190), -- Alinor Wall Mirror, Verdant - [139389] = getCrownPrice(200), -- Crystal, Crimson Cluster - [139184] = getCrownPrice(200), -- Alinor Plinth, Sarcophagus - - [130093] = getItempackString("molag"), -- Coldharbour Compact - [130071] = join({ getCrownPrice(300), getItempackString("molag") }), -- Daedric Torch, Coldharbour - [130075] = join({ getCrownPrice(380), getItempackString("molag") }), -- Daedric Altar, Molag Bal - [130078] = join({ getCrownPrice(380), getItempackString("molag") }), -- Soul Gem, Single - [130079] = join({ getCrownPrice(380), getItempackString("molag") }), -- Soul Gems, Pile - [130082] = join({ getCrownPrice(640), getItempackString("molag") }), -- Soul-Shriven, Robed - [130094] = join({ getCrownPrice(140), getItempackString("molag") }), -- Daedric Chains, Hanging - [130095] = join({ getCrownPrice(640), getItempackString("molag") }), -- Daedric Torture Device, Chained - [130069] = join({ getCrownPrice(2000), getItempackString("molag") }), -- Daedric Spout, Block - [130070] = join({ getCrownPrice(2000), getItempackString("molag") }), -- Daedric Spout, Arched - [130080] = getItempackString("molag"), -- Soul Gems, Scattered - [130081] = getItempackString("molag"), -- Soul-Shriven, Armored - [130083] = getItempackString("molag"), -- Daedric Block, Seat - [130084] = getItempackString("molag"), -- Daedric Tapestry, Molag Bal - [130085] = getItempackString("molag"), -- Daedric Banner, Molag Bal - [130086] = getItempackString("molag"), -- Daedric Pennant, Molag Bal - [130089] = join({ getCrownPrice(360), getItempackString("molag") }), -- Daedric Brazier, Molag Bal - [130087] = getItempackString("molag"), -- Daedric Shards, Coldharbour - [130091] = getItempackString("molag"), -- Statue of Molag Bal, God of Schemes - [130090] = join({ getCrownPrice(310), getItempackString("molag") }), -- Daedric Sconce, Molag Bal - [130088] = getItempackString("molag"), -- Daedric Fragment, Coldharbour - [130092] = getItempackString("molag"), -- Seal of Molag Bal, Grand - - [126138] = getItempackString("dwemer"), -- A Guide to Dwemer Mega-Structures - [125516] = getItempackString("dwemer"), -- Dwarven Gear Assembly, Grinding - - [126140] = getItempackString("vivec"), -- Vivec's Grand Bed - [126141] = getItempackString("vivec"), -- Vivec's Grand Throne - [126142] = getItempackString("vivec"), -- Vivec's Divination Pool - [126143] = getItempackString("vivec"), -- Statue, Vivec's Triumph - [126144] = getItempackString("vivec"), -- Seal of Vivec - [126145] = getItempackString("vivec"), -- Sigil of Vivec - [126146] = getItempackString("vivec"), -- Banner, Vivec - [126149] = getItempackString("vivec"), -- Tapestry, Vivec - [126150] = getItempackString("vivec"), -- Tribunal Tablet of Sotha Sil - [126152] = getItempackString("vivec"), -- The Cliff-Strider Song - - [134855] = getScamboxString("scalecaller"), -- Banner of Peryite - [134854] = getScamboxString("scalecaller"), -- Tapestry of Peryite - [134853] = getScamboxString("scalecaller"), -- Peryite, The Taskmaster - [134475] = getScamboxString("fireatro"), -- Statue of Malacath, Orc-Father - [126132] = getScamboxString("string") .. " (any)", -- Resplendent Sweetroll - [125654] = getScamboxString("dwemer"), -- Tapestry, Clavicus Vile - [125480] = getScamboxString("dwemer"), -- Banner, Clavicus Vile + [141836] = strCrown(170), -- Monolith, Lord Hircine Ritual + [141843] = strCrown(30), -- Plants, Yellow Frond Cluster + [125681] = strCrown(50), -- Vines, Volcanic Roses + [134921] = strCrown(520), -- Redguard Lamppost, Stone + [134922] = strCrown(250), -- Redguard Pillar, Tiered + [134923] = strCrown(2000), -- Redguard Trellis, Peaked + [134924] = strCrown(380), -- Redguard Fence, Brass Capped + [134925] = strCrown(2200), -- Redguard Fountain, Pillar + [134926] = strCrown(1200), -- Redguard Awning, Wall + [134927] = strCrown(1200), -- Wedding Pergola, Double + [134928] = strCrown(1200), -- Wedding Pergola, Triple + [134929] = strCrown(45), -- Trees, Savanna Cluster + [134930] = strCrown(30), -- Bushes, Swordgrass Cluster + [134931] = strCrown(50), -- Boulder, Weathered Desert + [134932] = strCrown(50), -- Boulder, Tiered Desert + [134933] = strCrown(90), -- Cranium, Jawless + [134934] = strCrown(10), -- Rocks, Basalt Chunks + [134936] = strCrown(110), -- Cave Deposit, Tall Stalagmite Cluster + [134938] = strCrown(110), -- Cave Deposit, Stalagmite Group + [134945] = strCrown(200), -- Cave Deposit, Extended Spire + [134973] = strCrown(200), -- Cave Deposit, Stalactite Cone Cluster + [134939] = strCrown(110), -- Cave Deposit, Stalactite Cone + [134941] = strCrown(110), -- Cave Deposit, Spire + [120603] = strCrown(20), -- Boulder, Flat Mossy + [120604] = strCrown(20), -- Rock, Slanted Mossy + [120605] = strCrown(20), -- Rocks, Deep Mossy + [120606] = strCrown(20), -- Stones, Mossy Cluster + [134943] = strCrown(1000), -- Brotherhood Banner, Long + [134944] = strCrown(340), -- Brotherhood Column, Tall Ornate + [134946] = strCrown(340), -- Brotherhood Column, Ornate + [120612] = strCrown(10), -- Plant, Tall Mammoth Ear + [120613] = strCrown(10), -- Plant, Towering Mammoth Ear + [120614] = strCrown(10), -- Plant Cluster, Jungle Leaf + [134951] = strCrown(30), -- Mushrooms, Assorted Cluster + [134952] = strCrown(30), -- Mushrooms, Sporous Browncap + [134953] = strCrown(340), -- Brotherhood Carpet, Large Worn + [126774] = strCrown(510), -- Dres Tapestry, House + [126775] = strCrown(510), -- Hlaalu Tapestry, House + [126777] = strCrown(510), -- Redoran Tapestry, House + [126778] = strCrown(510), -- Telvanni Tapestry, House + [134974] = strCrown(340), -- Brotherhood Carpet, Worn + [126830] = strCrown(10), -- Mushrooms, Volcanic Cluster + [120631] = strCrown(5), -- Pebble, Stacked Mossy + [134330] = strCrown(490), -- Clockwork Control Panel, Double + [134337] = strCrown(1800), -- Clockwork Somnolostation, Octet + [121036] = strCrown(30), -- Shrub, Sparse Violet + [121035] = strCrown(30), -- Plant, Paired Verdant Hosta + [121034] = strCrown(10), -- Shrub, Delicate Forest + [121032] = strCrown(25), -- Saplings, Young Laurel + [121031] = strCrown(45), -- Topiary, Paired Cypress + [121030] = strCrown(54), -- Topiary, Young Cypress + [121029] = strCrown(45), -- Topiary, Strong Cypress + [120709] = strCrown(70), -- Tree, Sturdy Young Birch + [121026] = strCrown(45), -- Hedge, Dense High Wall + [121025] = strCrown(70), -- Trees, Sprawling Juniper Cluster + [121024] = strCrown(70), -- Trees, Paired Leaning Juniper + [121021] = strCrown(10), -- Plants, Dry Underbrush + [121020] = strCrown(10), -- Plants, Sparse Underbrush + [121018] = strCrown(10), -- Plant, Forest Sprig + [121014] = strCrown(20), -- Topiary, Sparse + [121012] = strCrown(70), -- Trees, Fragile Autumn Birch + [121009] = strCrown(70), -- Tree, Young Healthy Birch + [120726] = strCrown(20), -- Rock, Jagged Algae Coated + [120727] = strCrown(5), -- Stone, Angled Mossy + [120728] = strCrown(20), -- Rock, Jagged Lichen + [121006] = strCrown(45), -- Flower Patch, Violets + [120730] = strCrown(45), -- Topiary, Lush Evergreen + [120731] = strCrown(25), -- Tree, Mossy Summer + [120732] = strCrown(70), -- Tree, Mossy Forest + [120733] = strCrown(70), -- Tree, Gnarled Forest + [120734] = strCrown(25), -- Saplings, Squat Desert + [120735] = strCrown(52), -- Saplings, Young Desert + [120736] = strCrown(290), -- Tree, Gentle Weeping Willow + [120737] = strCrown(150), -- Tree, Weeping Willow + [120738] = strCrown(70), -- Tree, Towering Willow + [120743] = strCrown(70), -- Tree, Strong Cypress + [120996] = strCrown(120), -- Banner, Tattered Red + [120745] = strCrown(60), -- Tree, Water Palm + [120483] = strCrown(30), -- Cactus, Lemon Bulbs + [120748] = strCrown(70), -- Tree, Leaning Swamp + [120749] = strCrown(10), -- Grass, Tall Bamboo Shoots + [120750] = strCrown(10), -- Grass, Drying Bamboo Shoots + [120751] = strCrown(10), -- Grass, Twin Bamboo Shoots + [120752] = strCrown(10), -- Grass, Young Bamboo Shoots + [120471] = strCrown(25), -- Tree, Wilted Palm + [120756] = strCrown(10), -- Plant, Palm Fronds + [120463] = strCrown(20), -- Boulder, Weathered Flat + [120456] = strCrown(5), -- Stone, Smooth Desert + [134579] = strCrown(5), -- Rubble Pile, Worked Stone + [120760] = strCrown(50), -- Flower, Red Honeysuckle + [125544] = strCrown(30), -- Fern, Strong Dusky + [125547] = strCrown(85), -- Flower, Healthy Purple Bat Bloom + [125546] = strCrown(85), -- Flower Patch, Lava Blooms + [120765] = strCrown(15), -- Breton Cup, Empty + [120766] = strCrown(15), -- Breton Cup, Full + [134950] = strCrown(31), -- Mushrooms, Flapjack Stack + [139238] = strCrown(190), -- Alinor Wall Mirror, Ornate + [139239] = strCrown(190), -- Alinor Wall Mirror, Verdant + [139389] = strCrown(200), -- Crystal, Crimson Cluster + [139184] = strCrown(200), -- Alinor Plinth, Sarcophagus + + [130093] = strPack("molag"), -- Coldharbour Compact + [130071] = join({ strCrown(300), strPack("molag") }), -- Daedric Torch, Coldharbour + [130075] = join({ strCrown(380), strPack("molag") }), -- Daedric Altar, Molag Bal + [130078] = join({ strCrown(380), strPack("molag") }), -- Soul Gem, Single + [130079] = join({ strCrown(380), strPack("molag") }), -- Soul Gems, Pile + [130082] = join({ strCrown(640), strPack("molag") }), -- Soul-Shriven, Robed + [130094] = join({ strCrown(140), strPack("molag") }), -- Daedric Chains, Hanging + [130095] = join({ strCrown(640), strPack("molag") }), -- Daedric Torture Device, Chained + [130069] = join({ strCrown(2000), strPack("molag") }), -- Daedric Spout, Block + [130070] = join({ strCrown(2000), strPack("molag") }), -- Daedric Spout, Arched + [130080] = strPack("molag"), -- Soul Gems, Scattered + [130081] = strPack("molag"), -- Soul-Shriven, Armored + [130083] = strPack("molag"), -- Daedric Block, Seat + [130084] = strPack("molag"), -- Daedric Tapestry, Molag Bal + [130085] = strPack("molag"), -- Daedric Banner, Molag Bal + [130086] = strPack("molag"), -- Daedric Pennant, Molag Bal + [130089] = join({ strCrown(360), strPack("molag") }), -- Daedric Brazier, Molag Bal + [130087] = strPack("molag"), -- Daedric Shards, Coldharbour + [130091] = strPack("molag"), -- Statue of Molag Bal, God of Schemes + [130090] = join({ strCrown(310), strPack("molag") }), -- Daedric Sconce, Molag Bal + [130088] = strPack("molag"), -- Daedric Fragment, Coldharbour + [130092] = strPack("molag"), -- Seal of Molag Bal, Grand + + [126138] = strPack("dwemer"), -- A Guide to Dwemer Mega-Structures + [125516] = strPack("dwemer"), -- Dwarven Gear Assembly, Grinding + + [126140] = strPack("vivec"), -- Vivec's Grand Bed + [126141] = strPack("vivec"), -- Vivec's Grand Throne + [126142] = strPack("vivec"), -- Vivec's Divination Pool + [126143] = strPack("vivec"), -- Statue, Vivec's Triumph + [126144] = strPack("vivec"), -- Seal of Vivec + [126145] = strPack("vivec"), -- Sigil of Vivec + [126146] = strPack("vivec"), -- Banner, Vivec + [126149] = strPack("vivec"), -- Tapestry, Vivec + [126150] = strPack("vivec"), -- Tribunal Tablet of Sotha Sil + [126152] = strPack("vivec"), -- The Cliff-Strider Song + + [134855] = strCrate("scalecaller"), -- Banner of Peryite + [134854] = strCrate("scalecaller"), -- Tapestry of Peryite + [134853] = strCrate("scalecaller"), -- Peryite, The Taskmaster + [134475] = strCrate("fireatro"), -- Statue of Malacath, Orc-Father + [126132] = strCrate("string") .. " (any)", -- Resplendent Sweetroll + [125654] = strCrate("dwemer"), -- Tapestry, Clavicus Vile + [125480] = strCrate("dwemer"), -- Banner, Clavicus Vile }, } @@ -1653,9 +1661,9 @@ FurC.MiscItemSources[ver.SLAVES] = { }, [src.DROP] = { - [141856] = join({ sinister_hollowjack, getScamboxString("hollowjack") }), -- Decorative Hollowjack Daedra-Skull - [141855] = join({ sinister_hollowjack, getScamboxString("hollowjack") }), -- Decorative Hollowjack Wraith-Lantern - [141854] = join({ sinister_hollowjack, getScamboxString("hollowjack") }), -- Decorative Hollowjack Flame-Skull + [141856] = join({ sinister_hollowjack, strCrate("hollowjack") }), -- Decorative Hollowjack Daedra-Skull + [141855] = join({ sinister_hollowjack, strCrate("hollowjack") }), -- Decorative Hollowjack Wraith-Lantern + [141854] = join({ sinister_hollowjack, strCrate("hollowjack") }), -- Decorative Hollowjack Flame-Skull [141870] = sinister_hollowjack, -- Raven-Perch Cemetery Wreath [141875] = sinister_hollowjack, -- Witches Festival Scarecrow [139157] = sinister_hollowjack, -- Webs, Thick Sheet @@ -1721,70 +1729,70 @@ FurC.MiscItemSources[ver.SLAVES] = { }, [src.CROWN] = { - [145466] = getCrownPrice(30), -- Plant, Wilted Hist Bulb - [145465] = getCrownPrice(40), -- Plant Cluster, Wilted Hist Bulb - [145464] = getCrownPrice(30), -- Plant, Red Sister Ti - [145463] = getCrownPrice(35), -- Plant Cluster, Red Sister Ti - [145462] = getCrownPrice(40), -- Plant, Cardinal Flower - [145460] = getCrownPrice(30), -- Plant, Canna Leaves - [145459] = getCrownPrice(90), -- Murkmire Kiln, Ancient Stone - [145448] = getCrownPrice(1000), -- Murkmire Throne, Engraved - [145444] = getCrownPrice(130), -- Murkmire Totem, Hist Guardian - [145429] = getCrownPrice(65), -- Plant Cluster, Bounteous Flower Large - [145411] = getCrownPrice(410), -- Plant, Luminous Lantern Flower - [145322] = getCrownPrice(800), -- Music Box, Blood and Glory - [141976] = getCrownPrice(60), -- Pumpkin Patch, Display - [141869] = getCrownPrice(150), -- Alinor Potted Plant, Cypress - [141853] = getCrownPrice(2500), -- Statue of Hircine's Bitter Mercy - [134326] = getCrownPrice(260), -- Clockwork Pump, Horizontal - [134250] = getCrownPrice(750), -- Fabrication Sphere, Inactive - - [146062] = getItempackString("newlife2018"), -- Winter Ouroboros Wreath - [146061] = getItempackString("newlife2018"), -- New Life Triptych Banner - [146060] = getItempackString("newlife2018"), -- New Life Ladle - [146059] = getItempackString("newlife2018"), -- New Life Snowmortal, Khajiit - [146058] = getItempackString("newlife2018"), -- New Life Snowmortal, Argonian - [146057] = getItempackString("newlife2018"), -- New Life Snowmortal, Human - [146056] = getItempackString("newlife2018"), -- New Life Cookies and Ale - [146055] = getItempackString("newlife2018"), -- New Life Garland Wreath - [146054] = getItempackString("newlife2018"), -- New Life Garland - [146053] = getItempackString("newlife2018"), -- Guar Ice Sculpture - [146052] = getItempackString("newlife2018"), -- Vvardvark Ice Sculpture - [146051] = getItempackString("newlife2018"), -- Mudcrab Ice Sculpture - [146050] = getItempackString("newlife2018"), -- Winter Festival Hearthfire - [146049] = getItempackString("newlife2018"), -- Winter Festival Hearth - [146048] = getItempackString("newlife2018"), -- New Life Festive Fir - [146047] = getItempackString("newlife2018"), -- From Old Life To New - - [146073] = join({ getCrownPrice(70), getItempackString("deepmire") }), -- Plant Cluster, Marsh Nigella, - [145461] = join({ getCrownPrice(30), getItempackString("deepmire") }), -- Plant Cluster, Cardinal Flower - [145447] = join({ getCrownPrice(260), getItempackString("swamp") }), -- Murkmire Dais, Engraved - [145445] = getItempackString("deepmire"), -- The Sharper Tongue: A Jel Primer - [145443] = join({ getCrownPrice(270), getItempackString("deepmire") }), -- Murkmire Shrine, Sithis Looming - [145442] = join({ getCrownPrice(140), getItempackString("deepmire") }), -- Grave Stake, Large Twinned - [145441] = join({ getCrownPrice(140), getItempackString("deepmire") }), -- Grave Stake, Large Serpent - [145440] = join({ getCrownPrice(140), getItempackString("deepmire") }), -- Grave Stake, Large Skull - [145439] = join({ getCrownPrice(140), getItempackString("deepmire") }), -- Grave Stake, Large Fearsome - [145438] = join({ getCrownPrice(140), getItempackString("deepmire") }), -- Grave Stake, Large Glyphed - [145437] = join({ getCrownPrice(240), getItempackString("deepmire") }), -- Reed Felucca, Double Hulled - [145436] = getItempackString("deepmire"), -- Canopied Felucca, Double Hulled - [145435] = join({ getCrownPrice(110), getItempackString("deepmire") }), -- Plant, Marsh Mani Flower - [145434] = join({ getCrownPrice(110), getItempackString("deepmire") }), -- Plant, Large Inert Lantern Flower - [145433] = join({ getCrownPrice(60), getItempackString("deepmire") }), -- Plant, Rafflesia - [145432] = join({ getCrownPrice(70), getItempackString("deepmire") }), -- Plant, Canna Lily - [145431] = join({ getCrownPrice(35), getItempackString("deepmire") }), -- Plant, Marsh Nigella - [145430] = join({ getCrownPrice(55), getItempackString("deepmire") }), -- Plant, Star Blossom - [145428] = join({ getCrownPrice(65), getItempackString("deepmire") }), -- Murkmire Lantern Post, Covered - [145427] = getItempackString("deepmire"), -- Serpent Skull, Colossal - [145426] = join({ getCrownPrice(410), getItempackString("deepmire") }), -- Murkmire Felucca, Canopied - - [134249] = getItempackString("sotha"), -- Sotha Sil, The Clockwork God - [134248] = getItempackString("sotha"), -- Grand Mnemograph - [134246] = getItempackString("sotha"), -- The Law of Gears - - [145493] = getScamboxString("xanmeer"), -- Lantern Mantis - [145492] = getScamboxString("xanmeer"), -- Gas Blossom - [145491] = getScamboxString("xanmeer"), -- Static Pitcher + [145466] = strCrown(30), -- Plant, Wilted Hist Bulb + [145465] = strCrown(40), -- Plant Cluster, Wilted Hist Bulb + [145464] = strCrown(30), -- Plant, Red Sister Ti + [145463] = strCrown(35), -- Plant Cluster, Red Sister Ti + [145462] = strCrown(40), -- Plant, Cardinal Flower + [145460] = strCrown(30), -- Plant, Canna Leaves + [145459] = strCrown(90), -- Murkmire Kiln, Ancient Stone + [145448] = strCrown(1000), -- Murkmire Throne, Engraved + [145444] = strCrown(130), -- Murkmire Totem, Hist Guardian + [145429] = strCrown(65), -- Plant Cluster, Bounteous Flower Large + [145411] = strCrown(410), -- Plant, Luminous Lantern Flower + [145322] = strCrown(800), -- Music Box, Blood and Glory + [141976] = strCrown(60), -- Pumpkin Patch, Display + [141869] = strCrown(150), -- Alinor Potted Plant, Cypress + [141853] = strCrown(2500), -- Statue of Hircine's Bitter Mercy + [134326] = strCrown(260), -- Clockwork Pump, Horizontal + [134250] = strCrown(750), -- Fabrication Sphere, Inactive + + [146062] = strPack("newlife2018"), -- Winter Ouroboros Wreath + [146061] = strPack("newlife2018"), -- New Life Triptych Banner + [146060] = strPack("newlife2018"), -- New Life Ladle + [146059] = strPack("newlife2018"), -- New Life Snowmortal, Khajiit + [146058] = strPack("newlife2018"), -- New Life Snowmortal, Argonian + [146057] = strPack("newlife2018"), -- New Life Snowmortal, Human + [146056] = strPack("newlife2018"), -- New Life Cookies and Ale + [146055] = strPack("newlife2018"), -- New Life Garland Wreath + [146054] = strPack("newlife2018"), -- New Life Garland + [146053] = strPack("newlife2018"), -- Guar Ice Sculpture + [146052] = strPack("newlife2018"), -- Vvardvark Ice Sculpture + [146051] = strPack("newlife2018"), -- Mudcrab Ice Sculpture + [146050] = strPack("newlife2018"), -- Winter Festival Hearthfire + [146049] = strPack("newlife2018"), -- Winter Festival Hearth + [146048] = strPack("newlife2018"), -- New Life Festive Fir + [146047] = strPack("newlife2018"), -- From Old Life To New + + [146073] = join({ strCrown(70), strPack("deepmire") }), -- Plant Cluster, Marsh Nigella, + [145461] = join({ strCrown(30), strPack("deepmire") }), -- Plant Cluster, Cardinal Flower + [145447] = join({ strCrown(260), strPack("swamp") }), -- Murkmire Dais, Engraved + [145445] = strPack("deepmire"), -- The Sharper Tongue: A Jel Primer + [145443] = join({ strCrown(270), strPack("deepmire") }), -- Murkmire Shrine, Sithis Looming + [145442] = join({ strCrown(140), strPack("deepmire") }), -- Grave Stake, Large Twinned + [145441] = join({ strCrown(140), strPack("deepmire") }), -- Grave Stake, Large Serpent + [145440] = join({ strCrown(140), strPack("deepmire") }), -- Grave Stake, Large Skull + [145439] = join({ strCrown(140), strPack("deepmire") }), -- Grave Stake, Large Fearsome + [145438] = join({ strCrown(140), strPack("deepmire") }), -- Grave Stake, Large Glyphed + [145437] = join({ strCrown(240), strPack("deepmire") }), -- Reed Felucca, Double Hulled + [145436] = strPack("deepmire"), -- Canopied Felucca, Double Hulled + [145435] = join({ strCrown(110), strPack("deepmire") }), -- Plant, Marsh Mani Flower + [145434] = join({ strCrown(110), strPack("deepmire") }), -- Plant, Large Inert Lantern Flower + [145433] = join({ strCrown(60), strPack("deepmire") }), -- Plant, Rafflesia + [145432] = join({ strCrown(70), strPack("deepmire") }), -- Plant, Canna Lily + [145431] = join({ strCrown(35), strPack("deepmire") }), -- Plant, Marsh Nigella + [145430] = join({ strCrown(55), strPack("deepmire") }), -- Plant, Star Blossom + [145428] = join({ strCrown(65), strPack("deepmire") }), -- Murkmire Lantern Post, Covered + [145427] = strPack("deepmire"), -- Serpent Skull, Colossal + [145426] = join({ strCrown(410), strPack("deepmire") }), -- Murkmire Felucca, Canopied + + [134249] = strPack("sotha"), -- Sotha Sil, The Clockwork God + [134248] = strPack("sotha"), -- Grand Mnemograph + [134246] = strPack("sotha"), -- The Law of Gears + + [145493] = strCrate("xanmeer"), -- Lantern Mantis + [145492] = strCrate("xanmeer"), -- Gas Blossom + [145491] = strCrate("xanmeer"), -- Static Pitcher }, [src.FISHING] = { @@ -1796,123 +1804,123 @@ FurC.MiscItemSources[ver.SLAVES] = { -- 7 Summerset Isles FurC.MiscItemSources[ver.ALTMER] = { [src.CROWN] = { - [139650] = getCrownPrice(30), -- Bushes, Ivy Cluster - [139483] = getCrownPrice(90), -- Alinor Column, Tumbled Timeworn - [139482] = getCrownPrice(200), -- Alinor Column, Huge Timeworn - [139481] = getCrownPrice(200), -- Alinor Column, Jagged Timeworn - [139480] = getCrownPrice(30), -- Plants, Redtop Grass Tuft - [139376] = getCrownPrice(260), -- Alinor Banner, Hanging - [139368] = getCrownPrice(100), -- Alinor Bathing Robes, Decorative - [139366] = getCrownPrice(2000), -- Alinor Fountain, Regal - [139365] = getCrownPrice(370), -- Psijic Lighting Globe, Framed - [139364] = getCrownPrice(1500), -- Sload Neural Tree, Active - [139363] = getCrownPrice(340), -- Sload Astral Nodule, Large - [139362] = getCrownPrice(340), -- Sload Astral Nodule, Small - [139361] = getCrownPrice(270), -- Mind Trap Kelp, Young - [139360] = getCrownPrice(510), -- Mind Trap Kelp, Cluster - [139359] = getCrownPrice(340), -- Mind Trap Coral Formation, Trees Capped - [139358] = getCrownPrice(340), -- Mind Trap Coral Formation, Tree Capped - [139357] = getCrownPrice(340), -- Mind Trap Coral Formation, Tree Antler - [139356] = getCrownPrice(340), -- Mind Trap Coral Formation, Waving Hands - [139355] = getCrownPrice(340), -- Mind Trap Coral Formation, Heart - [139354] = getCrownPrice(340), -- Mind Trap Coral Spire, Bulbous - [139353] = getCrownPrice(340), -- Mind Trap Coral Spire, Branched - [139352] = getCrownPrice(1000), -- Alinor Tomb, Ornate - [139351] = getCrownPrice(200), -- Alinor Monument, Marble - [139350] = getCrownPrice(940), -- Alinor Pergola, Purple Wisteria Overhang - [139349] = getCrownPrice(940), -- Alinor Pergola, Blue Wisteria Peaked - [139348] = getCrownPrice(940), -- Alinor Pergola, Purple Wisteria - [139347] = getCrownPrice(45), -- Flowers, Yellow Oleander Cluster - [139346] = getCrownPrice(45), -- Flowers, Lizard Tail Patch - [139345] = getCrownPrice(45), -- Flowers, Lizard Tail Cluster - [139344] = getCrownPrice(45), -- Flowers, Hummingbird Mint Cluster - [139343] = getCrownPrice(45), -- Tree, Cloud White - [139342] = getCrownPrice(45), -- Tree, Vibrant Pink - [139341] = getCrownPrice(310), -- Tree, Towering Poplar - [139340] = getCrownPrice(310), -- Tree, Ancient Summerset Spruce - [139339] = getCrownPrice(25), -- Vines, Sun-Bronzed Ivy Climber - [139338] = getCrownPrice(25), -- Vines, Sun-Bronzed Ivy Swath - [139337] = getCrownPrice(580), -- Tree, Ancient Blooming Ginkgo - [139336] = getCrownPrice(90), -- Trees, Shade Interwoven - [139335] = getCrownPrice(310), -- Tree, Shade Ancient - [139334] = getCrownPrice(20), -- Coral Formation, Tree Capped (green) - [139333] = getCrownPrice(45), -- Coral Formation, Trees Capped - [139332] = join({ getCrownPrice(45), getItempackString("aquatic") }), -- Coral Formation, Tree Shelf - [139331] = getCrownPrice(45), -- Coral Formation, Tree Antler - [139330] = getCrownPrice(45), -- Coral Formation, Waving Hands - [139329] = getCrownPrice(45), -- Coral Formation, Heart - [139328] = getCrownPrice(45), -- Coral Spire, Branched - [139327] = getCrownPrice(45), -- Coral Spire, Sturdy - [139293] = getCrownPrice(30), -- Alinor Chalice, Silver Ornate - [139237] = getCrownPrice(190), -- Alinor Wall Mirror, Noble - [139161] = getCrownPrice(1500), -- Daedric Table, Grand Necropolis - [139160] = getCrownPrice(200), -- Daedric Armchair, Severe - [139159] = getCrownPrice(920), -- Daedric Chandelier, Gruesome - [139158] = getCrownPrice(150), -- Daedric Candelabra, Tall - [139156] = getCrownPrice(360), -- Cocoon, Skeleton - [139155] = getCrownPrice(80), -- Cocoon, Food Storage - [139154] = getCrownPrice(40), -- Cocoons, Dormant Cluster - [139153] = getCrownPrice(40), -- Cocoon, Dormant - [139152] = getCrownPrice(360), -- Cocoon, Enormous Empty - [139151] = getCrownPrice(140), -- Mushrooms, Shadowpalm Cluster - [139150] = getCrownPrice(70), -- Mushrooms, Midnight Cluster - [139149] = getCrownPrice(30), -- Plant, Scarlet Fleshfrond - [139148] = getCrownPrice(70), -- Mushroom, Nettlecap - [139147] = getCrownPrice(30), -- Plants, Scarlet Sawleaf - [139146] = getCrownPrice(490), -- Crystals, Midnight Bloom - [139145] = getCrownPrice(430), -- Crystals, Midnight Tower - [139144] = getCrownPrice(400), -- Crystals, Midnight Spire - [139143] = getCrownPrice(310), -- Crystals, Midnight Cluster - [139142] = getCrownPrice(380), -- Crystals, Crimson Spikes - [139141] = getCrownPrice(310), -- Crystals, Crimson Bed - [139140] = getCrownPrice(340), -- Crystals, Crimson Spray - [139126] = getCrownPrice(50), -- Sapling, Ginkgo - [139090] = getCrownPrice(100), -- Alinor Table Runner, Cloth of Silver - [139089] = getCrownPrice(50), -- Alinor Table Runner, Coiled - [139088] = getCrownPrice(50), -- Alinor Table Runner, Verdant - [139083] = getCrownPrice(30), -- Plants, Grasswort Patch - [139068] = getCrownPrice(20), -- Plants, Springwheeze - [139067] = getCrownPrice(20) .. " or from harvesting plants in Summerset", -- Flower, Yellow Oleander - [139066] = getCrownPrice(30), -- Plant, Redtop Grass - [139065] = getCrownPrice(20), -- Flowers, Lizard Tail - [134247] = getCrownPrice(190), -- Soul Gem Module, Experimental - [132165] = getCrownPrice(750), -- Hlaalu Bath Tub, Empty Basin - [126464] = getCrownPrice(610), -- Telvanni Painting, Oversized Valley - [126463] = getCrownPrice(610), -- Telvanni Painting, Oversized Forest - [126462] = getCrownPrice(610), -- Telvanni Painting, Oversized Volcanic - [126038] = getCrownPrice(4000), -- Target Centurion, Robust Lambent - [126037] = getCrownPrice(4000), -- Target Centurion, Lambent - [126034] = getCrownPrice(4000), -- The Lord - [125461] = getCrownPrice(4000), -- The Lover - [125460] = getCrownPrice(4000), -- The Mage - [125459] = getCrownPrice(4000), -- The Ritual - [125458] = getCrownPrice(4000), -- The Serpent - [125457] = getCrownPrice(4000), -- The Shadow - [125456] = getCrownPrice(4000), -- The Steed - [125455] = getCrownPrice(4000), -- The Thief - [125454] = getCrownPrice(4000), -- The Tower - [125453] = getCrownPrice(4000), -- The Warrior - [125452] = getCrownPrice(4000), -- The Lady - [125451] = getCrownPrice(4000), -- The Apprentice - [119556] = getCrownPrice(4000), -- The Atronach - [118491] = getCrownPrice(55), -- Scroll, Bound - [118145] = getCrownPrice(410), -- Painting of a Desert, Refined - [118144] = getCrownPrice(410), -- Painting of a Forest, Refined - [118142] = getCrownPrice(410), -- Painting of Swamp, Refined - [118140] = getCrownPrice(410), -- Painting of a Waterfall, Refined - [118138] = getCrownPrice(410), -- Painting of Mountains, Refined - - [140220] = getItempackString("mephala"), -- Rumours of the Spiral Skein - [139163] = getItempackString("mephala"), -- Mephala, The Webspinner (statue) - [139097] = getItempackString("mephala"), -- Spiral Skein Glowstalks, Sprouts - - [139139] = getScamboxString("psijic"), -- Nocturnal, Mistress of Shadows - [139138] = getScamboxString("psijic"), -- Banner, Nocturnal - [139137] = getScamboxString("psijic"), -- Tapestry, Nocturnal - [134474] = getScamboxString("fireatro"), -- Banner, Malacath - [130192] = getScamboxString("reaper"), -- Statue of Sheogorath, the Madgod - [130190] = getScamboxString("reaper"), -- Banner of Sheogorath - [130189] = getScamboxString("reaper"), -- Tapestry of Sheogorath + [139650] = strCrown(30), -- Bushes, Ivy Cluster + [139483] = strCrown(90), -- Alinor Column, Tumbled Timeworn + [139482] = strCrown(200), -- Alinor Column, Huge Timeworn + [139481] = strCrown(200), -- Alinor Column, Jagged Timeworn + [139480] = strCrown(30), -- Plants, Redtop Grass Tuft + [139376] = strCrown(260), -- Alinor Banner, Hanging + [139368] = strCrown(100), -- Alinor Bathing Robes, Decorative + [139366] = strCrown(2000), -- Alinor Fountain, Regal + [139365] = strCrown(370), -- Psijic Lighting Globe, Framed + [139364] = strCrown(1500), -- Sload Neural Tree, Active + [139363] = strCrown(340), -- Sload Astral Nodule, Large + [139362] = strCrown(340), -- Sload Astral Nodule, Small + [139361] = strCrown(270), -- Mind Trap Kelp, Young + [139360] = strCrown(510), -- Mind Trap Kelp, Cluster + [139359] = strCrown(340), -- Mind Trap Coral Formation, Trees Capped + [139358] = strCrown(340), -- Mind Trap Coral Formation, Tree Capped + [139357] = strCrown(340), -- Mind Trap Coral Formation, Tree Antler + [139356] = strCrown(340), -- Mind Trap Coral Formation, Waving Hands + [139355] = strCrown(340), -- Mind Trap Coral Formation, Heart + [139354] = strCrown(340), -- Mind Trap Coral Spire, Bulbous + [139353] = strCrown(340), -- Mind Trap Coral Spire, Branched + [139352] = strCrown(1000), -- Alinor Tomb, Ornate + [139351] = strCrown(200), -- Alinor Monument, Marble + [139350] = strCrown(940), -- Alinor Pergola, Purple Wisteria Overhang + [139349] = strCrown(940), -- Alinor Pergola, Blue Wisteria Peaked + [139348] = strCrown(940), -- Alinor Pergola, Purple Wisteria + [139347] = strCrown(45), -- Flowers, Yellow Oleander Cluster + [139346] = strCrown(45), -- Flowers, Lizard Tail Patch + [139345] = strCrown(45), -- Flowers, Lizard Tail Cluster + [139344] = strCrown(45), -- Flowers, Hummingbird Mint Cluster + [139343] = strCrown(45), -- Tree, Cloud White + [139342] = strCrown(45), -- Tree, Vibrant Pink + [139341] = strCrown(310), -- Tree, Towering Poplar + [139340] = strCrown(310), -- Tree, Ancient Summerset Spruce + [139339] = strCrown(25), -- Vines, Sun-Bronzed Ivy Climber + [139338] = strCrown(25), -- Vines, Sun-Bronzed Ivy Swath + [139337] = strCrown(580), -- Tree, Ancient Blooming Ginkgo + [139336] = strCrown(90), -- Trees, Shade Interwoven + [139335] = strCrown(310), -- Tree, Shade Ancient + [139334] = strCrown(20), -- Coral Formation, Tree Capped (green) + [139333] = strCrown(45), -- Coral Formation, Trees Capped + [139332] = join({ strCrown(45), strPack("aquatic") }), -- Coral Formation, Tree Shelf + [139331] = strCrown(45), -- Coral Formation, Tree Antler + [139330] = strCrown(45), -- Coral Formation, Waving Hands + [139329] = strCrown(45), -- Coral Formation, Heart + [139328] = strCrown(45), -- Coral Spire, Branched + [139327] = strCrown(45), -- Coral Spire, Sturdy + [139293] = strCrown(30), -- Alinor Chalice, Silver Ornate + [139237] = strCrown(190), -- Alinor Wall Mirror, Noble + [139161] = strCrown(1500), -- Daedric Table, Grand Necropolis + [139160] = strCrown(200), -- Daedric Armchair, Severe + [139159] = strCrown(920), -- Daedric Chandelier, Gruesome + [139158] = strCrown(150), -- Daedric Candelabra, Tall + [139156] = strCrown(360), -- Cocoon, Skeleton + [139155] = strCrown(80), -- Cocoon, Food Storage + [139154] = strCrown(40), -- Cocoons, Dormant Cluster + [139153] = strCrown(40), -- Cocoon, Dormant + [139152] = strCrown(360), -- Cocoon, Enormous Empty + [139151] = strCrown(140), -- Mushrooms, Shadowpalm Cluster + [139150] = strCrown(70), -- Mushrooms, Midnight Cluster + [139149] = strCrown(30), -- Plant, Scarlet Fleshfrond + [139148] = strCrown(70), -- Mushroom, Nettlecap + [139147] = strCrown(30), -- Plants, Scarlet Sawleaf + [139146] = strCrown(490), -- Crystals, Midnight Bloom + [139145] = strCrown(430), -- Crystals, Midnight Tower + [139144] = strCrown(400), -- Crystals, Midnight Spire + [139143] = strCrown(310), -- Crystals, Midnight Cluster + [139142] = strCrown(380), -- Crystals, Crimson Spikes + [139141] = strCrown(310), -- Crystals, Crimson Bed + [139140] = strCrown(340), -- Crystals, Crimson Spray + [139126] = strCrown(50), -- Sapling, Ginkgo + [139090] = strCrown(100), -- Alinor Table Runner, Cloth of Silver + [139089] = strCrown(50), -- Alinor Table Runner, Coiled + [139088] = strCrown(50), -- Alinor Table Runner, Verdant + [139083] = strCrown(30), -- Plants, Grasswort Patch + [139068] = strCrown(20), -- Plants, Springwheeze + [139067] = strCrown(20) .. " or from harvesting plants in Summerset", -- Flower, Yellow Oleander + [139066] = strCrown(30), -- Plant, Redtop Grass + [139065] = strCrown(20), -- Flowers, Lizard Tail + [134247] = strCrown(190), -- Soul Gem Module, Experimental + [132165] = strCrown(750), -- Hlaalu Bath Tub, Empty Basin + [126464] = strCrown(610), -- Telvanni Painting, Oversized Valley + [126463] = strCrown(610), -- Telvanni Painting, Oversized Forest + [126462] = strCrown(610), -- Telvanni Painting, Oversized Volcanic + [126038] = strCrown(4000), -- Target Centurion, Robust Lambent + [126037] = strCrown(4000), -- Target Centurion, Lambent + [126034] = strCrown(4000), -- The Lord + [125461] = strCrown(4000), -- The Lover + [125460] = strCrown(4000), -- The Mage + [125459] = strCrown(4000), -- The Ritual + [125458] = strCrown(4000), -- The Serpent + [125457] = strCrown(4000), -- The Shadow + [125456] = strCrown(4000), -- The Steed + [125455] = strCrown(4000), -- The Thief + [125454] = strCrown(4000), -- The Tower + [125453] = strCrown(4000), -- The Warrior + [125452] = strCrown(4000), -- The Lady + [125451] = strCrown(4000), -- The Apprentice + [119556] = strCrown(4000), -- The Atronach + [118491] = strCrown(55), -- Scroll, Bound + [118145] = strCrown(410), -- Painting of a Desert, Refined + [118144] = strCrown(410), -- Painting of a Forest, Refined + [118142] = strCrown(410), -- Painting of Swamp, Refined + [118140] = strCrown(410), -- Painting of a Waterfall, Refined + [118138] = strCrown(410), -- Painting of Mountains, Refined + + [140220] = strPack("mephala"), -- Rumours of the Spiral Skein + [139163] = strPack("mephala"), -- Mephala, The Webspinner (statue) + [139097] = strPack("mephala"), -- Spiral Skein Glowstalks, Sprouts + + [139139] = strCrate("psijic"), -- Nocturnal, Mistress of Shadows + [139138] = strCrate("psijic"), -- Banner, Nocturnal + [139137] = strCrate("psijic"), -- Tapestry, Nocturnal + [134474] = strCrate("fireatro"), -- Banner, Malacath + [130192] = strCrate("reaper"), -- Statue of Sheogorath, the Madgod + [130190] = strCrate("reaper"), -- Banner of Sheogorath + [130189] = strCrate("reaper"), -- Tapestry of Sheogorath }, [src.DROP] = { @@ -1931,8 +1939,8 @@ FurC.MiscItemSources[ver.ALTMER] = { [139070] = GetString(SI_FURC_ELF_PIC), -- Painting of College of the Sapiarchs, Refined [139071] = GetString(SI_FURC_ELF_PIC), -- Painting of High Elf Tower, Refined - [87709] = GetString(SI_FURC_LEVELUP), -- Imperial Brazier, Spiked - [94098] = GetString(SI_FURC_LEVELUP), -- Imperial Bed, Single + [87709] = GetString(SI_FURC_SRC_LVLUP), -- Imperial Brazier, Spiked + [94098] = GetString(SI_FURC_SRC_LVLUP), -- Imperial Bed, Single [118143] = painting_summerset, -- Painting of Tree, Refined [118141] = painting_summerset, -- Painting of Cottage, Refined @@ -1955,25 +1963,25 @@ FurC.MiscItemSources[ver.ALTMER] = { -- 6 Dragon Bones FurC.MiscItemSources[ver.DRAGONS] = { [src.DROP] = { - [134909] = GetString(SI_FURC_DRAGON_DUNGEON_DROP), -- Mushrooms, Puspocket Group - [134910] = GetString(SI_FURC_DRAGON_DUNGEON_DROP), -- Mushrooms, Puspocket Cluster - [134911] = GetString(SI_FURC_DRAGON_DUNGEON_DROP), -- Mushroom, Puspocket Sporecap - [134912] = GetString(SI_FURC_DRAGON_DUNGEON_DROP), -- Mushroom, Large Puspocket - [134913] = GetString(SI_FURC_DRAGON_DUNGEON_DROP), -- Mushroom, Tall Puspocket - [134914] = GetString(SI_FURC_DRAGON_DUNGEON_DROP), -- Mushrooms, Large Puspocket Cluster + [134909] = dung_dragonbones, -- Mushrooms, Puspocket Group + [134910] = dung_dragonbones, -- Mushrooms, Puspocket Cluster + [134911] = dung_dragonbones, -- Mushroom, Puspocket Sporecap + [134912] = dung_dragonbones, -- Mushroom, Large Puspocket + [134913] = dung_dragonbones, -- Mushroom, Tall Puspocket + [134914] = dung_dragonbones, -- Mushrooms, Large Puspocket Cluster }, [src.JUSTICE] = {}, [src.CROWN] = { - [134970] = getCrownPrice(100), -- Mushrooms, Glowing Sprawl - [134947] = getCrownPrice(100), -- Mushrooms, Glowing Field - [134948] = getCrownPrice(400), -- Mushrooms, Glowing Cluster - [134971] = getCrownPrice(400), -- Candles, Votive Group - [134972] = getCrownPrice(400), -- Brotherhood Brazier, Wrought Iron - [94100] = getCrownPrice(50), -- Imperial BookCase, Swirled - [130211] = getCrownPrice(50), -- Books, Ordered Row - [130210] = getCrownPrice(50), -- Books, Scattered Row + [134970] = strCrown(100), -- Mushrooms, Glowing Sprawl + [134947] = strCrown(100), -- Mushrooms, Glowing Field + [134948] = strCrown(400), -- Mushrooms, Glowing Cluster + [134971] = strCrown(400), -- Candles, Votive Group + [134972] = strCrown(400), -- Brotherhood Brazier, Wrought Iron + [94100] = strCrown(50), -- Imperial BookCase, Swirled + [130211] = strCrown(50), -- Books, Ordered Row + [130210] = strCrown(50), -- Books, Scattered Row }, } @@ -2007,27 +2015,27 @@ FurC.MiscItemSources[ver.CLOCKWORK] = { }, [src.CROWN] = { - [134266] = getCrownPrice(80), -- Daedric Books, Stacked - [134265] = getCrownPrice(80), -- Daedric Books, Piled - [134373] = getCrownPrice(410), -- Clockwork Wall Machinery, Rectangular - [134374] = getCrownPrice(410), -- Clockwork Wall Machinery, Circular - [134382] = getCrownPrice(870), -- Fabricant Tree, Beryl Cypress - [134383] = getCrownPrice(870), -- Fabricant Tree, Towering Maple - [134385] = getCrownPrice(870), -- Fabricant Tree, Brass Swamp - [134387] = getCrownPrice(870), -- Fabricant Tree, Tall Cobalt Spruce - [134388] = getCrownPrice(870), -- Fabricant Tree, Cobalt Oak - [134384] = getCrownPrice(870), -- Fabricant Tree, Decorative Electrum - [134386] = getCrownPrice(260), -- Fabricant Tree, Forked Cherry Blossom - [134389] = getCrownPrice(140), -- Fabricant Tree, Decorative Brass - [134390] = getCrownPrice(140), -- Clockwork Junk Heap, Large - [134391] = getCrownPrice(510), -- Clockwork Sequence Spool, Column - [134392] = getCrownPrice(260), -- Clockwork Recharging Column, Octet - [134393] = getCrownPrice(270), -- Clockwork Workbench, Spacious - [134394] = getCrownPrice(460), -- Clockwork Illuminator, Capsule Chandelier - [134395] = getCrownPrice(150), -- Clockwork Illuminator, Wall Capsule - [134396] = getCrownPrice(410), -- Clockwork Wall Machinery, Tall - [134397] = getCrownPrice(410), -- Clockwork Wall Machinery, Ovoid - [134398] = getCrownPrice(1300), -- Clockwork Gazebo, Copper and Basalt + [134266] = strCrown(80), -- Daedric Books, Stacked + [134265] = strCrown(80), -- Daedric Books, Piled + [134373] = strCrown(410), -- Clockwork Wall Machinery, Rectangular + [134374] = strCrown(410), -- Clockwork Wall Machinery, Circular + [134382] = strCrown(870), -- Fabricant Tree, Beryl Cypress + [134383] = strCrown(870), -- Fabricant Tree, Towering Maple + [134385] = strCrown(870), -- Fabricant Tree, Brass Swamp + [134387] = strCrown(870), -- Fabricant Tree, Tall Cobalt Spruce + [134388] = strCrown(870), -- Fabricant Tree, Cobalt Oak + [134384] = strCrown(870), -- Fabricant Tree, Decorative Electrum + [134386] = strCrown(260), -- Fabricant Tree, Forked Cherry Blossom + [134389] = strCrown(140), -- Fabricant Tree, Decorative Brass + [134390] = strCrown(140), -- Clockwork Junk Heap, Large + [134391] = strCrown(510), -- Clockwork Sequence Spool, Column + [134392] = strCrown(260), -- Clockwork Recharging Column, Octet + [134393] = strCrown(270), -- Clockwork Workbench, Spacious + [134394] = strCrown(460), -- Clockwork Illuminator, Capsule Chandelier + [134395] = strCrown(150), -- Clockwork Illuminator, Wall Capsule + [134396] = strCrown(410), -- Clockwork Wall Machinery, Tall + [134397] = strCrown(410), -- Clockwork Wall Machinery, Ovoid + [134398] = strCrown(1300), -- Clockwork Gazebo, Copper and Basalt }, } @@ -2151,61 +2159,61 @@ FurC.MiscItemSources[ver.MORROWIND] = { }, [src.CROWN] = { - [130213] = join({ getCrownPrice(430), getItempackString("ayleid") }), -- Ayleid Cage, Hanging - [130212] = getItempackString("ayleid"), -- Daedra Worship: The Ayleids - [130207] = join({ getCrownPrice(270), getItempackString("ayleid") }), -- Ayleid Plinth, Engraved - [130206] = join({ getCrownPrice(370), getItempackString("ayleid") }), -- Ayleid Apparatus, Welkynd - [130205] = join({ getCrownPrice(680), getItempackString("ayleid") }), -- Ayleid Statue, Pious Priest - [130204] = join({ getCrownPrice(410), getItempackString("ayleid") }), -- Welkynd Stones, Glowing - [130202] = join({ getCrownPrice(170), getItempackString("ayleid") }), -- Ayleid Grate, Tall - [130201] = join({ getCrownPrice(170), getItempackString("ayleid") }), -- Ayleid Grate, Small - [130199] = join({ getCrownPrice(170), getItempackString("ayleid") }), -- Ayleid Bookshelf, Bare - [130197] = join({ getCrownPrice(170), getItempackString("ayleid") }), -- Ayleid Bookcase, Filled - - [134578] = getCrownPrice(110), -- Ice Floe, Thick - [134577] = getCrownPrice(50), -- Ice Floe, Thin - [134576] = getCrownPrice(190), -- Orcish Brazier, Snowswept Column - [134575] = getCrownPrice(50), -- Boulder, Snowswept Crag - [134574] = getCrownPrice(50), -- Boulder, Snowswept Peak - [134573] = getCrownPrice(5), -- Stone, Snowswept Shard - [134572] = getCrownPrice(5), -- Stones, Snowswept Cluster - [134571] = getCrownPrice(120), -- Snow Pile, Large - [134570] = getCrownPrice(110), -- Snow Pile - [134569] = getCrownPrice(40), -- Trees, Snowswept Pair - [134568] = getCrownPrice(40), -- Tree, Snowswept Evergreen - [134567] = getCrownPrice(10), -- Bush Cluster, Snowswept - [134566] = getCrownPrice(30), -- Shrub Cluster, Snowswept - [134565] = getCrownPrice(130), -- Fabrication Tank, Reinforced - [134381] = getCrownPrice(110), -- Rocks, Sintered Outcropping - [134380] = getCrownPrice(110), -- Rocks, Sintered Arch - [134379] = getCrownPrice(50), -- Boulder, Large Metallic Shard - [131427] = getCrownPrice(1700), -- Orcish Tent, General's - [131426] = getCrownPrice(680), -- Orcish Tent, Officer's - [131425] = getCrownPrice(360), -- Orcish Tent, Soldier's - [130329] = getCrownPrice(240), -- Primal Brazier, Rock Slab - [130322] = getCrownPrice(90), -- Tool, Harvest Scythe - [130319] = getCrownPrice(10), -- Crop, Wheat Stack - [130318] = getCrownPrice(10), -- Crop, Wheat Pile - [130317] = getCrownPrice(25), -- Pumpkin, Sickly - [130316] = getCrownPrice(25), -- Pumpkin, Frail - [126686] = getCrownPrice(400), -- Dwarven Chest, Relic - [126607] = getCrownPrice(410), -- Velothi Painting, Oversized Waterfall - [126604] = getCrownPrice(410), -- Velothi Panels, Geyser - [126601] = getCrownPrice(410), -- Velothi Painting, Oversized Geyser - [126598] = getCrownPrice(410), -- Velothi Panels, Waterfall - [126597] = getCrownPrice(410), -- Velothi Painting, Oversized Volcano - [126592] = getCrownPrice(410), -- Velothi Panels, Volcano - [126479] = getCrownPrice(310), -- Telvanni Sconce, Organic Amber - [126478] = getCrownPrice(560), -- Telvanni Arched Light, Organic Amber - [126477] = getCrownPrice(560), -- Telvanni Streetlight, Organic Amber - [126476] = getCrownPrice(200), -- Telvanni Lamp, Organic Amber - [126475] = getCrownPrice(260), -- Telvanni Lantern, Organic Amber - [125628] = getCrownPrice(70), -- Plant, Rosetted Sundew - [125616] = getCrownPrice(5), -- Pebble, Volcanic Chunk - [125610] = getCrownPrice(25), -- Mushrooms, Cave Bracket Cluster - [125607] = getCrownPrice(10), -- Mushroom, Young Netch Shield - [125605] = getCrownPrice(10), -- Mushroom, Young Erupted Stinkcap - [125603] = getCrownPrice(40), -- Mushroom, Stinkhorn Spore + [130213] = join({ strCrown(430), strPack("ayleid") }), -- Ayleid Cage, Hanging + [130212] = strPack("ayleid"), -- Daedra Worship: The Ayleids + [130207] = join({ strCrown(270), strPack("ayleid") }), -- Ayleid Plinth, Engraved + [130206] = join({ strCrown(370), strPack("ayleid") }), -- Ayleid Apparatus, Welkynd + [130205] = join({ strCrown(680), strPack("ayleid") }), -- Ayleid Statue, Pious Priest + [130204] = join({ strCrown(410), strPack("ayleid") }), -- Welkynd Stones, Glowing + [130202] = join({ strCrown(170), strPack("ayleid") }), -- Ayleid Grate, Tall + [130201] = join({ strCrown(170), strPack("ayleid") }), -- Ayleid Grate, Small + [130199] = join({ strCrown(170), strPack("ayleid") }), -- Ayleid Bookshelf, Bare + [130197] = join({ strCrown(170), strPack("ayleid") }), -- Ayleid Bookcase, Filled + + [134578] = strCrown(110), -- Ice Floe, Thick + [134577] = strCrown(50), -- Ice Floe, Thin + [134576] = strCrown(190), -- Orcish Brazier, Snowswept Column + [134575] = strCrown(50), -- Boulder, Snowswept Crag + [134574] = strCrown(50), -- Boulder, Snowswept Peak + [134573] = strCrown(5), -- Stone, Snowswept Shard + [134572] = strCrown(5), -- Stones, Snowswept Cluster + [134571] = strCrown(120), -- Snow Pile, Large + [134570] = strCrown(110), -- Snow Pile + [134569] = strCrown(40), -- Trees, Snowswept Pair + [134568] = strCrown(40), -- Tree, Snowswept Evergreen + [134567] = strCrown(10), -- Bush Cluster, Snowswept + [134566] = strCrown(30), -- Shrub Cluster, Snowswept + [134565] = strCrown(130), -- Fabrication Tank, Reinforced + [134381] = strCrown(110), -- Rocks, Sintered Outcropping + [134380] = strCrown(110), -- Rocks, Sintered Arch + [134379] = strCrown(50), -- Boulder, Large Metallic Shard + [131427] = strCrown(1700), -- Orcish Tent, General's + [131426] = strCrown(680), -- Orcish Tent, Officer's + [131425] = strCrown(360), -- Orcish Tent, Soldier's + [130329] = strCrown(240), -- Primal Brazier, Rock Slab + [130322] = strCrown(90), -- Tool, Harvest Scythe + [130319] = strCrown(10), -- Crop, Wheat Stack + [130318] = strCrown(10), -- Crop, Wheat Pile + [130317] = strCrown(25), -- Pumpkin, Sickly + [130316] = strCrown(25), -- Pumpkin, Frail + [126686] = strCrown(400), -- Dwarven Chest, Relic + [126607] = strCrown(410), -- Velothi Painting, Oversized Waterfall + [126604] = strCrown(410), -- Velothi Panels, Geyser + [126601] = strCrown(410), -- Velothi Painting, Oversized Geyser + [126598] = strCrown(410), -- Velothi Panels, Waterfall + [126597] = strCrown(410), -- Velothi Painting, Oversized Volcano + [126592] = strCrown(410), -- Velothi Panels, Volcano + [126479] = strCrown(310), -- Telvanni Sconce, Organic Amber + [126478] = strCrown(560), -- Telvanni Arched Light, Organic Amber + [126477] = strCrown(560), -- Telvanni Streetlight, Organic Amber + [126476] = strCrown(200), -- Telvanni Lamp, Organic Amber + [126475] = strCrown(260), -- Telvanni Lantern, Organic Amber + [125628] = strCrown(70), -- Plant, Rosetted Sundew + [125616] = strCrown(5), -- Pebble, Volcanic Chunk + [125610] = strCrown(25), -- Mushrooms, Cave Bracket Cluster + [125607] = strCrown(10), -- Mushroom, Young Netch Shield + [125605] = strCrown(10), -- Mushroom, Young Erupted Stinkcap + [125603] = strCrown(40), -- Mushroom, Stinkhorn Spore [125580] = getHouseString(1244), -- Hlaalu Well, Covered Sillar Stone [125579] = getHouseString(1243), -- Hlaalu Well, Braced Sillar Stone [125577] = getHouseString(1243), -- Hlaalu Wall Post, Sillar Stone @@ -2214,61 +2222,61 @@ FurC.MiscItemSources[ver.MORROWIND] = { [125567] = getHouseString(1244), -- Hlaalu Shed, Open [125566] = getHouseString(1243), -- Hlaalu Shed, Enclosed [125565] = getHouseString(1244), -- Hlaalu Lantern, Hanging Paper - [125555] = getCrownPrice(85), -- Flowers, Sullen Purple Bat Blooms - [125554] = getCrownPrice(85), -- Flowers, Opposing Purple Bat Blooms - [125550] = getCrownPrice(85), -- Flowers, Lava Blooms - [125549] = getCrownPrice(85), -- Flowers, Double Purple Bat Blooms - [125548] = getCrownPrice(85), -- Flower, Towering Purple Bat Bloom - [125545] = getCrownPrice(30), -- Fern, Young Dusky - [125484] = getCrownPrice(30), -- Bush, Lush Laurel - [125482] = getCrownPrice(50), -- Boulder, Volcanic Crag - [121400] = getCrownPrice(2000), -- Target Skeleton, Robust Argonian - [121399] = getCrownPrice(2000), -- Target Skeleton, Robust Khajiit - [121056] = getCrownPrice(25), -- Book Stack, Decorative - [121054] = getCrownPrice(30), -- Breton Mug, Empty - [121053] = getCrownPrice(170), -- Jar, Gilded Canopic - [121052] = getCrownPrice(100), -- Vase, Gilded Offering - [121047] = getCrownPrice(25), -- Book Row, Long - [121045] = getCrownPrice(25), -- Book Row, Decorative - [121044] = getCrownPrice(30), -- Plant, Healthy White Hosta - [121043] = getCrownPrice(30), -- Plant, Summer Hosta - [121042] = getCrownPrice(10), -- Plant, Young Summer Hosta - [121041] = getCrownPrice(10), -- Plant, Young Verdant Hosta - [121040] = getCrownPrice(30), -- Plant, Verdant Hosta - [121039] = getCrownPrice(30), -- Plant, Blooming White Hosta - [121038] = getCrownPrice(30), -- Plant, Paired White Hosta - [121037] = getCrownPrice(30), -- Shrub, Sparse Pink - [121033] = getCrownPrice(25), -- Sapling, Sparse Laurel - [121027] = getCrownPrice(45), -- Hedge, Dense Low Arc - [121019] = getCrownPrice(10), -- Plants, Dense Underbrush - [121017] = getCrownPrice(10), -- Bush, Dense Forest - [121002] = getCrownPrice(45), -- Flowers, Violet Prairie - [121001] = getCrownPrice(45), -- Flowers, Golden Prairie - [120491] = getCrownPrice(30), -- Fern, Hearty Autumn - [120486] = getCrownPrice(30), -- Cactus, Stocky Columnar - [120484] = getCrownPrice(30), -- Cactus, Golden Barrel - [120482] = getCrownPrice(30), -- Cactus, Golden Bulbs - [120481] = getCrownPrice(150), -- Tree, Ancient Juniper - [120475] = getCrownPrice(70), -- Trees, Paired Wax Palms4 - [120473] = getCrownPrice(60), -- Sapling, Thin Palm - [120472] = getCrownPrice(25), -- Tree, Young Palm - [120470] = getCrownPrice(25), -- Tree, Leaning Palm - [120466] = getCrownPrice(5), -- Pebble, Stacked Desert - [120465] = getCrownPrice(5), -- Stone, Tapered Rough - [120464] = getCrownPrice(20), -- Rocks, Stacked Cracked - [120427] = getCrownPrice(1500), -- Target Skeleton, Argonian - [120426] = getCrownPrice(1500), -- Target Skeleton, Khajiit - [120420] = getCrownPrice(140), -- Plaque, Bolted Deer Antlers - [120416] = getCrownPrice(40), -- Common Cloak on a Hook - [120415] = getCrownPrice(30), -- Breton Tankard, Full - [120414] = getCrownPrice(30), -- Breton Tankard, Empty - [120413] = getCrownPrice(30), -- Breton Pitcher, Clay - [120412] = getCrownPrice(50), -- Noble's Chalice - [120409] = getCrownPrice(100), -- Argonian Rack, Woven - [120408] = getCrownPrice(25), -- Argonian Fish in a Basket + [125555] = strCrown(85), -- Flowers, Sullen Purple Bat Blooms + [125554] = strCrown(85), -- Flowers, Opposing Purple Bat Blooms + [125550] = strCrown(85), -- Flowers, Lava Blooms + [125549] = strCrown(85), -- Flowers, Double Purple Bat Blooms + [125548] = strCrown(85), -- Flower, Towering Purple Bat Bloom + [125545] = strCrown(30), -- Fern, Young Dusky + [125484] = strCrown(30), -- Bush, Lush Laurel + [125482] = strCrown(50), -- Boulder, Volcanic Crag + [121400] = strCrown(2000), -- Target Skeleton, Robust Argonian + [121399] = strCrown(2000), -- Target Skeleton, Robust Khajiit + [121056] = strCrown(25), -- Book Stack, Decorative + [121054] = strCrown(30), -- Breton Mug, Empty + [121053] = strCrown(170), -- Jar, Gilded Canopic + [121052] = strCrown(100), -- Vase, Gilded Offering + [121047] = strCrown(25), -- Book Row, Long + [121045] = strCrown(25), -- Book Row, Decorative + [121044] = strCrown(30), -- Plant, Healthy White Hosta + [121043] = strCrown(30), -- Plant, Summer Hosta + [121042] = strCrown(10), -- Plant, Young Summer Hosta + [121041] = strCrown(10), -- Plant, Young Verdant Hosta + [121040] = strCrown(30), -- Plant, Verdant Hosta + [121039] = strCrown(30), -- Plant, Blooming White Hosta + [121038] = strCrown(30), -- Plant, Paired White Hosta + [121037] = strCrown(30), -- Shrub, Sparse Pink + [121033] = strCrown(25), -- Sapling, Sparse Laurel + [121027] = strCrown(45), -- Hedge, Dense Low Arc + [121019] = strCrown(10), -- Plants, Dense Underbrush + [121017] = strCrown(10), -- Bush, Dense Forest + [121002] = strCrown(45), -- Flowers, Violet Prairie + [121001] = strCrown(45), -- Flowers, Golden Prairie + [120491] = strCrown(30), -- Fern, Hearty Autumn + [120486] = strCrown(30), -- Cactus, Stocky Columnar + [120484] = strCrown(30), -- Cactus, Golden Barrel + [120482] = strCrown(30), -- Cactus, Golden Bulbs + [120481] = strCrown(150), -- Tree, Ancient Juniper + [120475] = strCrown(70), -- Trees, Paired Wax Palms4 + [120473] = strCrown(60), -- Sapling, Thin Palm + [120472] = strCrown(25), -- Tree, Young Palm + [120470] = strCrown(25), -- Tree, Leaning Palm + [120466] = strCrown(5), -- Pebble, Stacked Desert + [120465] = strCrown(5), -- Stone, Tapered Rough + [120464] = strCrown(20), -- Rocks, Stacked Cracked + [120427] = strCrown(1500), -- Target Skeleton, Argonian + [120426] = strCrown(1500), -- Target Skeleton, Khajiit + [120420] = strCrown(140), -- Plaque, Bolted Deer Antlers + [120416] = strCrown(40), -- Common Cloak on a Hook + [120415] = strCrown(30), -- Breton Tankard, Full + [120414] = strCrown(30), -- Breton Tankard, Empty + [120413] = strCrown(30), -- Breton Pitcher, Clay + [120412] = strCrown(50), -- Noble's Chalice + [120409] = strCrown(100), -- Argonian Rack, Woven + [120408] = strCrown(25), -- Argonian Fish in a Basket [118663] = getHouseString(1078, 1079), -- Dark Elf Bed of Coals - [126039] = getScamboxString("dwemer"), -- Statue of masked Clavicus Vile with Barbas + [126039] = strCrate("dwemer"), -- Statue of masked Clavicus Vile with Barbas }, [src.JUSTICE] = { @@ -2306,20 +2314,20 @@ FurC.MiscItemSources[ver.HOMESTEAD] = { [src.FISHING] = { -- fishing - [118902] = GetString(SI_FURC_CANBEFISHED), -- Coral, Sun - [118903] = GetString(SI_FURC_CANBEFISHED), -- Coral, Crown - [118896] = GetString(SI_FURC_CANBEFISHED), -- Seashell, Sandcake - [118901] = GetString(SI_FURC_CANBEFISHED), -- Sea sponge - [118338] = GetString(SI_FURC_CANBEFISHED), -- Fish, Bass - [118339] = GetString(SI_FURC_CANBEFISHED), -- Fish, Salmon - [118337] = GetString(SI_FURC_CANBEFISHED), -- Fish, Trout - [120753] = GetString(SI_FURC_CANBEFISHED), -- Kelp, Green Pile - [120755] = GetString(SI_FURC_CANBEFISHED), -- Kelp, Lush Pile - [120754] = GetString(SI_FURC_CANBEFISHED), -- Kelp, Small Pile - [118897] = GetString(SI_FURC_CANBEFISHED), -- Seashell, Pink Scallop - [118898] = GetString(SI_FURC_CANBEFISHED), -- Seashell, White Scallop - [118899] = GetString(SI_FURC_CANBEFISHED), -- Seashell, Starfish - [118900] = GetString(SI_FURC_CANBEFISHED), -- Seashell, Noble Starfish + [118902] = GetString(SI_FURC_LOOT_FISH), -- Coral, Sun + [118903] = GetString(SI_FURC_LOOT_FISH), -- Coral, Crown + [118896] = GetString(SI_FURC_LOOT_FISH), -- Seashell, Sandcake + [118901] = GetString(SI_FURC_LOOT_FISH), -- Sea sponge + [118338] = GetString(SI_FURC_LOOT_FISH), -- Fish, Bass + [118339] = GetString(SI_FURC_LOOT_FISH), -- Fish, Salmon + [118337] = GetString(SI_FURC_LOOT_FISH), -- Fish, Trout + [120753] = GetString(SI_FURC_LOOT_FISH), -- Kelp, Green Pile + [120755] = GetString(SI_FURC_LOOT_FISH), -- Kelp, Lush Pile + [120754] = GetString(SI_FURC_LOOT_FISH), -- Kelp, Small Pile + [118897] = GetString(SI_FURC_LOOT_FISH), -- Seashell, Pink Scallop + [118898] = GetString(SI_FURC_LOOT_FISH), -- Seashell, White Scallop + [118899] = GetString(SI_FURC_LOOT_FISH), -- Seashell, Starfish + [118900] = GetString(SI_FURC_LOOT_FISH), -- Seashell, Noble Starfish }, [src.DROP] = { @@ -2344,39 +2352,39 @@ FurC.MiscItemSources[ver.HOMESTEAD] = { }, [src.CROWN] = { - [120607] = getCrownPrice(50), -- Sapling, Lanky Ash - [120413] = getCrownPrice(30), -- Breton Pitcher, Clay - [118351] = getCrownPrice(25), -- Box of Peaches - [118278] = getCrownPrice(140), -- Plaque, Bordered Deer Antlers - [118126] = getCrownPrice(95), -- Plaque, Standard - [118121] = getCrownPrice(15), -- Knife, Carving - [118120] = getCrownPrice(120), -- Minecart, Push - [118119] = getCrownPrice(120), -- Minecart, Empty - [118118] = getCrownPrice(100), -- Candles, Lasting - [118098] = getCrownPrice(10), -- Common Bowl, Serving - [118096] = getCrownPrice(10), -- Bread, Plain - [118071] = getCrownPrice(120), -- Simple Red Banner - [118070] = getCrownPrice(120), -- Simple Purple Banner - [118069] = getCrownPrice(120), -- Simple Gray Banner - [118068] = getCrownPrice(120), -- Simple Brown Banner - [118066] = getCrownPrice(15), -- Steak Dinner - [118065] = getCrownPrice(45), -- Common Cargo Crate, Dry - [118064] = getCrownPrice(45), -- Common Barrel, Dry - [118062] = getCrownPrice(15), -- Chicken Meal, Display - [118061] = getCrownPrice(15), -- Chicken Dinner, Display - [118060] = getCrownPrice(20), -- Sack of Grain - [118059] = getCrownPrice(20), -- Sack of Millet, - [118058] = getCrownPrice(20), -- Sack of Rice - [118057] = getCrownPrice(20), -- Sack of Beans - [118056] = getCrownPrice(15), -- Common Stewpot, Hanging - [118055] = getCrownPrice(80), -- Common Firepit, Piled - [118054] = getCrownPrice(80), -- Common Firepit, Outdoor - [118000] = getCrownPrice(10), -- Garlic String, Display - [117952] = getCrownPrice(35), -- Rough Torch, Wall - [115698] = getCrownPrice(1100), -- Khajiit Statue, Guardian - [115395] = getCrownPrice(40), -- Nord Drinking Horn, Display - [94098] = getCrownPrice(95), -- Imperial Bed, Single - - [134473] = getScamboxString("fireatro"), -- Tapestry, Malacath + [120607] = strCrown(50), -- Sapling, Lanky Ash + [120413] = strCrown(30), -- Breton Pitcher, Clay + [118351] = strCrown(25), -- Box of Peaches + [118278] = strCrown(140), -- Plaque, Bordered Deer Antlers + [118126] = strCrown(95), -- Plaque, Standard + [118121] = strCrown(15), -- Knife, Carving + [118120] = strCrown(120), -- Minecart, Push + [118119] = strCrown(120), -- Minecart, Empty + [118118] = strCrown(100), -- Candles, Lasting + [118098] = strCrown(10), -- Common Bowl, Serving + [118096] = strCrown(10), -- Bread, Plain + [118071] = strCrown(120), -- Simple Red Banner + [118070] = strCrown(120), -- Simple Purple Banner + [118069] = strCrown(120), -- Simple Gray Banner + [118068] = strCrown(120), -- Simple Brown Banner + [118066] = strCrown(15), -- Steak Dinner + [118065] = strCrown(45), -- Common Cargo Crate, Dry + [118064] = strCrown(45), -- Common Barrel, Dry + [118062] = strCrown(15), -- Chicken Meal, Display + [118061] = strCrown(15), -- Chicken Dinner, Display + [118060] = strCrown(20), -- Sack of Grain + [118059] = strCrown(20), -- Sack of Millet, + [118058] = strCrown(20), -- Sack of Rice + [118057] = strCrown(20), -- Sack of Beans + [118056] = strCrown(15), -- Common Stewpot, Hanging + [118055] = strCrown(80), -- Common Firepit, Piled + [118054] = strCrown(80), -- Common Firepit, Outdoor + [118000] = strCrown(10), -- Garlic String, Display + [117952] = strCrown(35), -- Rough Torch, Wall + [115698] = strCrown(1100), -- Khajiit Statue, Guardian + [115395] = strCrown(40), -- Nord Drinking Horn, Display + [94098] = strCrown(95), -- Imperial Bed, Single + + [134473] = strCrate("fireatro"), -- Tapestry, Malacath }, } diff --git a/data/Rumours.lua b/data/Rumours.lua index 67b3a0e9..1ec9e0b0 100644 --- a/data/Rumours.lua +++ b/data/Rumours.lua @@ -2,7 +2,7 @@ FurC.Rumours = FurC.Rumours or {} local ver = FurC.Constants.Versioning -local rumourSource = GetString(SI_FURC_RUMOUR_SOURCE_ITEM) +local rumourSource = GetString(SI_FURC_SRC_RUMOUR_ITEM) local dataminedUnclear = GetString(SI_FURC_DATAMINED_UNCLEAR) -- 30 Gold Road diff --git a/docs/autocomplete_definitions.lua b/docs/autocomplete_definitions.lua index 3269072c..3deacad4 100644 --- a/docs/autocomplete_definitions.lua +++ b/docs/autocomplete_definitions.lua @@ -122,7 +122,6 @@ FURC_AV_WAYREST_MERCHANT = "Stormhaven, Wayrest, Merchant district" FURC_SKYRIM_MASELA = "Masela" FURC_SKYRIM_NETINDELL = "Netindell" SI_FURC_ADD_FAVE = " Add Favorite" -SI_FURC_CANBEFISHED = "can be fished" SI_FURC_CHEST_VV = "Extremely rarely from chests on Vvardenfell" SI_FURC_CRATE_ALLMAKER = "All-Maker" SI_FURC_CRATE_ARMIGER = "Buoyant Armiger" @@ -157,9 +156,6 @@ SI_FURC_CRATE_SUNKEN = "Sunken Trove" SI_FURC_CRATE_WILDHUNT = "Wild Hunt" SI_FURC_CRATE_WRAITH = "Wraithtide" SI_FURC_CRATE_XANMEER = "Xanmeer" -SI_FURC_FILTER_SOLD4CROWN = "Crown Store" -SI_FURC_FILTER_SOLD4CROWN_TT = "Shows items that can only be acquired from crown store" -SI_FURC_ITEMSRC_CROWNSTORE = "Crown Store " SI_FURC_DAEDRA_SOURCE = "from Daedra and Dolmen chests" SI_FURC_DAILY_ASH = "Ashlander daily quest rewards" SI_FURC_DAILY_ELSWEYR = "Elsweyr daily quest rewards" @@ -172,25 +168,49 @@ SI_FURC_DEBUG_CHARSCANCOMPLETE = "Furniture Catalogue: Character scan complete.. SI_FURC_DIALOGUE_RESET_DB_BODY = "This will re-create the FurnitureCatalogue database from scratch" SI_FURC_DIALOGUE_RESET_DB_HEADER = "Really re-create furniture database?" SI_FURC_DOM_DUNGEON_DROP = "Drops in Depth of Malatar" -SI_FURC_DRAGON_DUNGEON_DROP = "Fang Lair/Scalecaller Peak" SI_FURC_DROP = "This item is a drop " SI_FURC_DROP_ALTMER = "This item is a drop on Summerset" SI_FURC_DROP_MURKMIRE = "Random mobs in Murkmire" +SI_FURC_DUNG = "dungeon;dungeons" +SI_FURC_DUNG_DOM = "Depths of Malatar" +SI_FURC_DUNG_FL = "Fang Lair" +SI_FURC_DUNG_MHK = "Monster Hunter Keep" +SI_FURC_DUNG_MOS = "March of the Sacrifices" +SI_FURC_DUNG_SCP = "Scalecaller Peak" SI_FURC_ELF_PIC = "Drops rarely from treasure chests on Summerset" -SI_FURC_EVENT_BLACKWOOD = "From participating in the Bounties of Blackwood event" +SI_FURC_EVENT = "event;events" +SI_FURC_EVENT_BLACKWOOD = "Bounties of Blackwood" SI_FURC_EVENT_ELSWEYR = "Elsweyr dragon event" SI_FURC_EVENT_HOLLOWJACK = "Sinister Hollowjack Items" -SI_FURC_FILTER_FAVE = "Favorites" -SI_FURC_FILTER_FAVE_TT = "Shows your favorites" SI_FURC_FESTIVAL_DROP = "can be acquired during <<1>> (<<2>>)" SI_FURC_FILTER_CHAR_OFF = "Character filter: off" SI_FURC_FILTER_CHAR_OFF_TT = "disables this filter" -SI_FURC_FILTER_CRAFTING = "Craftable: All" -SI_FURC_FILTER_CRAFTING_KNOWN = "Craftable: Known" -SI_FURC_FILTER_CRAFTING_KNOWN_TT = "Shows only known craftable items" -SI_FURC_FILTER_CRAFTING_TT = "Shows all craftable items" -SI_FURC_FILTER_CRAFTING_UNKNOWN = "Craftable: Unknown" -SI_FURC_FILTER_CRAFTING_UNKNOWN_TT = "Shows only unknown craftable items" +SI_FURC_FILTER_CROWN_HIDE_TT = "Showing crown store. Click to hide." +SI_FURC_FILTER_RUMOUR_HIDE_TT = "Showing rumour (unconfirmed) items. Click to hide." +SI_FURC_FILTER_SRC_CRAFTING = "Craftable: All" +SI_FURC_FILTER_SRC_CRAFTING_KNOWN = "Craftable: Known" +SI_FURC_FILTER_SRC_CRAFTING_KNOWN_TT = "Shows only known craftable items" +SI_FURC_FILTER_SRC_CRAFTING_TT = "Shows all craftable items" +SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN = "Craftable: Unknown" +SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN_TT = "Shows only unknown craftable items" +SI_FURC_FILTER_SRC_CROWN = "Crown Store" +SI_FURC_FILTER_SRC_CROWN_TT = "Shows items that can only be acquired from crown store" +SI_FURC_FILTER_SRC_FAVE = "Favorites" +SI_FURC_FILTER_SRC_FAVE_TT = "Shows your favorites" +SI_FURC_FILTER_SRC_LUX = "Luxury items" +SI_FURC_FILTER_SRC_LUX_TT = "Items that at some point were sold by Zanil Theran, Cicero's General Goods, Coldharbour" +SI_FURC_FILTER_SRC_NONE = "Source filter: off" +SI_FURC_FILTER_SRC_NONE_TT = "disables this filter" +SI_FURC_FILTER_SRC_OTHER = "Other" +SI_FURC_FILTER_SRC_OTHER_TT = "Shows items that can be farmed/stolen/found" +SI_FURC_FILTER_SRC_RUMOUR = "Rumour items" +SI_FURC_FILTER_SRC_RUMOUR_TT = "Items and recipes that have been datamined, but haven't been confirmed existing" +SI_FURC_FILTER_SRC_SOLD_AP = "Purchaseable (AP)" +SI_FURC_FILTER_SRC_SOLD_AP_TT = "Items that are sold for alliance points" +SI_FURC_FILTER_SRC_SOLD_GOLD = "Purchaseable (gold)" +SI_FURC_FILTER_SRC_SOLD_GOLD_TT = "Shows only items that cannot be crafted" +SI_FURC_FILTER_SRC_SOLD_WRIT = "Master Writ Vendor" +SI_FURC_FILTER_SRC_SOLD_WRIT_TT = "Obtainable for Master Writs in your alliance's capital" SI_FURC_FILTER_VERSION_ALTMER = "Summerset" SI_FURC_FILTER_VERSION_ALTMER_TT = "Still think the Dunmer are bad?" SI_FURC_FILTER_VERSION_BASED = "Base Game Patch" @@ -249,14 +269,12 @@ SI_FURC_FILTER_VERSION_WEREWOLF = "Wolfhunter" SI_FURC_FILTER_VERSION_WEREWOLF_TT = "In Soviet Hunting Ground, werewolf hunt you" SI_FURC_FILTER_VERSION_WOTL = "Wrathstone" SI_FURC_FILTER_VERSION_WOTL_TT = "Wrathstone!" -SI_FURC_FIVE_TO_SHOPPINGLIST = "Add 5 to shopping list" SI_FURC_GEYSER = "Drops from geyser reward clams on Summerset" SI_FURC_GIANT_CLAM = "Drops from giant clams and geyser reward clams on Summerset" -SI_FURC_GRAMMAR_ITEMSRC_PREP_DEFAULT = "from" -SI_FURC_GRAMMAR_LOC_PREP_DEFAULT = "in" -SI_FURC_GRAMMAR_WORDORDER_LOC = "<<1>> <<2>>" -SI_FURC_HIDE_CROWN_TT = "Showing crown store. Click to hide." -SI_FURC_HIDE_RUMOUR_TT = "Showing rumour (unconfirmed) items. Click to hide." +SI_FURC_GRAMMAR_CONJ_OR = "or" +SI_FURC_GRAMMAR_ORDER_LOC = "<<1>> <<2>>" +SI_FURC_GRAMMAR_PREP_LOC_DEFAULT = "in" +SI_FURC_GRAMMAR_PREP_SRC_DEFAULT = "from" SI_FURC_HOUSE = "From a furnished purchase of <<1>>" SI_FURC_ITEMPACK_ALCHEMIST = "Mad Alchemist" SI_FURC_ITEMPACK_AMBITIONS = "Daedric Ambitions" @@ -290,26 +308,17 @@ SI_FURC_ITEMPACK_VAMPIRE = "Vampiric Libations" SI_FURC_ITEMPACK_VIVEC = "Lord Vivec" SI_FURC_ITEMPACK_WINDOWS = "Windows of the Divines" SI_FURC_ITEMPACK_ZENI = "Chapel of Zenithar" -SI_FURC_ITEMSOURCE_DROP = "Drops <<1>>" -SI_FURC_ITEMSOURCE_EMPTY = - "Item source unknown.\nTry to re-scan files (refresh button right click).\nIf the item is still unknown - and not part of the weekend furnisher's current inventory - please send a mail with the item link and -source to @berylbones." -SI_FURC_ITEMSOURCE_ITEMPACK = "Part of the Crown Store item pack [<<1>>] " -SI_FURC_ITEMSOURCE_MISCHOUSE = "From select house purchases" -SI_FURC_ITEMSOURCE_SAFEBOX = "extremely rarely from safeboxes" -SI_FURC_ITEMSRC_QUEST = "Quest" -SI_FURC_ITEMSRC_TRIBUTE = "From Tales of Tribute reward coffers" -SI_FURC_ITEMSRC_TRIBUTE_RANKED = "From Tales of Tribute ranked matches (system mail reward)" SI_FURC_LABEL_ENTRIES = " entries -" -SI_FURC_LEVELUP = "Can be gained as levelup reward" -SI_FURC_LOC_ALIKR_KOZANZET_SWI = "Alik'r, Kozanzet, Sweetwater Inn" +SI_FURC_LOC_ALIKR_KOZANZET_SWI = "Sweetwater Inn" SI_FURC_LOC_APOCRYPHA = "Apocrypha" SI_FURC_LOC_ARTAEUM = "Artaeum" -SI_FURC_LOC_AURIDON_SKYWATCH = "Skywatch, Auridon" +SI_FURC_LOC_AURIDON_SKYWATCH = "Auridon" SI_FURC_LOC_BALFOYEN = "Bal Foyen" -SI_FURC_LOC_BALFOYEN_DHALMORA = "Dhalmora, Bal Foyen" -SI_FURC_LOC_BETHNIKH_LTT = "Bethnikh, Loose Tooth Tavern" +SI_FURC_LOC_BALFOYEN_DHALMORA = "Dhalmora" +SI_FURC_LOC_BETHNIKH_LTT = "Loose Tooth Tavern" SI_FURC_LOC_BLACKWOOD = "Blackwood" -SI_FURC_LOC_BLACKWOOD_LEYAWIIN_DBF = "Leyawiin, Domestic Bliss Furnishings" +SI_FURC_LOC_BLACKWOOD_LEYAWIIN = "Leyawiin" +SI_FURC_LOC_BLACKWOOD_LEYAWIIN_DBF = "Domestic Bliss Furnishings" SI_FURC_LOC_CAPITAL = "any capital city" SI_FURC_LOC_CC = "Clockwork City" SI_FURC_LOC_CC_CITADEL_MARKET = "The Brass Citadel, Market" @@ -319,11 +328,6 @@ SI_FURC_LOC_COLDH_HOLLOW_CGG = "Cicero's General Good" SI_FURC_LOC_CRAGLORN = "Craglorn" SI_FURC_LOC_CRAGLORN_BELKARTH = "Belkarth" SI_FURC_LOC_CRAGLORN_BELKARTH_WOOD = "Craglorn, Belkarth Woodworking store" -SI_FURC_LOC_DUNG_DOM = "Depths of Malatar" -SI_FURC_LOC_DUNG_FL = "Fang Lair" -SI_FURC_LOC_DUNG_MHK = "Monster Hunter Keep" -SI_FURC_LOC_DUNG_MOS = "March of the Sacrifices" -SI_FURC_LOC_DUNG_SCP = "Scalecaller Peak" SI_FURC_LOC_EASTMARCH = "Eastmarch" SI_FURC_LOC_EASTMARCH_AMOL = "Fort Amol" SI_FURC_LOC_ELSWEYR = "Elsweyr" @@ -354,15 +358,12 @@ SI_FURC_LOC_VVARDENFELL_SURAN = "Suran" SI_FURC_LOC_WROTHGAR = "Wrothgar" SI_FURC_LOC_WSKYRIM = "Western Skyrim" SI_FURC_LOOT_CHESTS = "treasure chests" +SI_FURC_LOOT_FISH = "can be fished" SI_FURC_LOOT_HARVEST = "from harvesting nodes" SI_FURC_LOOT_PICKPOCKET = "Pickpocket" SI_FURC_LOOT_SCRYING = "from scrying" SI_FURC_LOOT_STEALING = "Stealing" -SI_FURC_LUXURY = "Luxury items" -SI_FURC_LUXURY_TT = "Items that at some point were sold by Zanil Theran, Cicero's General Goods, Coldharbour" SI_FURC_MENU_HEADER = "- |cD3B830Furniture|r:" -SI_FURC_FILTER_NONE = "Source filter: off" -SI_FURC_FILTER_NONE_TT = "disables this filter" SI_FURC_NPC_AUTOMATON = "from automatons" SI_FURC_NPC_DRUNKARD = "drunkard;drunkards" SI_FURC_NPC_GUARD = "guard;guards" @@ -372,33 +373,39 @@ SI_FURC_NPC_PRIEST = "priest;priests" SI_FURC_NPC_SCHOLAR = "scholar;scholars" SI_FURC_NPC_THIEF = "thief;thieves" SI_FURC_NPC_WOODWORKER = "woodworker;woodworkers" -SI_FURC_ONE_TO_SHOPPINGLIST = "Add 1 to shopping list" -SI_FURC_OR = "or" -SI_FURC_OTHER = "Other" -SI_FURC_OTHER_TT = "Shows items that can be farmed/stolen/found" SI_FURC_PART_OF = "Part of item <<1>>" SI_FURC_PLANTS = "from harvesting plants" +SI_FURC_PLUGIN_SL_ADD_FIVE = "Add 5 to shopping list" +SI_FURC_PLUGIN_SL_ADD_ONE = "Add 1 to shopping list" SI_FURC_PLUNDERSKULL = "Drops from Plunder Skulls during Witches' Festival" SI_FURC_POST_ITEM = " Post item" SI_FURC_POST_ITEMSOURCE = " Post item source" SI_FURC_POST_MATERIAL = " Post material" SI_FURC_POST_RECIPE = " Post recipe" SI_FURC_PSIJIC_RANK = "Psijic Order Rank " -SI_FURC_FILTER_SOLD4AP = "Purchaseable (AP)" -SI_FURC_FILTER_SOLD4AP_TT = "Items that are sold for alliance points" SI_FURC_QUESTREWARD = "Reward for a quest in " SI_FURC_REMOVE_FAVE = " Remove Favorite" SI_FURC_REQUIRES_ACHIEVEMENT = ", requires " -SI_FURC_RUMOUR = "Rumour items" -SI_FURC_RUMOUR_SOURCE_ITEM = "This item has been datamined, but not seen in-game" -SI_FURC_RUMOUR_SOURCE_RECIPE = "This recipe has been datamined, but not seen in-game" -SI_FURC_RUMOUR_TT = "Items and recipes that have been datamined, but haven't been confirmed existing" SI_FURC_SCAMBOX = "Crown Crates" SI_FURC_SCAMBOX_GEMS = "Crown Crate Gems" SI_FURC_SEEN_IN_GUILDSTORE = "Seen in Guild Store" SI_FURC_SHOW_CROWN_TT = "Hiding crown store. Click to show." SI_FURC_SHOW_RUMOUR_TT = "Confirmed items only. Click to show rumour items." SI_FURC_SLAVES_DAILY = "from Murkmire daily quest reward boxes" +SI_FURC_SRC_CROWNSTORE = "Crown Store " +SI_FURC_SRC_DROP = "Drops <<1>>" +SI_FURC_SRC_DROP_DUNG = "Dungeon drop" +SI_FURC_SRC_EMPTY = + "Item source unknown.\nTry to re-scan files (refresh button right click).\nIf the item is still unknown - and not part of the weekend furnisher's current inventory - please send a mail with the item link and -source to @berylbones." +SI_FURC_SRC_ITEMPACK = "Part of the Crown Store item pack [<<1>>] " +SI_FURC_SRC_LVLUP = "Can be gained as levelup reward" +SI_FURC_SRC_MISCHOUSE = "From select house purchases" +SI_FURC_SRC_QUEST = "Quest" +SI_FURC_SRC_RUMOUR_ITEM = "This item has been datamined, but not seen in-game" +SI_FURC_SRC_RUMOUR_RECIPE = "This recipe has been datamined, but not seen in-game" +SI_FURC_SRC_SAFEBOX = "extremely rarely from safeboxes" +SI_FURC_SRC_TOT = "From Tales of Tribute reward coffers" +SI_FURC_SRC_TOT_RANKED = "From Tales of Tribute ranked matches (system mail reward)" SI_FURC_STRING_AP = " AP" SI_FURC_STRING_CANNOT_CRAFT = "You cannot craft this yet" SI_FURC_STRING_CONTEXTMENU_DIVIDER = "Don't use divider in context menu?" @@ -408,6 +415,7 @@ SI_FURC_STRING_CONTEXTMENU_INVENTORY = "Disable context menu in inventory?" SI_FURC_STRING_CONTEXTMENU_INVENTORY_TT = "Disables the context for inventory items like posting material and adding to favourites." SI_FURC_STRING_CRAFTABLE_BY = "Can be crafted by " +SI_FURC_STRING_DUNG = "dungeon;dungeons" SI_FURC_STRING_FAUSTINA = "Sold by |cd68957Faustina Curio|r <<1>>" SI_FURC_STRING_FOR_VOUCHERS = "for <<1>> vouchers" SI_FURC_STRING_MENU_ADD_ITEMS_NAME = "Add items to known/unknown recipes?" @@ -514,8 +522,6 @@ SI_FURC_STRING_VENDOR = "sold by <<1>> in <<2>> (<<3>><<4>>)" SI_FURC_STRING_VOUCHER_VENDOR = "Sold by either Rolis Hlaalu or Faustina Curio" SI_FURC_STRING_WASSOLDBY = "Was sold by <<1>> in <<2>> (<<3>>) <<4>>" SI_FURC_STRING_WEEKEND_AROUND = "(around <<1>>)" -SI_FURC_FILTER_SOLD4WRIT = "Master Writ Vendor" -SI_FURC_FILTER_SOLD4WRIT_TT = "Obtainable for Master Writs in your alliance's capital" SI_FURC_TELVANNI_NECROM_FRF = "Necrom, Final Rest Furnishings" SI_FURC_TEXTBOX_FILTER_DEFAULT = "Filter by text search" SI_FURC_TOGGLE_SHOPPINGLIST = " Toggle shopping list" @@ -573,8 +579,6 @@ SI_FURC_TRADERS_VASEITYR_TOHF = "Vastyr, Touch of Home Furnshings" SI_FURC_TRADERS_YATAVA = "Yatava" SI_FURC_TRADERS_ZADRASKA = "Zadraska" SI_FURC_TRADERS_ZANIL = "Zanil Theran" -SI_FURC_FILTER_SOLD4GOLD = "Purchaseable (gold)" -SI_FURC_FILTER_SOLD4GOLD_TT = "Shows only items that cannot be crafted" SI_FURC_VERBOSE_DB_UPTODATE = "Furniture Catalogue: The database is up-to-date." SI_FURC_VERBOSE_SCANNING_CHARS = "Not scanning files, scanning character knowledge now..." SI_FURC_VERBOSE_SCANNING_DATA_FILE = "Furniture Catalogue: Scanning data files..." diff --git a/locale/de.lua b/locale/de.lua index 2e6718cd..b0afed85 100644 --- a/locale/de.lua +++ b/locale/de.lua @@ -16,14 +16,10 @@ local strings = { FURC_AV_VULKWAESTEN_TAVERN = "Malabal Tor, Vulkwasten, Nahrung & Getränkebuden", FURC_AV_WAYREST_MERCHANT = "Sturmhafen, Wegesruh, Händlerviertel", SI_FURC_ADD_FAVE = " - Zu den Favoriten hinzufügen", - SI_FURC_CANBEFISHED = "von Fischgründen", SI_FURC_CHEST_VV = "Äußerst selten von Kisten auf Vvardenfell", SI_FURC_CRATE_DWEMER = "Dwemer", SI_FURC_CRATE_FIREATRO = "Flammenatronach", SI_FURC_CRATE_REAPER = "Ernte des Schnitters", - SI_FURC_FILTER_SOLD4CROWN = "Kronen-Shop", - SI_FURC_FILTER_SOLD4CROWN_TT = "Zeigt Gegenstände, die nur im Kronen-Shop erworben werden können", - SI_FURC_ITEMSRC_CROWNSTORE = "Kronen-Shop ", SI_FURC_DAEDRA_SOURCE = "von Daedra- und Dolmen-Kisten", SI_FURC_DAILY_ASH = "Tgl. Quest-Belohnungen von Aschländern", SI_FURC_DAILY_ELSWEYR = "Tgl. Quest-Belohnungen in Elsweyr", @@ -36,23 +32,42 @@ local strings = { SI_FURC_DIALOGUE_RESET_DB_BODY = "Dadurch wird die 'Furniture Catalogue'-Datenbank von Grund auf neu erstellt.", SI_FURC_DIALOGUE_RESET_DB_HEADER = "Die 'Furniture Catalogue'-Datenbank wirklich neu erstellen?", SI_FURC_DOM_DUNGEON_DROP = "Kann in den Tiefen von Malatar erbeutet werden", - SI_FURC_DRAGON_DUNGEON_DROP = "Krallenhort/Gipfel der Schuppenruferin", SI_FURC_DROP = "Dieser Gegenstand kann erbeutet werden ", SI_FURC_DROP_ALTMER = "Dieser Gegenstand kann auf Sommersend erbeutet werden", + SI_FURC_DUNG_FL = "Krallenhort", + SI_FURC_DUNG_SCP = "Gipfel der Schuppenruferin", SI_FURC_ELF_PIC = "Kann selten von Schatztruhen auf Sommersend erbeutet werden", SI_FURC_EVENT_BLACKWOOD = "Durch die Teilnahme am 'Kopfgeld für Dunkelforst'-Ereignis", SI_FURC_EVENT_ELSWEYR = "Drachen-Ereignisse in Elsweyr", - SI_FURC_FILTER_FAVE = "Favoriten", - SI_FURC_FILTER_FAVE_TT = "Zeigt Eure Favoriten", SI_FURC_FESTIVAL_DROP = "Erhältlich während <<1>> (<<2>>)", SI_FURC_FILTER_CHAR_OFF = "Charakter: aus", SI_FURC_FILTER_CHAR_OFF_TT = "deaktiviert diesen Filter", - SI_FURC_FILTER_CRAFTING = "Herstellbar: Alle", - SI_FURC_FILTER_CRAFTING_KNOWN = "Herstellbar: Bekannt", - SI_FURC_FILTER_CRAFTING_KNOWN_TT = "Zeigt nur bekannte, herstellbare Gegenstände", - SI_FURC_FILTER_CRAFTING_TT = "Zeigt alle herstellbaren Gegenstände", - SI_FURC_FILTER_CRAFTING_UNKNOWN = "Herstellbar: Unbekannt", - SI_FURC_FILTER_CRAFTING_UNKNOWN_TT = "Zeigt nur unbekannte, herstellbare Gegenstände", + SI_FURC_FILTER_CROWN_HIDE_TT = "Der Kronen-Shop wird angezeigt. Zum Ausblenden klicken.", + SI_FURC_FILTER_RUMOUR_HIDE_TT = "Gerüchte (unbestätigte) Gegenstände anzeigen. Zum Ausblenden anklicken.", + SI_FURC_FILTER_SRC_CRAFTING = "Herstellbar: Alle", + SI_FURC_FILTER_SRC_CRAFTING_KNOWN = "Herstellbar: Bekannt", + SI_FURC_FILTER_SRC_CRAFTING_KNOWN_TT = "Zeigt nur bekannte, herstellbare Gegenstände", + SI_FURC_FILTER_SRC_CRAFTING_TT = "Zeigt alle herstellbaren Gegenstände", + SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN = "Herstellbar: Unbekannt", + SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN_TT = "Zeigt nur unbekannte, herstellbare Gegenstände", + SI_FURC_FILTER_SRC_CROWN = "Kronen-Shop", + SI_FURC_FILTER_SRC_CROWN_TT = "Zeigt Gegenstände, die nur im Kronen-Shop erworben werden können", + SI_FURC_FILTER_SRC_FAVE = "Favoriten", + SI_FURC_FILTER_SRC_FAVE_TT = "Zeigt Eure Favoriten", + SI_FURC_FILTER_SRC_LUX = "Luxusgüter", + SI_FURC_FILTER_SRC_LUX_TT = "Gegenstände, die irgendwann einmal von Zanil Theran, Ciceros Nahrung & Nützliches, Kalthafen, verkauft wurden", + SI_FURC_FILTER_SRC_NONE = "Quelle: aus", + SI_FURC_FILTER_SRC_NONE_TT = "deaktiviert diesen Filter", + SI_FURC_FILTER_SRC_OTHER = "Sonstige", + SI_FURC_FILTER_SRC_OTHER_TT = "Zeigt Gegenstände an, die gefarmt/gestohlen/gefunden werden können", + SI_FURC_FILTER_SRC_RUMOUR = "Gerüchte-Gegenstände", + SI_FURC_FILTER_SRC_RUMOUR_TT = "Gegenstände und Rezepte, deren Existenz zwar geprüft, aber noch nicht bestätigt wurde", + SI_FURC_FILTER_SRC_SOLD_AP = "Käuflich (AP)", + SI_FURC_FILTER_SRC_SOLD_AP_TT = "Gegenstände, die für Allianzpunkte erworben werden können", + SI_FURC_FILTER_SRC_SOLD_GOLD = "Käuflich (Gold)", + SI_FURC_FILTER_SRC_SOLD_GOLD_TT = "Zeigt nur Gegenstände, die nicht herstellbar sind", + SI_FURC_FILTER_SRC_SOLD_WRIT = "Meisterhandwerksvermittler", + SI_FURC_FILTER_SRC_SOLD_WRIT_TT = "Für Schriebscheine in der Hauptstadt Eurer Allianz erhältlich", SI_FURC_FILTER_VERSION_ALTMER_TT = "Glaubt Ihr immer noch, dass die Dunmer schlecht sind??", SI_FURC_FILTER_VERSION_BASED = "Grundspiel-Patch", SI_FURC_FILTER_VERSION_BASED_TT = "Wenn einem die Namen ausgehen", @@ -80,19 +95,10 @@ local strings = { SI_FURC_FILTER_VERSION_SLAVES_TT = "Was lehren Argonier ihre Kinder in der Schule? Hist-Baum.", SI_FURC_FILTER_VERSION_STONET_TT = "Es ist nicht wirklich aus Stein", SI_FURC_FILTER_VERSION_TIDES_TT = "Rothwardonen. Strukturell. Möblierung. (Irgendwie?)", - SI_FURC_FIVE_TO_SHOPPINGLIST = "5 zur Einkaufsliste hinzufügen", SI_FURC_GEYSER = "Kann von Geysir Muschel-Belohnungen auf Sommersend erbeutet werden", SI_FURC_GIANT_CLAM = "Kann von Riesenmuscheln und Geysir Muschel-Belohnungen auf Sommersend erbeutet werden", - SI_FURC_HIDE_CROWN_TT = "Der Kronen-Shop wird angezeigt. Zum Ausblenden klicken.", - SI_FURC_HIDE_RUMOUR_TT = "Gerüchte (unbestätigte) Gegenstände anzeigen. Zum Ausblenden anklicken.", SI_FURC_HOUSE = "Von einem Möbelkauf von <<1>>", - SI_FURC_ITEMSOURCE_EMPTY = "Gegenstandsquelle unbekannt.\nVersucht, die Dateien erneut zu scannen (Rechtsklick auf den Aktualisieren-Button).\nFalls immer noch nicht bekannt, schickt bitte eine Nachricht mit dem Gegenstandslink und der Quelle an @BerylBones", - SI_FURC_ITEMSOURCE_ITEMPACK = "Teil des Kronen-Shop-Pakets [<<1>>] ", - SI_FURC_ITEMSOURCE_SAFEBOX = "äußerst selten von Wertkassetten", - SI_FURC_ITEMSRC_TRIBUTE = "Von Ruhmesgeschichten-Belohnungskisten", - SI_FURC_ITEMSRC_TRIBUTE_RANKED = "Von gewerteten Ruhmesgeschichten-Partien (Belohnung in der Systemnachricht)", SI_FURC_LABEL_ENTRIES = " Einträge -", - SI_FURC_LEVELUP = "Kann als Stufenaufstiegs-Belohnung erhalten werden", SI_FURC_LOC_ALIKR_KOZANZET_SWI = "Alik'r-Wüste, Kozanset, Gasthaus von Süßwasser", SI_FURC_LOC_AURIDON_SKYWATCH = "Auridon, Himmelswacht", SI_FURC_LOC_BALFOYEN = "Bal Foyen^in", @@ -128,41 +134,40 @@ local strings = { SI_FURC_LOC_WROTHGAR = "in Wrothgar", SI_FURC_LOC_WSKYRIM = "in Western Skyrim", SI_FURC_LOOT_CHESTS = "von Schatztruhen", + SI_FURC_LOOT_FISH = "von Fischgründen", SI_FURC_LOOT_HARVEST = "von Erntevorkommen", SI_FURC_LOOT_PICKPOCKET = "durch Taschendiebstahl", SI_FURC_LOOT_SCRYING = "Ausgrabung", SI_FURC_LOOT_STEALING = "kann gestohlen werden", - SI_FURC_LUXURY = "Luxusgüter", - SI_FURC_LUXURY_TT = "Gegenstände, die irgendwann einmal von Zanil Theran, Ciceros Nahrung & Nützliches, Kalthafen, verkauft wurden", SI_FURC_MENU_HEADER = "|cD3B830Einrichtung|r:", - SI_FURC_FILTER_NONE = "Quelle: aus", - SI_FURC_FILTER_NONE_TT = "deaktiviert diesen Filter", SI_FURC_NPC_AUTOMATON = "von Automaten", - SI_FURC_ONE_TO_SHOPPINGLIST = "1 zur Einkaufsliste hinzufügen", - SI_FURC_OTHER = "Sonstige", - SI_FURC_OTHER_TT = "Zeigt Gegenstände an, die gefarmt/gestohlen/gefunden werden können", SI_FURC_PLANTS = "beim Ernten von Pflanzen", + SI_FURC_PLUGIN_SL_ADD_FIVE = "5 zur Einkaufsliste hinzufügen", + SI_FURC_PLUGIN_SL_ADD_ONE = "1 zur Einkaufsliste hinzufügen", SI_FURC_PLUNDERSKULL = "Kann von Plünderschädeln während des 'Hexen'-Fests erbeutet werden", SI_FURC_POST_ITEM = " - Gegenstand in den Chat schreiben", SI_FURC_POST_ITEMSOURCE = " - Quelle in den Chat schreiben", SI_FURC_POST_MATERIAL = " - Material in den Chat schreiben", SI_FURC_POST_RECIPE = " - Rezept in den Chat schreiben", SI_FURC_PSIJIC_RANK = "Psijik-Orden Rang ", - SI_FURC_FILTER_SOLD4AP = "Käuflich (AP)", - SI_FURC_FILTER_SOLD4AP_TT = "Gegenstände, die für Allianzpunkte erworben werden können", SI_FURC_QUESTREWARD = "Questbelohnung in ", SI_FURC_REMOVE_FAVE = " - Aus den Favoriten entfernen", SI_FURC_REQUIRES_ACHIEVEMENT = ", erfordert ", - SI_FURC_RUMOUR = "Gerüchte-Gegenstände", - SI_FURC_RUMOUR_SOURCE_ITEM = "Dieser Gegenstand wurde in der Datenbank gefunden, aber nicht im Spiel gesehen.", - SI_FURC_RUMOUR_SOURCE_RECIPE = "Dieses Rezept wurde in der Datenbank gefunden, aber nicht im Spiel gesehen.", - SI_FURC_RUMOUR_TT = "Gegenstände und Rezepte, deren Existenz zwar geprüft, aber noch nicht bestätigt wurde", SI_FURC_SCAMBOX = "Kronen-Kisten", SI_FURC_SCAMBOX_GEMS = "Kronen-Kisten Edelsteine", SI_FURC_SEEN_IN_GUILDSTORE = "Im Gildenladen gesehen", SI_FURC_SHOW_CROWN_TT = "Der Kronen-Shop wird ausblendet. Zum Anzeigen klicken.", SI_FURC_SHOW_RUMOUR_TT = "Nur bestätigte Gegenstände. Klicken, um Gerüchte anzuzeigen.", SI_FURC_SLAVES_DAILY = "von Belohnungskisten der tgl. Trübmoor-Quests", + SI_FURC_SRC_CROWNSTORE = "Kronen-Shop ", + SI_FURC_SRC_EMPTY = "Gegenstandsquelle unbekannt.\nVersucht, die Dateien erneut zu scannen (Rechtsklick auf den Aktualisieren-Button).\nFalls immer noch nicht bekannt, schickt bitte eine Nachricht mit dem Gegenstandslink und der Quelle an @BerylBones", + SI_FURC_SRC_ITEMPACK = "Teil des Kronen-Shop-Pakets [<<1>>] ", + SI_FURC_SRC_LVLUP = "Kann als Stufenaufstiegs-Belohnung erhalten werden", + SI_FURC_SRC_RUMOUR_ITEM = "Dieser Gegenstand wurde in der Datenbank gefunden, aber nicht im Spiel gesehen.", + SI_FURC_SRC_RUMOUR_RECIPE = "Dieses Rezept wurde in der Datenbank gefunden, aber nicht im Spiel gesehen.", + SI_FURC_SRC_SAFEBOX = "äußerst selten von Wertkassetten", + SI_FURC_SRC_TOT = "Von Ruhmesgeschichten-Belohnungskisten", + SI_FURC_SRC_TOT_RANKED = "Von gewerteten Ruhmesgeschichten-Partien (Belohnung in der Systemnachricht)", SI_FURC_STRING_CANNOT_CRAFT = "Ihr könnt das noch nicht herstellen", SI_FURC_STRING_CONTEXTMENU_DIVIDER = "Keine Trennlinie im Kontextmenü verwenden", SI_FURC_STRING_CONTEXTMENU_DIVIDER_TT = "Fügt dem Kontextmenü über dem Eintrag - Möbel - eine Trennlinie hinzu. Klicken zum Deaktivieren.", @@ -259,8 +264,6 @@ local strings = { SI_FURC_STRING_VOUCHER_VENDOR = "Wird entweder von Rolis Hlaalu oder von Faustina Curio verkauft", SI_FURC_STRING_WASSOLDBY = "Wurde von <<1>> in <<2>> verkauft (<<3>>) <<4>>", SI_FURC_STRING_WEEKEND_AROUND = "- zuletzt gesehen: <<1>>", - SI_FURC_FILTER_SOLD4WRIT = "Meisterhandwerksvermittler", - SI_FURC_FILTER_SOLD4WRIT_TT = "Für Schriebscheine in der Hauptstadt Eurer Allianz erhältlich", SI_FURC_TELVANNI_NECROM_FRF = "Nekrom, Einrichtung Letzte Ruhestätte", SI_FURC_TEXTBOX_FILTER_DEFAULT = "Durch Textsuche filtern", SI_FURC_TOGGLE_SHOPPINGLIST = " Einkaufsliste umschalten", @@ -273,15 +276,13 @@ local strings = { SI_FURC_TRADERS_ENCHANTERS = "Verzauberer", SI_FURC_TRADERS_OUTLAW = "Gesetzlosenunterschlupf, Händler", SI_FURC_TRADERS_UNDAUNTEDQM = "Quartiermeister der Unerschrockenen", - SI_FURC_FILTER_SOLD4GOLD = "Käuflich (Gold)", - SI_FURC_FILTER_SOLD4GOLD_TT = "Zeigt nur Gegenstände, die nicht herstellbar sind", SI_FURC_VERBOSE_SCANNING_CHARS = "Scanne keine Dateien, scanne jetzt Charakter-Kenntnisse...", SI_FURC_VERBOSE_SCANNING_DATA_FILE = "Furniture Catalogue: Scannen von Datensätzen...", SI_FURC_VERBOSE_STARTUP = "Furniture Catalogue: Wenn Ihr ein Rezept vermisst, löst bitte einen Scan Eures Möbel-Handwerkers aus, indem Ihr auf den Button 'Aktualisieren' in der Benutzeroberfläche klickt.", SI_FURC_VV_PAINTING = "Äußerst selten von Truhen oder Wertkassetten auf Vvardenfell", SI_FURC_WW = "gelegentlich in Holzvorkommen gefunden", SI_FURC_WW_DUNGEON_DROP = "Kann in der Mondjägerfeste / im Marsch der Aufopferung erbeutet werden", - -- 186 ENTRIES THE SAME IN BOTH LANGUAGES + -- 189 ENTRIES THE SAME IN BOTH LANGUAGES FURC_AV_DRAGONHOLD = "Dragonhold Armoury", FURC_AV_FIGHTERS_STEWARD = "Hall Steward", FURC_AV_IC_EVENT = "Imperial City Event", @@ -321,6 +322,11 @@ local strings = { SI_FURC_CRATE_WRAITH = "Wraithtide", SI_FURC_CRATE_XANMEER = "Xanmeer", SI_FURC_DROP_MURKMIRE = "Random mobs in Murkmire", + SI_FURC_DUNG = "dungeon;dungeons", + SI_FURC_DUNG_DOM = "Depths of Malatar", + SI_FURC_DUNG_MHK = "Monster Hunter Keep", + SI_FURC_DUNG_MOS = "March of the Sacrifices", + SI_FURC_EVENT = "event;events", SI_FURC_EVENT_HOLLOWJACK = "Sinister Hollowjack Items", SI_FURC_FILTER_VERSION_ALTMER = "Summerset", SI_FURC_FILTER_VERSION_BLACKW = "Blackwood", @@ -353,9 +359,10 @@ local strings = { SI_FURC_FILTER_VERSION_WEREWOLF_TT = "In Soviet Hunting Ground, werewolf hunt you", SI_FURC_FILTER_VERSION_WOTL = "Wrathstone", SI_FURC_FILTER_VERSION_WOTL_TT = "Wrathstone!", - SI_FURC_GRAMMAR_ITEMSRC_PREP_DEFAULT = "from", - SI_FURC_GRAMMAR_LOC_PREP_DEFAULT = "in", - SI_FURC_GRAMMAR_WORDORDER_LOC = "<<1>> <<2>>", + SI_FURC_GRAMMAR_CONJ_OR = "or", + SI_FURC_GRAMMAR_ORDER_LOC = "<<1>> <<2>>", + SI_FURC_GRAMMAR_PREP_LOC_DEFAULT = "in", + SI_FURC_GRAMMAR_PREP_SRC_DEFAULT = "from", SI_FURC_ITEMPACK_ALCHEMIST = "Mad Alchemist", SI_FURC_ITEMPACK_AMBITIONS = "Daedric Ambitions", SI_FURC_ITEMPACK_AQUATIC = "Aquatic Splendor", @@ -388,19 +395,12 @@ local strings = { SI_FURC_ITEMPACK_VIVEC = "Lord Vivec", SI_FURC_ITEMPACK_WINDOWS = "Windows of the Divines", SI_FURC_ITEMPACK_ZENI = "Chapel of Zenithar", - SI_FURC_ITEMSOURCE_DROP = "Drops <<1>>", - SI_FURC_ITEMSOURCE_MISCHOUSE = "From select house purchases", - SI_FURC_ITEMSRC_QUEST = "Quest", SI_FURC_LOC_APOCRYPHA = "Apocrypha", SI_FURC_LOC_ARTAEUM = "Artaeum", + SI_FURC_LOC_BLACKWOOD_LEYAWIIN = "Leyawiin", SI_FURC_LOC_CC = "Clockwork City", SI_FURC_LOC_CITY = "any city", SI_FURC_LOC_CRAGLORN_BELKARTH = "Belkarth", - SI_FURC_LOC_DUNG_DOM = "Depths of Malatar", - SI_FURC_LOC_DUNG_FL = "Fang Lair", - SI_FURC_LOC_DUNG_MHK = "Monster Hunter Keep", - SI_FURC_LOC_DUNG_MOS = "March of the Sacrifices", - SI_FURC_LOC_DUNG_SCP = "Scalecaller Peak", SI_FURC_LOC_KHENARTHI_MISTRAL = "Khenarthi's Roost, Mistral", SI_FURC_LOC_LILANDRIL = "Lilandril", SI_FURC_LOC_LILMOTH = "Lilmoth", @@ -417,9 +417,13 @@ local strings = { SI_FURC_NPC_SCHOLAR = "scholar;scholars", SI_FURC_NPC_THIEF = "thief;thieves", SI_FURC_NPC_WOODWORKER = "woodworker;woodworkers", - SI_FURC_OR = "or", SI_FURC_PART_OF = "Part of item <<1>>", + SI_FURC_SRC_DROP = "Drops <<1>>", + SI_FURC_SRC_DROP_DUNG = "Dungeon drop", + SI_FURC_SRC_MISCHOUSE = "From select house purchases", + SI_FURC_SRC_QUEST = "Quest", SI_FURC_STRING_AP = " AP", + SI_FURC_STRING_DUNG = "dungeon;dungeons", SI_FURC_STRING_PART_OF_COLL = "part of a collection", SI_FURC_STRING_TRADER = "Trader", SI_FURC_TRADERS_ADOSA = "Adosa Veralor", diff --git a/locale/en.lua b/locale/en.lua index 0ca4b018..1c2ee1ed 100644 --- a/locale/en.lua +++ b/locale/en.lua @@ -29,7 +29,6 @@ local strings = { FURC_SKYRIM_MASELA = "Masela", FURC_SKYRIM_NETINDELL = "Netindell", SI_FURC_ADD_FAVE = " Add Favorite", - SI_FURC_CANBEFISHED = "can be fished", SI_FURC_CHEST_VV = "Extremely rarely from chests on Vvardenfell", SI_FURC_CRATE_ALLMAKER = "All-Maker", SI_FURC_CRATE_ARMIGER = "Buoyant Armiger", @@ -64,9 +63,6 @@ local strings = { SI_FURC_CRATE_WILDHUNT = "Wild Hunt", SI_FURC_CRATE_WRAITH = "Wraithtide", SI_FURC_CRATE_XANMEER = "Xanmeer", - SI_FURC_FILTER_SOLD4CROWN = "Crown Store", - SI_FURC_FILTER_SOLD4CROWN_TT = "Shows items that can only be acquired from crown store", - SI_FURC_ITEMSRC_CROWNSTORE = "Crown Store ", SI_FURC_DAEDRA_SOURCE = "from Daedra and Dolmen chests", SI_FURC_DAILY_ASH = "Ashlander daily quest rewards", SI_FURC_DAILY_ELSWEYR = "Elsweyr daily quest rewards", @@ -79,25 +75,49 @@ local strings = { SI_FURC_DIALOGUE_RESET_DB_BODY = "This will re-create the FurnitureCatalogue database from scratch", SI_FURC_DIALOGUE_RESET_DB_HEADER = "Really re-create furniture database?", SI_FURC_DOM_DUNGEON_DROP = "Drops in Depth of Malatar", - SI_FURC_DRAGON_DUNGEON_DROP = "Fang Lair/Scalecaller Peak", SI_FURC_DROP = "This item is a drop ", SI_FURC_DROP_ALTMER = "This item is a drop on Summerset", SI_FURC_DROP_MURKMIRE = "Random mobs in Murkmire", + SI_FURC_DUNG = "dungeon;dungeons", + SI_FURC_DUNG_DOM = "Depths of Malatar", + SI_FURC_DUNG_FL = "Fang Lair", + SI_FURC_DUNG_MHK = "Monster Hunter Keep", + SI_FURC_DUNG_MOS = "March of the Sacrifices", + SI_FURC_DUNG_SCP = "Scalecaller Peak", SI_FURC_ELF_PIC = "Drops rarely from treasure chests on Summerset", - SI_FURC_EVENT_BLACKWOOD = "From participating in the Bounties of Blackwood event", + SI_FURC_EVENT = "event;events", + SI_FURC_EVENT_BLACKWOOD = "Bounties of Blackwood", SI_FURC_EVENT_ELSWEYR = "Elsweyr dragon event", SI_FURC_EVENT_HOLLOWJACK = "Sinister Hollowjack Items", - SI_FURC_FILTER_FAVE = "Favorites", - SI_FURC_FILTER_FAVE_TT = "Shows your favorites", SI_FURC_FESTIVAL_DROP = "can be acquired during <<1>> (<<2>>)", SI_FURC_FILTER_CHAR_OFF = "Character filter: off", SI_FURC_FILTER_CHAR_OFF_TT = "disables this filter", - SI_FURC_FILTER_CRAFTING = "Craftable: All", - SI_FURC_FILTER_CRAFTING_KNOWN = "Craftable: Known", - SI_FURC_FILTER_CRAFTING_KNOWN_TT = "Shows only known craftable items", - SI_FURC_FILTER_CRAFTING_TT = "Shows all craftable items", - SI_FURC_FILTER_CRAFTING_UNKNOWN = "Craftable: Unknown", - SI_FURC_FILTER_CRAFTING_UNKNOWN_TT = "Shows only unknown craftable items", + SI_FURC_FILTER_CROWN_HIDE_TT = "Showing crown store. Click to hide.", + SI_FURC_FILTER_RUMOUR_HIDE_TT = "Showing rumour (unconfirmed) items. Click to hide.", + SI_FURC_FILTER_SRC_CRAFTING = "Craftable: All", + SI_FURC_FILTER_SRC_CRAFTING_KNOWN = "Craftable: Known", + SI_FURC_FILTER_SRC_CRAFTING_KNOWN_TT = "Shows only known craftable items", + SI_FURC_FILTER_SRC_CRAFTING_TT = "Shows all craftable items", + SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN = "Craftable: Unknown", + SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN_TT = "Shows only unknown craftable items", + SI_FURC_FILTER_SRC_CROWN = "Crown Store", + SI_FURC_FILTER_SRC_CROWN_TT = "Shows items that can only be acquired from crown store", + SI_FURC_FILTER_SRC_FAVE = "Favorites", + SI_FURC_FILTER_SRC_FAVE_TT = "Shows your favorites", + SI_FURC_FILTER_SRC_LUX = "Luxury items", + SI_FURC_FILTER_SRC_LUX_TT = "Items that at some point were sold by Zanil Theran, Cicero's General Goods, Coldharbour", + SI_FURC_FILTER_SRC_NONE = "Source filter: off", + SI_FURC_FILTER_SRC_NONE_TT = "disables this filter", + SI_FURC_FILTER_SRC_OTHER = "Other", + SI_FURC_FILTER_SRC_OTHER_TT = "Shows items that can be farmed/stolen/found", + SI_FURC_FILTER_SRC_RUMOUR = "Rumour items", + SI_FURC_FILTER_SRC_RUMOUR_TT = "Items and recipes that have been datamined, but haven't been confirmed existing", + SI_FURC_FILTER_SRC_SOLD_AP = "Purchaseable (AP)", + SI_FURC_FILTER_SRC_SOLD_AP_TT = "Items that are sold for alliance points", + SI_FURC_FILTER_SRC_SOLD_GOLD = "Purchaseable (gold)", + SI_FURC_FILTER_SRC_SOLD_GOLD_TT = "Shows only items that cannot be crafted", + SI_FURC_FILTER_SRC_SOLD_WRIT = "Master Writ Vendor", + SI_FURC_FILTER_SRC_SOLD_WRIT_TT = "Obtainable for Master Writs in your alliance's capital", SI_FURC_FILTER_VERSION_ALTMER = "Summerset", SI_FURC_FILTER_VERSION_ALTMER_TT = "Still think the Dunmer are bad?", SI_FURC_FILTER_VERSION_BASED = "Base Game Patch", @@ -156,14 +176,12 @@ local strings = { SI_FURC_FILTER_VERSION_WEREWOLF_TT = "In Soviet Hunting Ground, werewolf hunt you", SI_FURC_FILTER_VERSION_WOTL = "Wrathstone", SI_FURC_FILTER_VERSION_WOTL_TT = "Wrathstone!", - SI_FURC_FIVE_TO_SHOPPINGLIST = "Add 5 to shopping list", SI_FURC_GEYSER = "Drops from geyser reward clams on Summerset", SI_FURC_GIANT_CLAM = "Drops from giant clams and geyser reward clams on Summerset", - SI_FURC_GRAMMAR_ITEMSRC_PREP_DEFAULT = "from", - SI_FURC_GRAMMAR_LOC_PREP_DEFAULT = "in", - SI_FURC_GRAMMAR_WORDORDER_LOC = "<<1>> <<2>>", -- EN: "preposition location" like "on Betnikh" - SI_FURC_HIDE_CROWN_TT = "Showing crown store. Click to hide.", - SI_FURC_HIDE_RUMOUR_TT = "Showing rumour (unconfirmed) items. Click to hide.", + SI_FURC_GRAMMAR_CONJ_OR = "or", + SI_FURC_GRAMMAR_ORDER_LOC = "<<1>> <<2>>", -- EN: " " like "on Betnikh" + SI_FURC_GRAMMAR_PREP_LOC_DEFAULT = "in", + SI_FURC_GRAMMAR_PREP_SRC_DEFAULT = "from", SI_FURC_HOUSE = "From a furnished purchase of <<1>>", SI_FURC_ITEMPACK_ALCHEMIST = "Mad Alchemist", SI_FURC_ITEMPACK_AMBITIONS = "Daedric Ambitions", @@ -197,25 +215,17 @@ local strings = { SI_FURC_ITEMPACK_VIVEC = "Lord Vivec", SI_FURC_ITEMPACK_WINDOWS = "Windows of the Divines", SI_FURC_ITEMPACK_ZENI = "Chapel of Zenithar", - SI_FURC_ITEMSOURCE_DROP = "Drops <<1>>", - SI_FURC_ITEMSOURCE_EMPTY = "Item source unknown.\nTry to re-scan files (refresh button right click).\nIf the item is still unknown - and not part of the weekend furnisher's current inventory - please send a mail with the item link and -source to @berylbones.", - SI_FURC_ITEMSOURCE_ITEMPACK = "Part of the Crown Store item pack [<<1>>] ", - SI_FURC_ITEMSOURCE_MISCHOUSE = "From select house purchases", - SI_FURC_ITEMSOURCE_SAFEBOX = "extremely rarely from safeboxes", - SI_FURC_ITEMSRC_QUEST = "Quest", - SI_FURC_ITEMSRC_TRIBUTE = "From Tales of Tribute reward coffers", - SI_FURC_ITEMSRC_TRIBUTE_RANKED = "From Tales of Tribute ranked matches (system mail reward)", SI_FURC_LABEL_ENTRIES = " entries -", - SI_FURC_LEVELUP = "Can be gained as levelup reward", - SI_FURC_LOC_ALIKR_KOZANZET_SWI = "Alik'r, Kozanzet, Sweetwater Inn", + SI_FURC_LOC_ALIKR_KOZANZET_SWI = "Sweetwater Inn", SI_FURC_LOC_APOCRYPHA = "Apocrypha", SI_FURC_LOC_ARTAEUM = "Artaeum", - SI_FURC_LOC_AURIDON_SKYWATCH = "Skywatch, Auridon", + SI_FURC_LOC_AURIDON_SKYWATCH = "Auridon", SI_FURC_LOC_BALFOYEN = "Bal Foyen", - SI_FURC_LOC_BALFOYEN_DHALMORA = "Dhalmora, Bal Foyen", - SI_FURC_LOC_BETHNIKH_LTT = "Bethnikh, Loose Tooth Tavern", + SI_FURC_LOC_BALFOYEN_DHALMORA = "Dhalmora", + SI_FURC_LOC_BETHNIKH_LTT = "Loose Tooth Tavern", SI_FURC_LOC_BLACKWOOD = "Blackwood", - SI_FURC_LOC_BLACKWOOD_LEYAWIIN_DBF = "Leyawiin, Domestic Bliss Furnishings", + SI_FURC_LOC_BLACKWOOD_LEYAWIIN = "Leyawiin", + SI_FURC_LOC_BLACKWOOD_LEYAWIIN_DBF = "Domestic Bliss Furnishings", SI_FURC_LOC_CAPITAL = "any capital city", SI_FURC_LOC_CC = "Clockwork City", SI_FURC_LOC_CC_CITADEL_MARKET = "The Brass Citadel, Market", @@ -225,11 +235,6 @@ local strings = { SI_FURC_LOC_CRAGLORN = "Craglorn", SI_FURC_LOC_CRAGLORN_BELKARTH = "Belkarth", SI_FURC_LOC_CRAGLORN_BELKARTH_WOOD = "Craglorn, Belkarth Woodworking store", - SI_FURC_LOC_DUNG_DOM = "Depths of Malatar", - SI_FURC_LOC_DUNG_FL = "Fang Lair", - SI_FURC_LOC_DUNG_MHK = "Monster Hunter Keep", - SI_FURC_LOC_DUNG_MOS = "March of the Sacrifices", - SI_FURC_LOC_DUNG_SCP = "Scalecaller Peak", SI_FURC_LOC_EASTMARCH = "Eastmarch", SI_FURC_LOC_EASTMARCH_AMOL = "Fort Amol", SI_FURC_LOC_ELSWEYR = "Elsweyr", @@ -260,15 +265,12 @@ local strings = { SI_FURC_LOC_WROTHGAR = "Wrothgar", SI_FURC_LOC_WSKYRIM = "Western Skyrim", SI_FURC_LOOT_CHESTS = "treasure chests", + SI_FURC_LOOT_FISH = "can be fished", SI_FURC_LOOT_HARVEST = "from harvesting nodes", SI_FURC_LOOT_PICKPOCKET = "Pickpocket", SI_FURC_LOOT_SCRYING = "from scrying", SI_FURC_LOOT_STEALING = "Stealing", - SI_FURC_LUXURY = "Luxury items", - SI_FURC_LUXURY_TT = "Items that at some point were sold by Zanil Theran, Cicero's General Goods, Coldharbour", SI_FURC_MENU_HEADER = "- |cD3B830Furniture|r:", - SI_FURC_FILTER_NONE = "Source filter: off", - SI_FURC_FILTER_NONE_TT = "disables this filter", SI_FURC_NPC_AUTOMATON = "from automatons", SI_FURC_NPC_DRUNKARD = "drunkard;drunkards", SI_FURC_NPC_GUARD = "guard;guards", @@ -278,40 +280,38 @@ local strings = { SI_FURC_NPC_SCHOLAR = "scholar;scholars", SI_FURC_NPC_THIEF = "thief;thieves", SI_FURC_NPC_WOODWORKER = "woodworker;woodworkers", - SI_FURC_ONE_TO_SHOPPINGLIST = "Add 1 to shopping list", - SI_FURC_OR = "or", - SI_FURC_OTHER = "Other", - SI_FURC_OTHER_TT = "Shows items that can be farmed/stolen/found", SI_FURC_PART_OF = "Part of item <<1>>", SI_FURC_PLANTS = "from harvesting plants", + SI_FURC_PLUGIN_SL_ADD_FIVE = "Add 5 to shopping list", + SI_FURC_PLUGIN_SL_ADD_ONE = "Add 1 to shopping list", SI_FURC_PLUNDERSKULL = "Drops from Plunder Skulls during Witches' Festival", SI_FURC_POST_ITEM = " Post item", SI_FURC_POST_ITEMSOURCE = " Post item source", SI_FURC_POST_MATERIAL = " Post material", SI_FURC_POST_RECIPE = " Post recipe", SI_FURC_PSIJIC_RANK = "Psijic Order Rank ", - SI_FURC_FILTER_SOLD4AP = "Purchaseable (AP)", - SI_FURC_FILTER_SOLD4AP_TT = "Items that are sold for alliance points", SI_FURC_QUESTREWARD = "Reward for a quest in ", SI_FURC_REMOVE_FAVE = " Remove Favorite", SI_FURC_REQUIRES_ACHIEVEMENT = ", requires ", - SI_FURC_RUMOUR = "Rumour items", - SI_FURC_RUMOUR_SOURCE_ITEM = "This item has been datamined, but not seen in-game", - SI_FURC_RUMOUR_SOURCE_RECIPE = "This recipe has been datamined, but not seen in-game", - SI_FURC_RUMOUR_TT = "Items and recipes that have been datamined, but haven't been confirmed existing", - SI_FURC_SCAMBOX = "Crown Crates", - SI_FURC_SCAMBOX_GEMS = "Crown Crate Gems", - SI_FURC_SEEN_IN_GUILDSTORE = "Seen in Guild Store", - SI_FURC_SHOW_CROWN_TT = "Hiding crown store. Click to show.", - SI_FURC_SHOW_RUMOUR_TT = "Confirmed items only. Click to show rumour items.", - SI_FURC_SLAVES_DAILY = "from Murkmire daily quest reward boxes", - SI_FURC_RUMOUR_TT = "Items and recipes that have been datamined, but haven't been confirmed existing", SI_FURC_SCAMBOX = "Crown Crates", SI_FURC_SCAMBOX_GEMS = "Crown Crate Gems", SI_FURC_SEEN_IN_GUILDSTORE = "Seen in Guild Store", SI_FURC_SHOW_CROWN_TT = "Hiding crown store. Click to show.", SI_FURC_SHOW_RUMOUR_TT = "Confirmed items only. Click to show rumour items.", SI_FURC_SLAVES_DAILY = "from Murkmire daily quest reward boxes", + SI_FURC_SRC_CROWNSTORE = "Crown Store ", + SI_FURC_SRC_DROP = "Drops <<1>>", + SI_FURC_SRC_DROP_DUNG = "Dungeon drop", + SI_FURC_SRC_EMPTY = "Item source unknown.\nTry to re-scan files (refresh button right click).\nIf the item is still unknown - and not part of the weekend furnisher's current inventory - please send a mail with the item link and -source to @berylbones.", + SI_FURC_SRC_ITEMPACK = "Part of the Crown Store item pack [<<1>>] ", + SI_FURC_SRC_LVLUP = "Can be gained as levelup reward", + SI_FURC_SRC_MISCHOUSE = "From select house purchases", + SI_FURC_SRC_QUEST = "Quest", + SI_FURC_SRC_RUMOUR_ITEM = "This item has been datamined, but not seen in-game", + SI_FURC_SRC_RUMOUR_RECIPE = "This recipe has been datamined, but not seen in-game", + SI_FURC_SRC_SAFEBOX = "extremely rarely from safeboxes", + SI_FURC_SRC_TOT = "From Tales of Tribute reward coffers", + SI_FURC_SRC_TOT_RANKED = "From Tales of Tribute ranked matches (system mail reward)", SI_FURC_STRING_AP = " AP", SI_FURC_STRING_CANNOT_CRAFT = "You cannot craft this yet", SI_FURC_STRING_CONTEXTMENU_DIVIDER = "Don't use divider in context menu?", @@ -319,6 +319,7 @@ local strings = { SI_FURC_STRING_CONTEXTMENU_INVENTORY = "Disable context menu in inventory?", SI_FURC_STRING_CONTEXTMENU_INVENTORY_TT = "Disables the context for inventory items like posting material and adding to favourites.", SI_FURC_STRING_CRAFTABLE_BY = "Can be crafted by ", + SI_FURC_STRING_DUNG = "dungeon;dungeons", SI_FURC_STRING_FAUSTINA = "Sold by |cd68957Faustina Curio|r <<1>>", SI_FURC_STRING_FOR_VOUCHERS = "for <<1>> vouchers", SI_FURC_STRING_MENU_ADD_ITEMS_NAME = "Add items to known/unknown recipes?", @@ -464,8 +465,6 @@ local strings = { SI_FURC_STRING_VOUCHER_VENDOR = "Sold by either Rolis Hlaalu or Faustina Curio", SI_FURC_STRING_WASSOLDBY = "Was sold by <<1>> in <<2>> (<<3>>) <<4>>", SI_FURC_STRING_WEEKEND_AROUND = "(around <<1>>)", - SI_FURC_FILTER_SOLD4WRIT = "Master Writ Vendor", - SI_FURC_FILTER_SOLD4WRIT_TT = "Obtainable for Master Writs in your alliance's capital", SI_FURC_TELVANNI_NECROM_FRF = "Necrom, Final Rest Furnishings", SI_FURC_TEXTBOX_FILTER_DEFAULT = "Filter by text search", SI_FURC_TOGGLE_SHOPPINGLIST = " Toggle shopping list", @@ -523,8 +522,6 @@ local strings = { SI_FURC_TRADERS_YATAVA = "Yatava", SI_FURC_TRADERS_ZADRASKA = "Zadraska", SI_FURC_TRADERS_ZANIL = "Zanil Theran", - SI_FURC_FILTER_SOLD4GOLD = "Purchaseable (gold)", - SI_FURC_FILTER_SOLD4GOLD_TT = "Shows only items that cannot be crafted", SI_FURC_VERBOSE_DB_UPTODATE = "Furniture Catalogue: The database is up-to-date.", SI_FURC_VERBOSE_SCANNING_CHARS = "Not scanning files, scanning character knowledge now...", SI_FURC_VERBOSE_SCANNING_DATA_FILE = "Furniture Catalogue: Scanning data files...", diff --git a/locale/fr.lua b/locale/fr.lua index bcd4d605..aa2a72e5 100644 --- a/locale/fr.lua +++ b/locale/fr.lua @@ -1,14 +1,10 @@ local strings = { -- ////// START : DON'T REMOVE THIS LINE SI_FURC_ADD_FAVE = " Ajouter un favori", - SI_FURC_CANBEFISHED = "Peut être pêché ", SI_FURC_CHEST_VV = "Extrêmement rarement dans les coffres à Vvardenfell", SI_FURC_CRATE_DWEMER = "Dwemer", SI_FURC_CRATE_FIREATRO = "Atronach de Flamme ", SI_FURC_CRATE_REAPER = "de la Moisson de la Faucheuse", - SI_FURC_FILTER_SOLD4CROWN = "Boutique à Couronnes", - SI_FURC_FILTER_SOLD4CROWN_TT = "Affiche les articles qui ne peuvent être achetés que dans la boutique à couronnes", - SI_FURC_ITEMSRC_CROWNSTORE = "Boutique à Couronnes ", SI_FURC_DAEDRA_SOURCE = "Des Daedra et Coffres des Dolmen ", SI_FURC_DAILY_ASH = "Récompenses des quêtes quotidiennes d'Ashlander au Camp d'Ald’ruhn ", SI_FURC_DAILY_ELSWEYR = "Récompenses des quêtes quotidiennes d'Elsweyr ", @@ -19,22 +15,42 @@ local strings = { SI_FURC_DEBUG_CHARSCANCOMPLETE = "Furniture Catalogue: Analyse des caractères terminée...", SI_FURC_DIALOGUE_RESET_DB_BODY = "Cela recréera la base de données de FurnitureCatalogue à partir de zéro", SI_FURC_DIALOGUE_RESET_DB_HEADER = "Recréez la base de données de meubles?", - SI_FURC_DRAGON_DUNGEON_DROP = "Repaire du Croc/Pic de la Mandécailles", SI_FURC_DROP = "Cet article se ramasse ", SI_FURC_DROP_ALTMER = "Cet article se ramasse à Summerset ", + SI_FURC_DUNG_FL = "Repaire du Croc", + SI_FURC_DUNG_SCP = "Pic de la Mandécailles", SI_FURC_ELF_PIC = "Tombe rarement dans les coffres au trésor à Summerset", + SI_FURC_EVENT_BLACKWOOD = "From participating in the Bounties of Blackwood event", SI_FURC_EVENT_ELSWEYR = "Événement de Dragon d'Elsweyr ", - SI_FURC_FILTER_FAVE = "Favoris", - SI_FURC_FILTER_FAVE_TT = "Affiche vos favoris", SI_FURC_FESTIVAL_DROP = "Peut être acquis pendant <<1>> (<<2>>)", SI_FURC_FILTER_CHAR_OFF = "Filtre de Personnages: désactivé", SI_FURC_FILTER_CHAR_OFF_TT = "Filtre Désactivé", - SI_FURC_FILTER_CRAFTING = "Fabriquable: Tous", - SI_FURC_FILTER_CRAFTING_KNOWN = "Fabriquable: connu", - SI_FURC_FILTER_CRAFTING_KNOWN_TT = "Affiche uniquement les objets fabriquable connus", - SI_FURC_FILTER_CRAFTING_TT = "Affiche tous les objets à fabriquer", - SI_FURC_FILTER_CRAFTING_UNKNOWN = "Fabriquable: inconnu", - SI_FURC_FILTER_CRAFTING_UNKNOWN_TT = "Affiche uniquement les objets fabriquable inconnus", + SI_FURC_FILTER_CROWN_HIDE_TT = "Montrer la boutique à couronne. Cliquez pour cacher.", + SI_FURC_FILTER_RUMOUR_HIDE_TT = "Affichage des éléments signalé (Rumeur, non confirmés). Cliquez pour cacher.", + SI_FURC_FILTER_SRC_CRAFTING = "Fabriquable: Tous", + SI_FURC_FILTER_SRC_CRAFTING_KNOWN = "Fabriquable: connu", + SI_FURC_FILTER_SRC_CRAFTING_KNOWN_TT = "Affiche uniquement les objets fabriquable connus", + SI_FURC_FILTER_SRC_CRAFTING_TT = "Affiche tous les objets à fabriquer", + SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN = "Fabriquable: inconnu", + SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN_TT = "Affiche uniquement les objets fabriquable inconnus", + SI_FURC_FILTER_SRC_CROWN = "Boutique à Couronnes", + SI_FURC_FILTER_SRC_CROWN_TT = "Affiche les articles qui ne peuvent être achetés que dans la boutique à couronnes", + SI_FURC_FILTER_SRC_FAVE = "Favoris", + SI_FURC_FILTER_SRC_FAVE_TT = "Affiche vos favoris", + SI_FURC_FILTER_SRC_LUX = "Articles de luxe", + SI_FURC_FILTER_SRC_LUX_TT = "Articles qui à un moment donné ont été vendus par Zanil Theran, Havreglace", + SI_FURC_FILTER_SRC_NONE = "Filtre source: désactivé", + SI_FURC_FILTER_SRC_NONE_TT = "Désactive ce filtre", + SI_FURC_FILTER_SRC_OTHER = "Autre", + SI_FURC_FILTER_SRC_OTHER_TT = "Affiche les objets qui peuvent être ramassées/volés/trouvés", + SI_FURC_FILTER_SRC_RUMOUR = "Articles signalé (Rumeur)", + SI_FURC_FILTER_SRC_RUMOUR_TT = "Articles et recettes qui ont été dataminés, mais qui n'ont pas été confirmés existants", + SI_FURC_FILTER_SRC_SOLD_AP = "Achetable (PA)", + SI_FURC_FILTER_SRC_SOLD_AP_TT = "Objets vendus contre des points d'alliance", + SI_FURC_FILTER_SRC_SOLD_GOLD = "Achetable (OR)", + SI_FURC_FILTER_SRC_SOLD_GOLD_TT = "Affiche uniquement les objets qui ne peuvent pas être fabriqués", + SI_FURC_FILTER_SRC_SOLD_WRIT = "Vendeur commandes de maîtres", + SI_FURC_FILTER_SRC_SOLD_WRIT_TT = "Obtenable par les commandes de maîtres dans la capitale de votre alliance", SI_FURC_FILTER_VERSION_ALTMER_TT = "Je pense toujours que les Dunmer sont mauvais?", SI_FURC_FILTER_VERSION_CC_TT = "Où les volants tournent et le laiton est joli", SI_FURC_FILTER_VERSION_DRAGON_TT = "Si vous avez ça de Narsis Dren, eh bien...", @@ -50,19 +66,17 @@ local strings = { SI_FURC_FILTER_VERSION_SLAVES_TT = "Qu'est-ce que les enfants argoniens apprennent à l'école? Arbre-Hist.", SI_FURC_FILTER_VERSION_STONET_TT = "Ce n'est pas vraiment de la pierre", SI_FURC_FILTER_VERSION_WEREWOLF_TT = "Dans le terrain de chasse soviétique, le loup-garou vous chasse", - SI_FURC_FIVE_TO_SHOPPINGLIST = " Ajouter 5 à la liste de courses", SI_FURC_GEYSER = "Ramasser dans les palourdes et récompense de geyser à Summerset", SI_FURC_GIANT_CLAM = "Ramasser dans les palourdes géantes et récompense de geyser à Summerset", - SI_FURC_HIDE_CROWN_TT = "Montrer la boutique à couronne. Cliquez pour cacher.", - SI_FURC_HIDE_RUMOUR_TT = "Affichage des éléments signalé (Rumeur, non confirmés). Cliquez pour cacher.", SI_FURC_HOUSE = "À partir d'un achat meublé de <<1>>", - SI_FURC_ITEMSOURCE_EMPTY = "Source de l'article inconnue.\nEssayez de réanalyser les fichiers (bouton d'actualisation clic droit).\nSi toujours inconnu après, veuillez envoyer un e-mail avec le lien de l'article et -source à @BerylBones", - SI_FURC_ITEMSOURCE_ITEMPACK = "Fait partie du pack d'objets de la Boutique à Couronnes [<<1>>] ", - SI_FURC_ITEMSOURCE_SAFEBOX = "Extrêmement rarement dans les Cassetes", SI_FURC_LABEL_ENTRIES = " entrées -", - SI_FURC_LEVELUP = "Peut être gagné comme récompense de niveau supérieur", + SI_FURC_LOC_ALIKR_KOZANZET_SWI = "Alik'r, Kozanzet, Sweetwater Inn", + SI_FURC_LOC_AURIDON_SKYWATCH = "Skywatch, Auridon", SI_FURC_LOC_BALFOYEN = "Bal Foyen^in", + SI_FURC_LOC_BALFOYEN_DHALMORA = "Dhalmora, Bal Foyen", + SI_FURC_LOC_BETHNIKH_LTT = "Bethnikh, Loose Tooth Tavern", SI_FURC_LOC_BLACKWOOD = "in Blackwood", + SI_FURC_LOC_BLACKWOOD_LEYAWIIN_DBF = "Leyawiin, Domestic Bliss Furnishings", SI_FURC_LOC_CAPITAL = "N'importe quelle capitale", SI_FURC_LOC_COLDH_HOLLOW = "Cité Creuse", SI_FURC_LOC_COLDH_HOLLOW_CGG = "Coldharbour, Hollow City, Cicero's General Good", @@ -83,40 +97,37 @@ local strings = { SI_FURC_LOC_WROTHGAR = "in Wrothgar", SI_FURC_LOC_WSKYRIM = "in Western Skyrim", SI_FURC_LOOT_CHESTS = "Des Cassetes", + SI_FURC_LOOT_FISH = "Peut être pêché ", SI_FURC_LOOT_HARVEST = "Des nœuds de récolte ", SI_FURC_LOOT_PICKPOCKET = "Peut être volé à la tire ", SI_FURC_LOOT_SCRYING = "A partir des Pistes ", SI_FURC_LOOT_STEALING = "Peut être volé ", - SI_FURC_LUXURY = "Articles de luxe", - SI_FURC_LUXURY_TT = "Articles qui à un moment donné ont été vendus par Zanil Theran, Havreglace", SI_FURC_MENU_HEADER = "- |cD3B830Meubles|r:", - SI_FURC_FILTER_NONE = "Filtre source: désactivé", - SI_FURC_FILTER_NONE_TT = "Désactive ce filtre", SI_FURC_NPC_AUTOMATON = "Des automates ", - SI_FURC_ONE_TO_SHOPPINGLIST = " Ajouter 1 à la liste de courses", - SI_FURC_OTHER = "Autre", - SI_FURC_OTHER_TT = "Affiche les objets qui peuvent être ramassées/volés/trouvés", SI_FURC_PLANTS = "De la récolte des plantes ", + SI_FURC_PLUGIN_SL_ADD_FIVE = " Ajouter 5 à la liste de courses", + SI_FURC_PLUGIN_SL_ADD_ONE = " Ajouter 1 à la liste de courses", SI_FURC_PLUNDERSKULL = "Ramasser dans les Crânes, pendant le festival des sorcières ", SI_FURC_POST_ITEM = " Publier l'article", SI_FURC_POST_ITEMSOURCE = " Publier la source de l'article", SI_FURC_POST_MATERIAL = " Publier le Matériel", SI_FURC_POST_RECIPE = " Publier la recette", SI_FURC_PSIJIC_RANK = "Rang De l'ordre Psijique ", - SI_FURC_FILTER_SOLD4AP = "Achetable (PA)", - SI_FURC_FILTER_SOLD4AP_TT = "Objets vendus contre des points d'alliance", SI_FURC_QUESTREWARD = "Récompense pour une quête en ", SI_FURC_REMOVE_FAVE = " Supprimer le favori", SI_FURC_REQUIRES_ACHIEVEMENT = ", A besoin ", - SI_FURC_RUMOUR = "Articles signalé (Rumeur)", - SI_FURC_RUMOUR_SOURCE_ITEM = "Cet objet a été dataminé, mais pas vu dans le jeu", - SI_FURC_RUMOUR_SOURCE_RECIPE = "Cette recette a été dataminée, mais pas vue dans le jeu", - SI_FURC_RUMOUR_TT = "Articles et recettes qui ont été dataminés, mais qui n'ont pas été confirmés existants", SI_FURC_SCAMBOX = "Caisses à Couronne ", SI_FURC_SEEN_IN_GUILDSTORE = "Vu dans le magasin de guilde", SI_FURC_SHOW_CROWN_TT = "Cacher la boutique à couronne. Cliquez pour montrer.", SI_FURC_SHOW_RUMOUR_TT = "Articles confirmés uniquement. Cliquez pour afficher les éléments signalé (Rumeur).", SI_FURC_SLAVES_DAILY = "Des boîtes de récompense de la préquête de Murkmire", + SI_FURC_SRC_CROWNSTORE = "Boutique à Couronnes ", + SI_FURC_SRC_EMPTY = "Source de l'article inconnue.\nEssayez de réanalyser les fichiers (bouton d'actualisation clic droit).\nSi toujours inconnu après, veuillez envoyer un e-mail avec le lien de l'article et -source à @BerylBones", + SI_FURC_SRC_ITEMPACK = "Fait partie du pack d'objets de la Boutique à Couronnes [<<1>>] ", + SI_FURC_SRC_LVLUP = "Peut être gagné comme récompense de niveau supérieur", + SI_FURC_SRC_RUMOUR_ITEM = "Cet objet a été dataminé, mais pas vu dans le jeu", + SI_FURC_SRC_RUMOUR_RECIPE = "Cette recette a été dataminée, mais pas vue dans le jeu", + SI_FURC_SRC_SAFEBOX = "Extrêmement rarement dans les Cassetes", SI_FURC_STRING_AP = " PA", SI_FURC_STRING_CANNOT_CRAFT = "Vous ne pouvez pas encore créer cela", SI_FURC_STRING_CONTEXTMENU_DIVIDER = "N'utilisez pas le diviseur dans le menu contextuel?", @@ -209,8 +220,6 @@ local strings = { SI_FURC_STRING_VOUCHER_VENDOR = "Vendu par l'un ou l'autre Rolis Hlaalu ou Faustina Curio", SI_FURC_STRING_WASSOLDBY = "A été vendu par <<1>> à <<2>> (<<3>>) <<4>>", SI_FURC_STRING_WEEKEND_AROUND = "(autour <<1>>)", - SI_FURC_FILTER_SOLD4WRIT = "Vendeur commandes de maîtres", - SI_FURC_FILTER_SOLD4WRIT_TT = "Obtenable par les commandes de maîtres dans la capitale de votre alliance", SI_FURC_TEXTBOX_FILTER_DEFAULT = "Filtrer par recherche de texte", SI_FURC_TOGGLE_SHOPPINGLIST = " Basculer la liste de courses", SI_FURC_TOMBS = "Tombes et ruines ancestral à Vvardenfell", @@ -225,8 +234,6 @@ local strings = { SI_FURC_TRADERS_MULVISE = "Mulvisë Valyn", SI_FURC_TRADERS_NARWAAWENDE = "Narwaawendë", SI_FURC_TRADERS_OUTLAW = "Refuge hors-la-loi, Marchand", - SI_FURC_FILTER_SOLD4GOLD = "Achetable (OR)", - SI_FURC_FILTER_SOLD4GOLD_TT = "Affiche uniquement les objets qui ne peuvent pas être fabriqués", SI_FURC_VERBOSE_DB_UPTODATE = "Furniture Catalogue: La base de données est à jour.", SI_FURC_VERBOSE_SCANNING_CHARS = "Ne pas analyser les fichiers, scanner la connaissance des personnages maintenant...", SI_FURC_VERBOSE_SCANNING_DATA_FILE = "Furniture Catalogue: Analyse des fichiers de données...", @@ -234,7 +241,7 @@ local strings = { SI_FURC_VV_PAINTING = "Extrêmement rarement dans les coffres ou des Cassetes à Vvardenfell ", SI_FURC_WW = "Parfois trouvé dans les nœuds de bois ", SI_FURC_WW_DUNGEON_DROP = "Trouvez sur les Monstres à Le Fort du Chasseur Lunaire/La Procession des Sacrifiés", - -- 232 ENTRIES THE SAME IN BOTH LANGUAGES + -- 229 ENTRIES THE SAME IN BOTH LANGUAGES FURC_AV_DRAGONHOLD = "Dragonhold Armoury", FURC_AV_ENDLESS = "Endless Archive", FURC_AV_EVERMORE = "Bangkorai, Evermore", @@ -290,7 +297,11 @@ local strings = { SI_FURC_DB_EQUIP = "with equipment", SI_FURC_DOM_DUNGEON_DROP = "Drops in Depth of Malatar", SI_FURC_DROP_MURKMIRE = "Random mobs in Murkmire", - SI_FURC_EVENT_BLACKWOOD = "From participating in the Bounties of Blackwood event", + SI_FURC_DUNG = "dungeon;dungeons", + SI_FURC_DUNG_DOM = "Depths of Malatar", + SI_FURC_DUNG_MHK = "Monster Hunter Keep", + SI_FURC_DUNG_MOS = "March of the Sacrifices", + SI_FURC_EVENT = "event;events", SI_FURC_EVENT_HOLLOWJACK = "Sinister Hollowjack Items", SI_FURC_FILTER_VERSION_ALTMER = "Summerset", SI_FURC_FILTER_VERSION_BASED = "Base Game Patch", @@ -335,9 +346,10 @@ local strings = { SI_FURC_FILTER_VERSION_WEREWOLF = "Wolfhunter", SI_FURC_FILTER_VERSION_WOTL = "Wrathstone", SI_FURC_FILTER_VERSION_WOTL_TT = "Wrathstone!", - SI_FURC_GRAMMAR_ITEMSRC_PREP_DEFAULT = "from", - SI_FURC_GRAMMAR_LOC_PREP_DEFAULT = "in", - SI_FURC_GRAMMAR_WORDORDER_LOC = "<<1>> <<2>>", + SI_FURC_GRAMMAR_CONJ_OR = "or", + SI_FURC_GRAMMAR_ORDER_LOC = "<<1>> <<2>>", + SI_FURC_GRAMMAR_PREP_LOC_DEFAULT = "in", + SI_FURC_GRAMMAR_PREP_SRC_DEFAULT = "from", SI_FURC_ITEMPACK_ALCHEMIST = "Mad Alchemist", SI_FURC_ITEMPACK_AMBITIONS = "Daedric Ambitions", SI_FURC_ITEMPACK_AQUATIC = "Aquatic Splendor", @@ -370,28 +382,14 @@ local strings = { SI_FURC_ITEMPACK_VIVEC = "Lord Vivec", SI_FURC_ITEMPACK_WINDOWS = "Windows of the Divines", SI_FURC_ITEMPACK_ZENI = "Chapel of Zenithar", - SI_FURC_ITEMSOURCE_DROP = "Drops <<1>>", - SI_FURC_ITEMSOURCE_MISCHOUSE = "From select house purchases", - SI_FURC_ITEMSRC_QUEST = "Quest", - SI_FURC_ITEMSRC_TRIBUTE = "From Tales of Tribute reward coffers", - SI_FURC_ITEMSRC_TRIBUTE_RANKED = "From Tales of Tribute ranked matches (system mail reward)", - SI_FURC_LOC_ALIKR_KOZANZET_SWI = "Alik'r, Kozanzet, Sweetwater Inn", SI_FURC_LOC_APOCRYPHA = "Apocrypha", SI_FURC_LOC_ARTAEUM = "Artaeum", - SI_FURC_LOC_AURIDON_SKYWATCH = "Skywatch, Auridon", - SI_FURC_LOC_BALFOYEN_DHALMORA = "Dhalmora, Bal Foyen", - SI_FURC_LOC_BETHNIKH_LTT = "Bethnikh, Loose Tooth Tavern", - SI_FURC_LOC_BLACKWOOD_LEYAWIIN_DBF = "Leyawiin, Domestic Bliss Furnishings", + SI_FURC_LOC_BLACKWOOD_LEYAWIIN = "Leyawiin", SI_FURC_LOC_CC = "Clockwork City", SI_FURC_LOC_CC_CITADEL_MARKET = "The Brass Citadel, Market", SI_FURC_LOC_CITY = "any city", SI_FURC_LOC_CRAGLORN_BELKARTH = "Belkarth", SI_FURC_LOC_CRAGLORN_BELKARTH_WOOD = "Craglorn, Belkarth Woodworking store", - SI_FURC_LOC_DUNG_DOM = "Depths of Malatar", - SI_FURC_LOC_DUNG_FL = "Fang Lair", - SI_FURC_LOC_DUNG_MHK = "Monster Hunter Keep", - SI_FURC_LOC_DUNG_MOS = "March of the Sacrifices", - SI_FURC_LOC_DUNG_SCP = "Scalecaller Peak", SI_FURC_LOC_EASTMARCH = "Eastmarch", SI_FURC_LOC_GLENUMBRA_DAGGERFALL_RL = "Glenumbra, Daggerfall, The Rosy Lion", SI_FURC_LOC_GRAHTWOOD_REDFUR = "Grahtwood, Redfur Trading Post", @@ -414,11 +412,17 @@ local strings = { SI_FURC_NPC_SCHOLAR = "scholar;scholars", SI_FURC_NPC_THIEF = "thief;thieves", SI_FURC_NPC_WOODWORKER = "woodworker;woodworkers", - SI_FURC_OR = "or", SI_FURC_PART_OF = "Part of item <<1>>", SI_FURC_SCAMBOX_GEMS = "Crown Crate Gems", + SI_FURC_SRC_DROP = "Drops <<1>>", + SI_FURC_SRC_DROP_DUNG = "Dungeon drop", + SI_FURC_SRC_MISCHOUSE = "From select house purchases", + SI_FURC_SRC_QUEST = "Quest", + SI_FURC_SRC_TOT = "From Tales of Tribute reward coffers", + SI_FURC_SRC_TOT_RANKED = "From Tales of Tribute ranked matches (system mail reward)", SI_FURC_STRING_CONTEXTMENU_INVENTORY = "Disable context menu in inventory?", SI_FURC_STRING_CONTEXTMENU_INVENTORY_TT = "Disables the context for inventory items like posting material and adding to favourites.", + SI_FURC_STRING_DUNG = "dungeon;dungeons", SI_FURC_STRING_MENU_DEBUG_TT = "Only has an effect if a debug logger is enabled", SI_FURC_STRING_MENU_TOOLTIP_DATEFORMAT = "Preferred date format", SI_FURC_STRING_MENU_TOOLTIP_DATEFORMAT_TT = "Affects luxury furnishing info", diff --git a/locale/jp.lua b/locale/jp.lua index a206502b..4782e85d 100644 --- a/locale/jp.lua +++ b/locale/jp.lua @@ -1,8 +1,14 @@ local filterDisabled = "disables this filter" local strings = { -- ////// START : DON'T REMOVE THIS LINE + SI_FURC_EVENT_BLACKWOOD = "From participating in the Bounties of Blackwood event", + SI_FURC_LOC_ALIKR_KOZANZET_SWI = "Alik'r, Kozanzet, Sweetwater Inn", + SI_FURC_LOC_AURIDON_SKYWATCH = "Skywatch, Auridon", SI_FURC_LOC_BALFOYEN = "Bal Foyen^in", + SI_FURC_LOC_BALFOYEN_DHALMORA = "Dhalmora, Bal Foyen", + SI_FURC_LOC_BETHNIKH_LTT = "Bethnikh, Loose Tooth Tavern", SI_FURC_LOC_BLACKWOOD = "in Blackwood", + SI_FURC_LOC_BLACKWOOD_LEYAWIIN_DBF = "Leyawiin, Domestic Bliss Furnishings", SI_FURC_LOC_COLDH_HOLLOW_CGG = "Coldharbour, Hollow City, Cicero's General Good", SI_FURC_LOC_CRAGLORN = "Craglorn^in", SI_FURC_LOC_EASTMARCH_AMOL = "Eastmarch, Fort Amol", @@ -22,7 +28,7 @@ local strings = { SI_FURC_LOOT_CHESTS = "from treasure chests", SI_FURC_LOOT_PICKPOCKET = "can be pickpocketed", SI_FURC_LOOT_STEALING = "can be stolen", - -- 445 ENTRIES THE SAME IN BOTH LANGUAGES + -- 443 ENTRIES THE SAME IN BOTH LANGUAGES FURC_AV_DRAGONHOLD = "Dragonhold Armoury", FURC_AV_ENDLESS = "Endless Archive", FURC_AV_EVERMORE = "Bangkorai, Evermore", @@ -46,7 +52,6 @@ local strings = { FURC_SKYRIM_MASELA = "Masela", FURC_SKYRIM_NETINDELL = "Netindell", SI_FURC_ADD_FAVE = " Add Favorite", - SI_FURC_CANBEFISHED = "can be fished", SI_FURC_CHEST_VV = "Extremely rarely from chests on Vvardenfell", SI_FURC_CRATE_ALLMAKER = "All-Maker", SI_FURC_CRATE_ARMIGER = "Buoyant Armiger", @@ -81,9 +86,6 @@ local strings = { SI_FURC_CRATE_WILDHUNT = "Wild Hunt", SI_FURC_CRATE_WRAITH = "Wraithtide", SI_FURC_CRATE_XANMEER = "Xanmeer", - SI_FURC_FILTER_SOLD4CROWN = "Crown Store", - SI_FURC_FILTER_SOLD4CROWN_TT = "Shows items that can only be acquired from crown store", - SI_FURC_ITEMSRC_CROWNSTORE = "Crown Store ", SI_FURC_DAEDRA_SOURCE = "from Daedra and Dolmen chests", SI_FURC_DAILY_ASH = "Ashlander daily quest rewards", SI_FURC_DAILY_ELSWEYR = "Elsweyr daily quest rewards", @@ -96,25 +98,48 @@ local strings = { SI_FURC_DIALOGUE_RESET_DB_BODY = "This will re-create the FurnitureCatalogue database from scratch", SI_FURC_DIALOGUE_RESET_DB_HEADER = "Really re-create furniture database?", SI_FURC_DOM_DUNGEON_DROP = "Drops in Depth of Malatar", - SI_FURC_DRAGON_DUNGEON_DROP = "Fang Lair/Scalecaller Peak", SI_FURC_DROP = "This item is a drop ", SI_FURC_DROP_ALTMER = "This item is a drop on Summerset", SI_FURC_DROP_MURKMIRE = "Random mobs in Murkmire", + SI_FURC_DUNG = "dungeon;dungeons", + SI_FURC_DUNG_DOM = "Depths of Malatar", + SI_FURC_DUNG_FL = "Fang Lair", + SI_FURC_DUNG_MHK = "Monster Hunter Keep", + SI_FURC_DUNG_MOS = "March of the Sacrifices", + SI_FURC_DUNG_SCP = "Scalecaller Peak", SI_FURC_ELF_PIC = "Drops rarely from treasure chests on Summerset", - SI_FURC_EVENT_BLACKWOOD = "From participating in the Bounties of Blackwood event", + SI_FURC_EVENT = "event;events", SI_FURC_EVENT_ELSWEYR = "Elsweyr dragon event", SI_FURC_EVENT_HOLLOWJACK = "Sinister Hollowjack Items", - SI_FURC_FILTER_FAVE = "Favorites", - SI_FURC_FILTER_FAVE_TT = "Shows your favorites", SI_FURC_FESTIVAL_DROP = "can be acquired during <<1>> (<<2>>)", SI_FURC_FILTER_CHAR_OFF = "Character filter: off", SI_FURC_FILTER_CHAR_OFF_TT = "disables this filter", - SI_FURC_FILTER_CRAFTING = "Craftable: All", - SI_FURC_FILTER_CRAFTING_KNOWN = "Craftable: Known", - SI_FURC_FILTER_CRAFTING_KNOWN_TT = "Shows only known craftable items", - SI_FURC_FILTER_CRAFTING_TT = "Shows all craftable items", - SI_FURC_FILTER_CRAFTING_UNKNOWN = "Craftable: Unknown", - SI_FURC_FILTER_CRAFTING_UNKNOWN_TT = "Shows only unknown craftable items", + SI_FURC_FILTER_CROWN_HIDE_TT = "Showing crown store. Click to hide.", + SI_FURC_FILTER_RUMOUR_HIDE_TT = "Showing rumour (unconfirmed) items. Click to hide.", + SI_FURC_FILTER_SRC_CRAFTING = "Craftable: All", + SI_FURC_FILTER_SRC_CRAFTING_KNOWN = "Craftable: Known", + SI_FURC_FILTER_SRC_CRAFTING_KNOWN_TT = "Shows only known craftable items", + SI_FURC_FILTER_SRC_CRAFTING_TT = "Shows all craftable items", + SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN = "Craftable: Unknown", + SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN_TT = "Shows only unknown craftable items", + SI_FURC_FILTER_SRC_CROWN = "Crown Store", + SI_FURC_FILTER_SRC_CROWN_TT = "Shows items that can only be acquired from crown store", + SI_FURC_FILTER_SRC_FAVE = "Favorites", + SI_FURC_FILTER_SRC_FAVE_TT = "Shows your favorites", + SI_FURC_FILTER_SRC_LUX = "Luxury items", + SI_FURC_FILTER_SRC_LUX_TT = "Items that at some point were sold by Zanil Theran, Cicero's General Goods, Coldharbour", + SI_FURC_FILTER_SRC_NONE = "Source filter: off", + SI_FURC_FILTER_SRC_NONE_TT = "disables this filter", + SI_FURC_FILTER_SRC_OTHER = "Other", + SI_FURC_FILTER_SRC_OTHER_TT = "Shows items that can be farmed/stolen/found", + SI_FURC_FILTER_SRC_RUMOUR = "Rumour items", + SI_FURC_FILTER_SRC_RUMOUR_TT = "Items and recipes that have been datamined, but haven't been confirmed existing", + SI_FURC_FILTER_SRC_SOLD_AP = "Purchaseable (AP)", + SI_FURC_FILTER_SRC_SOLD_AP_TT = "Items that are sold for alliance points", + SI_FURC_FILTER_SRC_SOLD_GOLD = "Purchaseable (gold)", + SI_FURC_FILTER_SRC_SOLD_GOLD_TT = "Shows only items that cannot be crafted", + SI_FURC_FILTER_SRC_SOLD_WRIT = "Master Writ Vendor", + SI_FURC_FILTER_SRC_SOLD_WRIT_TT = "Obtainable for Master Writs in your alliance's capital", SI_FURC_FILTER_VERSION_ALTMER = "Summerset", SI_FURC_FILTER_VERSION_ALTMER_TT = "Still think the Dunmer are bad?", SI_FURC_FILTER_VERSION_BASED = "Base Game Patch", @@ -173,14 +198,12 @@ local strings = { SI_FURC_FILTER_VERSION_WEREWOLF_TT = "In Soviet Hunting Ground, werewolf hunt you", SI_FURC_FILTER_VERSION_WOTL = "Wrathstone", SI_FURC_FILTER_VERSION_WOTL_TT = "Wrathstone!", - SI_FURC_FIVE_TO_SHOPPINGLIST = "Add 5 to shopping list", SI_FURC_GEYSER = "Drops from geyser reward clams on Summerset", SI_FURC_GIANT_CLAM = "Drops from giant clams and geyser reward clams on Summerset", - SI_FURC_GRAMMAR_ITEMSRC_PREP_DEFAULT = "from", - SI_FURC_GRAMMAR_LOC_PREP_DEFAULT = "in", - SI_FURC_GRAMMAR_WORDORDER_LOC = "<<1>> <<2>>", - SI_FURC_HIDE_CROWN_TT = "Showing crown store. Click to hide.", - SI_FURC_HIDE_RUMOUR_TT = "Showing rumour (unconfirmed) items. Click to hide.", + SI_FURC_GRAMMAR_CONJ_OR = "or", + SI_FURC_GRAMMAR_ORDER_LOC = "<<1>> <<2>>", + SI_FURC_GRAMMAR_PREP_LOC_DEFAULT = "in", + SI_FURC_GRAMMAR_PREP_SRC_DEFAULT = "from", SI_FURC_HOUSE = "From a furnished purchase of <<1>>", SI_FURC_ITEMPACK_ALCHEMIST = "Mad Alchemist", SI_FURC_ITEMPACK_AMBITIONS = "Daedric Ambitions", @@ -214,23 +237,10 @@ local strings = { SI_FURC_ITEMPACK_VIVEC = "Lord Vivec", SI_FURC_ITEMPACK_WINDOWS = "Windows of the Divines", SI_FURC_ITEMPACK_ZENI = "Chapel of Zenithar", - SI_FURC_ITEMSOURCE_DROP = "Drops <<1>>", - SI_FURC_ITEMSOURCE_EMPTY = "Item source unknown.\nTry to re-scan files (refresh button right click).\nIf the item is still unknown - and not part of the weekend furnisher's current inventory - please send a mail with the item link and -source to @berylbones.", - SI_FURC_ITEMSOURCE_ITEMPACK = "Part of the Crown Store item pack [<<1>>] ", - SI_FURC_ITEMSOURCE_MISCHOUSE = "From select house purchases", - SI_FURC_ITEMSOURCE_SAFEBOX = "extremely rarely from safeboxes", - SI_FURC_ITEMSRC_QUEST = "Quest", - SI_FURC_ITEMSRC_TRIBUTE = "From Tales of Tribute reward coffers", - SI_FURC_ITEMSRC_TRIBUTE_RANKED = "From Tales of Tribute ranked matches (system mail reward)", SI_FURC_LABEL_ENTRIES = " entries -", - SI_FURC_LEVELUP = "Can be gained as levelup reward", - SI_FURC_LOC_ALIKR_KOZANZET_SWI = "Alik'r, Kozanzet, Sweetwater Inn", SI_FURC_LOC_APOCRYPHA = "Apocrypha", SI_FURC_LOC_ARTAEUM = "Artaeum", - SI_FURC_LOC_AURIDON_SKYWATCH = "Skywatch, Auridon", - SI_FURC_LOC_BALFOYEN_DHALMORA = "Dhalmora, Bal Foyen", - SI_FURC_LOC_BETHNIKH_LTT = "Bethnikh, Loose Tooth Tavern", - SI_FURC_LOC_BLACKWOOD_LEYAWIIN_DBF = "Leyawiin, Domestic Bliss Furnishings", + SI_FURC_LOC_BLACKWOOD_LEYAWIIN = "Leyawiin", SI_FURC_LOC_CAPITAL = "any capital city", SI_FURC_LOC_CC = "Clockwork City", SI_FURC_LOC_CC_CITADEL_MARKET = "The Brass Citadel, Market", @@ -238,11 +248,6 @@ local strings = { SI_FURC_LOC_COLDH_HOLLOW = "Hollow City", SI_FURC_LOC_CRAGLORN_BELKARTH = "Belkarth", SI_FURC_LOC_CRAGLORN_BELKARTH_WOOD = "Craglorn, Belkarth Woodworking store", - SI_FURC_LOC_DUNG_DOM = "Depths of Malatar", - SI_FURC_LOC_DUNG_FL = "Fang Lair", - SI_FURC_LOC_DUNG_MHK = "Monster Hunter Keep", - SI_FURC_LOC_DUNG_MOS = "March of the Sacrifices", - SI_FURC_LOC_DUNG_SCP = "Scalecaller Peak", SI_FURC_LOC_EASTMARCH = "Eastmarch", SI_FURC_LOC_GLENUMBRA_DAGGERFALL_RL = "Glenumbra, Daggerfall, The Rosy Lion", SI_FURC_LOC_GRAHTWOOD_REDFUR = "Grahtwood, Redfur Trading Post", @@ -258,13 +263,10 @@ local strings = { SI_FURC_LOC_SUMMERSET_ALINOR = "Alinor", SI_FURC_LOC_SUMMERSET_ALINOR_RIVERSIDE = "Alinor, Riverside Market", SI_FURC_LOC_VVARDENFELL_SURAN = "Suran", + SI_FURC_LOOT_FISH = "can be fished", SI_FURC_LOOT_HARVEST = "from harvesting nodes", SI_FURC_LOOT_SCRYING = "from scrying", - SI_FURC_LUXURY = "Luxury items", - SI_FURC_LUXURY_TT = "Items that at some point were sold by Zanil Theran, Cicero's General Goods, Coldharbour", SI_FURC_MENU_HEADER = "- |cD3B830Furniture|r:", - SI_FURC_FILTER_NONE = "Source filter: off", - SI_FURC_FILTER_NONE_TT = "disables this filter", SI_FURC_NPC_AUTOMATON = "from automatons", SI_FURC_NPC_DRUNKARD = "drunkard;drunkards", SI_FURC_NPC_GUARD = "guard;guards", @@ -274,33 +276,38 @@ local strings = { SI_FURC_NPC_SCHOLAR = "scholar;scholars", SI_FURC_NPC_THIEF = "thief;thieves", SI_FURC_NPC_WOODWORKER = "woodworker;woodworkers", - SI_FURC_ONE_TO_SHOPPINGLIST = "Add 1 to shopping list", - SI_FURC_OR = "or", - SI_FURC_OTHER = "Other", - SI_FURC_OTHER_TT = "Shows items that can be farmed/stolen/found", SI_FURC_PART_OF = "Part of item <<1>>", SI_FURC_PLANTS = "from harvesting plants", + SI_FURC_PLUGIN_SL_ADD_FIVE = "Add 5 to shopping list", + SI_FURC_PLUGIN_SL_ADD_ONE = "Add 1 to shopping list", SI_FURC_PLUNDERSKULL = "Drops from Plunder Skulls during Witches' Festival", SI_FURC_POST_ITEM = " Post item", SI_FURC_POST_ITEMSOURCE = " Post item source", SI_FURC_POST_MATERIAL = " Post material", SI_FURC_POST_RECIPE = " Post recipe", SI_FURC_PSIJIC_RANK = "Psijic Order Rank ", - SI_FURC_FILTER_SOLD4AP = "Purchaseable (AP)", - SI_FURC_FILTER_SOLD4AP_TT = "Items that are sold for alliance points", SI_FURC_QUESTREWARD = "Reward for a quest in ", SI_FURC_REMOVE_FAVE = " Remove Favorite", SI_FURC_REQUIRES_ACHIEVEMENT = ", requires ", - SI_FURC_RUMOUR = "Rumour items", - SI_FURC_RUMOUR_SOURCE_ITEM = "This item has been datamined, but not seen in-game", - SI_FURC_RUMOUR_SOURCE_RECIPE = "This recipe has been datamined, but not seen in-game", - SI_FURC_RUMOUR_TT = "Items and recipes that have been datamined, but haven't been confirmed existing", SI_FURC_SCAMBOX = "Crown Crates", SI_FURC_SCAMBOX_GEMS = "Crown Crate Gems", SI_FURC_SEEN_IN_GUILDSTORE = "Seen in Guild Store", SI_FURC_SHOW_CROWN_TT = "Hiding crown store. Click to show.", SI_FURC_SHOW_RUMOUR_TT = "Confirmed items only. Click to show rumour items.", SI_FURC_SLAVES_DAILY = "from Murkmire daily quest reward boxes", + SI_FURC_SRC_CROWNSTORE = "Crown Store ", + SI_FURC_SRC_DROP = "Drops <<1>>", + SI_FURC_SRC_DROP_DUNG = "Dungeon drop", + SI_FURC_SRC_EMPTY = "Item source unknown.\nTry to re-scan files (refresh button right click).\nIf the item is still unknown - and not part of the weekend furnisher's current inventory - please send a mail with the item link and -source to @berylbones.", + SI_FURC_SRC_ITEMPACK = "Part of the Crown Store item pack [<<1>>] ", + SI_FURC_SRC_LVLUP = "Can be gained as levelup reward", + SI_FURC_SRC_MISCHOUSE = "From select house purchases", + SI_FURC_SRC_QUEST = "Quest", + SI_FURC_SRC_RUMOUR_ITEM = "This item has been datamined, but not seen in-game", + SI_FURC_SRC_RUMOUR_RECIPE = "This recipe has been datamined, but not seen in-game", + SI_FURC_SRC_SAFEBOX = "extremely rarely from safeboxes", + SI_FURC_SRC_TOT = "From Tales of Tribute reward coffers", + SI_FURC_SRC_TOT_RANKED = "From Tales of Tribute ranked matches (system mail reward)", SI_FURC_STRING_AP = " AP", SI_FURC_STRING_CANNOT_CRAFT = "You cannot craft this yet", SI_FURC_STRING_CONTEXTMENU_DIVIDER = "Don't use divider in context menu?", @@ -308,6 +315,7 @@ local strings = { SI_FURC_STRING_CONTEXTMENU_INVENTORY = "Disable context menu in inventory?", SI_FURC_STRING_CONTEXTMENU_INVENTORY_TT = "Disables the context for inventory items like posting material and adding to favourites.", SI_FURC_STRING_CRAFTABLE_BY = "Can be crafted by ", + SI_FURC_STRING_DUNG = "dungeon;dungeons", SI_FURC_STRING_FAUSTINA = "Sold by |cd68957Faustina Curio|r <<1>>", SI_FURC_STRING_FOR_VOUCHERS = "for <<1>> vouchers", SI_FURC_STRING_MENU_ADD_ITEMS_NAME = "Add items to known/unknown recipes?", @@ -400,8 +408,6 @@ local strings = { SI_FURC_STRING_VOUCHER_VENDOR = "Sold by either Rolis Hlaalu or Faustina Curio", SI_FURC_STRING_WASSOLDBY = "Was sold by <<1>> in <<2>> (<<3>>) <<4>>", SI_FURC_STRING_WEEKEND_AROUND = "(around <<1>>)", - SI_FURC_FILTER_SOLD4WRIT = "Master Writ Vendor", - SI_FURC_FILTER_SOLD4WRIT_TT = "Obtainable for Master Writs in your alliance's capital", SI_FURC_TELVANNI_NECROM_FRF = "Necrom, Final Rest Furnishings", SI_FURC_TEXTBOX_FILTER_DEFAULT = "Filter by text search", SI_FURC_TOGGLE_SHOPPINGLIST = " Toggle shopping list", @@ -459,8 +465,6 @@ local strings = { SI_FURC_TRADERS_YATAVA = "Yatava", SI_FURC_TRADERS_ZADRASKA = "Zadraska", SI_FURC_TRADERS_ZANIL = "Zanil Theran", - SI_FURC_FILTER_SOLD4GOLD = "Purchaseable (gold)", - SI_FURC_FILTER_SOLD4GOLD_TT = "Shows only items that cannot be crafted", SI_FURC_VERBOSE_DB_UPTODATE = "Furniture Catalogue: The database is up-to-date.", SI_FURC_VERBOSE_SCANNING_CHARS = "Not scanning files, scanning character knowledge now...", SI_FURC_VERBOSE_SCANNING_DATA_FILE = "Furniture Catalogue: Scanning data files...", diff --git a/locale/ru.lua b/locale/ru.lua index a206502b..4782e85d 100644 --- a/locale/ru.lua +++ b/locale/ru.lua @@ -1,8 +1,14 @@ local filterDisabled = "disables this filter" local strings = { -- ////// START : DON'T REMOVE THIS LINE + SI_FURC_EVENT_BLACKWOOD = "From participating in the Bounties of Blackwood event", + SI_FURC_LOC_ALIKR_KOZANZET_SWI = "Alik'r, Kozanzet, Sweetwater Inn", + SI_FURC_LOC_AURIDON_SKYWATCH = "Skywatch, Auridon", SI_FURC_LOC_BALFOYEN = "Bal Foyen^in", + SI_FURC_LOC_BALFOYEN_DHALMORA = "Dhalmora, Bal Foyen", + SI_FURC_LOC_BETHNIKH_LTT = "Bethnikh, Loose Tooth Tavern", SI_FURC_LOC_BLACKWOOD = "in Blackwood", + SI_FURC_LOC_BLACKWOOD_LEYAWIIN_DBF = "Leyawiin, Domestic Bliss Furnishings", SI_FURC_LOC_COLDH_HOLLOW_CGG = "Coldharbour, Hollow City, Cicero's General Good", SI_FURC_LOC_CRAGLORN = "Craglorn^in", SI_FURC_LOC_EASTMARCH_AMOL = "Eastmarch, Fort Amol", @@ -22,7 +28,7 @@ local strings = { SI_FURC_LOOT_CHESTS = "from treasure chests", SI_FURC_LOOT_PICKPOCKET = "can be pickpocketed", SI_FURC_LOOT_STEALING = "can be stolen", - -- 445 ENTRIES THE SAME IN BOTH LANGUAGES + -- 443 ENTRIES THE SAME IN BOTH LANGUAGES FURC_AV_DRAGONHOLD = "Dragonhold Armoury", FURC_AV_ENDLESS = "Endless Archive", FURC_AV_EVERMORE = "Bangkorai, Evermore", @@ -46,7 +52,6 @@ local strings = { FURC_SKYRIM_MASELA = "Masela", FURC_SKYRIM_NETINDELL = "Netindell", SI_FURC_ADD_FAVE = " Add Favorite", - SI_FURC_CANBEFISHED = "can be fished", SI_FURC_CHEST_VV = "Extremely rarely from chests on Vvardenfell", SI_FURC_CRATE_ALLMAKER = "All-Maker", SI_FURC_CRATE_ARMIGER = "Buoyant Armiger", @@ -81,9 +86,6 @@ local strings = { SI_FURC_CRATE_WILDHUNT = "Wild Hunt", SI_FURC_CRATE_WRAITH = "Wraithtide", SI_FURC_CRATE_XANMEER = "Xanmeer", - SI_FURC_FILTER_SOLD4CROWN = "Crown Store", - SI_FURC_FILTER_SOLD4CROWN_TT = "Shows items that can only be acquired from crown store", - SI_FURC_ITEMSRC_CROWNSTORE = "Crown Store ", SI_FURC_DAEDRA_SOURCE = "from Daedra and Dolmen chests", SI_FURC_DAILY_ASH = "Ashlander daily quest rewards", SI_FURC_DAILY_ELSWEYR = "Elsweyr daily quest rewards", @@ -96,25 +98,48 @@ local strings = { SI_FURC_DIALOGUE_RESET_DB_BODY = "This will re-create the FurnitureCatalogue database from scratch", SI_FURC_DIALOGUE_RESET_DB_HEADER = "Really re-create furniture database?", SI_FURC_DOM_DUNGEON_DROP = "Drops in Depth of Malatar", - SI_FURC_DRAGON_DUNGEON_DROP = "Fang Lair/Scalecaller Peak", SI_FURC_DROP = "This item is a drop ", SI_FURC_DROP_ALTMER = "This item is a drop on Summerset", SI_FURC_DROP_MURKMIRE = "Random mobs in Murkmire", + SI_FURC_DUNG = "dungeon;dungeons", + SI_FURC_DUNG_DOM = "Depths of Malatar", + SI_FURC_DUNG_FL = "Fang Lair", + SI_FURC_DUNG_MHK = "Monster Hunter Keep", + SI_FURC_DUNG_MOS = "March of the Sacrifices", + SI_FURC_DUNG_SCP = "Scalecaller Peak", SI_FURC_ELF_PIC = "Drops rarely from treasure chests on Summerset", - SI_FURC_EVENT_BLACKWOOD = "From participating in the Bounties of Blackwood event", + SI_FURC_EVENT = "event;events", SI_FURC_EVENT_ELSWEYR = "Elsweyr dragon event", SI_FURC_EVENT_HOLLOWJACK = "Sinister Hollowjack Items", - SI_FURC_FILTER_FAVE = "Favorites", - SI_FURC_FILTER_FAVE_TT = "Shows your favorites", SI_FURC_FESTIVAL_DROP = "can be acquired during <<1>> (<<2>>)", SI_FURC_FILTER_CHAR_OFF = "Character filter: off", SI_FURC_FILTER_CHAR_OFF_TT = "disables this filter", - SI_FURC_FILTER_CRAFTING = "Craftable: All", - SI_FURC_FILTER_CRAFTING_KNOWN = "Craftable: Known", - SI_FURC_FILTER_CRAFTING_KNOWN_TT = "Shows only known craftable items", - SI_FURC_FILTER_CRAFTING_TT = "Shows all craftable items", - SI_FURC_FILTER_CRAFTING_UNKNOWN = "Craftable: Unknown", - SI_FURC_FILTER_CRAFTING_UNKNOWN_TT = "Shows only unknown craftable items", + SI_FURC_FILTER_CROWN_HIDE_TT = "Showing crown store. Click to hide.", + SI_FURC_FILTER_RUMOUR_HIDE_TT = "Showing rumour (unconfirmed) items. Click to hide.", + SI_FURC_FILTER_SRC_CRAFTING = "Craftable: All", + SI_FURC_FILTER_SRC_CRAFTING_KNOWN = "Craftable: Known", + SI_FURC_FILTER_SRC_CRAFTING_KNOWN_TT = "Shows only known craftable items", + SI_FURC_FILTER_SRC_CRAFTING_TT = "Shows all craftable items", + SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN = "Craftable: Unknown", + SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN_TT = "Shows only unknown craftable items", + SI_FURC_FILTER_SRC_CROWN = "Crown Store", + SI_FURC_FILTER_SRC_CROWN_TT = "Shows items that can only be acquired from crown store", + SI_FURC_FILTER_SRC_FAVE = "Favorites", + SI_FURC_FILTER_SRC_FAVE_TT = "Shows your favorites", + SI_FURC_FILTER_SRC_LUX = "Luxury items", + SI_FURC_FILTER_SRC_LUX_TT = "Items that at some point were sold by Zanil Theran, Cicero's General Goods, Coldharbour", + SI_FURC_FILTER_SRC_NONE = "Source filter: off", + SI_FURC_FILTER_SRC_NONE_TT = "disables this filter", + SI_FURC_FILTER_SRC_OTHER = "Other", + SI_FURC_FILTER_SRC_OTHER_TT = "Shows items that can be farmed/stolen/found", + SI_FURC_FILTER_SRC_RUMOUR = "Rumour items", + SI_FURC_FILTER_SRC_RUMOUR_TT = "Items and recipes that have been datamined, but haven't been confirmed existing", + SI_FURC_FILTER_SRC_SOLD_AP = "Purchaseable (AP)", + SI_FURC_FILTER_SRC_SOLD_AP_TT = "Items that are sold for alliance points", + SI_FURC_FILTER_SRC_SOLD_GOLD = "Purchaseable (gold)", + SI_FURC_FILTER_SRC_SOLD_GOLD_TT = "Shows only items that cannot be crafted", + SI_FURC_FILTER_SRC_SOLD_WRIT = "Master Writ Vendor", + SI_FURC_FILTER_SRC_SOLD_WRIT_TT = "Obtainable for Master Writs in your alliance's capital", SI_FURC_FILTER_VERSION_ALTMER = "Summerset", SI_FURC_FILTER_VERSION_ALTMER_TT = "Still think the Dunmer are bad?", SI_FURC_FILTER_VERSION_BASED = "Base Game Patch", @@ -173,14 +198,12 @@ local strings = { SI_FURC_FILTER_VERSION_WEREWOLF_TT = "In Soviet Hunting Ground, werewolf hunt you", SI_FURC_FILTER_VERSION_WOTL = "Wrathstone", SI_FURC_FILTER_VERSION_WOTL_TT = "Wrathstone!", - SI_FURC_FIVE_TO_SHOPPINGLIST = "Add 5 to shopping list", SI_FURC_GEYSER = "Drops from geyser reward clams on Summerset", SI_FURC_GIANT_CLAM = "Drops from giant clams and geyser reward clams on Summerset", - SI_FURC_GRAMMAR_ITEMSRC_PREP_DEFAULT = "from", - SI_FURC_GRAMMAR_LOC_PREP_DEFAULT = "in", - SI_FURC_GRAMMAR_WORDORDER_LOC = "<<1>> <<2>>", - SI_FURC_HIDE_CROWN_TT = "Showing crown store. Click to hide.", - SI_FURC_HIDE_RUMOUR_TT = "Showing rumour (unconfirmed) items. Click to hide.", + SI_FURC_GRAMMAR_CONJ_OR = "or", + SI_FURC_GRAMMAR_ORDER_LOC = "<<1>> <<2>>", + SI_FURC_GRAMMAR_PREP_LOC_DEFAULT = "in", + SI_FURC_GRAMMAR_PREP_SRC_DEFAULT = "from", SI_FURC_HOUSE = "From a furnished purchase of <<1>>", SI_FURC_ITEMPACK_ALCHEMIST = "Mad Alchemist", SI_FURC_ITEMPACK_AMBITIONS = "Daedric Ambitions", @@ -214,23 +237,10 @@ local strings = { SI_FURC_ITEMPACK_VIVEC = "Lord Vivec", SI_FURC_ITEMPACK_WINDOWS = "Windows of the Divines", SI_FURC_ITEMPACK_ZENI = "Chapel of Zenithar", - SI_FURC_ITEMSOURCE_DROP = "Drops <<1>>", - SI_FURC_ITEMSOURCE_EMPTY = "Item source unknown.\nTry to re-scan files (refresh button right click).\nIf the item is still unknown - and not part of the weekend furnisher's current inventory - please send a mail with the item link and -source to @berylbones.", - SI_FURC_ITEMSOURCE_ITEMPACK = "Part of the Crown Store item pack [<<1>>] ", - SI_FURC_ITEMSOURCE_MISCHOUSE = "From select house purchases", - SI_FURC_ITEMSOURCE_SAFEBOX = "extremely rarely from safeboxes", - SI_FURC_ITEMSRC_QUEST = "Quest", - SI_FURC_ITEMSRC_TRIBUTE = "From Tales of Tribute reward coffers", - SI_FURC_ITEMSRC_TRIBUTE_RANKED = "From Tales of Tribute ranked matches (system mail reward)", SI_FURC_LABEL_ENTRIES = " entries -", - SI_FURC_LEVELUP = "Can be gained as levelup reward", - SI_FURC_LOC_ALIKR_KOZANZET_SWI = "Alik'r, Kozanzet, Sweetwater Inn", SI_FURC_LOC_APOCRYPHA = "Apocrypha", SI_FURC_LOC_ARTAEUM = "Artaeum", - SI_FURC_LOC_AURIDON_SKYWATCH = "Skywatch, Auridon", - SI_FURC_LOC_BALFOYEN_DHALMORA = "Dhalmora, Bal Foyen", - SI_FURC_LOC_BETHNIKH_LTT = "Bethnikh, Loose Tooth Tavern", - SI_FURC_LOC_BLACKWOOD_LEYAWIIN_DBF = "Leyawiin, Domestic Bliss Furnishings", + SI_FURC_LOC_BLACKWOOD_LEYAWIIN = "Leyawiin", SI_FURC_LOC_CAPITAL = "any capital city", SI_FURC_LOC_CC = "Clockwork City", SI_FURC_LOC_CC_CITADEL_MARKET = "The Brass Citadel, Market", @@ -238,11 +248,6 @@ local strings = { SI_FURC_LOC_COLDH_HOLLOW = "Hollow City", SI_FURC_LOC_CRAGLORN_BELKARTH = "Belkarth", SI_FURC_LOC_CRAGLORN_BELKARTH_WOOD = "Craglorn, Belkarth Woodworking store", - SI_FURC_LOC_DUNG_DOM = "Depths of Malatar", - SI_FURC_LOC_DUNG_FL = "Fang Lair", - SI_FURC_LOC_DUNG_MHK = "Monster Hunter Keep", - SI_FURC_LOC_DUNG_MOS = "March of the Sacrifices", - SI_FURC_LOC_DUNG_SCP = "Scalecaller Peak", SI_FURC_LOC_EASTMARCH = "Eastmarch", SI_FURC_LOC_GLENUMBRA_DAGGERFALL_RL = "Glenumbra, Daggerfall, The Rosy Lion", SI_FURC_LOC_GRAHTWOOD_REDFUR = "Grahtwood, Redfur Trading Post", @@ -258,13 +263,10 @@ local strings = { SI_FURC_LOC_SUMMERSET_ALINOR = "Alinor", SI_FURC_LOC_SUMMERSET_ALINOR_RIVERSIDE = "Alinor, Riverside Market", SI_FURC_LOC_VVARDENFELL_SURAN = "Suran", + SI_FURC_LOOT_FISH = "can be fished", SI_FURC_LOOT_HARVEST = "from harvesting nodes", SI_FURC_LOOT_SCRYING = "from scrying", - SI_FURC_LUXURY = "Luxury items", - SI_FURC_LUXURY_TT = "Items that at some point were sold by Zanil Theran, Cicero's General Goods, Coldharbour", SI_FURC_MENU_HEADER = "- |cD3B830Furniture|r:", - SI_FURC_FILTER_NONE = "Source filter: off", - SI_FURC_FILTER_NONE_TT = "disables this filter", SI_FURC_NPC_AUTOMATON = "from automatons", SI_FURC_NPC_DRUNKARD = "drunkard;drunkards", SI_FURC_NPC_GUARD = "guard;guards", @@ -274,33 +276,38 @@ local strings = { SI_FURC_NPC_SCHOLAR = "scholar;scholars", SI_FURC_NPC_THIEF = "thief;thieves", SI_FURC_NPC_WOODWORKER = "woodworker;woodworkers", - SI_FURC_ONE_TO_SHOPPINGLIST = "Add 1 to shopping list", - SI_FURC_OR = "or", - SI_FURC_OTHER = "Other", - SI_FURC_OTHER_TT = "Shows items that can be farmed/stolen/found", SI_FURC_PART_OF = "Part of item <<1>>", SI_FURC_PLANTS = "from harvesting plants", + SI_FURC_PLUGIN_SL_ADD_FIVE = "Add 5 to shopping list", + SI_FURC_PLUGIN_SL_ADD_ONE = "Add 1 to shopping list", SI_FURC_PLUNDERSKULL = "Drops from Plunder Skulls during Witches' Festival", SI_FURC_POST_ITEM = " Post item", SI_FURC_POST_ITEMSOURCE = " Post item source", SI_FURC_POST_MATERIAL = " Post material", SI_FURC_POST_RECIPE = " Post recipe", SI_FURC_PSIJIC_RANK = "Psijic Order Rank ", - SI_FURC_FILTER_SOLD4AP = "Purchaseable (AP)", - SI_FURC_FILTER_SOLD4AP_TT = "Items that are sold for alliance points", SI_FURC_QUESTREWARD = "Reward for a quest in ", SI_FURC_REMOVE_FAVE = " Remove Favorite", SI_FURC_REQUIRES_ACHIEVEMENT = ", requires ", - SI_FURC_RUMOUR = "Rumour items", - SI_FURC_RUMOUR_SOURCE_ITEM = "This item has been datamined, but not seen in-game", - SI_FURC_RUMOUR_SOURCE_RECIPE = "This recipe has been datamined, but not seen in-game", - SI_FURC_RUMOUR_TT = "Items and recipes that have been datamined, but haven't been confirmed existing", SI_FURC_SCAMBOX = "Crown Crates", SI_FURC_SCAMBOX_GEMS = "Crown Crate Gems", SI_FURC_SEEN_IN_GUILDSTORE = "Seen in Guild Store", SI_FURC_SHOW_CROWN_TT = "Hiding crown store. Click to show.", SI_FURC_SHOW_RUMOUR_TT = "Confirmed items only. Click to show rumour items.", SI_FURC_SLAVES_DAILY = "from Murkmire daily quest reward boxes", + SI_FURC_SRC_CROWNSTORE = "Crown Store ", + SI_FURC_SRC_DROP = "Drops <<1>>", + SI_FURC_SRC_DROP_DUNG = "Dungeon drop", + SI_FURC_SRC_EMPTY = "Item source unknown.\nTry to re-scan files (refresh button right click).\nIf the item is still unknown - and not part of the weekend furnisher's current inventory - please send a mail with the item link and -source to @berylbones.", + SI_FURC_SRC_ITEMPACK = "Part of the Crown Store item pack [<<1>>] ", + SI_FURC_SRC_LVLUP = "Can be gained as levelup reward", + SI_FURC_SRC_MISCHOUSE = "From select house purchases", + SI_FURC_SRC_QUEST = "Quest", + SI_FURC_SRC_RUMOUR_ITEM = "This item has been datamined, but not seen in-game", + SI_FURC_SRC_RUMOUR_RECIPE = "This recipe has been datamined, but not seen in-game", + SI_FURC_SRC_SAFEBOX = "extremely rarely from safeboxes", + SI_FURC_SRC_TOT = "From Tales of Tribute reward coffers", + SI_FURC_SRC_TOT_RANKED = "From Tales of Tribute ranked matches (system mail reward)", SI_FURC_STRING_AP = " AP", SI_FURC_STRING_CANNOT_CRAFT = "You cannot craft this yet", SI_FURC_STRING_CONTEXTMENU_DIVIDER = "Don't use divider in context menu?", @@ -308,6 +315,7 @@ local strings = { SI_FURC_STRING_CONTEXTMENU_INVENTORY = "Disable context menu in inventory?", SI_FURC_STRING_CONTEXTMENU_INVENTORY_TT = "Disables the context for inventory items like posting material and adding to favourites.", SI_FURC_STRING_CRAFTABLE_BY = "Can be crafted by ", + SI_FURC_STRING_DUNG = "dungeon;dungeons", SI_FURC_STRING_FAUSTINA = "Sold by |cd68957Faustina Curio|r <<1>>", SI_FURC_STRING_FOR_VOUCHERS = "for <<1>> vouchers", SI_FURC_STRING_MENU_ADD_ITEMS_NAME = "Add items to known/unknown recipes?", @@ -400,8 +408,6 @@ local strings = { SI_FURC_STRING_VOUCHER_VENDOR = "Sold by either Rolis Hlaalu or Faustina Curio", SI_FURC_STRING_WASSOLDBY = "Was sold by <<1>> in <<2>> (<<3>>) <<4>>", SI_FURC_STRING_WEEKEND_AROUND = "(around <<1>>)", - SI_FURC_FILTER_SOLD4WRIT = "Master Writ Vendor", - SI_FURC_FILTER_SOLD4WRIT_TT = "Obtainable for Master Writs in your alliance's capital", SI_FURC_TELVANNI_NECROM_FRF = "Necrom, Final Rest Furnishings", SI_FURC_TEXTBOX_FILTER_DEFAULT = "Filter by text search", SI_FURC_TOGGLE_SHOPPINGLIST = " Toggle shopping list", @@ -459,8 +465,6 @@ local strings = { SI_FURC_TRADERS_YATAVA = "Yatava", SI_FURC_TRADERS_ZADRASKA = "Zadraska", SI_FURC_TRADERS_ZANIL = "Zanil Theran", - SI_FURC_FILTER_SOLD4GOLD = "Purchaseable (gold)", - SI_FURC_FILTER_SOLD4GOLD_TT = "Shows only items that cannot be crafted", SI_FURC_VERBOSE_DB_UPTODATE = "Furniture Catalogue: The database is up-to-date.", SI_FURC_VERBOSE_SCANNING_CHARS = "Not scanning files, scanning character knowledge now...", SI_FURC_VERBOSE_SCANNING_DATA_FILE = "Furniture Catalogue: Scanning data files...", diff --git a/startup.lua b/startup.lua index 59efc57b..9130f031 100644 --- a/startup.lua +++ b/startup.lua @@ -109,18 +109,18 @@ this.GetSourceIndicesKeys = getSourceIndicesKeys local choicesSource = {} local function getChoicesSource() - choicesSource[src.NONE] = GetString(SI_FURC_FILTER_NONE) - choicesSource[src.FAVE] = GetString(SI_FURC_FILTER_FAVE) - choicesSource[src.CRAFTING] = GetString(SI_FURC_FILTER_CRAFTING) - choicesSource[src.CRAFTING_KNOWN] = GetString(SI_FURC_FILTER_CRAFTING_KNOWN) - choicesSource[src.CRAFTING_UNKNOWN] = GetString(SI_FURC_FILTER_CRAFTING_UNKNOWN) - choicesSource[src.VENDOR] = GetString(SI_FURC_FILTER_SOLD4GOLD) - choicesSource[src.PVP] = GetString(SI_FURC_FILTER_SOLD4AP) - choicesSource[src.WRIT_VENDOR] = GetString(SI_FURC_FILTER_SOLD4WRIT) - choicesSource[src.CROWN] = GetString(SI_FURC_CROWN) - choicesSource[src.RUMOUR] = GetString(SI_FURC_RUMOUR) - choicesSource[src.LUXURY] = GetString(SI_FURC_LUXURY) - choicesSource[src.OTHER] = GetString(SI_FURC_OTHER) + choicesSource[src.NONE] = GetString(SI_FURC_FILTER_SRC_NONE) + choicesSource[src.FAVE] = GetString(SI_FURC_FILTER_SRC_FAVE) + choicesSource[src.CRAFTING] = GetString(SI_FURC_FILTER_SRC_CRAFTING) + choicesSource[src.CRAFTING_KNOWN] = GetString(SI_FURC_FILTER_SRC_CRAFTING_KNOWN) + choicesSource[src.CRAFTING_UNKNOWN] = GetString(SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN) + choicesSource[src.VENDOR] = GetString(SI_FURC_FILTER_SRC_SOLD_GOLD) + choicesSource[src.PVP] = GetString(SI_FURC_FILTER_SRC_SOLD_AP) + choicesSource[src.WRIT_VENDOR] = GetString(SI_FURC_FILTER_SRC_SOLD_WRIT) + choicesSource[src.CROWN] = GetString(SI_FURC_FILTER_SRC_CROWN) + choicesSource[src.RUMOUR] = GetString(SI_FURC_FILTER_SRC_RUMOUR) + choicesSource[src.LUXURY] = GetString(SI_FURC_FILTER_SRC_LUX) + choicesSource[src.OTHER] = GetString(SI_FURC_FILTER_SRC_OTHER) --choicesSource[src.ROLIS] = "ROLIS" --choicesSource[src.DROP] = "DROP" --choicesSource[src.JUSTICE] = "JUSTICE" @@ -134,18 +134,18 @@ this.GetChoicesSource = getChoicesSource local tooltipsSource = {} local function getTooltipsSource() - tooltipsSource[src.NONE] = GetString(SI_FURC_FILTER_NONE_TT) - tooltipsSource[src.FAVE] = GetString(SI_FURC_FILTER_FAVE_TT) - tooltipsSource[src.CRAFTING] = GetString(SI_FURC_FILTER_CRAFTING_TT) - tooltipsSource[src.CRAFTING_KNOWN] = GetString(SI_FURC_FILTER_CRAFTING_KNOWN_TT) - tooltipsSource[src.CRAFTING_UNKNOWN] = GetString(SI_FURC_FILTER_CRAFTING_UNKNOWN_TT) - tooltipsSource[src.VENDOR] = GetString(SI_FURC_FILTER_SOLD4GOLD_TT) - tooltipsSource[src.PVP] = GetString(SI_FURC_FILTER_SOLD4AP_TT) - tooltipsSource[src.CROWN] = GetString(SI_FURC_CROWN_TT) - tooltipsSource[src.WRIT_VENDOR] = GetString(SI_FURC_FILTER_SOLD4WRIT_TT) - tooltipsSource[src.RUMOUR] = GetString(SI_FURC_RUMOUR_TT) - tooltipsSource[src.LUXURY] = GetString(SI_FURC_LUXURY_TT) - tooltipsSource[src.OTHER] = GetString(SI_FURC_OTHER_TT) + tooltipsSource[src.NONE] = GetString(SI_FURC_FILTER_SRC_NONE_TT) + tooltipsSource[src.FAVE] = GetString(SI_FURC_FILTER_SRC_FAVE_TT) + tooltipsSource[src.CRAFTING] = GetString(SI_FURC_FILTER_SRC_CRAFTING_TT) + tooltipsSource[src.CRAFTING_KNOWN] = GetString(SI_FURC_FILTER_SRC_CRAFTING_KNOWN_TT) + tooltipsSource[src.CRAFTING_UNKNOWN] = GetString(SI_FURC_FILTER_SRC_CRAFTING_UNKNOWN_TT) + tooltipsSource[src.VENDOR] = GetString(SI_FURC_FILTER_SRC_SOLD_GOLD_TT) + tooltipsSource[src.PVP] = GetString(SI_FURC_FILTER_SRC_SOLD_AP_TT) + tooltipsSource[src.CROWN] = GetString(SI_FURC_FILTER_SRC_CROWN_TT) + tooltipsSource[src.WRIT_VENDOR] = GetString(SI_FURC_FILTER_SRC_SOLD_WRIT_TT) + tooltipsSource[src.RUMOUR] = GetString(SI_FURC_FILTER_SRC_RUMOUR_TT) + tooltipsSource[src.LUXURY] = GetString(SI_FURC_FILTER_SRC_LUX_TT) + tooltipsSource[src.OTHER] = GetString(SI_FURC_FILTER_SRC_OTHER_TT) --tooltipsSource[src.ROLIS] = "ROLIS" --tooltipsSource[src.DROP] = "DROP" --tooltipsSource[src.JUSTICE] = "JUSTICE"