diff --git a/Globals.lua b/Globals.lua index 78485e3..41b905b 100644 --- a/Globals.lua +++ b/Globals.lua @@ -154,6 +154,7 @@ RecipeRadar_Factions = { RRS("Thorium Brotherhood"), RRS("Timbermaw Hold"), RRS("Zandalar Tribe"), + RRS("Draenei Exiles"), } diff --git a/Images/Regions/Moonwhisper.blp b/Images/Regions/Moonwhisper.blp new file mode 100644 index 0000000..2385a09 Binary files /dev/null and b/Images/Regions/Moonwhisper.blp differ diff --git a/Localization.lua b/Localization.lua index 263e5de..0ac4425 100644 --- a/Localization.lua +++ b/Localization.lua @@ -106,6 +106,7 @@ if (GetLocale() == "sample") then -- faction names for recipe reputation requirements RecipeRadar_Strings["Argent Dawn"] = "" RecipeRadar_Strings["Cenarion Circle"] = "" + RecipeRadar_Strings["Draenei Exiles"] = "" RecipeRadar_Strings["Thorium Brotherhood"] = "" RecipeRadar_Strings["Timbermaw Hold"] = "" RecipeRadar_Strings["Zandalar Tribe"] = "" diff --git a/RecipeData.lua b/RecipeData.lua index 337b98c..657eb3d 100644 --- a/RecipeData.lua +++ b/RecipeData.lua @@ -1799,6 +1799,17 @@ RecipeRadar_RecipeData = { { Region = RRS("Stormwind City"), Vendor = RRS("Billibub Cogspinner"), Team = "Alliance" }, }, }, + { + ID = 33145, + Type = RRS("Engineering"), + Skill = 300, + Cost = 130000, + Faction = RRS("Draenei Exiles"), + Level = 7, + Locations = { + { Region = RRS("Moonwhisper Coast"), Vendor = RRS("Mogh'ador"), Team = "Neutral" }, + }, + }, }, }, diff --git a/RegionData.lua b/RegionData.lua index 5734bd0..d77219a 100644 --- a/RegionData.lua +++ b/RegionData.lua @@ -4254,6 +4254,26 @@ RecipeRadar_RegionData = { }, }, +[RRS("Moonwhisper Coast")] = { + IsCity = false, + Continent = 1, + MapFile = "Moonwhisper", + MapScale = 0.21355411830870, + MapOffset = { x = 0.50056234898033, y = 0.10581173144794 }, + Vendors = { + { + Name = RRS("Mogh'ador"), + Team = "Neutral", + Coordinates = { + { x = 0.61, y = 0.652 }, + }, + Recipes = { + { ID = 33145, Type = RRS("Engineering"), Skill = 300, Cost = 130000, Faction = RRS("Draenei Exiles"), Level = 7 }, + }, + }, + }, +}, + } RecipeRadar_MaxVendorsByLocation = 20