diff --git a/NewWorldCompanion.Entities/CraftingRecipeJson.cs b/NewWorldCompanion.Entities/CraftingRecipeJson.cs
index 0a85010..df4f5f3 100644
--- a/NewWorldCompanion.Entities/CraftingRecipeJson.cs
+++ b/NewWorldCompanion.Entities/CraftingRecipeJson.cs
@@ -4,7 +4,7 @@ namespace NewWorldCompanion.Entities
{
public class CraftingRecipeJson
{
- /// Matches SalvageAchievement from MasterItemDefinitionsCrafting
+ /// Matches SalvageAchievement from MasterItemDefinitionsCraftingJson
public string RequiredAchievementID { get; set; } = string.Empty;
public string Tradeskill { get; set; } = string.Empty;
}
diff --git a/NewWorldCompanion.Entities/MasterItemDefinitionsCraftingJson.cs b/NewWorldCompanion.Entities/MasterItemDefinitionsCraftingJson.cs
index 3e21e59..8a61ef1 100644
--- a/NewWorldCompanion.Entities/MasterItemDefinitionsCraftingJson.cs
+++ b/NewWorldCompanion.Entities/MasterItemDefinitionsCraftingJson.cs
@@ -2,10 +2,13 @@
{
public class MasterItemDefinitionsCraftingJson
{
+ /// Website nwdb uses this to identify items
public string ItemID { get; set; } = string.Empty;
/// Contains master name for localisation
public string Name { get; set; } = string.Empty;
- /// Matches RequiredAchievementID from CraftingRecipe
+ /// Used to define if an item is tradable
+ public bool BindOnPickup { get; set; } = false;
+ /// Matches RequiredAchievementID from CraftingRecipeJson
public string SalvageAchievement { get; set; } = string.Empty;
}
}
diff --git a/NewWorldCompanion.Entities/NwmarketpriceJson.cs b/NewWorldCompanion.Entities/NwmarketpriceJson.cs
new file mode 100644
index 0000000..39c16b9
--- /dev/null
+++ b/NewWorldCompanion.Entities/NwmarketpriceJson.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace NewWorldCompanion.Entities
+{
+ public class NwmarketpriceJson
+ {
+ public string item_name { get; set; } = string.Empty;
+ public string last_checked { get; set; } = string.Empty;
+ public string recent_lowest_price { get; set; } = string.Empty;
+ //public double recent_lowest_price { get; set; } = 0.0;
+ }
+}
diff --git a/NewWorldCompanion.Entities/PriceServer.cs b/NewWorldCompanion.Entities/PriceServer.cs
new file mode 100644
index 0000000..4deed1b
--- /dev/null
+++ b/NewWorldCompanion.Entities/PriceServer.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace NewWorldCompanion.Entities
+{
+ public class PriceServer
+ {
+ public string Name { get; set; } = string.Empty;
+ public string Id { get; set; } = string.Empty;
+ }
+}
diff --git a/NewWorldCompanion.Entities/SettingsNWC.cs b/NewWorldCompanion.Entities/SettingsNWC.cs
index 9597b5c..d44caae 100644
--- a/NewWorldCompanion.Entities/SettingsNWC.cs
+++ b/NewWorldCompanion.Entities/SettingsNWC.cs
@@ -8,6 +8,12 @@ namespace NewWorldCompanion.Entities
{
public class SettingsNWC
{
+ // App
+ public bool DebugModeActive { get; set; } = false;
+
+ // Overlay
+ public string ServerId { get; set; } = "1";
+
// Shape detection
public int EmguAreaLower { get; set; } = 10000;
public int EmguAreaUpper { get; set; } = 15000;
diff --git a/NewWorldCompanion.Events/OverlayEvents.cs b/NewWorldCompanion.Events/OverlayEvents.cs
new file mode 100644
index 0000000..784ff0e
--- /dev/null
+++ b/NewWorldCompanion.Events/OverlayEvents.cs
@@ -0,0 +1,17 @@
+using Prism.Events;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace NewWorldCompanion.Events
+{
+ public class OverlayHideEvent : PubSubEvent
+ {
+ }
+
+ public class OverlayShowEvent : PubSubEvent
+ {
+ }
+}
diff --git a/NewWorldCompanion.Helpers/BoolConverter.cs b/NewWorldCompanion.Helpers/BoolConverter.cs
new file mode 100644
index 0000000..c302e30
--- /dev/null
+++ b/NewWorldCompanion.Helpers/BoolConverter.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Text.Json;
+using System.Text.Json.Serialization;
+using System.Threading.Tasks;
+
+namespace NewWorldCompanion.Helpers
+{
+ public class BoolConverter : JsonConverter
+ {
+ public override void Write(Utf8JsonWriter writer, bool value, JsonSerializerOptions options) =>
+ writer.WriteBooleanValue(value);
+
+ public override bool Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) =>
+ reader.TokenType switch
+ {
+ JsonTokenType.True => true,
+ JsonTokenType.False => false,
+ JsonTokenType.String => bool.TryParse(reader.GetString(), out var b) ? b : throw new JsonException(),
+ JsonTokenType.Number => reader.TryGetInt64(out long l) ? Convert.ToBoolean(l) : reader.TryGetDouble(out double d) ? Convert.ToBoolean(d) : false,
+ JsonTokenType.Null => false,
+ _ => throw new JsonException(),
+ };
+ }
+}
diff --git a/NewWorldCompanion.Helpers/ScreenCapture.cs b/NewWorldCompanion.Helpers/ScreenCapture.cs
index e942164..5f2cf02 100644
--- a/NewWorldCompanion.Helpers/ScreenCapture.cs
+++ b/NewWorldCompanion.Helpers/ScreenCapture.cs
@@ -47,7 +47,7 @@ public Bitmap GetScreenCapture(IntPtr windowHandle)
return bitmap;
}
- public Bitmap? GetScreenCaptureMouse(IntPtr windowHandle)
+ public Bitmap? GetScreenCaptureMouse(IntPtr windowHandle, ref int offsetX, ref int offsetY)
{
Bitmap? bitmap = null;
@@ -73,6 +73,9 @@ public Bitmap GetScreenCapture(IntPtr windowHandle)
yPos = Math.Min(Math.Max(yPos - height / 2, region.top), region.bottom - height);
bool status = PInvoke.Gdi32.BitBlt(memoryDCHandle.DangerousGetHandle(), 0, 0, width, height, windowDCHandle.DangerousGetHandle(), xPos, yPos, SRCCOPY | CAPTUREBLT);
+ offsetX = xPos;
+ offsetY = yPos;
+
try
{
if (status)
diff --git a/NewWorldCompanion.Interfaces/ICraftingRecipeStore.cs b/NewWorldCompanion.Interfaces/ICraftingRecipeStore.cs
deleted file mode 100644
index a10494d..0000000
--- a/NewWorldCompanion.Interfaces/ICraftingRecipeStore.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using NewWorldCompanion.Entities;
-using System.Collections.Generic;
-
-namespace NewWorldCompanion.Interfaces
-{
- public interface ICraftingRecipeStore
- {
- List GetCraftingRecipes();
- }
-}
diff --git a/NewWorldCompanion.Interfaces/IHttpClientHandler.cs b/NewWorldCompanion.Interfaces/IHttpClientHandler.cs
new file mode 100644
index 0000000..819a15c
--- /dev/null
+++ b/NewWorldCompanion.Interfaces/IHttpClientHandler.cs
@@ -0,0 +1,13 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace NewWorldCompanion.Interfaces
+{
+ public interface IHttpClientHandler
+ {
+ Task GetRequest(string uri);
+ }
+}
diff --git a/NewWorldCompanion.Interfaces/INewWorldDataStore.cs b/NewWorldCompanion.Interfaces/INewWorldDataStore.cs
new file mode 100644
index 0000000..1e7d4ad
--- /dev/null
+++ b/NewWorldCompanion.Interfaces/INewWorldDataStore.cs
@@ -0,0 +1,15 @@
+using NewWorldCompanion.Entities;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace NewWorldCompanion.Interfaces
+{
+ public interface INewWorldDataStore
+ {
+ List GetCraftingRecipes();
+ bool IsBindOnPickup(string itemName);
+ }
+}
diff --git a/NewWorldCompanion.Interfaces/IOverlayHandler.cs b/NewWorldCompanion.Interfaces/IOverlayHandler.cs
new file mode 100644
index 0000000..106cc46
--- /dev/null
+++ b/NewWorldCompanion.Interfaces/IOverlayHandler.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace NewWorldCompanion.Interfaces
+{
+ public interface IOverlayHandler
+ {
+ }
+}
diff --git a/NewWorldCompanion.Interfaces/IPriceManager.cs b/NewWorldCompanion.Interfaces/IPriceManager.cs
new file mode 100644
index 0000000..14d600a
--- /dev/null
+++ b/NewWorldCompanion.Interfaces/IPriceManager.cs
@@ -0,0 +1,17 @@
+using NewWorldCompanion.Entities;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace NewWorldCompanion.Interfaces
+{
+ public interface IPriceManager
+ {
+ List Servers { get; }
+
+ NwmarketpriceJson GetPriceData(string itemName);
+ void UpdatePriceData(string itemName);
+ }
+}
diff --git a/NewWorldCompanion.Interfaces/IScreenCaptureHandler.cs b/NewWorldCompanion.Interfaces/IScreenCaptureHandler.cs
index 8fc9be8..d70690c 100644
--- a/NewWorldCompanion.Interfaces/IScreenCaptureHandler.cs
+++ b/NewWorldCompanion.Interfaces/IScreenCaptureHandler.cs
@@ -5,22 +5,12 @@ namespace NewWorldCompanion.Interfaces
{
public interface IScreenCaptureHandler
{
- Bitmap? CurrentScreen
- {
- get;
- }
-
+ Bitmap? CurrentScreen { get; }
bool IsActive { get; set; }
-
- public string MouseCoordinates
- {
- get;
- }
-
- public string MouseCoordinatesScaled
- {
- get;
- }
+ string MouseCoordinates { get; }
+ string MouseCoordinatesScaled { get; }
+ int OffsetX { get; }
+ int OffsetY { get; }
BitmapSource? ImageSourceFromScreenCapture();
}
diff --git a/NewWorldCompanion.Interfaces/IScreenProcessHandler.cs b/NewWorldCompanion.Interfaces/IScreenProcessHandler.cs
index 6ae08fc..4bcbe74 100644
--- a/NewWorldCompanion.Interfaces/IScreenProcessHandler.cs
+++ b/NewWorldCompanion.Interfaces/IScreenProcessHandler.cs
@@ -14,5 +14,10 @@ public interface IScreenProcessHandler
Bitmap? ProcessedImage { get; }
Bitmap? RoiImage { get; }
Bitmap? OcrImage { get; }
+
+ int OverlayX { get; }
+ int OverlayY { get; }
+ int OverlayWidth { get; }
+ int OverlayHeigth { get; }
}
}
diff --git a/NewWorldCompanion.Services/CraftingRecipeManager.cs b/NewWorldCompanion.Services/CraftingRecipeManager.cs
index 6a0954c..746de30 100644
--- a/NewWorldCompanion.Services/CraftingRecipeManager.cs
+++ b/NewWorldCompanion.Services/CraftingRecipeManager.cs
@@ -12,7 +12,7 @@ namespace NewWorldCompanion.Services
public class CraftingRecipeManager : ICraftingRecipeManager
{
private readonly IEventAggregator _eventAggregator;
- private readonly ICraftingRecipeStore _craftingRecipeStore;
+ private readonly INewWorldDataStore _newWorldDataStore;
private List _craftingRecipes = new List();
@@ -20,13 +20,13 @@ public class CraftingRecipeManager : ICraftingRecipeManager
#region Constructor
- public CraftingRecipeManager(IEventAggregator eventAggregator, ICraftingRecipeStore craftingRecipeStore)
+ public CraftingRecipeManager(IEventAggregator eventAggregator, INewWorldDataStore newWorldDataStore)
{
// Init IEventAggregator
_eventAggregator = eventAggregator;
// Init stores
- _craftingRecipeStore = craftingRecipeStore;
+ _newWorldDataStore = newWorldDataStore;
// Init recipes
LoadRecipes();
@@ -64,7 +64,7 @@ private void LoadRecipes()
}
// Update recipe list
- var recipesJson = _craftingRecipeStore.GetCraftingRecipes();
+ var recipesJson = _newWorldDataStore.GetCraftingRecipes();
foreach (var recipeJson in recipesJson)
{
var recipe = _craftingRecipes.FirstOrDefault(r => r.Id.Equals(recipeJson.Id));
diff --git a/NewWorldCompanion.Services/Data/CraftingRecipes.json b/NewWorldCompanion.Services/Data/CraftingRecipes.json
index 023f916..757ed27 100644
--- a/NewWorldCompanion.Services/Data/CraftingRecipes.json
+++ b/NewWorldCompanion.Services/Data/CraftingRecipes.json
@@ -20005,7 +20005,7 @@
"Qty2": 1,
"Qty3": 5,
"Qty4": 5,
- "Qty5": 10,
+ "Qty5": 5,
"Qty6": null,
"Qty7": null,
"GameEventID": "Craft_StonecuttingT2",
@@ -203926,11 +203926,11 @@
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 50,
+ "CraftingFee": 18,
"UseCraftingTax": 1,
"Tradeskill": "Furnishing",
- "RecipeLevel": 75,
- "StationType1": "engineering3",
+ "RecipeLevel": 0,
+ "StationType1": "engineering2",
"StationType2": "",
"StationType3": "",
"StationType4": "",
@@ -203948,11 +203948,11 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "TimberT3",
+ "Ingredient1": "TimberT2",
"Type1": "Item",
- "Ingredient2": "IngotT3",
+ "Ingredient2": "IngotT2",
"Type2": "Item",
- "Ingredient3": "WoodStainT3",
+ "Ingredient3": "WoodStainT2",
"Type3": "Item",
"Ingredient4": "",
"Type4": "",
@@ -203969,7 +203969,7 @@
"Qty5": null,
"Qty6": null,
"Qty7": null,
- "GameEventID": "Craft_FurnishingT3",
+ "GameEventID": "Craft_FurnishingT2",
"Game Event Validation": true,
"CooldownSeconds": null,
"CooldownQuantity": null,
@@ -209095,7 +209095,7 @@
"GemSlotCost": null
},
{
- "RecipeID": "Attribute Items",
+ "RecipeID": "Salvage Values",
"RecipeNameOverride": "",
"CraftingCategory": "",
"CraftingGroup": "",
@@ -209166,31 +209166,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRBonusT2",
+ "RecipeID": "SalvageSmall_FlintT1",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 60,
- "StationType1": "blacksmith3",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRBonusT2",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -209202,10 +209202,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRBonusT1",
+ "Ingredient1": "FlintT1",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -209217,7 +209217,7 @@
"Ingredient7": "",
"Type7": "",
"Qty1": 5,
- "Qty2": 1,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -209237,31 +209237,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRBonusT3",
+ "RecipeID": "SalvageSmall_TimberT1",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 110,
- "StationType1": "blacksmith4",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRBonusT3",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -209273,10 +209273,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRBonusT2",
+ "Ingredient1": "WoodT1",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -209287,8 +209287,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 4,
- "Qty2": 1,
+ "Qty1": 5,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -209308,31 +209308,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRBonusT4",
+ "RecipeID": "SalvageSmall_TimberT2",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 160,
- "StationType1": "blacksmith5",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRBonusT4",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -209344,10 +209344,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRBonusT3",
+ "Ingredient1": "TimberT2",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -209358,8 +209358,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 3,
- "Qty2": 1,
+ "Qty1": 5,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -209379,31 +209379,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "DEXBonusT2",
+ "RecipeID": "SalvageSmall_TimberT3",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 60,
- "StationType1": "engineering3",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXBonusT2",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -209415,10 +209415,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXBonusT1",
+ "Ingredient1": "TimberT3",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -209430,7 +209430,7 @@
"Ingredient7": "",
"Type7": "",
"Qty1": 5,
- "Qty2": 1,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -209450,31 +209450,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "DEXBonusT3",
+ "RecipeID": "SalvageSmall_TimberT4",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 110,
- "StationType1": "engineering4",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXBonusT3",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -209486,10 +209486,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXBonusT2",
+ "Ingredient1": "TimberT4",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -209500,8 +209500,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 4,
- "Qty2": 1,
+ "Qty1": 5,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -209521,31 +209521,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "DEXBonusT4",
+ "RecipeID": "SalvageSmall_TimberT5",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 160,
- "StationType1": "engineering5",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXBonusT4",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -209557,10 +209557,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXBonusT3",
+ "Ingredient1": "TimberT5",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -209571,8 +209571,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 3,
- "Qty2": 1,
+ "Qty1": 5,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -209592,31 +209592,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "INTBonusT2",
+ "RecipeID": "SalvageSmall_TimberT51",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 60,
- "StationType1": "alchemy3",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTBonusT2",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -209628,10 +209628,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTBonusT1",
+ "Ingredient1": "TimberT51",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -209643,7 +209643,7 @@
"Ingredient7": "",
"Type7": "",
"Qty1": 5,
- "Qty2": 1,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -209663,31 +209663,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "INTBonusT3",
+ "RecipeID": "SalvageLarge_TimberT1",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 110,
- "StationType1": "alchemy4",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTBonusT3",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -209699,10 +209699,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTBonusT2",
+ "Ingredient1": "WoodT1",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -209713,8 +209713,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 4,
- "Qty2": 1,
+ "Qty1": 10,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -209734,31 +209734,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "INTBonusT4",
+ "RecipeID": "SalvageLarge_TimberT2",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 160,
- "StationType1": "alchemy5",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTBonusT4",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -209770,10 +209770,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTBonusT3",
+ "Ingredient1": "TimberT2",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -209784,8 +209784,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 3,
- "Qty2": 1,
+ "Qty1": 10,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -209805,31 +209805,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "CONBonusT2",
+ "RecipeID": "SalvageLarge_TimberT3",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 60,
- "StationType1": "outfitting3",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONBonusT2",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -209841,10 +209841,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONBonusT1",
+ "Ingredient1": "TimberT3",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -209855,8 +209855,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 5,
- "Qty2": 1,
+ "Qty1": 10,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -209876,31 +209876,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "CONBonusT3",
+ "RecipeID": "SalvageLarge_TimberT4",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 110,
- "StationType1": "outfitting4",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONBonusT3",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -209912,10 +209912,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONBonusT2",
+ "Ingredient1": "TimberT4",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -209926,8 +209926,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 4,
- "Qty2": 1,
+ "Qty1": 10,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -209947,31 +209947,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "CONBonusT4",
+ "RecipeID": "SalvageLarge_TimberT5",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 160,
- "StationType1": "outfitting5",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONBonusT4",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -209983,10 +209983,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONBonusT3",
+ "Ingredient1": "TimberT5",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -209997,8 +209997,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 3,
- "Qty2": 1,
+ "Qty1": 10,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210018,31 +210018,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "FOCBonusT2",
+ "RecipeID": "SalvageLarge_TimberT51",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 60,
- "StationType1": "alchemy3",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCBonusT2",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210054,10 +210054,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCBonusT1",
+ "Ingredient1": "TimberT51",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210068,8 +210068,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 5,
- "Qty2": 1,
+ "Qty1": 10,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210089,31 +210089,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "FOCBonusT3",
+ "RecipeID": "SalvageSmall_LeatherT1",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 110,
- "StationType1": "alchemy4",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCBonusT3",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210125,10 +210125,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCBonusT2",
+ "Ingredient1": "RawhideT1",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210139,8 +210139,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 4,
- "Qty2": 1,
+ "Qty1": 5,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210160,31 +210160,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "FOCBonusT4",
+ "RecipeID": "SalvageSmall_LeatherT2",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 160,
- "StationType1": "alchemy5",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCBonusT4",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210196,10 +210196,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCBonusT3",
+ "Ingredient1": "LeatherT2",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210210,8 +210210,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 3,
- "Qty2": 1,
+ "Qty1": 5,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210231,31 +210231,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRDEXBonusT2",
+ "RecipeID": "SalvageSmall_LeatherT3",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 60,
- "StationType1": "blacksmith3",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRDEXBonusT2",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210267,10 +210267,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRDEXBonusT1",
+ "Ingredient1": "LeatherT3",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210282,7 +210282,7 @@
"Ingredient7": "",
"Type7": "",
"Qty1": 5,
- "Qty2": 1,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210302,31 +210302,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRDEXBonusT3",
+ "RecipeID": "SalvageSmall_LeatherT4",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 110,
- "StationType1": "blacksmith4",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRDEXBonusT3",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210338,10 +210338,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRDEXBonusT2",
+ "Ingredient1": "LeatherT4",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210352,8 +210352,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 4,
- "Qty2": 1,
+ "Qty1": 5,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210373,31 +210373,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRDEXBonusT4",
+ "RecipeID": "SalvageSmall_LeatherT5",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 160,
- "StationType1": "blacksmith5",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRDEXBonusT4",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210409,10 +210409,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRDEXBonusT3",
+ "Ingredient1": "LeatherT5",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210423,8 +210423,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 3,
- "Qty2": 1,
+ "Qty1": 5,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210444,31 +210444,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRINTBonusT2",
+ "RecipeID": "SalvageSmall_LeatherT51",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 60,
- "StationType1": "blacksmith3",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRINTBonusT2",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210480,10 +210480,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRINTBonusT1",
+ "Ingredient1": "LeatherT51",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210495,7 +210495,7 @@
"Ingredient7": "",
"Type7": "",
"Qty1": 5,
- "Qty2": 1,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210515,31 +210515,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRINTBonusT3",
+ "RecipeID": "SalvageLarge_LeatherT1",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 110,
- "StationType1": "blacksmith4",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRINTBonusT3",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210551,10 +210551,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRINTBonusT2",
+ "Ingredient1": "RawhideT1",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210565,8 +210565,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 4,
- "Qty2": 1,
+ "Qty1": 10,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210586,31 +210586,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRINTBonusT4",
+ "RecipeID": "SalvageLarge_LeatherT2",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 160,
- "StationType1": "blacksmith5",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRINTBonusT4",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210622,10 +210622,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRINTBonusT3",
+ "Ingredient1": "LeatherT2",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210636,8 +210636,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 3,
- "Qty2": 1,
+ "Qty1": 10,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210657,31 +210657,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRCONBonusT2",
+ "RecipeID": "SalvageLarge_LeatherT3",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 60,
- "StationType1": "blacksmith3",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRCONBonusT2",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210693,10 +210693,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRCONBonusT1",
+ "Ingredient1": "LeatherT3",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210707,8 +210707,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 5,
- "Qty2": 1,
+ "Qty1": 10,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210728,31 +210728,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRCONBonusT3",
+ "RecipeID": "SalvageLarge_LeatherT4",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 110,
- "StationType1": "blacksmith4",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRCONBonusT3",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210764,10 +210764,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRCONBonusT2",
+ "Ingredient1": "LeatherT4",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210778,8 +210778,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 4,
- "Qty2": 1,
+ "Qty1": 10,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210799,31 +210799,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRCONBonusT4",
+ "RecipeID": "SalvageLarge_LeatherT5",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 160,
- "StationType1": "blacksmith5",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRCONBonusT4",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210835,10 +210835,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRCONBonusT3",
+ "Ingredient1": "LeatherT5",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210849,8 +210849,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 3,
- "Qty2": 1,
+ "Qty1": 10,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210870,31 +210870,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRFOCBonusT2",
+ "RecipeID": "SalvageLarge_LeatherT51",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 60,
- "StationType1": "blacksmith3",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRFOCBonusT2",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210906,10 +210906,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRFOCBonusT1",
+ "Ingredient1": "LeatherT51",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210920,8 +210920,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 5,
- "Qty2": 1,
+ "Qty1": 10,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -210941,31 +210941,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRFOCBonusT3",
+ "RecipeID": "SalvageSmall_ClothT1",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 110,
- "StationType1": "blacksmith4",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRFOCBonusT3",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -210977,10 +210977,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRFOCBonusT2",
+ "Ingredient1": "FiberT1",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -210991,8 +210991,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 4,
- "Qty2": 1,
+ "Qty1": 5,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -211012,31 +211012,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "STRFOCBonusT4",
+ "RecipeID": "SalvageSmall_ClothT2",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 160,
- "StationType1": "blacksmith5",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "STRFOCBonusT4",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -211048,10 +211048,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "STRFOCBonusT3",
+ "Ingredient1": "ClothT2",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -211062,8 +211062,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 3,
- "Qty2": 1,
+ "Qty1": 5,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -211083,31 +211083,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "DEXSTRBonusT2",
+ "RecipeID": "SalvageSmall_ClothT3",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 60,
- "StationType1": "engineering3",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXSTRBonusT2",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -211119,10 +211119,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXSTRBonusT1",
+ "Ingredient1": "ClothT3",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -211134,7 +211134,7 @@
"Ingredient7": "",
"Type7": "",
"Qty1": 5,
- "Qty2": 1,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -211154,31 +211154,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "DEXSTRBonusT3",
+ "RecipeID": "SalvageSmall_ClothT4",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 110,
- "StationType1": "engineering4",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXSTRBonusT3",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -211190,10 +211190,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXSTRBonusT2",
+ "Ingredient1": "ClothT4",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -211204,8 +211204,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 4,
- "Qty2": 1,
+ "Qty1": 5,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -211225,31 +211225,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "DEXSTRBonusT4",
+ "RecipeID": "SalvageSmall_ClothT5",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 160,
- "StationType1": "engineering5",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXSTRBonusT4",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -211261,10 +211261,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXSTRBonusT3",
+ "Ingredient1": "ClothT5",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -211275,8 +211275,8 @@
"Type6": "",
"Ingredient7": "",
"Type7": "",
- "Qty1": 3,
- "Qty2": 1,
+ "Qty1": 5,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -211296,31 +211296,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "DEXINTBonusT2",
+ "RecipeID": "SalvageSmall_ClothT51",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 60,
- "StationType1": "engineering3",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXINTBonusT2",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -211332,10 +211332,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXINTBonusT1",
+ "Ingredient1": "ClothT51",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -211347,7 +211347,7 @@
"Ingredient7": "",
"Type7": "",
"Qty1": 5,
- "Qty2": 1,
+ "Qty2": null,
"Qty3": null,
"Qty4": null,
"Qty5": null,
@@ -211367,31 +211367,31 @@
"GemSlotCost": null
},
{
- "RecipeID": "DEXINTBonusT3",
+ "RecipeID": "SalvageLarge_ClothT1",
"RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
+ "CraftingCategory": "",
+ "CraftingGroup": "",
"AdditionalFilterText": "",
"RecipeTags": "",
"DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
+ "bKnownByDefault": true,
+ "bListedByDefault": true,
+ "CraftAll": false,
"IsRefining": false,
"IsProcedural": false,
"HWMProgressionID": "",
"IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 110,
- "StationType1": "engineering4",
+ "CraftingFee": null,
+ "UseCraftingTax": null,
+ "Tradeskill": "",
+ "RecipeLevel": null,
+ "StationType1": "",
"StationType2": "",
"StationType3": "",
"StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXINTBonusT3",
+ "CraftingTime": null,
+ "OutputQty": null,
+ "ItemID": "",
"SkipGrantItems": null,
"BaseGearScore": null,
"BaseTier": null,
@@ -211403,5406 +211403,10 @@
"RequiredAchievementID": "",
"UnlockedAchievementID": "",
"UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXINTBonusT2",
+ "Ingredient1": "FiberT1",
"Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "DEXINTBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 160,
- "StationType1": "engineering5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXINTBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXINTBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "DEXCONBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 60,
- "StationType1": "engineering3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXCONBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXCONBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "DEXCONBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 110,
- "StationType1": "engineering4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXCONBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXCONBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "DEXCONBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 160,
- "StationType1": "engineering5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXCONBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXCONBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "DEXFOCBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 60,
- "StationType1": "engineering3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXFOCBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXFOCBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "DEXFOCBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 110,
- "StationType1": "engineering4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXFOCBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXFOCBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "DEXFOCBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 160,
- "StationType1": "engineering5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "DEXFOCBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "DEXFOCBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "INTSTRBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 60,
- "StationType1": "alchemy3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTSTRBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTSTRBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "INTSTRBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 110,
- "StationType1": "alchemy4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTSTRBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTSTRBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "INTSTRBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 160,
- "StationType1": "alchemy5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTSTRBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTSTRBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "INTDEXBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 60,
- "StationType1": "alchemy3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTDEXBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTDEXBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "INTDEXBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 110,
- "StationType1": "alchemy4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTDEXBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTDEXBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "INTDEXBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 160,
- "StationType1": "alchemy5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTDEXBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTDEXBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "INTCONBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 60,
- "StationType1": "alchemy3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTCONBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTCONBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "INTCONBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 110,
- "StationType1": "alchemy4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTCONBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTCONBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "INTCONBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 160,
- "StationType1": "alchemy5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTCONBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTCONBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "INTFOCBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 60,
- "StationType1": "alchemy3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTFOCBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTFOCBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "INTFOCBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 110,
- "StationType1": "alchemy4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTFOCBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTFOCBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "INTFOCBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 160,
- "StationType1": "alchemy5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "INTFOCBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "INTFOCBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "CONSTRBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 60,
- "StationType1": "outfitting3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONSTRBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONSTRBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "CONSTRBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 110,
- "StationType1": "outfitting4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONSTRBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONSTRBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "CONSTRBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 160,
- "StationType1": "outfitting5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONSTRBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONSTRBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "CONDEXBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 60,
- "StationType1": "outfitting3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONDEXBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONDEXBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "CONDEXBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 110,
- "StationType1": "outfitting4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONDEXBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONDEXBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "CONDEXBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 160,
- "StationType1": "outfitting5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONDEXBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONDEXBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "CONINTBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 60,
- "StationType1": "outfitting3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONINTBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONINTBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "CONINTBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 110,
- "StationType1": "outfitting4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONINTBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONINTBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "CONINTBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 160,
- "StationType1": "outfitting5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONINTBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONINTBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "CONFOCBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 60,
- "StationType1": "outfitting3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONFOCBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONFOCBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "CONFOCBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 110,
- "StationType1": "outfitting4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONFOCBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONFOCBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "CONFOCBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 160,
- "StationType1": "outfitting5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "CONFOCBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "CONFOCBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "FOCSTRBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 60,
- "StationType1": "blacksmith3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCSTRBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCSTRBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "FOCSTRBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 110,
- "StationType1": "blacksmith4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCSTRBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCSTRBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "FOCSTRBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Weaponsmithing",
- "RecipeLevel": 160,
- "StationType1": "blacksmith5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCSTRBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCSTRBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "FOCDEXBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 60,
- "StationType1": "engineering3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCDEXBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCDEXBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "FOCDEXBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 110,
- "StationType1": "engineering4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCDEXBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCDEXBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "FOCDEXBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Engineering",
- "RecipeLevel": 160,
- "StationType1": "engineering5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCDEXBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCDEXBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "FOCINTBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 60,
- "StationType1": "alchemy3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCINTBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCINTBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "FOCINTBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 110,
- "StationType1": "alchemy4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCINTBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCINTBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "FOCINTBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Arcana",
- "RecipeLevel": 160,
- "StationType1": "alchemy5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCINTBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCINTBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "FOCCONBonusT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsUncommon",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 15,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 60,
- "StationType1": "outfitting3",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCCONBonusT2",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCCONBonusT1",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT3",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "FOCCONBonusT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsRare",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 37,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 110,
- "StationType1": "outfitting4",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCCONBonusT3",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCCONBonusT2",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT4",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 4,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "FOCCONBonusT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "CraftModRefining",
- "CraftingGroup": "ModsEpic",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": false,
- "bListedByDefault": false,
- "CraftAll": true,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": 90,
- "UseCraftingTax": 1,
- "Tradeskill": "Armoring",
- "RecipeLevel": 160,
- "StationType1": "outfitting5",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": 1,
- "OutputQty": 1,
- "ItemID": "FOCCONBonusT4",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FOCCONBonusT3",
- "Type1": "Item",
- "Ingredient2": "TransmutationCatalystT5",
- "Type2": "Item",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 3,
- "Qty2": 1,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "Salvage Values",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": null,
- "bListedByDefault": null,
- "CraftAll": null,
- "IsRefining": null,
- "IsProcedural": null,
- "HWMProgressionID": "",
- "IsTemporary": null,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "",
- "Type1": "",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": null,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_FlintT1",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FlintT1",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_TimberT1",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "WoodT1",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_TimberT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "TimberT2",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_TimberT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "TimberT3",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_TimberT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "TimberT4",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_TimberT5",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "TimberT5",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_TimberT51",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "TimberT51",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_TimberT1",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "WoodT1",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 10,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_TimberT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "TimberT2",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 10,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_TimberT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "TimberT3",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 10,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_TimberT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "TimberT4",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 10,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_TimberT5",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "TimberT5",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 10,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_TimberT51",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "TimberT51",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 10,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_LeatherT1",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "RawhideT1",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_LeatherT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "LeatherT2",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_LeatherT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "LeatherT3",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_LeatherT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "LeatherT4",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_LeatherT5",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "LeatherT5",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_LeatherT51",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "LeatherT51",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_LeatherT1",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "RawhideT1",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 10,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_LeatherT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "LeatherT2",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 10,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_LeatherT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "LeatherT3",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 10,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_LeatherT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "LeatherT4",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 10,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_LeatherT5",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "LeatherT5",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 10,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_LeatherT51",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "LeatherT51",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 10,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_ClothT1",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FiberT1",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_ClothT2",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "ClothT2",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_ClothT3",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "ClothT3",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_ClothT4",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "ClothT4",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_ClothT5",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "ClothT5",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageSmall_ClothT51",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "ClothT51",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
- "Ingredient3": "",
- "Type3": "",
- "Ingredient4": "",
- "Type4": "",
- "Ingredient5": "",
- "Type5": "",
- "Ingredient6": "",
- "Type6": "",
- "Ingredient7": "",
- "Type7": "",
- "Qty1": 5,
- "Qty2": null,
- "Qty3": null,
- "Qty4": null,
- "Qty5": null,
- "Qty6": null,
- "Qty7": null,
- "GameEventID": "",
- "Game Event Validation": true,
- "CooldownSeconds": null,
- "CooldownQuantity": null,
- "GearScoreBonus": "",
- "GearScoreReduction": "",
- "BonusItemChance": null,
- "BonusItemChanceIncrease": "",
- "BonusItemChanceDecrease": "",
- "AttributeCost": null,
- "PerkCost": null,
- "GemSlotCost": null
- },
- {
- "RecipeID": "SalvageLarge_ClothT1",
- "RecipeNameOverride": "",
- "CraftingCategory": "",
- "CraftingGroup": "",
- "AdditionalFilterText": "",
- "RecipeTags": "",
- "DisplayIngredients": "",
- "bKnownByDefault": true,
- "bListedByDefault": true,
- "CraftAll": false,
- "IsRefining": false,
- "IsProcedural": false,
- "HWMProgressionID": "",
- "IsTemporary": false,
- "CraftingFee": null,
- "UseCraftingTax": null,
- "Tradeskill": "",
- "RecipeLevel": null,
- "StationType1": "",
- "StationType2": "",
- "StationType3": "",
- "StationType4": "",
- "CraftingTime": null,
- "OutputQty": null,
- "ItemID": "",
- "SkipGrantItems": null,
- "BaseGearScore": null,
- "BaseTier": null,
- "ProceduralTierID1": "",
- "ProceduralTierID2": "",
- "ProceduralTierID3": "",
- "ProceduralTierID4": "",
- "ProceduralTierID5": "",
- "RequiredAchievementID": "",
- "UnlockedAchievementID": "",
- "UnlockedAchievementBlocksRecrafting": null,
- "Ingredient1": "FiberT1",
- "Type1": "Item",
- "Ingredient2": "",
- "Type2": "",
+ "Ingredient2": "",
+ "Type2": "",
"Ingredient3": "",
"Type3": "",
"Ingredient4": "",
@@ -230452,8 +225056,8 @@
"Qty5": null,
"Qty6": null,
"Qty7": null,
- "GameEventID": "Craft_OutfittingT5",
- "Game Event Validation": false,
+ "GameEventID": "Craft_ArmoringT5",
+ "Game Event Validation": true,
"CooldownSeconds": null,
"CooldownQuantity": null,
"GearScoreBonus": "5,10,15,20,25",
@@ -230523,8 +225127,8 @@
"Qty5": null,
"Qty6": null,
"Qty7": null,
- "GameEventID": "Craft_OutfittingT5",
- "Game Event Validation": false,
+ "GameEventID": "Craft_ArmoringT5",
+ "Game Event Validation": true,
"CooldownSeconds": null,
"CooldownQuantity": null,
"GearScoreBonus": "5,10,15,20,25",
@@ -230594,8 +225198,8 @@
"Qty5": null,
"Qty6": null,
"Qty7": null,
- "GameEventID": "Craft_OutfittingT5",
- "Game Event Validation": false,
+ "GameEventID": "Craft_ArmoringT5",
+ "Game Event Validation": true,
"CooldownSeconds": null,
"CooldownQuantity": null,
"GearScoreBonus": "5,10,15,20,25",
@@ -230665,8 +225269,8 @@
"Qty5": null,
"Qty6": null,
"Qty7": null,
- "GameEventID": "Craft_OutfittingT5",
- "Game Event Validation": false,
+ "GameEventID": "Craft_ArmoringT5",
+ "Game Event Validation": true,
"CooldownSeconds": null,
"CooldownQuantity": null,
"GearScoreBonus": "5,10,15,20,25",
@@ -230736,8 +225340,8 @@
"Qty5": null,
"Qty6": null,
"Qty7": null,
- "GameEventID": "Craft_OutfittingT5",
- "Game Event Validation": false,
+ "GameEventID": "Craft_ArmoringT5",
+ "Game Event Validation": true,
"CooldownSeconds": null,
"CooldownQuantity": null,
"GearScoreBonus": "5,10,15,20,25",
@@ -230807,8 +225411,8 @@
"Qty5": null,
"Qty6": null,
"Qty7": null,
- "GameEventID": "Craft_OutfittingT5",
- "Game Event Validation": false,
+ "GameEventID": "Craft_ArmoringT5",
+ "Game Event Validation": true,
"CooldownSeconds": null,
"CooldownQuantity": null,
"GearScoreBonus": "5,10,15,20,25",
@@ -230878,8 +225482,8 @@
"Qty5": null,
"Qty6": null,
"Qty7": null,
- "GameEventID": "Craft_OutfittingT5",
- "Game Event Validation": false,
+ "GameEventID": "Craft_ArmoringT5",
+ "Game Event Validation": true,
"CooldownSeconds": null,
"CooldownQuantity": null,
"GearScoreBonus": "5,10,15,20,25",
@@ -230949,8 +225553,8 @@
"Qty5": null,
"Qty6": null,
"Qty7": null,
- "GameEventID": "Craft_OutfittingT5",
- "Game Event Validation": false,
+ "GameEventID": "Craft_ArmoringT5",
+ "Game Event Validation": true,
"CooldownSeconds": null,
"CooldownQuantity": null,
"GearScoreBonus": "5,10,15,20,25",
@@ -231020,8 +225624,8 @@
"Qty5": null,
"Qty6": null,
"Qty7": null,
- "GameEventID": "Craft_OutfittingT5",
- "Game Event Validation": false,
+ "GameEventID": "Craft_ArmoringT5",
+ "Game Event Validation": true,
"CooldownSeconds": null,
"CooldownQuantity": null,
"GearScoreBonus": "5,10,15,20,25",
@@ -231091,8 +225695,8 @@
"Qty5": null,
"Qty6": null,
"Qty7": null,
- "GameEventID": "Craft_OutfittingT5",
- "Game Event Validation": false,
+ "GameEventID": "Craft_ArmoringT5",
+ "Game Event Validation": true,
"CooldownSeconds": null,
"CooldownQuantity": null,
"GearScoreBonus": "5,10,15,20,25",
diff --git a/NewWorldCompanion.Services/Data/MasterItemDefinitions_Crafting.json b/NewWorldCompanion.Services/Data/MasterItemDefinitions_Crafting.json
index b9ddb27..ccb4817 100644
--- a/NewWorldCompanion.Services/Data/MasterItemDefinitions_Crafting.json
+++ b/NewWorldCompanion.Services/Data/MasterItemDefinitions_Crafting.json
@@ -18,6 +18,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -113,6 +114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -208,6 +210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -303,6 +306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -398,6 +402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -493,6 +498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -588,6 +594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -683,6 +690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -778,6 +786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -873,6 +882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -968,6 +978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -1063,6 +1074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -1158,6 +1170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -1253,6 +1266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -1348,6 +1362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -1443,6 +1458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -1538,6 +1554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -1633,6 +1650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -1728,6 +1746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -1823,6 +1842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -1918,6 +1938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -2013,6 +2034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -2108,6 +2130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -2203,6 +2226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -2298,6 +2322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -2393,6 +2418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -2488,6 +2514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -2583,6 +2610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -2678,6 +2706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -2773,6 +2802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -2868,6 +2898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -2963,6 +2994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -3058,6 +3090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -3153,6 +3186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -3248,6 +3282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -3343,6 +3378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -3438,6 +3474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -3533,6 +3570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -3628,6 +3666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -3723,6 +3762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -3818,6 +3858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -3913,6 +3954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -4008,6 +4050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -4103,6 +4146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -4198,6 +4242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -4293,6 +4338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -4388,6 +4434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -4483,6 +4530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -4578,6 +4626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -4673,6 +4722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -4768,6 +4818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -4863,6 +4914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -4958,6 +5010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -5053,6 +5106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -5148,6 +5202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -5243,6 +5298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -5338,6 +5394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -5433,6 +5490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -5528,6 +5586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -5623,6 +5682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -5718,6 +5778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -5813,6 +5874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -5908,6 +5970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -6003,6 +6066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -6098,6 +6162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -6193,6 +6258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -6288,6 +6354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -6383,6 +6450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -6478,6 +6546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -6573,6 +6642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -6668,6 +6738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -6763,6 +6834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -6858,6 +6930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -6953,6 +7026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -7048,6 +7122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -7143,6 +7218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -7238,6 +7314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -7333,6 +7410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -7428,6 +7506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -7523,6 +7602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -7618,6 +7698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -7713,6 +7794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -7808,6 +7890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -7903,6 +7986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -7998,6 +8082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -8093,6 +8178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -8188,6 +8274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -8283,6 +8370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -8378,6 +8466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -8473,6 +8562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -8568,6 +8658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -8663,6 +8754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -8758,6 +8850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -8853,6 +8946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -8865,7 +8959,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 4,
+ "ForceRarity": 3,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -8948,6 +9042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -8960,7 +9055,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 4,
+ "ForceRarity": 3,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -9043,6 +9138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -9055,7 +9151,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 4,
+ "ForceRarity": 3,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -9138,6 +9234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -9150,7 +9247,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 4,
+ "ForceRarity": 3,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -9233,6 +9330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -9245,7 +9343,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 4,
+ "ForceRarity": 3,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -9328,6 +9426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -9340,7 +9439,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 4,
+ "ForceRarity": 3,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -9423,6 +9522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -9435,7 +9535,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 4,
+ "ForceRarity": 3,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -9518,6 +9618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -9530,7 +9631,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 4,
+ "ForceRarity": 3,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -9613,6 +9714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -9625,7 +9727,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 4,
+ "ForceRarity": 3,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -9708,6 +9810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -9720,7 +9823,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 4,
+ "ForceRarity": 3,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -9803,6 +9906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -9815,7 +9919,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 4,
+ "ForceRarity": 3,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -9898,6 +10002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -9910,7 +10015,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 4,
+ "ForceRarity": 3,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -9993,6 +10098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -10088,6 +10194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -10183,6 +10290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -10278,6 +10386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -10373,6 +10482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -10468,6 +10578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -10563,6 +10674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -10658,6 +10770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -10753,6 +10866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -10848,6 +10962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -10943,6 +11058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -11026,9 +11142,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@AncientArmorPlatesT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "Resources",
- "TradingFamily": "RawResources",
- "TradingGroup": "CraftingComponents",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -11038,6 +11154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -11121,9 +11238,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@ColdForgedBucklesT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "Resources",
- "TradingFamily": "RawResources",
- "TradingGroup": "CraftingComponents",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -11133,6 +11250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -11216,9 +11334,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@AncientMetallicThreadT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "Resources",
- "TradingFamily": "RawResources",
- "TradingGroup": "CraftingComponents",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -11228,6 +11346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -11323,6 +11442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -11418,6 +11538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -11513,6 +11634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -11608,6 +11730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -11703,6 +11826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -11798,6 +11922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -11893,6 +12018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -11988,6 +12114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -12083,6 +12210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -12178,6 +12306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -12273,6 +12402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -12368,6 +12498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -12463,6 +12594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -12558,6 +12690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -12653,6 +12786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -12748,6 +12882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -12843,6 +12978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -12938,6 +13074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -13033,6 +13170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -13128,6 +13266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -13223,6 +13362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -13318,6 +13458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -13413,6 +13554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -13508,6 +13650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -13603,6 +13746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -13698,6 +13842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -13793,6 +13938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -13888,6 +14034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -13983,6 +14130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -14078,6 +14226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -14173,6 +14322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -14268,6 +14418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -14363,6 +14514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -14458,6 +14610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -14553,6 +14706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -14648,6 +14802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -14743,6 +14898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -14838,6 +14994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -14933,6 +15090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -15028,6 +15186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -15123,6 +15282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -15218,6 +15378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -15313,6 +15474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -15408,6 +15570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -15503,6 +15666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -15598,6 +15762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -15693,6 +15858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -15788,6 +15954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -15883,6 +16050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -15978,6 +16146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -16073,6 +16242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -16168,6 +16338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -16263,6 +16434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -16358,6 +16530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -16453,6 +16626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -16548,6 +16722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -16643,6 +16818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -16738,6 +16914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -16833,6 +17010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -16928,6 +17106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -17023,6 +17202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -17118,6 +17298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -17213,6 +17394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -17308,6 +17490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -17403,6 +17586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -17498,6 +17682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -17593,6 +17778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -17688,6 +17874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -17783,6 +17970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -17878,6 +18066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -17973,6 +18162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -18068,6 +18258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -18163,6 +18354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -18258,6 +18450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -18353,6 +18546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -18448,6 +18642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -18543,6 +18738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -18638,6 +18834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -18733,6 +18930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -18828,6 +19026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -18923,6 +19122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -19018,6 +19218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -19113,6 +19314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -19208,6 +19410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -19303,6 +19506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -19398,6 +19602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -19475,11 +19680,11 @@
"HideFromRewardOpenPopup": null
},
{
- "ItemID": "TransmutationCatalystT3",
- "Name": "@TransmutationCatalystT3_MasterName",
+ "ItemID": "ReagentConverterT3",
+ "Name": "@ReagentConverterT3_MasterName",
"ItemType": "Resource",
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@TransmutationCatalystT3_Description",
+ "Description": "@ReagentConverterT3_Description",
"ItemClass": "Resource",
"TradingCategory": "Resources",
"TradingFamily": "Components",
@@ -19493,6 +19698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -19505,7 +19711,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 1,
+ "ForceRarity": null,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -19524,8 +19730,8 @@
"ConsumeOnUse": true,
"PrefabPath": "",
"HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/AnimusT1.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/AnimusT1.png",
+ "IconPath": "lyshineui/images/icons/items/Resource/ArcaneReactorT3.png",
+ "HiResIconPath": "lyshineui/images/icons/items_hires/ArcaneReactorT3.png",
"MaxStackSize": 10000,
"DeathDropPercentage": 0,
"Nonremovable": null,
@@ -19570,11 +19776,11 @@
"HideFromRewardOpenPopup": null
},
{
- "ItemID": "TransmutationCatalystT4",
- "Name": "@TransmutationCatalystT4_MasterName",
+ "ItemID": "ReagentConverterT4",
+ "Name": "@ReagentConverterT4_MasterName",
"ItemType": "Resource",
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@TransmutationCatalystT4_Description",
+ "Description": "@ReagentConverterT4_Description",
"ItemClass": "Resource",
"TradingCategory": "Resources",
"TradingFamily": "Components",
@@ -19588,6 +19794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -19600,7 +19807,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 2,
+ "ForceRarity": 1,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -19619,8 +19826,8 @@
"ConsumeOnUse": true,
"PrefabPath": "",
"HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/AnimusT2.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/AnimusT2.png",
+ "IconPath": "lyshineui/images/icons/items/Resource/ArcaneReactorT4.png",
+ "HiResIconPath": "lyshineui/images/icons/items_hires/ArcaneReactorT4.png",
"MaxStackSize": 10000,
"DeathDropPercentage": 0,
"Nonremovable": null,
@@ -19665,11 +19872,11 @@
"HideFromRewardOpenPopup": null
},
{
- "ItemID": "TransmutationCatalystT5",
- "Name": "@TransmutationCatalystT5_MasterName",
+ "ItemID": "ReagentConverterT5",
+ "Name": "@ReagentConverterT5_MasterName",
"ItemType": "Resource",
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@TransmutationCatalystT5_Description",
+ "Description": "@ReagentConverterT5_Description",
"ItemClass": "Resource",
"TradingCategory": "Resources",
"TradingFamily": "Components",
@@ -19683,6 +19890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -19695,7 +19903,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 3,
+ "ForceRarity": 2,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -19714,8 +19922,8 @@
"ConsumeOnUse": false,
"PrefabPath": "",
"HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/AnimusT3.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/AnimusT3.png",
+ "IconPath": "lyshineui/images/icons/items/Resource/ArcaneReactorT5.png",
+ "HiResIconPath": "lyshineui/images/icons/items_hires/ArcaneReactorT5.png",
"MaxStackSize": 10000,
"DeathDropPercentage": 0,
"Nonremovable": null,
@@ -19760,24 +19968,25 @@
"HideFromRewardOpenPopup": null
},
{
- "ItemID": "ReagentConverterT3",
- "Name": "@ReagentConverterT3_MasterName",
+ "ItemID": "ClaimCharterT1",
+ "Name": "@ClaimCharterT1_MasterName",
"ItemType": "Resource",
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@ReagentConverterT3_Description",
+ "Description": "@ClaimCharterT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "Resources",
- "TradingFamily": "Components",
- "TradingGroup": "CraftingComponents",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
"MinGearScore": null,
"MaxGearScore": null,
- "Tier": 3,
+ "Tier": 0,
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -19806,106 +20015,11 @@
"WeaponAppearanceOverride": "",
"ConfirmDestroy": "",
"ConfirmBeforeUse": false,
- "ConsumeOnUse": true,
- "PrefabPath": "",
- "HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/ArcaneReactorT3.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/ArcaneReactorT3.png",
- "MaxStackSize": 10000,
- "DeathDropPercentage": 0,
- "Nonremovable": null,
- "IsMissionItem": null,
- "IsUniqueItem": "",
- "ContainerLevel": null,
- "ContainerGS": null,
- "ExceedMinIndex": "",
- "ExceedMaxIndex": "",
- "IsSalvageable": false,
- "SalvageResources": null,
- "IsRepairable": false,
- "RepairDustModifier": null,
- "RepairRecipe": "",
- "CraftingRecipe": "",
- "RepairGameEventID": "",
- "SalvageGameEventID": "",
- "SalvageAchievement": "",
- "RepairTypes": "",
- "IngredientCategories": "",
- "IngredientBonusPrimary": null,
- "IngredientBonusSecondary": null,
- "IngredientGearScoreBaseBonus": null,
- "IngredientGearScoreMaxBonus": null,
- "ExtraBonusItemChance": "",
- "Durability": null,
- "DurabilityDmgOnDeath": null,
- "DestroyOnBreak": false,
- "Weight": 1,
- "AcquisitionNotificationId": null,
- "AudioPickup": "Play_UI_Pickup_Generic",
- "AudioPlace": "Play_UI_Drop_Generic",
- "AudioUse": "Play_UI_Use_Generic",
- "AudioCreated": "Play_UI_Created_Generic",
- "AudioDestroyed": "",
- "MannequinTag": "",
- "SoundTableID": "",
- "WarboardGatherStat": "",
- "WarboardDepositStat": "",
- "Notes": "",
- "HideInLootTicker": "",
- "HideFromRewardOpenPopup": null
- },
- {
- "ItemID": "ReagentConverterT4",
- "Name": "@ReagentConverterT4_MasterName",
- "ItemType": "Resource",
- "ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@ReagentConverterT4_Description",
- "ItemClass": "Resource",
- "TradingCategory": "Resources",
- "TradingFamily": "Components",
- "TradingGroup": "CraftingComponents",
- "BindOnPickup": null,
- "BindOnEquip": null,
- "GearScoreOverride": null,
- "MinGearScore": null,
- "MaxGearScore": null,
- "Tier": 4,
- "ItemStatsRef": "",
- "GrantsHWMBump": "",
- "IgnoreNameChanges": null,
- "CanHavePerks": null,
- "CanReplaceGem": null,
- "Perk1": "",
- "Perk2": "",
- "Perk3": "",
- "Perk4": "",
- "Perk5": "",
- "PerkBucket1": "",
- "PerkBucket2": "",
- "PerkBucket3": "",
- "PerkBucket4": "",
- "PerkBucket5": "",
- "ForceRarity": 1,
- "RequiredLevel": null,
- "UseTypeAffix": false,
- "UseMaterialAffix": false,
- "UseMagicAffix": false,
- "IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
- "RDyeSlotDisabled": null,
- "GDyeSlotDisabled": null,
- "BDyeSlotDisabled": null,
- "ADyeSlotDisabled": null,
- "ArmorAppearanceM": "",
- "ArmorAppearanceF": "",
- "WeaponAppearanceOverride": "",
- "ConfirmDestroy": "",
- "ConfirmBeforeUse": false,
- "ConsumeOnUse": true,
+ "ConsumeOnUse": false,
"PrefabPath": "",
"HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/ArcaneReactorT4.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/ArcaneReactorT4.png",
+ "IconPath": "lyshineui/images/icons/items/Resource/ClaimCharterT1.png",
+ "HiResIconPath": "lyshineui/images/icons/items_hires/ClaimCharterT1.png",
"MaxStackSize": 10000,
"DeathDropPercentage": 0,
"Nonremovable": null,
@@ -19950,24 +20064,25 @@
"HideFromRewardOpenPopup": null
},
{
- "ItemID": "ReagentConverterT5",
- "Name": "@ReagentConverterT5_MasterName",
+ "ItemID": "GemPouchT1",
+ "Name": "@GemPouchT1_MasterName",
"ItemType": "Resource",
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@ReagentConverterT5_Description",
+ "Description": "@GemPouchT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "Resources",
- "TradingFamily": "Components",
- "TradingGroup": "CraftingComponents",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
"MinGearScore": null,
"MaxGearScore": null,
- "Tier": 5,
+ "Tier": 0,
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -19980,7 +20095,7 @@
"PerkBucket3": "",
"PerkBucket4": "",
"PerkBucket5": "",
- "ForceRarity": 2,
+ "ForceRarity": null,
"RequiredLevel": null,
"UseTypeAffix": false,
"UseMaterialAffix": false,
@@ -19999,8 +20114,8 @@
"ConsumeOnUse": false,
"PrefabPath": "",
"HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/ArcaneReactorT5.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/ArcaneReactorT5.png",
+ "IconPath": "lyshineui/images/icons/items/Resource/GemPouchT1.png",
+ "HiResIconPath": "lyshineui/images/icons/items_hires/GemPouchT1.png",
"MaxStackSize": 10000,
"DeathDropPercentage": 0,
"Nonremovable": null,
@@ -20010,7 +20125,7 @@
"ContainerGS": null,
"ExceedMinIndex": "",
"ExceedMaxIndex": "",
- "IsSalvageable": false,
+ "IsSalvageable": true,
"SalvageResources": null,
"IsRepairable": false,
"RepairDustModifier": null,
@@ -20045,11 +20160,11 @@
"HideFromRewardOpenPopup": null
},
{
- "ItemID": "ClaimCharterT1",
- "Name": "@ClaimCharterT1_MasterName",
+ "ItemID": "LockboxT1",
+ "Name": "@LockboxT1_MasterName",
"ItemType": "Resource",
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@ClaimCharterT1_Description",
+ "Description": "@LockboxT1_Description",
"ItemClass": "Resource",
"TradingCategory": "",
"TradingFamily": "",
@@ -20063,6 +20178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -20094,8 +20210,8 @@
"ConsumeOnUse": false,
"PrefabPath": "",
"HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/ClaimCharterT1.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/ClaimCharterT1.png",
+ "IconPath": "lyshineui/images/icons/items/Resource/LockboxT1.png",
+ "HiResIconPath": "lyshineui/images/icons/items_hires/LockboxT1.png",
"MaxStackSize": 10000,
"DeathDropPercentage": 0,
"Nonremovable": null,
@@ -20105,7 +20221,7 @@
"ContainerGS": null,
"ExceedMinIndex": "",
"ExceedMaxIndex": "",
- "IsSalvageable": false,
+ "IsSalvageable": true,
"SalvageResources": null,
"IsRepairable": false,
"RepairDustModifier": null,
@@ -20140,11 +20256,11 @@
"HideFromRewardOpenPopup": null
},
{
- "ItemID": "GemPouchT1",
- "Name": "@GemPouchT1_MasterName",
+ "ItemID": "SeedPouchT1",
+ "Name": "@SeedPouchT1_MasterName",
"ItemType": "Resource",
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@GemPouchT1_Description",
+ "Description": "@SeedPouchT1_Description",
"ItemClass": "Resource",
"TradingCategory": "",
"TradingFamily": "",
@@ -20158,6 +20274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -20189,8 +20306,8 @@
"ConsumeOnUse": false,
"PrefabPath": "",
"HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/GemPouchT1.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/GemPouchT1.png",
+ "IconPath": "lyshineui/images/icons/items/Resource/SeedPouchT1.png",
+ "HiResIconPath": "lyshineui/images/icons/items_hires/SeedPouchT1.png",
"MaxStackSize": 10000,
"DeathDropPercentage": 0,
"Nonremovable": null,
@@ -20235,11 +20352,11 @@
"HideFromRewardOpenPopup": null
},
{
- "ItemID": "LockboxT1",
- "Name": "@LockboxT1_MasterName",
+ "ItemID": "SeedPouchAlchemyT1",
+ "Name": "@SeedPouchAlchemyT1_MasterName",
"ItemType": "Resource",
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@LockboxT1_Description",
+ "Description": "@SeedPouchAlchemyT1_Description",
"ItemClass": "Resource",
"TradingCategory": "",
"TradingFamily": "",
@@ -20253,6 +20370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -20284,8 +20402,8 @@
"ConsumeOnUse": false,
"PrefabPath": "",
"HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/LockboxT1.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/LockboxT1.png",
+ "IconPath": "lyshineui/images/icons/items/Resource/SeedPouchAlchemyT1.png",
+ "HiResIconPath": "lyshineui/images/icons/items_hires/SeedPouchAlchemyT1.png",
"MaxStackSize": 10000,
"DeathDropPercentage": 0,
"Nonremovable": null,
@@ -20330,11 +20448,11 @@
"HideFromRewardOpenPopup": null
},
{
- "ItemID": "SeedPouchT1",
- "Name": "@SeedPouchT1_MasterName",
+ "ItemID": "VialPouchT1",
+ "Name": "@VialPouchT1_MasterName",
"ItemType": "Resource",
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@SeedPouchT1_Description",
+ "Description": "@VialPouchT1_Description",
"ItemClass": "Resource",
"TradingCategory": "",
"TradingFamily": "",
@@ -20348,6 +20466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -20379,8 +20498,8 @@
"ConsumeOnUse": false,
"PrefabPath": "",
"HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/SeedPouchT1.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/SeedPouchT1.png",
+ "IconPath": "lyshineui/images/icons/items/Resource/VialPouchT1.png",
+ "HiResIconPath": "lyshineui/images/icons/items_hires/VialPouchT1.png",
"MaxStackSize": 10000,
"DeathDropPercentage": 0,
"Nonremovable": null,
@@ -20425,11 +20544,11 @@
"HideFromRewardOpenPopup": null
},
{
- "ItemID": "SeedPouchAlchemyT1",
- "Name": "@SeedPouchAlchemyT1_MasterName",
+ "ItemID": "ConcoctionDecanterT1",
+ "Name": "@ConcoctionDecanterT1_MasterName",
"ItemType": "Resource",
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@SeedPouchAlchemyT1_Description",
+ "Description": "@ConcoctionDecanterT1_Description",
"ItemClass": "Resource",
"TradingCategory": "",
"TradingFamily": "",
@@ -20443,6 +20562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -20474,198 +20594,8 @@
"ConsumeOnUse": false,
"PrefabPath": "",
"HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/SeedPouchAlchemyT1.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/SeedPouchAlchemyT1.png",
- "MaxStackSize": 10000,
- "DeathDropPercentage": 0,
- "Nonremovable": null,
- "IsMissionItem": null,
- "IsUniqueItem": "",
- "ContainerLevel": null,
- "ContainerGS": null,
- "ExceedMinIndex": "",
- "ExceedMaxIndex": "",
- "IsSalvageable": true,
- "SalvageResources": null,
- "IsRepairable": false,
- "RepairDustModifier": null,
- "RepairRecipe": "",
- "CraftingRecipe": "",
- "RepairGameEventID": "",
- "SalvageGameEventID": "",
- "SalvageAchievement": "",
- "RepairTypes": "",
- "IngredientCategories": "",
- "IngredientBonusPrimary": null,
- "IngredientBonusSecondary": null,
- "IngredientGearScoreBaseBonus": null,
- "IngredientGearScoreMaxBonus": null,
- "ExtraBonusItemChance": "",
- "Durability": null,
- "DurabilityDmgOnDeath": null,
- "DestroyOnBreak": false,
- "Weight": 1,
- "AcquisitionNotificationId": null,
- "AudioPickup": "Play_UI_Pickup_Generic",
- "AudioPlace": "Play_UI_Drop_Generic",
- "AudioUse": "Play_UI_Use_Generic",
- "AudioCreated": "Play_UI_Created_Generic",
- "AudioDestroyed": "",
- "MannequinTag": "",
- "SoundTableID": "",
- "WarboardGatherStat": "",
- "WarboardDepositStat": "",
- "Notes": "",
- "HideInLootTicker": "",
- "HideFromRewardOpenPopup": null
- },
- {
- "ItemID": "VialPouchT1",
- "Name": "@VialPouchT1_MasterName",
- "ItemType": "Resource",
- "ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@VialPouchT1_Description",
- "ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "",
- "TradingGroup": "",
- "BindOnPickup": null,
- "BindOnEquip": null,
- "GearScoreOverride": null,
- "MinGearScore": null,
- "MaxGearScore": null,
- "Tier": 0,
- "ItemStatsRef": "",
- "GrantsHWMBump": "",
- "IgnoreNameChanges": null,
- "CanHavePerks": null,
- "CanReplaceGem": null,
- "Perk1": "",
- "Perk2": "",
- "Perk3": "",
- "Perk4": "",
- "Perk5": "",
- "PerkBucket1": "",
- "PerkBucket2": "",
- "PerkBucket3": "",
- "PerkBucket4": "",
- "PerkBucket5": "",
- "ForceRarity": null,
- "RequiredLevel": null,
- "UseTypeAffix": false,
- "UseMaterialAffix": false,
- "UseMagicAffix": false,
- "IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
- "RDyeSlotDisabled": null,
- "GDyeSlotDisabled": null,
- "BDyeSlotDisabled": null,
- "ADyeSlotDisabled": null,
- "ArmorAppearanceM": "",
- "ArmorAppearanceF": "",
- "WeaponAppearanceOverride": "",
- "ConfirmDestroy": "",
- "ConfirmBeforeUse": false,
- "ConsumeOnUse": false,
- "PrefabPath": "",
- "HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/VialPouchT1.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/VialPouchT1.png",
- "MaxStackSize": 10000,
- "DeathDropPercentage": 0,
- "Nonremovable": null,
- "IsMissionItem": null,
- "IsUniqueItem": "",
- "ContainerLevel": null,
- "ContainerGS": null,
- "ExceedMinIndex": "",
- "ExceedMaxIndex": "",
- "IsSalvageable": true,
- "SalvageResources": null,
- "IsRepairable": false,
- "RepairDustModifier": null,
- "RepairRecipe": "",
- "CraftingRecipe": "",
- "RepairGameEventID": "",
- "SalvageGameEventID": "",
- "SalvageAchievement": "",
- "RepairTypes": "",
- "IngredientCategories": "",
- "IngredientBonusPrimary": null,
- "IngredientBonusSecondary": null,
- "IngredientGearScoreBaseBonus": null,
- "IngredientGearScoreMaxBonus": null,
- "ExtraBonusItemChance": "",
- "Durability": null,
- "DurabilityDmgOnDeath": null,
- "DestroyOnBreak": false,
- "Weight": 1,
- "AcquisitionNotificationId": null,
- "AudioPickup": "Play_UI_Pickup_Generic",
- "AudioPlace": "Play_UI_Drop_Generic",
- "AudioUse": "Play_UI_Use_Generic",
- "AudioCreated": "Play_UI_Created_Generic",
- "AudioDestroyed": "",
- "MannequinTag": "",
- "SoundTableID": "",
- "WarboardGatherStat": "",
- "WarboardDepositStat": "",
- "Notes": "",
- "HideInLootTicker": "",
- "HideFromRewardOpenPopup": null
- },
- {
- "ItemID": "ConcoctionDecanterT1",
- "Name": "@ConcoctionDecanterT1_MasterName",
- "ItemType": "Resource",
- "ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@ConcoctionDecanterT1_Description",
- "ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "",
- "TradingGroup": "",
- "BindOnPickup": null,
- "BindOnEquip": null,
- "GearScoreOverride": null,
- "MinGearScore": null,
- "MaxGearScore": null,
- "Tier": 0,
- "ItemStatsRef": "",
- "GrantsHWMBump": "",
- "IgnoreNameChanges": null,
- "CanHavePerks": null,
- "CanReplaceGem": null,
- "Perk1": "",
- "Perk2": "",
- "Perk3": "",
- "Perk4": "",
- "Perk5": "",
- "PerkBucket1": "",
- "PerkBucket2": "",
- "PerkBucket3": "",
- "PerkBucket4": "",
- "PerkBucket5": "",
- "ForceRarity": null,
- "RequiredLevel": null,
- "UseTypeAffix": false,
- "UseMaterialAffix": false,
- "UseMagicAffix": false,
- "IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
- "RDyeSlotDisabled": null,
- "GDyeSlotDisabled": null,
- "BDyeSlotDisabled": null,
- "ADyeSlotDisabled": null,
- "ArmorAppearanceM": "",
- "ArmorAppearanceF": "",
- "WeaponAppearanceOverride": "",
- "ConfirmDestroy": "",
- "ConfirmBeforeUse": false,
- "ConsumeOnUse": false,
- "PrefabPath": "",
- "HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/ConcoctionDecanterT1.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/ConcoctionDecanterT1.png",
+ "IconPath": "lyshineui/images/icons/items/Resource/ConcoctionDecanterT1.png",
+ "HiResIconPath": "lyshineui/images/icons/items_hires/ConcoctionDecanterT1.png",
"MaxStackSize": 10000,
"DeathDropPercentage": 0,
"Nonremovable": null,
@@ -20728,6 +20658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -20823,6 +20754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -20918,6 +20850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -21013,6 +20946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -21108,6 +21042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -21199,10 +21134,11 @@
"GearScoreOverride": null,
"MinGearScore": null,
"MaxGearScore": null,
- "Tier": 3,
+ "Tier": 5,
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -21298,6 +21234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -21393,6 +21330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -21488,6 +21426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -21583,6 +21522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -21678,6 +21618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -21773,6 +21714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -21868,6 +21810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -21963,6 +21906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -22058,6 +22002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -22153,6 +22098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -22248,6 +22194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -22343,6 +22290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -22438,6 +22386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -22533,6 +22482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -22628,6 +22578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -22723,6 +22674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -22818,6 +22770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -22913,6 +22866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -23008,6 +22962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -23103,6 +23058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -23198,6 +23154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -23293,6 +23250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -23388,6 +23346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -23483,6 +23442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -23578,6 +23538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -23673,6 +23634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -23768,6 +23730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -23863,6 +23826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -23958,6 +23922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -24053,6 +24018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -24148,6 +24114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -24243,6 +24210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -24338,6 +24306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -24433,6 +24402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -24528,6 +24498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -24623,6 +24594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -24718,6 +24690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -24813,6 +24786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -24908,6 +24882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -25003,6 +24978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -25098,6 +25074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -25193,6 +25170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -25288,6 +25266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -25383,6 +25362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -25478,6 +25458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -25573,6 +25554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -25668,6 +25650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -25763,6 +25746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -25858,6 +25842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -25953,6 +25938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -26048,6 +26034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -26143,6 +26130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -26238,6 +26226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -26333,6 +26322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -26428,6 +26418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -26523,6 +26514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -26618,6 +26610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -26713,6 +26706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -26808,6 +26802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -26903,6 +26898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -26998,6 +26994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -27093,6 +27090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -27188,6 +27186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -27283,6 +27282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -27378,6 +27378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -27473,6 +27474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -27568,6 +27570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -27663,6 +27666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -27758,6 +27762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -27853,6 +27858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -27948,6 +27954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -28043,6 +28050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -28138,6 +28146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -28233,6 +28242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -28328,6 +28338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -28423,6 +28434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -28518,6 +28530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -28613,6 +28626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -28708,6 +28722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -28803,6 +28818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -28898,6 +28914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -28993,6 +29010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -29088,6 +29106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -29183,6 +29202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -29278,6 +29298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -29373,6 +29394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -29468,6 +29490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -29563,6 +29586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -29658,6 +29682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -29753,6 +29778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -29848,6 +29874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -29943,6 +29970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -30038,6 +30066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -30133,6 +30162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -30228,6 +30258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -30323,6 +30354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -30418,6 +30450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -30513,6 +30546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -30608,6 +30642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -30703,6 +30738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -30798,6 +30834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -30893,6 +30930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -30988,6 +31026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -31083,6 +31122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -31178,6 +31218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -31273,6 +31314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -31368,6 +31410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -31463,6 +31506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -31558,6 +31602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -31653,6 +31698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -31748,6 +31794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -31843,6 +31890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -31938,6 +31986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -32033,6 +32082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -32128,6 +32178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -32223,6 +32274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -32318,6 +32370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -32413,6 +32466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -32508,6 +32562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -32603,6 +32658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -32698,6 +32754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -32793,6 +32850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -32888,6 +32946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -32983,6 +33042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -33078,6 +33138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -33173,6 +33234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -33268,6 +33330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -33363,6 +33426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -33458,6 +33522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -33553,6 +33618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -33648,6 +33714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -33743,6 +33810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -33838,6 +33906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -33933,6 +34002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -34028,6 +34098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -34123,6 +34194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -34218,6 +34290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -34313,6 +34386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -34408,6 +34482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -34503,6 +34578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -34598,6 +34674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -34693,6 +34770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -34788,6 +34866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -34883,6 +34962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -34978,6 +35058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -35073,6 +35154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -35168,6 +35250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -35263,6 +35346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -35358,6 +35442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -35453,6 +35538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -35548,6 +35634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -35643,6 +35730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -35738,6 +35826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -35833,6 +35922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -35928,6 +36018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -36023,6 +36114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -36118,6 +36210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -36213,6 +36306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -36308,6 +36402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -36403,6 +36498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -36498,6 +36594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -36593,6 +36690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -36688,6 +36786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -36783,6 +36882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -36878,6 +36978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -36973,6 +37074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -37068,6 +37170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -37163,6 +37266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -37258,6 +37362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -37353,6 +37458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -37448,6 +37554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -37543,6 +37650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -37638,6 +37746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -37733,6 +37842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -37828,6 +37938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -37923,6 +38034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -38018,6 +38130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -38113,6 +38226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -38208,6 +38322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -38303,6 +38418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -38398,6 +38514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -38493,6 +38610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -38588,6 +38706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -38683,6 +38802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -38778,6 +38898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -38873,6 +38994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -38968,6 +39090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -39063,6 +39186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -39158,6 +39282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -39253,6 +39378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -39348,6 +39474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -39443,6 +39570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -39538,6 +39666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -39633,6 +39762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -39728,6 +39858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -39823,6 +39954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -39918,6 +40050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -40013,6 +40146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -40108,6 +40242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -40203,6 +40338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -40298,6 +40434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -40393,6 +40530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -40488,6 +40626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -40583,6 +40722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -40678,6 +40818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -40773,6 +40914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -40868,6 +41010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -40963,6 +41106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -41058,6 +41202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -41153,6 +41298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -41248,6 +41394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -41343,6 +41490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -41438,6 +41586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -41533,6 +41682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -41628,6 +41778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -41723,6 +41874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -41818,6 +41970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -41913,6 +42066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -42008,6 +42162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -42103,6 +42258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -42198,6 +42354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -42293,6 +42450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -42388,6 +42546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -42483,6 +42642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -42578,6 +42738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -42673,6 +42834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -42768,6 +42930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -42863,6 +43026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -42958,6 +43122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -43053,6 +43218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -43148,6 +43314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -43243,6 +43410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -43338,6 +43506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -43433,6 +43602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -43528,6 +43698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -43623,6 +43794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -43718,6 +43890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -43813,6 +43986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -43908,6 +44082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -44003,6 +44178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -44098,6 +44274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -44193,6 +44370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -44288,6 +44466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -44383,6 +44562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -44478,6 +44658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -44573,6 +44754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -44668,6 +44850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -44763,6 +44946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -44858,6 +45042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -44953,6 +45138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -45048,6 +45234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -45143,6 +45330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -45238,6 +45426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -45333,6 +45522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -45428,6 +45618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -45523,6 +45714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -45618,6 +45810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -45713,6 +45906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -45808,6 +46002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -45903,6 +46098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -45998,6 +46194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -46093,6 +46290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -46188,6 +46386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -46283,6 +46482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -46378,6 +46578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -46473,6 +46674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -46568,6 +46770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -46663,6 +46866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -46758,6 +46962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -46853,6 +47058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -46948,6 +47154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -47043,6 +47250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -47138,6 +47346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -47233,6 +47442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -47328,6 +47538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -47423,6 +47634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -47518,6 +47730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -47613,6 +47826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -47708,6 +47922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -47803,6 +48018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -47898,6 +48114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -47993,6 +48210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -48088,6 +48306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -48183,6 +48402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -48278,6 +48498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -48373,6 +48594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -48468,6 +48690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -48563,6 +48786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -48658,6 +48882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -48753,6 +48978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -48848,6 +49074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -48943,6 +49170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -49038,6 +49266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -49133,6 +49362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -49228,6 +49458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -49323,6 +49554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -49418,6 +49650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -49513,6 +49746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -49608,6 +49842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -49703,6 +49938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -49798,6 +50034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -49893,6 +50130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -49988,6 +50226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -50083,6 +50322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -50178,6 +50418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -50273,6 +50514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -50368,6 +50610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -50463,6 +50706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -50558,6 +50802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -50653,6 +50898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -50748,6 +50994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -50843,6 +51090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -50938,6 +51186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -51033,6 +51282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -51128,6 +51378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -51223,6 +51474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -51318,6 +51570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -51413,6 +51666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -51508,6 +51762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -51603,6 +51858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -51698,6 +51954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -51793,6 +52050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -51888,6 +52146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -51983,6 +52242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -52078,6 +52338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -52173,6 +52434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -52268,6 +52530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -52363,6 +52626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -52458,6 +52722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -52553,6 +52818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -52648,6 +52914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -52743,6 +53010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -52838,6 +53106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -52933,6 +53202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -53028,6 +53298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -53123,6 +53394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -53218,6 +53490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -53313,6 +53586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -53408,6 +53682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -53503,6 +53778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -53598,6 +53874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -53693,6 +53970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -53788,6 +54066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -53883,6 +54162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -53978,6 +54258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -54073,6 +54354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -54168,6 +54450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -54263,6 +54546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -54358,6 +54642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -54453,6 +54738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -54548,6 +54834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -54643,6 +54930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -54738,6 +55026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -54833,6 +55122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -54928,6 +55218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -55023,6 +55314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -55118,6 +55410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -55213,6 +55506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -55308,6 +55602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -55403,6 +55698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -55498,6 +55794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -55593,6 +55890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -55688,6 +55986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -55783,6 +56082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -55878,6 +56178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -55973,6 +56274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -56068,6 +56370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -56163,6 +56466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -56258,6 +56562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -56353,6 +56658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -56448,6 +56754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -56543,6 +56850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -56638,6 +56946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -56733,6 +57042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -56828,6 +57138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -56923,6 +57234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -57018,6 +57330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -57113,6 +57426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -57208,6 +57522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -57303,6 +57618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -57398,6 +57714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -57493,6 +57810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -57588,6 +57906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -57683,6 +58002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -57778,6 +58098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -57873,6 +58194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -57968,6 +58290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -58063,6 +58386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -58158,6 +58482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -58253,6 +58578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -58348,6 +58674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -58443,6 +58770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -58538,6 +58866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -58633,6 +58962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -58728,6 +59058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -58823,6 +59154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -58918,6 +59250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -59013,6 +59346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -59108,6 +59442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -59203,6 +59538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -59298,6 +59634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -59393,6 +59730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -59488,6 +59826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -59583,6 +59922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -59678,6 +60018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -59773,6 +60114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -59868,6 +60210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -59963,6 +60306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -60058,6 +60402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -60153,6 +60498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -60248,6 +60594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -60343,6 +60690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -60438,6 +60786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -60533,6 +60882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -60628,6 +60978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -60723,6 +61074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -60818,6 +61170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -60913,6 +61266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -61008,6 +61362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -61103,6 +61458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -61198,6 +61554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -61293,6 +61650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -61388,6 +61746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -61483,6 +61842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -61578,6 +61938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -61673,6 +62034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -61768,6 +62130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -61863,6 +62226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -61958,6 +62322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -62053,6 +62418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -62148,6 +62514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -62243,6 +62610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -62338,6 +62706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -62433,6 +62802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -62528,6 +62898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -62623,6 +62994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -62718,6 +63090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -62813,6 +63186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -62908,6 +63282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -63003,6 +63378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -63098,6 +63474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -63193,6 +63570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -63288,6 +63666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -63383,6 +63762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -63478,6 +63858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -63573,6 +63954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -63668,6 +64050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -63763,6 +64146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -63858,6 +64242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -63953,6 +64338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -64048,6 +64434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -64143,6 +64530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -64238,6 +64626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -64333,6 +64722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -64428,6 +64818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -64523,6 +64914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -64618,6 +65010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -64713,6 +65106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -64808,6 +65202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -64903,6 +65298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -64998,6 +65394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -65093,6 +65490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -65188,6 +65586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -65283,6 +65682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -65378,6 +65778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -65473,6 +65874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -65568,6 +65970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -65663,6 +66066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -65758,6 +66162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -65853,6 +66258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -65948,6 +66354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -66043,6 +66450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -66138,6 +66546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -66233,6 +66642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -66328,6 +66738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -66423,6 +66834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -66518,6 +66930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -66613,6 +67026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -66708,6 +67122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -66803,6 +67218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -66898,6 +67314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -66993,6 +67410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -67088,6 +67506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -67183,6 +67602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -67278,6 +67698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -67373,6 +67794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -67468,6 +67890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -67563,6 +67986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -67658,6 +68082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -67753,6 +68178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -67848,6 +68274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -67943,6 +68370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -68038,6 +68466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -68133,6 +68562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -68228,6 +68658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -68323,6 +68754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -68418,6 +68850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -68513,6 +68946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -68608,6 +69042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -68703,6 +69138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -68798,6 +69234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -68893,6 +69330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -68988,6 +69426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -69083,6 +69522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -69178,6 +69618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -69273,6 +69714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -69368,6 +69810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -69463,6 +69906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -69558,6 +70002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -69653,6 +70098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -69748,6 +70194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -69843,6 +70290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -69938,6 +70386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -70033,6 +70482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -70128,6 +70578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -70223,6 +70674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -70318,6 +70770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -70413,6 +70866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -70508,6 +70962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -70603,6 +71058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -70698,6 +71154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -70793,6 +71250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -70888,6 +71346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -70983,6 +71442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -71078,6 +71538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -71173,6 +71634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -71268,6 +71730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -71363,6 +71826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -71458,6 +71922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -71553,6 +72018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -71648,6 +72114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -71743,6 +72210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -71838,6 +72306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -71933,6 +72402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -72028,6 +72498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -72123,6 +72594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -72218,6 +72690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -72313,6 +72786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -72408,6 +72882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -72503,6 +72978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -72598,6 +73074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -72693,6 +73170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -72788,6 +73266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -72883,6 +73362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -72978,6 +73458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -73073,6 +73554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -73168,6 +73650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -73263,6 +73746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -73358,6 +73842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -73453,6 +73938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -73548,6 +74034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -73643,6 +74130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -73738,6 +74226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -73833,6 +74322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -73928,6 +74418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -74023,6 +74514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -74118,6 +74610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -74213,6 +74706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -74308,6 +74802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -74403,6 +74898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -74498,6 +74994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -74593,6 +75090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -74688,6 +75186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -74783,6 +75282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -74878,6 +75378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -74973,6 +75474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -75068,6 +75570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -75163,6 +75666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -75258,6 +75762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -75353,6 +75858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -75448,6 +75954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -75543,6 +76050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -75638,6 +76146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -75733,6 +76242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -75828,6 +76338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -75923,6 +76434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -76018,6 +76530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -76113,6 +76626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -76208,6 +76722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -76303,6 +76818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -76398,6 +76914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -76493,6 +77010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -76588,6 +77106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -76683,6 +77202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -76778,6 +77298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -76873,6 +77394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -76968,6 +77490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -77063,6 +77586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -77158,6 +77682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -77253,6 +77778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -77348,6 +77874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -77443,6 +77970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -77538,6 +78066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -77633,6 +78162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -77728,6 +78258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -77823,6 +78354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -77918,6 +78450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -78013,6 +78546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -78108,6 +78642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -78203,6 +78738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -78298,6 +78834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -78393,6 +78930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -78488,6 +79026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -78583,6 +79122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -78678,6 +79218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -78773,6 +79314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -78868,6 +79410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -78963,6 +79506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -79058,6 +79602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -79153,6 +79698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -79248,6 +79794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -79343,6 +79890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -79438,6 +79986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -79533,6 +80082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -79628,6 +80178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -79723,6 +80274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -79818,6 +80370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -79913,6 +80466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -80008,6 +80562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -80103,6 +80658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -80198,6 +80754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -80293,6 +80850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -80388,6 +80946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -80483,6 +81042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -80578,6 +81138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -80673,6 +81234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -80768,6 +81330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -80863,6 +81426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -80958,6 +81522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -81053,6 +81618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -81148,6 +81714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -81243,6 +81810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -81338,6 +81906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -81433,6 +82002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -81528,6 +82098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -81623,6 +82194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -81718,6 +82290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -81813,6 +82386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -81908,6 +82482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -82003,6 +82578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -82098,6 +82674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -82193,6 +82770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -82288,6 +82866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -82383,6 +82962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -82478,6 +83058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -82573,6 +83154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -82668,6 +83250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -82763,6 +83346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -82858,6 +83442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -82953,6 +83538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -83048,6 +83634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -83143,6 +83730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -83238,6 +83826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -83333,6 +83922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -83428,6 +84018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -83523,6 +84114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -83618,6 +84210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -83713,6 +84306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -83808,6 +84402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -83903,6 +84498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -83998,6 +84594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -84093,6 +84690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -84188,6 +84786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -84283,6 +84882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -84378,6 +84978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -84473,6 +85074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -84568,6 +85170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -84663,6 +85266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -84758,6 +85362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -84853,6 +85458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -84948,6 +85554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -85043,6 +85650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -85138,6 +85746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -85233,6 +85842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -85328,6 +85938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -85423,6 +86034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -85518,6 +86130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -85613,6 +86226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -85708,6 +86322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -85803,6 +86418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -85898,6 +86514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -85993,6 +86610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -86088,6 +86706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -86183,6 +86802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -86278,6 +86898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -86373,6 +86994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -86468,6 +87090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -86563,6 +87186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -86658,6 +87282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -86753,6 +87378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -86848,6 +87474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -86943,6 +87570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -87038,6 +87666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -87133,6 +87762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -87228,6 +87858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -87323,6 +87954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -87418,6 +88050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -87513,6 +88146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -87608,6 +88242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -87703,6 +88338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -87798,6 +88434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -87893,6 +88530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -87988,6 +88626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -88083,6 +88722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -88178,6 +88818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -88273,6 +88914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -88368,6 +89010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -88463,6 +89106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -88558,6 +89202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -88653,6 +89298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -88748,6 +89394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -88843,6 +89490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -88938,6 +89586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -89033,6 +89682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -89128,6 +89778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -89223,6 +89874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -89318,6 +89970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -89413,6 +90066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -89508,6 +90162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -89603,6 +90258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -89698,6 +90354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -89793,6 +90450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -89888,6 +90546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -89983,6 +90642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -90078,6 +90738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -90173,6 +90834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -90268,6 +90930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -90363,6 +91026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -90458,6 +91122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -90553,6 +91218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -90648,6 +91314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -90743,6 +91410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -90838,6 +91506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -90933,6 +91602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -91028,6 +91698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -91123,6 +91794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -91218,6 +91890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -91313,6 +91986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -91408,6 +92082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -91503,6 +92178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -91598,6 +92274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -91693,6 +92370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -91788,6 +92466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -91883,6 +92562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -91978,6 +92658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -92073,6 +92754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -92168,6 +92850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -92263,6 +92946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -92358,6 +93042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -92453,6 +93138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -92548,6 +93234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -92643,6 +93330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -92738,6 +93426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -92833,6 +93522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -92928,6 +93618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -93023,6 +93714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -93118,6 +93810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -93213,6 +93906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -93308,6 +94002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -93403,6 +94098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -93498,6 +94194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -93593,6 +94290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -93688,6 +94386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -93783,6 +94482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -93878,6 +94578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -93973,6 +94674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -94068,6 +94770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -94163,6 +94866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -94258,6 +94962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -94353,6 +95058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -94448,6 +95154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -94543,6 +95250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -94638,6 +95346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -94733,6 +95442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -94828,6 +95538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -94923,6 +95634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -95018,6 +95730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -95113,6 +95826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -95208,6 +95922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -95303,6 +96018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -95398,6 +96114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -95493,6 +96210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -95588,6 +96306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -95683,6 +96402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -95778,6 +96498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -95873,6 +96594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -95968,6 +96690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -96063,6 +96786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -96158,6 +96882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -96253,6 +96978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -96348,6 +97074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -96443,6 +97170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -96538,6 +97266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -96633,6 +97362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -96728,6 +97458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -96823,6 +97554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -96918,6 +97650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -97013,6 +97746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -97108,6 +97842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -97203,6 +97938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -97298,6 +98034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -97393,6 +98130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -97488,6 +98226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -97583,6 +98322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -97678,6 +98418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -97761,9 +98502,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -97773,6 +98514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -97856,9 +98598,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -97868,6 +98610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -97951,9 +98694,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -97963,6 +98706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -98058,6 +98802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -98141,9 +98886,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -98153,6 +98898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -98236,9 +98982,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -98248,6 +98994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -98331,9 +99078,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -98343,6 +99090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -98438,6 +99186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -98521,9 +99270,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -98533,6 +99282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -98616,9 +99366,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -98628,6 +99378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -98711,9 +99462,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -98723,6 +99474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -98818,6 +99570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -98901,9 +99654,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -98913,6 +99666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -98996,9 +99750,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -99008,6 +99762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -99091,9 +99846,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -99103,6 +99858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -99198,6 +99954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -99281,9 +100038,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -99293,6 +100050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -99376,9 +100134,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -99388,6 +100146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -99471,9 +100230,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -99483,6 +100242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -99578,6 +100338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -99661,9 +100422,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRDEXBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -99673,6 +100434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -99756,9 +100518,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRDEXBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -99768,6 +100530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -99851,9 +100614,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRDEXBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -99863,6 +100626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -99958,6 +100722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -100041,9 +100806,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRINTBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -100053,6 +100818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -100136,9 +100902,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRINTBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -100148,6 +100914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -100231,9 +100998,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRINTBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -100243,6 +101010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -100338,6 +101106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -100421,9 +101190,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRCONBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -100433,6 +101202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -100516,9 +101286,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRCONBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -100528,6 +101298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -100611,9 +101382,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRCONBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -100623,6 +101394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -100718,6 +101490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -100801,9 +101574,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRFOCBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -100813,6 +101586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -100896,9 +101670,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRFOCBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -100908,6 +101682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -100991,9 +101766,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@STRFOCBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -101003,6 +101778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -101098,6 +101874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -101181,9 +101958,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXSTRBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -101193,6 +101970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -101276,9 +102054,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXSTRBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -101288,6 +102066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -101371,9 +102150,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXSTRBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -101383,6 +102162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -101478,6 +102258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -101561,9 +102342,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXINTBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -101573,6 +102354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -101656,9 +102438,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXINTBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -101668,6 +102450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -101751,9 +102534,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXINTBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -101763,6 +102546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -101858,6 +102642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -101941,9 +102726,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXCONBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -101953,6 +102738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -102036,9 +102822,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXCONBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -102048,6 +102834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -102131,9 +102918,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXCONBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -102143,6 +102930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -102238,6 +103026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -102321,9 +103110,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXFOCBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -102333,6 +103122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -102416,9 +103206,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXFOCBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -102428,6 +103218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -102511,6 +103302,102 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@DEXFOCBonusT4_Description",
"ItemClass": "Resource+PerkResource",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
+ "BindOnPickup": null,
+ "BindOnEquip": null,
+ "GearScoreOverride": null,
+ "MinGearScore": null,
+ "MaxGearScore": null,
+ "Tier": null,
+ "ItemStatsRef": "",
+ "GrantsHWMBump": "",
+ "IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
+ "CanHavePerks": null,
+ "CanReplaceGem": null,
+ "Perk1": "",
+ "Perk2": "",
+ "Perk3": "",
+ "Perk4": "",
+ "Perk5": "",
+ "PerkBucket1": "",
+ "PerkBucket2": "",
+ "PerkBucket3": "",
+ "PerkBucket4": "",
+ "PerkBucket5": "",
+ "ForceRarity": 1,
+ "RequiredLevel": null,
+ "UseTypeAffix": false,
+ "UseMaterialAffix": false,
+ "UseMagicAffix": false,
+ "IconCaptureGroup": "",
+ "UiItemClass": "UI_CraftingModifiers",
+ "RDyeSlotDisabled": null,
+ "GDyeSlotDisabled": null,
+ "BDyeSlotDisabled": null,
+ "ADyeSlotDisabled": null,
+ "ArmorAppearanceM": "",
+ "ArmorAppearanceF": "",
+ "WeaponAppearanceOverride": "",
+ "ConfirmDestroy": "",
+ "ConfirmBeforeUse": null,
+ "ConsumeOnUse": false,
+ "PrefabPath": "",
+ "HousingTags": "",
+ "IconPath": "lyshineui/images/icons/items/Resource/DEXFOCBonusT4.png",
+ "HiResIconPath": "lyshineui/images/icons/items_hires/DEXFOCBonusT4.png",
+ "MaxStackSize": 10000,
+ "DeathDropPercentage": 0,
+ "Nonremovable": null,
+ "IsMissionItem": null,
+ "IsUniqueItem": "",
+ "ContainerLevel": null,
+ "ContainerGS": null,
+ "ExceedMinIndex": "",
+ "ExceedMaxIndex": "",
+ "IsSalvageable": false,
+ "SalvageResources": null,
+ "IsRepairable": false,
+ "RepairDustModifier": null,
+ "RepairRecipe": "",
+ "CraftingRecipe": "",
+ "RepairGameEventID": "",
+ "SalvageGameEventID": "",
+ "SalvageAchievement": "",
+ "RepairTypes": "",
+ "IngredientCategories": "PerkItem",
+ "IngredientBonusPrimary": null,
+ "IngredientBonusSecondary": null,
+ "IngredientGearScoreBaseBonus": null,
+ "IngredientGearScoreMaxBonus": null,
+ "ExtraBonusItemChance": "",
+ "Durability": null,
+ "DurabilityDmgOnDeath": null,
+ "DestroyOnBreak": false,
+ "Weight": 1,
+ "AcquisitionNotificationId": null,
+ "AudioPickup": "Play_UI_Pickup_Generic",
+ "AudioPlace": "Play_UI_Drop_Generic",
+ "AudioUse": "Play_UI_Use_Generic",
+ "AudioCreated": "Play_UI_Created_Generic",
+ "AudioDestroyed": "",
+ "MannequinTag": "",
+ "SoundTableID": "",
+ "WarboardGatherStat": "",
+ "WarboardDepositStat": "",
+ "Notes": "",
+ "HideInLootTicker": "",
+ "HideFromRewardOpenPopup": null
+ },
+ {
+ "ItemID": "INTSTRBonusT1",
+ "Name": "@INTSTRBonusT1_MasterName",
+ "ItemType": "Resource",
+ "ItemTypeDisplayName": "@ui_itemtypedescription_resource",
+ "Description": "@INTSTRBonusT1_Description",
+ "ItemClass": "Resource+PerkResource",
"TradingCategory": "Resources",
"TradingFamily": "SpecialResources",
"TradingGroup": "AttributeItem",
@@ -102523,101 +103410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
- "CanHavePerks": null,
- "CanReplaceGem": null,
- "Perk1": "",
- "Perk2": "",
- "Perk3": "",
- "Perk4": "",
- "Perk5": "",
- "PerkBucket1": "",
- "PerkBucket2": "",
- "PerkBucket3": "",
- "PerkBucket4": "",
- "PerkBucket5": "",
- "ForceRarity": 1,
- "RequiredLevel": null,
- "UseTypeAffix": false,
- "UseMaterialAffix": false,
- "UseMagicAffix": false,
- "IconCaptureGroup": "",
- "UiItemClass": "UI_CraftingModifiers",
- "RDyeSlotDisabled": null,
- "GDyeSlotDisabled": null,
- "BDyeSlotDisabled": null,
- "ADyeSlotDisabled": null,
- "ArmorAppearanceM": "",
- "ArmorAppearanceF": "",
- "WeaponAppearanceOverride": "",
- "ConfirmDestroy": "",
- "ConfirmBeforeUse": null,
- "ConsumeOnUse": false,
- "PrefabPath": "",
- "HousingTags": "",
- "IconPath": "lyshineui/images/icons/items/Resource/DEXFOCBonusT4.png",
- "HiResIconPath": "lyshineui/images/icons/items_hires/DEXFOCBonusT4.png",
- "MaxStackSize": 10000,
- "DeathDropPercentage": 0,
- "Nonremovable": null,
- "IsMissionItem": null,
- "IsUniqueItem": "",
- "ContainerLevel": null,
- "ContainerGS": null,
- "ExceedMinIndex": "",
- "ExceedMaxIndex": "",
- "IsSalvageable": false,
- "SalvageResources": null,
- "IsRepairable": false,
- "RepairDustModifier": null,
- "RepairRecipe": "",
- "CraftingRecipe": "",
- "RepairGameEventID": "",
- "SalvageGameEventID": "",
- "SalvageAchievement": "",
- "RepairTypes": "",
- "IngredientCategories": "PerkItem",
- "IngredientBonusPrimary": null,
- "IngredientBonusSecondary": null,
- "IngredientGearScoreBaseBonus": null,
- "IngredientGearScoreMaxBonus": null,
- "ExtraBonusItemChance": "",
- "Durability": null,
- "DurabilityDmgOnDeath": null,
- "DestroyOnBreak": false,
- "Weight": 1,
- "AcquisitionNotificationId": null,
- "AudioPickup": "Play_UI_Pickup_Generic",
- "AudioPlace": "Play_UI_Drop_Generic",
- "AudioUse": "Play_UI_Use_Generic",
- "AudioCreated": "Play_UI_Created_Generic",
- "AudioDestroyed": "",
- "MannequinTag": "",
- "SoundTableID": "",
- "WarboardGatherStat": "",
- "WarboardDepositStat": "",
- "Notes": "",
- "HideInLootTicker": "",
- "HideFromRewardOpenPopup": null
- },
- {
- "ItemID": "INTSTRBonusT1",
- "Name": "@INTSTRBonusT1_MasterName",
- "ItemType": "Resource",
- "ItemTypeDisplayName": "@ui_itemtypedescription_resource",
- "Description": "@INTSTRBonusT1_Description",
- "ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
- "BindOnPickup": null,
- "BindOnEquip": null,
- "GearScoreOverride": null,
- "MinGearScore": null,
- "MaxGearScore": null,
- "Tier": null,
- "ItemStatsRef": "",
- "GrantsHWMBump": "",
- "IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -102701,9 +103494,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTSTRBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -102713,6 +103506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -102796,9 +103590,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTSTRBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -102808,6 +103602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -102891,9 +103686,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTSTRBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -102903,6 +103698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -102998,6 +103794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -103081,9 +103878,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTDEXBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -103093,6 +103890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -103176,9 +103974,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTDEXBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -103188,6 +103986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -103271,9 +104070,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTDEXBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -103283,6 +104082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -103378,6 +104178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -103461,9 +104262,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTCONBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -103473,6 +104274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -103556,9 +104358,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTCONBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -103568,6 +104370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -103651,9 +104454,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTCONBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -103663,6 +104466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -103758,6 +104562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -103841,9 +104646,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTFOCBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -103853,6 +104658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -103936,9 +104742,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTFOCBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -103948,6 +104754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -104031,9 +104838,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@INTFOCBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -104043,6 +104850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -104138,6 +104946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -104221,9 +105030,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONSTRBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -104233,6 +105042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -104316,9 +105126,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONSTRBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -104328,6 +105138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -104411,9 +105222,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONSTRBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -104423,6 +105234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -104518,6 +105330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -104601,9 +105414,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONDEXBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -104613,6 +105426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -104696,9 +105510,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONDEXBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -104708,6 +105522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -104791,9 +105606,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONDEXBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -104803,6 +105618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -104898,6 +105714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -104981,9 +105798,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONINTBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -104993,6 +105810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -105076,9 +105894,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONINTBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -105088,6 +105906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -105171,9 +105990,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONINTBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -105183,6 +106002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -105278,6 +106098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -105361,9 +106182,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONFOCBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -105373,6 +106194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -105456,9 +106278,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONFOCBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -105468,6 +106290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -105551,9 +106374,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CONFOCBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -105563,6 +106386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -105658,6 +106482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -105741,9 +106566,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCSTRBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -105753,6 +106578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -105836,9 +106662,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCSTRBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -105848,6 +106674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -105931,9 +106758,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCSTRBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -105943,6 +106770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -106038,6 +106866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -106121,9 +106950,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCDEXBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -106133,6 +106962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -106216,9 +107046,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCDEXBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -106228,6 +107058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -106311,9 +107142,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCDEXBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -106323,6 +107154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -106418,6 +107250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -106501,9 +107334,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCINTBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -106513,6 +107346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -106596,9 +107430,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCINTBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -106608,6 +107442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -106691,9 +107526,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCINTBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -106703,6 +107538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -106798,6 +107634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -106881,9 +107718,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCCONBonusT2_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -106893,6 +107730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -106976,9 +107814,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCCONBonusT3_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -106988,6 +107826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -107071,9 +107910,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@FOCCONBonusT4_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "AttributeItem",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -107083,6 +107922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -107178,6 +108018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -107273,6 +108114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -107368,6 +108210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -107451,9 +108294,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@JadeTalismanT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "Resources",
- "TradingGroup": "Components",
+ "TradingCategory": "Resources",
+ "TradingFamily": "Components",
+ "TradingGroup": "CraftingComponents",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -107463,6 +108306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -107558,6 +108402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -107653,6 +108498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -107748,6 +108594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -107843,6 +108690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -107938,6 +108786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -108033,6 +108882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -108128,6 +108978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -108223,6 +109074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -108318,6 +109170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -108413,6 +109266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -108508,6 +109362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -108603,6 +109458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -108698,6 +109554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -108793,6 +109650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -108888,6 +109746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -108983,6 +109842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -109078,6 +109938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -109161,9 +110022,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@MutagentAncientT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "",
- "TradingGroup": "",
+ "TradingCategory": "Resources",
+ "TradingFamily": "Components",
+ "TradingGroup": "CraftingComponents",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -109173,6 +110034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -109268,6 +110130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -109351,9 +110214,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@MutagenLostT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "Resources",
- "TradingGroup": "Components",
+ "TradingCategory": "Resources",
+ "TradingFamily": "Components",
+ "TradingGroup": "CraftingComponents",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -109363,6 +110226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -109458,6 +110322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -109553,6 +110418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -109648,6 +110514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -109731,9 +110598,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CollarJadeT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "Resources",
- "TradingGroup": "Components",
+ "TradingCategory": "Resources",
+ "TradingFamily": "Components",
+ "TradingGroup": "CraftingComponents",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -109743,6 +110610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -109838,6 +110706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -109933,6 +110802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -110028,6 +110898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -110123,6 +110994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -110218,6 +111090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -110313,6 +111186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -110408,6 +111282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -110503,6 +111378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -110598,6 +111474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -110693,6 +111570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -110788,6 +111666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -110883,6 +111762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -110978,6 +111858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -111061,9 +111942,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@SpectralDustT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "Resources",
- "TradingGroup": "Components",
+ "TradingCategory": "Resources",
+ "TradingFamily": "Components",
+ "TradingGroup": "CraftingComponents",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -111073,6 +111954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -111156,9 +112038,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CoagulatedBloodT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "Resources",
- "TradingGroup": "Components",
+ "TradingCategory": "Resources",
+ "TradingFamily": "Components",
+ "TradingGroup": "CraftingComponents",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -111168,6 +112050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -111251,9 +112134,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CorruptedTalismanT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "",
- "TradingGroup": "",
+ "TradingCategory": "Resources",
+ "TradingFamily": "Components",
+ "TradingGroup": "CraftingComponents",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -111263,6 +112146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -111346,9 +112230,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@CorruptedTreatiseT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "",
- "TradingGroup": "",
+ "TradingCategory": "Resources",
+ "TradingFamily": "Components",
+ "TradingGroup": "CraftingComponents",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -111358,6 +112242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -111441,9 +112326,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@SparklingBoneDustT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "",
- "TradingGroup": "",
+ "TradingCategory": "Resources",
+ "TradingFamily": "Components",
+ "TradingGroup": "CraftingComponents",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -111453,6 +112338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -111536,9 +112422,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@MetallicBoneweaveT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "Resources",
- "TradingGroup": "Components",
+ "TradingCategory": "Resources",
+ "TradingFamily": "Components",
+ "TradingGroup": "CraftingComponents",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -111548,6 +112434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -111631,9 +112518,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@PutridBarkT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "Resources",
- "TradingGroup": "Components",
+ "TradingCategory": "Resources",
+ "TradingFamily": "Components",
+ "TradingGroup": "CraftingComponents",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -111643,6 +112530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -111726,9 +112614,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@StickyVinesT1_Description",
"ItemClass": "Resource",
- "TradingCategory": "",
- "TradingFamily": "Resources",
- "TradingGroup": "Components",
+ "TradingCategory": "Resources",
+ "TradingFamily": "Components",
+ "TradingGroup": "CraftingComponents",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -111738,6 +112626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -111833,6 +112722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -111928,6 +112818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -112023,6 +112914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -112118,6 +113010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -112213,6 +113106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -112308,6 +113202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -112403,6 +113298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -112498,6 +113394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -112593,6 +113490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -112688,6 +113586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -112783,6 +113682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -112878,6 +113778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -112973,6 +113874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -113068,6 +113970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -113163,6 +114066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -113258,6 +114162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -113353,6 +114258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -113448,6 +114354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -113543,6 +114450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -113638,6 +114546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -113733,6 +114642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -113828,6 +114738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -113923,6 +114834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -114018,6 +114930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -114113,6 +115026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -114208,6 +115122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -114303,6 +115218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -114398,6 +115314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -114493,6 +115410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -114588,6 +115506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -114683,6 +115602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -114778,6 +115698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -114873,6 +115794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -114968,6 +115890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -115063,6 +115986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -115158,6 +116082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -115253,6 +116178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -115348,6 +116274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -115443,6 +116370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -115538,6 +116466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -115633,6 +116562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -115728,6 +116658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -115823,6 +116754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -115918,6 +116850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -116013,6 +116946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -116108,6 +117042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -116203,6 +117138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -116298,6 +117234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -116393,6 +117330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -116488,6 +117426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -116583,6 +117522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -116678,6 +117618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -116773,6 +117714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -116868,6 +117810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -116963,6 +117906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -117058,6 +118002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -117153,6 +118098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -117248,6 +118194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -117343,6 +118290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -117438,6 +118386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -117533,6 +118482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -117628,6 +118578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -117723,6 +118674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -117818,6 +118770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -117913,6 +118866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -118008,6 +118962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -118103,6 +119058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -118198,6 +119154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -118293,6 +119250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -118388,6 +119346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -118483,6 +119442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -118578,6 +119538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -118673,6 +119634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -118768,6 +119730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -118863,6 +119826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -118958,6 +119922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -119053,6 +120018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -119148,6 +120114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -119243,6 +120210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -119338,6 +120306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -119433,6 +120402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -119528,6 +120498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -119623,6 +120594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -119718,6 +120690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -119813,6 +120786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -119908,6 +120882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -120003,6 +120978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -120098,6 +121074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -120193,6 +121170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -120288,6 +121266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -120383,6 +121362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -120478,6 +121458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -120573,6 +121554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -120668,6 +121650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -120763,6 +121746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -120858,6 +121842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -120953,6 +121938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -121048,6 +122034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -121143,6 +122130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -121238,6 +122226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -121333,6 +122322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -121428,6 +122418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -121523,6 +122514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -121618,6 +122610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -121713,6 +122706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -121808,6 +122802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -121903,6 +122898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -121998,6 +122994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -122093,6 +123090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -122188,6 +123186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -122283,6 +123282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -122378,6 +123378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -122473,6 +123474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -122568,6 +123570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -122663,6 +123666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -122758,6 +123762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -122853,6 +123858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -122948,6 +123954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -123043,6 +124050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -123138,6 +124146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -123233,6 +124242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -123328,6 +124338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -123423,6 +124434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -123518,6 +124530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -123613,6 +124626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -123708,6 +124722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -123803,6 +124818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -123898,6 +124914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -123993,6 +125010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -124088,6 +125106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -124183,6 +125202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -124278,6 +125298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -124373,6 +125394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -124468,6 +125490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -124563,6 +125586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -124658,6 +125682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -124753,6 +125778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -124848,6 +125874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -124943,6 +125970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -125038,6 +126066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -125133,6 +126162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -125228,6 +126258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -125323,6 +126354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -125418,6 +126450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -125513,6 +126546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -125608,6 +126642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -125703,6 +126738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -125798,6 +126834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -125893,6 +126930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -125988,6 +127026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -126083,6 +127122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -126178,6 +127218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -126273,6 +127314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -126368,6 +127410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -126463,6 +127506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -126558,6 +127602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -126653,6 +127698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -126748,6 +127794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -126843,6 +127890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -126938,6 +127986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -127033,6 +128082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -127128,6 +128178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -127223,6 +128274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -127318,6 +128370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -127413,6 +128466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -127508,6 +128562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -127603,6 +128658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -127698,6 +128754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -127793,6 +128850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -127888,6 +128946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -127983,6 +129042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -128078,6 +129138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -128173,6 +129234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -128268,6 +129330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -128363,6 +129426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -128458,6 +129522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -128553,6 +129618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -128648,6 +129714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -128743,6 +129810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -128838,6 +129906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -128933,6 +130002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -129028,6 +130098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -129123,6 +130194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -129218,6 +130290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -129313,6 +130386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -129408,6 +130482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -129503,6 +130578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -129598,6 +130674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -129693,6 +130770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -129788,6 +130866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -129883,6 +130962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -129978,6 +131058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -130073,6 +131154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -130168,6 +131250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -130263,6 +131346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -130358,6 +131442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -130453,6 +131538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -130548,6 +131634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -130643,6 +131730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -130738,6 +131826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -130833,6 +131922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -130928,6 +132018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -131023,6 +132114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -131118,6 +132210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -131213,6 +132306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -131308,6 +132402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -131403,6 +132498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -131498,6 +132594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -131593,6 +132690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -131688,6 +132786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -131783,6 +132882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -131878,6 +132978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -131973,6 +133074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -132068,6 +133170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -132163,6 +133266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -132258,6 +133362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -132353,6 +133458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -132448,6 +133554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -132543,6 +133650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -132638,6 +133746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -132733,6 +133842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -132828,6 +133938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -132923,6 +134034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -133018,6 +134130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -133113,6 +134226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -133208,6 +134322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -133303,6 +134418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -133398,6 +134514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -133493,6 +134610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -133588,6 +134706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -133683,6 +134802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -133778,6 +134898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -133873,6 +134994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -133968,6 +135090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -134063,6 +135186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -134158,6 +135282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -134253,6 +135378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -134348,6 +135474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -134443,6 +135570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -134538,6 +135666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -134633,6 +135762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -134728,6 +135858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -134823,6 +135954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -134918,6 +136050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -135013,6 +136146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -135108,6 +136242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -135203,6 +136338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -135298,6 +136434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -135393,6 +136530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -135488,6 +136626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -135583,6 +136722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -135678,6 +136818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -135773,6 +136914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -135868,6 +137010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -135963,6 +137106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -136058,6 +137202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -136153,6 +137298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -136248,6 +137394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -136343,6 +137490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -136438,6 +137586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -136533,6 +137682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -136628,6 +137778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -136723,6 +137874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -136818,6 +137970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -136913,6 +138066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -137008,6 +138162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -137103,6 +138258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -137198,6 +138354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -137293,6 +138450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -137388,6 +138546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -137483,6 +138642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -137578,6 +138738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -137673,6 +138834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -137768,6 +138930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -137863,6 +139026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -137958,6 +139122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -138053,6 +139218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -138148,6 +139314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -138243,6 +139410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -138338,6 +139506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -138433,6 +139602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -138528,6 +139698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -138623,6 +139794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -138718,6 +139890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -138813,6 +139986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -138908,6 +140082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -139003,6 +140178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -139098,6 +140274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -139193,6 +140370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -139288,6 +140466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -139383,6 +140562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -139478,6 +140658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -139573,6 +140754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -139668,6 +140850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -139763,6 +140946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -139858,6 +141042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -139953,6 +141138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -140048,6 +141234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -140143,6 +141330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -140238,6 +141426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -140333,6 +141522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -140428,6 +141618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -140523,6 +141714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -140618,6 +141810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -140713,6 +141906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -140808,6 +142002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -140903,6 +142098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -140998,6 +142194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -141093,6 +142290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -141188,6 +142386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -141283,6 +142482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -141378,6 +142578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -141473,6 +142674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -141568,6 +142770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -141663,6 +142866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -141758,6 +142962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -141853,6 +143058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -141948,6 +143154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -142043,6 +143250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -142138,6 +143346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -142233,6 +143442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -142328,6 +143538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -142423,6 +143634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -142518,6 +143730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -142613,6 +143826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -142708,6 +143922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -142803,6 +144018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -142898,6 +144114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -142993,6 +144210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -143088,6 +144306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -143183,6 +144402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -143278,6 +144498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -143373,6 +144594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -143468,6 +144690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -143563,6 +144786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -143658,6 +144882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -143753,6 +144978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -143848,6 +145074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -143943,6 +145170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -144038,6 +145266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -144133,6 +145362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -144228,6 +145458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -144323,6 +145554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -144418,6 +145650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -144513,6 +145746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -144608,6 +145842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -144703,6 +145938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -144798,6 +146034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -144893,6 +146130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -144988,6 +146226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -145083,6 +146322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -145178,6 +146418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -145273,6 +146514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -145368,6 +146610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -145463,6 +146706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -145558,6 +146802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -145653,6 +146898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -145748,6 +146994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -145843,6 +147090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -145938,6 +147186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -146033,6 +147282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -146128,6 +147378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -146223,6 +147474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -146318,6 +147570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -146413,6 +147666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -146508,6 +147762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -146603,6 +147858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -146698,6 +147954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -146793,6 +148050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -146888,6 +148146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -146983,6 +148242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -147078,6 +148338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -147173,6 +148434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -147268,6 +148530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -147363,6 +148626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -147458,6 +148722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -147553,6 +148818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -147648,6 +148914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -147743,6 +149010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -147838,6 +149106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -147933,6 +149202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -148028,6 +149298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -148123,6 +149394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -148218,6 +149490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -148313,6 +149586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -148408,6 +149682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -148503,6 +149778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -148598,6 +149874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -148693,6 +149970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -148788,6 +150066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -148883,6 +150162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -148978,6 +150258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -149073,6 +150354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -149168,6 +150450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -149263,6 +150546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -149358,6 +150642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -149453,6 +150738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -149548,6 +150834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -149643,6 +150930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -149738,6 +151026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -149833,6 +151122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -149928,6 +151218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -150023,6 +151314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -150118,6 +151410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -150213,6 +151506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -150308,6 +151602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -150403,6 +151698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -150498,6 +151794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -150593,6 +151890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -150688,6 +151986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -150783,6 +152082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -150878,6 +152178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -150973,6 +152274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -151068,6 +152370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -151163,6 +152466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -151258,6 +152562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -151353,6 +152658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -151448,6 +152754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -151543,6 +152850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -151638,6 +152946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -151733,6 +153042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -151828,6 +153138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -151923,6 +153234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -152018,6 +153330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -152113,6 +153426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -152208,6 +153522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -152303,6 +153618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -152398,6 +153714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -152493,6 +153810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -152588,6 +153906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -152683,6 +154002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -152778,6 +154098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -152873,6 +154194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -152968,6 +154290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -153063,6 +154386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -153158,6 +154482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -153253,6 +154578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -153348,6 +154674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -153443,6 +154770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -153538,6 +154866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -153633,6 +154962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -153728,6 +155058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -153823,6 +155154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -153918,6 +155250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -154013,6 +155346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -154108,6 +155442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -154203,6 +155538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -154298,6 +155634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -154393,6 +155730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -154488,6 +155826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -154583,6 +155922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -154678,6 +156018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -154773,6 +156114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -154868,6 +156210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -154963,6 +156306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -155058,6 +156402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -155153,6 +156498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -155248,6 +156594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -155343,6 +156690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -155438,6 +156786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -155533,6 +156882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -155628,6 +156978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -155723,6 +157074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -155818,6 +157170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -155913,6 +157266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -156008,6 +157362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -156103,6 +157458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -156198,6 +157554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -156293,6 +157650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -156388,6 +157746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -156483,6 +157842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -156578,6 +157938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -156673,6 +158034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -156768,6 +158130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -156863,6 +158226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -156958,6 +158322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -157053,6 +158418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -157148,6 +158514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -157243,6 +158610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -157338,6 +158706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -157433,6 +158802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -157528,6 +158898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -157623,6 +158994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -157718,6 +159090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -157813,6 +159186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -157908,6 +159282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -158003,6 +159378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -158098,6 +159474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -158193,6 +159570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -158288,6 +159666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -158383,6 +159762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -158478,6 +159858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -158573,6 +159954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -158668,6 +160050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -158763,6 +160146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -158858,6 +160242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -158953,6 +160338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -159048,6 +160434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -159143,6 +160530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -159238,6 +160626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -159333,6 +160722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -159428,6 +160818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -159523,6 +160914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -159618,6 +161010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -159713,6 +161106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -159808,6 +161202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -159903,6 +161298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -159998,6 +161394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -160093,6 +161490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -160188,6 +161586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -160283,6 +161682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -160378,6 +161778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -160473,6 +161874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -160568,6 +161970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -160663,6 +162066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -160758,6 +162162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -160853,6 +162258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -160948,6 +162354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -161043,6 +162450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -161138,6 +162546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -161233,6 +162642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -161328,6 +162738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -161423,6 +162834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -161518,6 +162930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -161613,6 +163026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -161708,6 +163122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -161803,6 +163218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -161898,6 +163314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -161993,6 +163410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -162088,6 +163506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -162183,6 +163602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -162278,6 +163698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -162373,6 +163794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -162468,6 +163890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -162563,6 +163986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -162658,6 +164082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -162753,6 +164178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -162848,6 +164274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -162943,6 +164370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -163038,6 +164466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -163133,6 +164562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -163228,6 +164658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -163323,6 +164754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -163418,6 +164850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -163513,6 +164946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -163608,6 +165042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -163703,6 +165138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -163798,6 +165234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -163893,6 +165330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -163988,6 +165426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -164083,6 +165522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -164178,6 +165618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -164273,6 +165714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -164368,6 +165810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -164463,6 +165906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -164558,6 +166002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -164653,6 +166098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -164748,6 +166194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -164843,6 +166290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -164938,6 +166386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -165033,6 +166482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -165128,6 +166578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -165223,6 +166674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -165318,6 +166770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -165413,6 +166866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -165508,6 +166962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -165603,6 +167058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -165698,6 +167154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -165793,6 +167250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -165888,6 +167346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -165983,6 +167442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -166078,6 +167538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -166173,6 +167634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -166268,6 +167730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -166363,6 +167826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -166458,6 +167922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -166553,6 +168018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -166648,6 +168114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -166743,6 +168210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -166838,6 +168306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -166933,6 +168402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -167028,6 +168498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -167123,6 +168594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -167218,6 +168690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -167313,6 +168786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -167408,6 +168882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -167503,6 +168978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -167598,6 +169074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -167693,6 +169170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -167788,6 +169266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -167883,6 +169362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -167978,6 +169458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -168073,6 +169554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -168168,6 +169650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -168263,6 +169746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -168358,6 +169842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -168441,9 +169926,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_resource",
"Description": "@TravelersCharmT1_Description",
"ItemClass": "Resource+PerkResource",
- "TradingCategory": "Resources",
- "TradingFamily": "SpecialResources",
- "TradingGroup": "Utility",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": null,
@@ -168453,6 +169938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -168548,6 +170034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -168643,6 +170130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -168738,6 +170226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -168833,6 +170322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -168928,6 +170418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -169023,6 +170514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -169118,6 +170610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -169213,6 +170706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -169308,6 +170802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -169403,6 +170898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -169498,6 +170994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -169593,6 +171090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -169688,6 +171186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -169783,6 +171282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -169878,6 +171378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -169973,6 +171474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -170068,6 +171570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -170163,6 +171666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -170258,6 +171762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -170353,6 +171858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -170448,6 +171954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -170543,6 +172050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -170638,6 +172146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -170733,6 +172242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -170828,6 +172338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -170923,6 +172434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -171018,6 +172530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -171113,6 +172626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -171208,6 +172722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -171303,6 +172818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -171398,6 +172914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -171493,6 +173010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -171588,6 +173106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -171683,6 +173202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -171778,6 +173298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -171873,6 +173394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -171968,6 +173490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -172063,6 +173586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -172158,6 +173682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -172253,6 +173778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -172348,6 +173874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -172443,6 +173970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -172538,6 +174066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -172633,6 +174162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -172728,6 +174258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -172823,6 +174354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -172918,6 +174450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -173013,6 +174546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -173108,6 +174642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -173203,6 +174738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -173298,6 +174834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -173393,6 +174930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -173488,6 +175026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -173583,6 +175122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -173678,6 +175218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -173773,6 +175314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -173868,6 +175410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -173963,6 +175506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -174058,6 +175602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -174153,6 +175698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -174248,6 +175794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -174343,6 +175890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -174438,6 +175986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -174533,6 +176082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -174628,6 +176178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -174723,6 +176274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -174818,6 +176370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -174913,6 +176466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -175008,6 +176562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -175103,6 +176658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -175198,6 +176754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -175293,6 +176850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -175388,6 +176946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -175483,6 +177042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -175578,6 +177138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -175673,6 +177234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -175768,6 +177330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -175863,6 +177426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -175958,6 +177522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -176053,6 +177618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -176148,6 +177714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -176243,6 +177810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -176338,6 +177906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -176433,6 +178002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -176528,6 +178098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -176623,6 +178194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -176718,6 +178290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -176813,6 +178386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -176908,6 +178482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -177003,6 +178578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -177098,6 +178674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -177193,6 +178770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -177288,6 +178866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -177383,6 +178962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -177478,6 +179058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -177573,6 +179154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -177668,6 +179250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -177763,6 +179346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -177858,6 +179442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -177953,6 +179538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -178048,6 +179634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -178143,6 +179730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -178238,6 +179826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -178333,6 +179922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -178428,6 +180018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -178523,6 +180114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -178618,6 +180210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -178713,6 +180306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -178808,6 +180402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -178903,6 +180498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -178998,6 +180594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -179093,6 +180690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -179188,6 +180786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -179283,6 +180882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -179378,6 +180978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -179473,6 +181074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -179568,6 +181170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -179663,6 +181266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -179758,6 +181362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -179853,6 +181458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -179948,6 +181554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -180043,6 +181650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -180138,6 +181746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -180233,6 +181842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -180328,6 +181938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -180423,6 +182034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -180518,6 +182130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -180613,6 +182226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -180708,6 +182322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -180791,9 +182406,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_consumable",
"Description": "@PotionEnduranceT1_Description",
"ItemClass": "Consumable+Potion",
- "TradingCategory": "Utilities",
- "TradingFamily": "Potion",
- "TradingGroup": "PotionEndurance",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": 300,
@@ -180803,6 +182418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -180886,9 +182502,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_consumable",
"Description": "@PotionEnduranceT2_Description",
"ItemClass": "Consumable+Potion",
- "TradingCategory": "Utilities",
- "TradingFamily": "Potion",
- "TradingGroup": "PotionEndurance",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": 400,
@@ -180898,6 +182514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -180981,9 +182598,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_consumable",
"Description": "@PotionEnduranceT3_Description",
"ItemClass": "Consumable+Potion",
- "TradingCategory": "Utilities",
- "TradingFamily": "Potion",
- "TradingGroup": "PotionEndurance",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": 500,
@@ -180993,6 +182610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -181088,6 +182706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -181183,6 +182802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -181278,6 +182898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -181373,6 +182994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -181468,6 +183090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -181563,6 +183186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -181658,6 +183282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -181753,6 +183378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -181848,6 +183474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -181943,6 +183570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -182038,6 +183666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -182133,6 +183762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -182228,6 +183858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -182323,6 +183954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -182418,6 +184050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -182513,6 +184146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -182608,6 +184242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -182703,6 +184338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -182798,6 +184434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -182893,6 +184530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -182988,6 +184626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -183083,6 +184722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -183178,6 +184818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -183273,6 +184914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -183368,6 +185010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -183463,6 +185106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -183558,6 +185202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -183653,6 +185298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -183748,6 +185394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -183843,6 +185490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -183938,6 +185586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -184033,6 +185682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -184128,6 +185778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -184223,6 +185874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -184318,6 +185970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -184413,6 +186066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -184508,6 +186162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -184603,6 +186258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -184698,6 +186354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -184793,6 +186450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -184888,6 +186546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -184983,6 +186642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -185078,6 +186738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -185173,6 +186834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -185268,6 +186930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -185363,6 +187026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -185458,6 +187122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -185553,6 +187218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -185648,6 +187314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -185743,6 +187410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -185838,6 +187506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -185933,6 +187602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -186028,6 +187698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -186123,6 +187794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -186218,6 +187890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -186313,6 +187986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -186408,6 +188082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -186503,6 +188178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -186598,6 +188274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -186693,6 +188370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -186788,6 +188466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -186883,6 +188562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -186978,6 +188658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -187073,6 +188754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -187168,6 +188850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -187263,6 +188946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -187358,6 +189042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -187453,6 +189138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -187548,6 +189234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -187631,9 +189318,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_consumable",
"Description": "@PotionCurePoisonT1_Description",
"ItemClass": "Consumable+Potion",
- "TradingCategory": "Utilities",
- "TradingFamily": "Tincture",
- "TradingGroup": "Curatives",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": 100,
@@ -187643,6 +189330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -187726,9 +189414,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_consumable",
"Description": "@PotionCureBurningT1_Description",
"ItemClass": "Consumable+Potion",
- "TradingCategory": "Utilities",
- "TradingFamily": "Tincture",
- "TradingGroup": "Curatives",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": 100,
@@ -187738,6 +189426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -187821,9 +189510,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_consumable",
"Description": "@PotionCureShockT1_Description",
"ItemClass": "Consumable+Potion",
- "TradingCategory": "Utilities",
- "TradingFamily": "Tincture",
- "TradingGroup": "Curatives",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": 100,
@@ -187833,6 +189522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -187916,9 +189606,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_consumable",
"Description": "@PotionCureDiseaseT1_Description",
"ItemClass": "Consumable+Potion",
- "TradingCategory": "Utilities",
- "TradingFamily": "Tincture",
- "TradingGroup": "Curatives",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": 100,
@@ -187928,6 +189618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -188011,9 +189702,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_consumable",
"Description": "@PotionCureSlowT1_Description",
"ItemClass": "Consumable+Potion",
- "TradingCategory": "Utilities",
- "TradingFamily": "Tincture",
- "TradingGroup": "Curatives",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": 100,
@@ -188023,6 +189714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -188106,9 +189798,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_consumable",
"Description": "@PotionCureSilenceT1_Description",
"ItemClass": "Consumable+Potion",
- "TradingCategory": "Utilities",
- "TradingFamily": "Tincture",
- "TradingGroup": "Curatives",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": 100,
@@ -188118,6 +189810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -188201,9 +189894,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_consumable",
"Description": "@PotionCureRendT1_Description",
"ItemClass": "Consumable+Potion",
- "TradingCategory": "Utilities",
- "TradingFamily": "Tincture",
- "TradingGroup": "Curatives",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": 100,
@@ -188213,6 +189906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -188296,9 +189990,9 @@
"ItemTypeDisplayName": "@ui_itemtypedescription_consumable",
"Description": "@PotionCureWeakenT1_Description",
"ItemClass": "Consumable+Potion",
- "TradingCategory": "Utilities",
- "TradingFamily": "Tincture",
- "TradingGroup": "Curatives",
+ "TradingCategory": "",
+ "TradingFamily": "",
+ "TradingGroup": "",
"BindOnPickup": null,
"BindOnEquip": null,
"GearScoreOverride": 100,
@@ -188308,6 +190002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -188403,6 +190098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -188498,6 +190194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -188593,6 +190290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -188688,6 +190386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -188783,6 +190482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -188878,6 +190578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -188973,6 +190674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -189068,6 +190770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -189163,6 +190866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -189258,6 +190962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -189353,6 +191058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -189448,6 +191154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -189543,6 +191250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -189638,6 +191346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -189733,6 +191442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -189828,6 +191538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -189923,6 +191634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -190018,6 +191730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -190113,6 +191826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -190208,6 +191922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -190303,6 +192018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -190398,6 +192114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -190493,6 +192210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -190588,6 +192306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -190683,6 +192402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -190778,6 +192498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -190873,6 +192594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -190968,6 +192690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -191063,6 +192786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -191158,6 +192882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -191253,6 +192978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -191348,6 +193074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -191443,6 +193170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -191538,6 +193266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -191633,6 +193362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -191728,6 +193458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -191823,6 +193554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -191918,6 +193650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -192013,6 +193746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -192108,6 +193842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -192203,6 +193938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -192298,6 +194034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -192393,6 +194130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -192488,6 +194226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -192583,6 +194322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -192678,6 +194418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -192773,6 +194514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -192868,6 +194610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -192963,6 +194706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -193058,6 +194802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -193153,6 +194898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -193248,6 +194994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -193343,6 +195090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -193438,6 +195186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -193533,6 +195282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -193628,6 +195378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -193723,6 +195474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -193818,6 +195570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -193913,6 +195666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -194008,6 +195762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -194103,6 +195858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -194198,6 +195954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -194293,6 +196050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -194388,6 +196146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -194483,6 +196242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -194578,6 +196338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -194673,6 +196434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -194768,6 +196530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -194863,6 +196626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -194958,6 +196722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -195053,6 +196818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -195148,6 +196914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -195243,6 +197010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -195338,6 +197106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -195433,6 +197202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -195528,6 +197298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -195623,6 +197394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -195718,6 +197490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -195813,6 +197586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -195908,6 +197682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -196003,6 +197778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -196098,6 +197874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -196193,6 +197970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -196288,6 +198066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -196383,6 +198162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -196478,6 +198258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -196573,6 +198354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -196668,6 +198450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -196763,6 +198546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -196858,6 +198642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -196953,6 +198738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -197048,6 +198834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -197143,6 +198930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -197238,6 +199026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -197333,6 +199122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -197428,6 +199218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -197523,6 +199314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -197618,6 +199410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -197713,6 +199506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -197808,6 +199602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -197903,6 +199698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -197998,6 +199794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -198093,6 +199890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -198188,6 +199986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -198283,6 +200082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -198378,6 +200178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -198473,6 +200274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -198568,6 +200370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -198663,6 +200466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -198758,6 +200562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -198853,6 +200658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -198948,6 +200754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -199043,6 +200850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -199138,6 +200946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -199233,6 +201042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -199328,6 +201138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -199423,6 +201234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -199518,6 +201330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -199613,6 +201426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -199708,6 +201522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -199803,6 +201618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -199898,6 +201714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -199993,6 +201810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -200088,6 +201906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -200183,6 +202002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -200278,6 +202098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -200373,6 +202194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -200468,6 +202290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -200563,6 +202386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -200658,6 +202482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -200753,6 +202578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -200848,6 +202674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -200943,6 +202770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -201038,6 +202866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -201133,6 +202962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -201228,6 +203058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -201323,6 +203154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -201418,6 +203250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -201513,6 +203346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -201608,6 +203442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -201703,6 +203538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -201798,6 +203634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -201893,6 +203730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -201988,6 +203826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -202083,6 +203922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -202178,6 +204018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -202273,6 +204114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -202368,6 +204210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -202463,6 +204306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -202558,6 +204402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -202653,6 +204498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -202748,6 +204594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -202843,6 +204690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -202938,6 +204786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -203033,6 +204882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -203128,6 +204978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -203223,6 +205074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -203318,6 +205170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -203413,6 +205266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -203508,6 +205362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -203603,6 +205458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -203698,6 +205554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -203793,6 +205650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -203888,6 +205746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -203983,6 +205842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -204078,6 +205938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -204173,6 +206034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -204268,6 +206130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -204363,6 +206226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -204458,6 +206322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -204553,6 +206418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -204648,6 +206514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -204743,6 +206610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -204838,6 +206706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -204933,6 +206802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -205028,6 +206898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -205123,6 +206994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -205218,6 +207090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -205313,6 +207186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -205408,6 +207282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -205503,6 +207378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -205598,6 +207474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -205693,6 +207570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -205788,6 +207666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -205883,6 +207762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -205978,6 +207858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -206073,6 +207954,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -206168,6 +208050,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -206263,6 +208146,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -206358,6 +208242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -206453,6 +208338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -206548,6 +208434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -206643,6 +208530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -206738,6 +208626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -206833,6 +208722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -206928,6 +208818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -207023,6 +208914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -207118,6 +209010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -207213,6 +209106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -207308,6 +209202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -207403,6 +209298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -207498,6 +209394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -207593,6 +209490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -207688,6 +209586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -207783,6 +209682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -207878,6 +209778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -207973,6 +209874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -208068,6 +209970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -208163,6 +210066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -208258,6 +210162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -208353,6 +210258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -208448,6 +210354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -208543,6 +210450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -208638,6 +210546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -208733,6 +210642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -208828,6 +210738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -208923,6 +210834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -209018,6 +210930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -209113,6 +211026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -209208,6 +211122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -209303,6 +211218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -209398,6 +211314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -209493,6 +211410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -209588,6 +211506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -209683,6 +211602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -209778,6 +211698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -209873,6 +211794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -209968,6 +211890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -210063,6 +211986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -210158,6 +212082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -210253,6 +212178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -210348,6 +212274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -210443,6 +212370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -210538,6 +212466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -210633,6 +212562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -210728,6 +212658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -210823,6 +212754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -210918,6 +212850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -211013,6 +212946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -211108,6 +213042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -211203,6 +213138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -211298,6 +213234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -211393,6 +213330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -211488,6 +213426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -211583,6 +213522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -211678,6 +213618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -211773,6 +213714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -211868,6 +213810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -211963,6 +213906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -212058,6 +214002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -212153,6 +214098,7 @@
"ItemStatsRef": "1hSkinningKnifeT1",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -212248,6 +214194,7 @@
"ItemStatsRef": "1hSkinningKnifeT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -212343,6 +214290,7 @@
"ItemStatsRef": "1hSkinningKnifeT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -212438,6 +214386,7 @@
"ItemStatsRef": "1hSkinningKnifeT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -212533,6 +214482,7 @@
"ItemStatsRef": "1hSkinningKnifeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -212628,6 +214578,7 @@
"ItemStatsRef": "1hSickleT1",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -212723,6 +214674,7 @@
"ItemStatsRef": "1hSickleT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -212818,6 +214770,7 @@
"ItemStatsRef": "1hSickleT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -212913,6 +214866,7 @@
"ItemStatsRef": "1hSickleT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -213008,6 +214962,7 @@
"ItemStatsRef": "1hSickleT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -213103,6 +215058,7 @@
"ItemStatsRef": "LoggingAxeT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -213198,6 +215154,7 @@
"ItemStatsRef": "LoggingAxeT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -213293,6 +215250,7 @@
"ItemStatsRef": "LoggingAxeT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -213388,6 +215346,7 @@
"ItemStatsRef": "LoggingAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -213483,6 +215442,7 @@
"ItemStatsRef": "1hPickT1",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -213578,6 +215538,7 @@
"ItemStatsRef": "2hPickT1",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -213673,6 +215634,7 @@
"ItemStatsRef": "2hPickT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -213768,6 +215730,7 @@
"ItemStatsRef": "2hPickT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -213863,6 +215826,7 @@
"ItemStatsRef": "2hPickT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -213958,6 +215922,7 @@
"ItemStatsRef": "2hPickT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -214053,6 +216018,7 @@
"ItemStatsRef": "2hFishingPoleT1",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -214148,6 +216114,7 @@
"ItemStatsRef": "2hFishingPoleT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -214243,6 +216210,7 @@
"ItemStatsRef": "2hFishingPoleT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -214338,6 +216306,7 @@
"ItemStatsRef": "2hFishingPoleT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -214433,6 +216402,7 @@
"ItemStatsRef": "2hFishingPoleT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -214528,6 +216498,7 @@
"ItemStatsRef": "2hFishingPoleT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "FishLineStrengthSalt3",
@@ -214623,6 +216594,7 @@
"ItemStatsRef": "2hFishingPoleT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "FishLuckDay3",
@@ -214718,6 +216690,7 @@
"ItemStatsRef": "2hFishingPoleT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "FishLineStrengthFresh3",
@@ -214813,6 +216786,7 @@
"ItemStatsRef": "2hFishingPoleT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "FishLuckNight3",
@@ -214908,6 +216882,7 @@
"ItemStatsRef": "2hFishingPoleT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -215003,6 +216978,7 @@
"ItemStatsRef": "2hFishingPoleT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -215098,6 +217074,7 @@
"ItemStatsRef": "2hFishingPoleT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -215193,6 +217170,7 @@
"ItemStatsRef": "Unarmed",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -215288,6 +217266,7 @@
"ItemStatsRef": "SwordT1",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -215383,6 +217362,7 @@
"ItemStatsRef": "SwordT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -215478,6 +217458,7 @@
"ItemStatsRef": "SwordT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -215573,6 +217554,7 @@
"ItemStatsRef": "SwordT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -215668,6 +217650,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -215763,6 +217746,7 @@
"ItemStatsRef": "RapierT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -215858,6 +217842,7 @@
"ItemStatsRef": "RapierT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -215953,6 +217938,7 @@
"ItemStatsRef": "RapierT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -216048,6 +218034,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -216143,6 +218130,7 @@
"ItemStatsRef": "HatchetT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -216238,6 +218226,7 @@
"ItemStatsRef": "HatchetT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -216333,6 +218322,7 @@
"ItemStatsRef": "HatchetT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -216428,6 +218418,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -216523,6 +218514,7 @@
"ItemStatsRef": "2HHammerT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -216618,6 +218610,7 @@
"ItemStatsRef": "2HHammerT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -216713,6 +218706,7 @@
"ItemStatsRef": "2HHammerT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -216808,6 +218802,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -216903,6 +218898,7 @@
"ItemStatsRef": "2HAxeT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -216998,6 +218994,7 @@
"ItemStatsRef": "2HAxeT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -217093,6 +219090,7 @@
"ItemStatsRef": "2HAxeT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -217188,6 +219186,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -217283,6 +219282,7 @@
"ItemStatsRef": "SpearT1",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -217378,6 +219378,7 @@
"ItemStatsRef": "SpearT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -217473,6 +219474,7 @@
"ItemStatsRef": "SpearT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -217568,6 +219570,7 @@
"ItemStatsRef": "SpearT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -217663,6 +219666,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -217758,6 +219762,7 @@
"ItemStatsRef": "BowT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -217853,6 +219858,7 @@
"ItemStatsRef": "BowT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -217948,6 +219954,7 @@
"ItemStatsRef": "BowT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -218043,6 +220050,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -218138,6 +220146,7 @@
"ItemStatsRef": "MusketT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -218233,6 +220242,7 @@
"ItemStatsRef": "MusketT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -218328,6 +220338,7 @@
"ItemStatsRef": "MusketT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -218423,6 +220434,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -218518,6 +220530,7 @@
"ItemStatsRef": "FireStaffT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -218613,6 +220626,7 @@
"ItemStatsRef": "FireStaffT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -218708,6 +220722,7 @@
"ItemStatsRef": "FireStaffT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -218803,6 +220818,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -218898,6 +220914,7 @@
"ItemStatsRef": "LifeStaffT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -218993,6 +221010,7 @@
"ItemStatsRef": "LifeStaffT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -219088,6 +221106,7 @@
"ItemStatsRef": "LifeStaffT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -219183,6 +221202,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -219278,6 +221298,7 @@
"ItemStatsRef": "1hShieldAT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -219373,6 +221394,7 @@
"ItemStatsRef": "1hShieldAT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -219468,6 +221490,7 @@
"ItemStatsRef": "1hShieldAT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -219563,6 +221586,7 @@
"ItemStatsRef": "1hShieldAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -219583,8 +221607,8 @@
"IconCaptureGroup": "RoundShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
"ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
@@ -219658,6 +221682,7 @@
"ItemStatsRef": "1hShieldBT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -219753,6 +221778,7 @@
"ItemStatsRef": "1hShieldBT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -219848,6 +221874,7 @@
"ItemStatsRef": "1hShieldBT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -219867,8 +221894,8 @@
"UseMagicAffix": true,
"IconCaptureGroup": "KiteShield",
"UiItemClass": "UI_Weapon",
- "RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
+ "RDyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
"BDyeSlotDisabled": true,
"ADyeSlotDisabled": true,
"ArmorAppearanceM": "",
@@ -219943,6 +221970,7 @@
"ItemStatsRef": "1hShieldDT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -220038,6 +222066,7 @@
"ItemStatsRef": "1hShieldDT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -220058,9 +222087,9 @@
"IconCaptureGroup": "TowerShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
- "ADyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
+ "ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
"WeaponAppearanceOverride": "1hTowerShieldT5",
@@ -220133,6 +222162,7 @@
"ItemStatsRef": "2hDemoHammerT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -220228,6 +222258,7 @@
"ItemStatsRef": "2hDemoHammerT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -220323,6 +222354,7 @@
"ItemStatsRef": "2hDemoHammerT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -220418,6 +222450,7 @@
"ItemStatsRef": "2hDemoHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -220513,6 +222546,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -220608,6 +222642,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -220703,6 +222738,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -220798,6 +222834,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -220893,6 +222930,7 @@
"ItemStatsRef": "VoidGauntletT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -220988,6 +223026,7 @@
"ItemStatsRef": "VoidGauntletT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -221083,6 +223122,7 @@
"ItemStatsRef": "VoidGauntletT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -221178,6 +223218,7 @@
"ItemStatsRef": "VoidGauntletT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -221273,6 +223314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -221368,6 +223410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -221463,6 +223506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -221558,6 +223602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -221653,6 +223698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -221748,6 +223794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -221843,6 +223890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -221938,6 +223986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -222033,6 +224082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -222128,6 +224178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -222223,6 +224274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -222318,6 +224370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -222413,6 +224466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -222508,6 +224562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -222603,6 +224658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -222698,6 +224754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -222793,6 +224850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -222888,6 +224946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -222983,6 +225042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -223078,6 +225138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -223173,6 +225234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -223268,6 +225330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -223363,6 +225426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -223458,6 +225522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -223553,6 +225618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -223648,6 +225714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -223743,6 +225810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -223838,6 +225906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -223933,6 +226002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -224028,6 +226098,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -224123,6 +226194,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -224218,6 +226290,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -224313,6 +226386,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -224408,6 +226482,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -224503,6 +226578,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -224598,6 +226674,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -224693,6 +226770,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -224788,6 +226866,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -224883,6 +226962,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -224978,6 +227058,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -225073,6 +227154,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -225168,6 +227250,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -225263,6 +227346,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -225358,6 +227442,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -225453,6 +227538,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -225548,6 +227634,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -225643,6 +227730,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -225738,6 +227826,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -225833,6 +227922,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -225928,6 +228018,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -226023,6 +228114,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -226118,6 +228210,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -226213,6 +228306,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -226308,6 +228402,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -226403,6 +228498,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -226498,6 +228594,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -226593,6 +228690,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -226688,6 +228786,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -226783,6 +228882,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -226878,6 +228978,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -226973,6 +229074,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -227068,6 +229170,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -227163,6 +229266,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -227258,6 +229362,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -227353,6 +229458,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -227448,6 +229554,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -227543,6 +229650,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -227638,6 +229746,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -227733,6 +229842,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -227828,6 +229938,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -227923,6 +230034,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -228018,6 +230130,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -228113,6 +230226,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -228208,6 +230322,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -228303,6 +230418,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -228398,6 +230514,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -228493,6 +230610,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -228588,6 +230706,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -228683,6 +230802,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -228778,6 +230898,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -228873,6 +230994,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -228968,6 +231090,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -229063,6 +231186,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -229158,6 +231282,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -229253,6 +231378,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -229348,6 +231474,7 @@
"ItemStatsRef": "AmuletCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -229443,6 +231570,7 @@
"ItemStatsRef": "AmuletCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -229538,6 +231666,7 @@
"ItemStatsRef": "AmuletCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -229633,6 +231762,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -229728,6 +231858,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -229823,6 +231954,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -229918,6 +232050,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -230013,6 +232146,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -230108,6 +232242,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -230203,6 +232338,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -230298,6 +232434,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -230393,6 +232530,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -230488,6 +232626,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -230583,6 +232722,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -230678,6 +232818,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -230773,6 +232914,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -230868,6 +233010,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -230963,6 +233106,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -231058,6 +233202,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -231153,6 +233298,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -231248,6 +233394,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -231343,6 +233490,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -231438,6 +233586,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -231533,6 +233682,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -231628,6 +233778,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -231723,6 +233874,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -231818,6 +233970,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -231913,6 +234066,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -232008,6 +234162,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -232103,6 +234258,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -232198,6 +234354,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -232293,6 +234450,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -232388,6 +234546,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -232483,6 +234642,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -232578,6 +234738,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -232673,6 +234834,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -232768,6 +234930,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -232863,6 +235026,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -232958,6 +235122,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -233053,6 +235218,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -233148,6 +235314,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -233243,6 +235410,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -233338,6 +235506,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -233433,6 +235602,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -233528,6 +235698,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -233623,6 +235794,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -233718,6 +235890,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -233813,6 +235986,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -233908,6 +236082,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -234003,6 +236178,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -234098,6 +236274,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -234193,6 +236370,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -234288,6 +236466,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -234383,6 +236562,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -234478,6 +236658,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -234573,6 +236754,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -234668,6 +236850,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -234763,6 +236946,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -234858,6 +237042,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -234953,6 +237138,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -235048,6 +237234,7 @@
"ItemStatsRef": "RingCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -235143,6 +237330,7 @@
"ItemStatsRef": "RingCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -235238,6 +237426,7 @@
"ItemStatsRef": "RingCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -235333,6 +237522,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -235428,6 +237618,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -235523,6 +237714,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -235618,6 +237810,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -235713,6 +237906,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -235808,6 +238002,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -235903,6 +238098,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -235998,6 +238194,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -236093,6 +238290,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -236188,6 +238386,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -236283,6 +238482,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -236378,6 +238578,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -236473,6 +238674,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -236568,6 +238770,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -236663,6 +238866,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -236758,6 +238962,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -236853,6 +239058,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -236948,6 +239154,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -237043,6 +239250,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -237138,6 +239346,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -237233,6 +239442,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -237328,6 +239538,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -237423,6 +239634,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -237518,6 +239730,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -237613,6 +239826,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -237708,6 +239922,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -237803,6 +240018,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -237898,6 +240114,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -237993,6 +240210,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -238088,6 +240306,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -238183,6 +240402,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -238278,6 +240498,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -238373,6 +240594,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -238468,6 +240690,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -238563,6 +240786,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -238658,6 +240882,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -238753,6 +240978,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -238848,6 +241074,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -238943,6 +241170,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -239038,6 +241266,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -239133,6 +241362,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -239228,6 +241458,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -239323,6 +241554,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -239418,6 +241650,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -239513,6 +241746,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -239608,6 +241842,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -239703,6 +241938,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -239798,6 +242034,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -239893,6 +242130,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -239988,6 +242226,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -240083,6 +242322,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -240178,6 +242418,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -240273,6 +242514,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -240368,6 +242610,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -240463,6 +242706,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -240558,6 +242802,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -240653,6 +242898,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -240748,6 +242994,7 @@
"ItemStatsRef": "EarringCONT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -240843,6 +243090,7 @@
"ItemStatsRef": "EarringCONT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -240938,6 +243186,7 @@
"ItemStatsRef": "EarringCONT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -241033,6 +243282,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "",
@@ -241128,6 +243378,7 @@
"ItemStatsRef": "BagAT1",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": null,
"Perk1": "",
@@ -241223,6 +243474,7 @@
"ItemStatsRef": "BagAT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": null,
"Perk1": "",
@@ -241318,6 +243570,7 @@
"ItemStatsRef": "BagAT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": null,
"Perk1": "",
@@ -241413,6 +243666,7 @@
"ItemStatsRef": "BagAT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": null,
"Perk1": "",
@@ -241508,6 +243762,7 @@
"ItemStatsRef": "BagAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": null,
"Perk1": "",
@@ -241603,6 +243858,7 @@
"ItemStatsRef": "BagBT2",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": null,
"Perk1": "",
@@ -241698,6 +243954,7 @@
"ItemStatsRef": "BagBT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": null,
"Perk1": "",
@@ -241793,6 +244050,7 @@
"ItemStatsRef": "BagBT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": null,
"Perk1": "",
@@ -241888,6 +244146,7 @@
"ItemStatsRef": "BagBT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": null,
"Perk1": "",
@@ -241983,6 +244242,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -242078,6 +244338,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -242173,6 +244434,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -242268,6 +244530,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -242363,6 +244626,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -242458,6 +244722,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -242553,6 +244818,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -242648,6 +244914,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -242743,6 +245010,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -242838,6 +245106,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -242933,6 +245202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -243028,6 +245298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -243123,6 +245394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -243218,6 +245490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -243313,6 +245586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -243408,6 +245682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -243503,6 +245778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -243598,6 +245874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -243693,6 +245970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -243788,6 +246066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -243883,6 +246162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -243978,6 +246258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -244073,6 +246354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -244168,6 +246450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -244263,6 +246546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -244358,6 +246642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -244453,6 +246738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -244548,6 +246834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -244643,6 +246930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -244738,6 +247026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -244833,6 +247122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -244928,6 +247218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -245023,6 +247314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -245118,6 +247410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -245213,6 +247506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -245308,6 +247602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -245403,6 +247698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -245498,6 +247794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -245593,6 +247890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -245688,6 +247986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -245783,6 +248082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -245878,6 +248178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -245973,6 +248274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -246068,6 +248370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -246163,6 +248466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -246258,6 +248562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -246353,6 +248658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -246448,6 +248754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -246543,6 +248850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -246638,6 +248946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -246733,6 +249042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -246828,6 +249138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -246923,6 +249234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -247018,6 +249330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -247113,6 +249426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -247208,6 +249522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -247303,6 +249618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -247398,6 +249714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -247493,6 +249810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -247588,6 +249906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -247683,6 +250002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -247778,6 +250098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -247873,6 +250194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -247968,6 +250290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -248063,6 +250386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -248158,6 +250482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -248253,6 +250578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -248348,6 +250674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -248443,6 +250770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -248538,6 +250866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -248633,6 +250962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -248728,6 +251058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -248823,6 +251154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -248918,6 +251250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -249013,6 +251346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -249108,6 +251442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -249203,6 +251538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -249298,6 +251634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -249393,6 +251730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -249488,6 +251826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -249583,6 +251922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -249678,6 +252018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -249773,6 +252114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -249868,6 +252210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -249963,6 +252306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -250058,6 +252402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -250153,6 +252498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -250248,6 +252594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -250343,6 +252690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -250438,6 +252786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -250533,6 +252882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -250628,6 +252978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -250723,6 +253074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -250818,6 +253170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -250913,6 +253266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -251008,6 +253362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -251103,6 +253458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -251198,6 +253554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -251293,6 +253650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -251388,6 +253746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -251483,6 +253842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -251578,6 +253938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -251673,6 +254034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -251768,6 +254130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -251863,6 +254226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -251958,6 +254322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -252053,6 +254418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -252148,6 +254514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -252243,6 +254610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -252338,6 +254706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -252433,6 +254802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -252528,6 +254898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -252623,6 +254994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -252718,6 +255090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -252813,6 +255186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -252908,6 +255282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -253003,6 +255378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -253098,6 +255474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -253193,6 +255570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -253288,6 +255666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -253383,6 +255762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -253478,6 +255858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -253573,6 +255954,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -253668,6 +256050,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -253763,6 +256146,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -253858,6 +256242,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -253953,6 +256338,7 @@
"ItemStatsRef": "HeavyHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -254048,6 +256434,7 @@
"ItemStatsRef": "HeavyHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -254143,6 +256530,7 @@
"ItemStatsRef": "HeavyHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -254238,6 +256626,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -254333,6 +256722,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -254428,6 +256818,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -254523,6 +256914,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -254618,6 +257010,7 @@
"ItemStatsRef": "HeavyChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -254713,6 +257106,7 @@
"ItemStatsRef": "HeavyChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -254808,6 +257202,7 @@
"ItemStatsRef": "HeavyChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -254903,6 +257298,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -254998,6 +257394,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -255093,6 +257490,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -255188,6 +257586,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -255283,6 +257682,7 @@
"ItemStatsRef": "HeavyHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -255378,6 +257778,7 @@
"ItemStatsRef": "HeavyHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -255473,6 +257874,7 @@
"ItemStatsRef": "HeavyHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -255568,6 +257970,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -255663,6 +258066,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -255758,6 +258162,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -255853,6 +258258,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -255948,6 +258354,7 @@
"ItemStatsRef": "HeavyLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -256043,6 +258450,7 @@
"ItemStatsRef": "HeavyLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -256138,6 +258546,7 @@
"ItemStatsRef": "HeavyLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -256233,6 +258642,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -256328,6 +258738,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -256423,6 +258834,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -256518,6 +258930,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -256613,6 +259026,7 @@
"ItemStatsRef": "HeavyFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -256708,6 +259122,7 @@
"ItemStatsRef": "HeavyFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -256803,6 +259218,7 @@
"ItemStatsRef": "HeavyFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -256898,6 +259314,7 @@
"ItemStatsRef": "HeavyHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -256993,6 +259410,7 @@
"ItemStatsRef": "HeavyChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -257088,6 +259506,7 @@
"ItemStatsRef": "HeavyHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -257183,6 +259602,7 @@
"ItemStatsRef": "HeavyLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -257278,6 +259698,7 @@
"ItemStatsRef": "HeavyFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -257373,6 +259794,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -257468,6 +259890,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -257563,6 +259986,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -257658,6 +260082,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -257753,6 +260178,7 @@
"ItemStatsRef": "MediumHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -257848,6 +260274,7 @@
"ItemStatsRef": "MediumHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -257943,6 +260370,7 @@
"ItemStatsRef": "MediumHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -258038,6 +260466,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -258133,6 +260562,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -258228,6 +260658,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -258323,6 +260754,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -258418,6 +260850,7 @@
"ItemStatsRef": "MediumChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -258513,6 +260946,7 @@
"ItemStatsRef": "MediumChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -258608,6 +261042,7 @@
"ItemStatsRef": "MediumChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -258703,6 +261138,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -258798,6 +261234,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -258893,6 +261330,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -258988,6 +261426,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -259083,6 +261522,7 @@
"ItemStatsRef": "MediumHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -259178,6 +261618,7 @@
"ItemStatsRef": "MediumHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -259273,6 +261714,7 @@
"ItemStatsRef": "MediumHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -259368,6 +261810,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -259463,6 +261906,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -259558,6 +262002,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -259653,6 +262098,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -259748,6 +262194,7 @@
"ItemStatsRef": "MediumLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -259843,6 +262290,7 @@
"ItemStatsRef": "MediumLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -259938,6 +262386,7 @@
"ItemStatsRef": "MediumLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -260033,6 +262482,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -260128,6 +262578,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -260223,6 +262674,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -260318,6 +262770,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -260413,6 +262866,7 @@
"ItemStatsRef": "MediumFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -260508,6 +262962,7 @@
"ItemStatsRef": "MediumFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -260603,6 +263058,7 @@
"ItemStatsRef": "MediumFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -260698,6 +263154,7 @@
"ItemStatsRef": "MediumHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -260793,6 +263250,7 @@
"ItemStatsRef": "MediumChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -260888,6 +263346,7 @@
"ItemStatsRef": "MediumHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -260983,6 +263442,7 @@
"ItemStatsRef": "MediumLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -261078,6 +263538,7 @@
"ItemStatsRef": "MediumFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -261173,6 +263634,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -261268,6 +263730,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -261363,6 +263826,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -261458,6 +263922,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -261553,6 +264018,7 @@
"ItemStatsRef": "LightHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -261648,6 +264114,7 @@
"ItemStatsRef": "LightHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -261743,6 +264210,7 @@
"ItemStatsRef": "LightHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -261838,6 +264306,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -261933,6 +264402,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -262028,6 +264498,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -262123,6 +264594,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -262218,6 +264690,7 @@
"ItemStatsRef": "LightChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -262313,6 +264786,7 @@
"ItemStatsRef": "LightChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -262408,6 +264882,7 @@
"ItemStatsRef": "LightChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -262503,6 +264978,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -262598,6 +265074,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -262693,6 +265170,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -262788,6 +265266,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -262883,6 +265362,7 @@
"ItemStatsRef": "LightHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -262978,6 +265458,7 @@
"ItemStatsRef": "LightHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -263073,6 +265554,7 @@
"ItemStatsRef": "LightHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -263168,6 +265650,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -263263,6 +265746,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -263358,6 +265842,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -263453,6 +265938,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -263548,6 +266034,7 @@
"ItemStatsRef": "LightLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -263643,6 +266130,7 @@
"ItemStatsRef": "LightLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -263738,6 +266226,7 @@
"ItemStatsRef": "LightLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -263833,6 +266322,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -263928,6 +266418,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -264023,6 +266514,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -264118,6 +266610,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -264213,6 +266706,7 @@
"ItemStatsRef": "LightFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -264308,6 +266802,7 @@
"ItemStatsRef": "LightFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -264403,6 +266898,7 @@
"ItemStatsRef": "LightFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -264498,6 +266994,7 @@
"ItemStatsRef": "LightHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -264593,6 +267090,7 @@
"ItemStatsRef": "LightChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -264688,6 +267186,7 @@
"ItemStatsRef": "LightHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -264783,6 +267282,7 @@
"ItemStatsRef": "LightLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -264878,6 +267378,7 @@
"ItemStatsRef": "LightFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -264973,6 +267474,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -265062,12 +267564,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 300,
+ "MaxGearScore": 400,
"Tier": 3,
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -265157,12 +267660,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 400,
+ "MaxGearScore": 500,
"Tier": 4,
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -265252,12 +267756,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 500,
+ "MaxGearScore": 600,
"Tier": 5,
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -265353,6 +267858,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -265442,12 +267948,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 300,
+ "MaxGearScore": 400,
"Tier": 3,
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -265537,12 +268044,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 400,
+ "MaxGearScore": 500,
"Tier": 4,
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -265632,12 +268140,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 500,
+ "MaxGearScore": 600,
"Tier": 5,
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -265733,6 +268242,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -265822,12 +268332,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 300,
+ "MaxGearScore": 400,
"Tier": 3,
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -265917,12 +268428,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 400,
+ "MaxGearScore": 500,
"Tier": 4,
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -266012,12 +268524,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 500,
+ "MaxGearScore": 600,
"Tier": 5,
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -266113,6 +268626,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -266202,12 +268716,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 300,
+ "MaxGearScore": 400,
"Tier": 3,
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -266297,12 +268812,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 400,
+ "MaxGearScore": 500,
"Tier": 4,
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -266392,12 +268908,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 500,
+ "MaxGearScore": 600,
"Tier": 5,
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -266493,6 +269010,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -266582,12 +269100,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 300,
+ "MaxGearScore": 400,
"Tier": 3,
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -266677,12 +269196,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 400,
+ "MaxGearScore": 500,
"Tier": 4,
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -266772,12 +269292,13 @@
"BindOnPickup": null,
"BindOnEquip": true,
"GearScoreOverride": null,
- "MinGearScore": 200,
- "MaxGearScore": 300,
+ "MinGearScore": 500,
+ "MaxGearScore": 600,
"Tier": 5,
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -266873,6 +269394,7 @@
"ItemStatsRef": "SwordT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -266968,6 +269490,7 @@
"ItemStatsRef": "SwordT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -267063,6 +269586,7 @@
"ItemStatsRef": "SwordT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -267158,6 +269682,7 @@
"ItemStatsRef": "SwordT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -267253,6 +269778,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -267299,8 +269825,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageSmall_MetalT4",
- "CraftingRecipe": "SalvageSmall_MetalT4",
+ "RepairRecipe": "SalvageSmall_MetalT5",
+ "CraftingRecipe": "SalvageSmall_MetalT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -267348,6 +269874,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -267443,6 +269970,7 @@
"ItemStatsRef": "HatchetT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandFighter",
@@ -267538,6 +270066,7 @@
"ItemStatsRef": "HatchetT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandFighter",
@@ -267633,6 +270162,7 @@
"ItemStatsRef": "HatchetT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandFighter",
@@ -267728,6 +270258,7 @@
"ItemStatsRef": "HatchetT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandFighter",
@@ -267823,6 +270354,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandFighter",
@@ -267869,8 +270401,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageSmall_MetalT4",
- "CraftingRecipe": "SalvageSmall_MetalT4",
+ "RepairRecipe": "SalvageSmall_MetalT5",
+ "CraftingRecipe": "SalvageSmall_MetalT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -267918,6 +270450,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandFighter",
@@ -268013,6 +270546,7 @@
"ItemStatsRef": "2HHammerT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -268108,6 +270642,7 @@
"ItemStatsRef": "2HHammerT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -268203,6 +270738,7 @@
"ItemStatsRef": "2HHammerT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -268298,6 +270834,7 @@
"ItemStatsRef": "2HHammerT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -268393,6 +270930,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -268439,8 +270977,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageLarge_MetalT4",
- "CraftingRecipe": "SalvageLarge_MetalT4",
+ "RepairRecipe": "SalvageLarge_MetalT5",
+ "CraftingRecipe": "SalvageLarge_MetalT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -268488,6 +271026,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -268583,6 +271122,7 @@
"ItemStatsRef": "2HAxeT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -268678,6 +271218,7 @@
"ItemStatsRef": "2HAxeT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -268773,6 +271314,7 @@
"ItemStatsRef": "2HAxeT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -268868,6 +271410,7 @@
"ItemStatsRef": "2HAxeT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -268963,6 +271506,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -269009,8 +271553,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageLarge_MetalT4",
- "CraftingRecipe": "SalvageLarge_MetalT4",
+ "RepairRecipe": "SalvageLarge_MetalT5",
+ "CraftingRecipe": "SalvageLarge_MetalT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -269058,6 +271602,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -269153,6 +271698,7 @@
"ItemStatsRef": "BowT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -269248,6 +271794,7 @@
"ItemStatsRef": "BowT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -269343,6 +271890,7 @@
"ItemStatsRef": "BowT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -269438,6 +271986,7 @@
"ItemStatsRef": "BowT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -269533,6 +272082,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -269579,8 +272129,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageSmall_TimberT4",
- "CraftingRecipe": "SalvageSmall_TimberT4",
+ "RepairRecipe": "SalvageSmall_TimberT5",
+ "CraftingRecipe": "SalvageSmall_TimberT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -269628,6 +272178,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -269723,6 +272274,7 @@
"ItemStatsRef": "MusketT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandAssassin",
@@ -269818,6 +272370,7 @@
"ItemStatsRef": "MusketT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandAssassin",
@@ -269913,6 +272466,7 @@
"ItemStatsRef": "MusketT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandAssassin",
@@ -270008,6 +272562,7 @@
"ItemStatsRef": "MusketT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandAssassin",
@@ -270103,6 +272658,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandAssassin",
@@ -270149,8 +272705,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageLarge_MetalT4",
- "CraftingRecipe": "SalvageLarge_MetalT4",
+ "RepairRecipe": "SalvageLarge_MetalT5",
+ "CraftingRecipe": "SalvageLarge_MetalT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -270198,6 +272754,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandAssassin",
@@ -270293,6 +272850,7 @@
"ItemStatsRef": "1hShieldAT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -270388,6 +272946,7 @@
"ItemStatsRef": "1hShieldAT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -270483,6 +273042,7 @@
"ItemStatsRef": "1hShieldAT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -270578,6 +273138,7 @@
"ItemStatsRef": "1hShieldAT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -270673,6 +273234,7 @@
"ItemStatsRef": "1hShieldAT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -270719,8 +273281,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageLarge_MetalT4",
- "CraftingRecipe": "SalvageLarge_MetalT4",
+ "RepairRecipe": "SalvageLarge_MetalT5",
+ "CraftingRecipe": "SalvageLarge_MetalT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -270768,6 +273330,7 @@
"ItemStatsRef": "1hShieldAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -270863,6 +273426,7 @@
"ItemStatsRef": "1hShieldBT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -270958,6 +273522,7 @@
"ItemStatsRef": "1hShieldBT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -271053,6 +273618,7 @@
"ItemStatsRef": "1hShieldBT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -271148,6 +273714,7 @@
"ItemStatsRef": "1hShieldBT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -271243,6 +273810,7 @@
"ItemStatsRef": "1hShieldBT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -271289,8 +273857,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageLarge_MetalT4",
- "CraftingRecipe": "SalvageLarge_MetalT4",
+ "RepairRecipe": "SalvageLarge_MetalT5",
+ "CraftingRecipe": "SalvageLarge_MetalT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -271338,6 +273906,7 @@
"ItemStatsRef": "1hShieldBT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -271433,6 +274002,7 @@
"ItemStatsRef": "1hShieldDT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -271528,6 +274098,7 @@
"ItemStatsRef": "1hShieldBT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -271623,6 +274194,7 @@
"ItemStatsRef": "1hShieldBT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -271642,10 +274214,10 @@
"UseMagicAffix": true,
"IconCaptureGroup": "TowerShield",
"UiItemClass": "UI_Weapon",
- "RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
- "ADyeSlotDisabled": false,
+ "RDyeSlotDisabled": null,
+ "GDyeSlotDisabled": null,
+ "BDyeSlotDisabled": null,
+ "ADyeSlotDisabled": null,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
"WeaponAppearanceOverride": "1hTowerShieldNagaAncientGuardianT5",
@@ -271669,8 +274241,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageLarge_MetalT4",
- "CraftingRecipe": "SalvageLarge_MetalT4",
+ "RepairRecipe": "SalvageLarge_MetalT5",
+ "CraftingRecipe": "SalvageLarge_MetalT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -271718,6 +274290,7 @@
"ItemStatsRef": "1hShieldBT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandFighter",
@@ -271813,6 +274386,7 @@
"ItemStatsRef": "FireStaffT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -271908,6 +274482,7 @@
"ItemStatsRef": "FireStaffT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -272003,6 +274578,7 @@
"ItemStatsRef": "FireStaffT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -272098,6 +274674,7 @@
"ItemStatsRef": "FireStaffT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -272193,6 +274770,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -272239,8 +274817,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageLarge_MetalT4",
- "CraftingRecipe": "SalvageLarge_MetalT4",
+ "RepairRecipe": "SalvageLarge_MetalT5",
+ "CraftingRecipe": "SalvageLarge_MetalT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -272288,6 +274866,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -272383,6 +274962,7 @@
"ItemStatsRef": "LifeStaffT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -272478,6 +275058,7 @@
"ItemStatsRef": "LifeStaffT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -272573,6 +275154,7 @@
"ItemStatsRef": "LifeStaffT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -272668,6 +275250,7 @@
"ItemStatsRef": "LifeStaffT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -272763,6 +275346,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -272809,8 +275393,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageLarge_MetalT4",
- "CraftingRecipe": "SalvageLarge_MetalT4",
+ "RepairRecipe": "SalvageLarge_MetalT5",
+ "CraftingRecipe": "SalvageLarge_MetalT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -272858,6 +275442,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -272953,6 +275538,7 @@
"ItemStatsRef": "RapierT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandAssassin",
@@ -273048,6 +275634,7 @@
"ItemStatsRef": "RapierT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandAssassin",
@@ -273143,6 +275730,7 @@
"ItemStatsRef": "RapierT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandAssassin",
@@ -273238,6 +275826,7 @@
"ItemStatsRef": "RapierT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandAssassin",
@@ -273333,6 +275922,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandAssassin",
@@ -273379,8 +275969,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageSmall_MetalT4",
- "CraftingRecipe": "SalvageSmall_MetalT4",
+ "RepairRecipe": "SalvageSmall_MetalT5",
+ "CraftingRecipe": "SalvageSmall_MetalT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -273428,6 +276018,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandAssassin",
@@ -273523,6 +276114,7 @@
"ItemStatsRef": "SpearT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandFighter",
@@ -273618,6 +276210,7 @@
"ItemStatsRef": "SpearT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandFighter",
@@ -273713,6 +276306,7 @@
"ItemStatsRef": "SpearT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandFighter",
@@ -273808,6 +276402,7 @@
"ItemStatsRef": "SpearT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandFighter",
@@ -273903,6 +276498,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandFighter",
@@ -273998,6 +276594,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandFighter",
@@ -274093,6 +276690,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -274188,6 +276786,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -274283,6 +276882,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -274378,6 +276978,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -274473,6 +277074,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -274568,6 +277170,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -274663,6 +277266,7 @@
"ItemStatsRef": "VoidGauntletT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandMage",
@@ -274758,6 +277362,7 @@
"ItemStatsRef": "VoidGauntletT3",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandMage",
@@ -274853,6 +277458,7 @@
"ItemStatsRef": "VoidGauntletT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandMage",
@@ -274948,6 +277554,7 @@
"ItemStatsRef": "VoidGauntletT4",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandMage",
@@ -275043,6 +277650,7 @@
"ItemStatsRef": "VoidGauntletT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandMage",
@@ -275138,6 +277746,7 @@
"ItemStatsRef": "VoidGauntletT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandMage",
@@ -275233,6 +277842,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -275328,6 +277938,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -275423,6 +278034,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -275518,6 +278130,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -275613,6 +278226,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -275708,6 +278322,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -275803,6 +278418,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -275898,6 +278514,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -275993,6 +278610,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -276088,6 +278706,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -276183,6 +278802,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -276278,6 +278898,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -276373,6 +278994,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -276468,6 +279090,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -276563,6 +279186,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -276658,6 +279282,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -276753,6 +279378,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -276848,6 +279474,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -276943,6 +279570,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -277038,6 +279666,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -277133,6 +279762,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -277228,6 +279858,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -277323,6 +279954,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -277418,6 +280050,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -277513,6 +280146,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -277608,6 +280242,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -277703,6 +280338,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -277798,6 +280434,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -277893,6 +280530,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -277988,6 +280626,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -278083,6 +280722,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -278178,6 +280818,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -278273,6 +280914,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -278368,6 +281010,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -278463,6 +281106,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -278558,6 +281202,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -278653,6 +281298,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -278748,6 +281394,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -278843,6 +281490,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -278938,6 +281586,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -279033,6 +281682,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -279128,6 +281778,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -279223,6 +281874,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -279318,6 +281970,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -279413,6 +282066,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -279508,6 +282162,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -279603,6 +282258,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -279698,6 +282354,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -279793,6 +282450,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -279888,6 +282546,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -279983,6 +282642,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -280078,6 +282738,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -280173,6 +282834,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -280268,6 +282930,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -280363,6 +283026,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -280458,6 +283122,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -280553,6 +283218,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -280648,6 +283314,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -280743,6 +283410,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -280838,6 +283506,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorFighter",
@@ -280933,6 +283602,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -281028,6 +283698,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -281123,6 +283794,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -281218,6 +283890,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -281313,6 +283986,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -281408,6 +284082,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -281503,6 +284178,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -281598,6 +284274,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -281693,6 +284370,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -281788,6 +284466,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -281883,6 +284562,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -281978,6 +284658,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -282073,6 +284754,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -282168,6 +284850,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -282263,6 +284946,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -282358,6 +285042,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -282453,6 +285138,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -282548,6 +285234,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -282643,6 +285330,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -282738,6 +285426,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -282833,6 +285522,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -282928,6 +285618,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -283023,6 +285714,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -283118,6 +285810,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -283213,6 +285906,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -283308,6 +286002,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -283403,6 +286098,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -283498,6 +286194,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -283593,6 +286290,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -283688,6 +286386,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorMage",
@@ -283783,6 +286482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -283878,6 +286578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -283973,6 +286674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -284068,6 +286770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -284163,6 +286866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -284258,6 +286962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -284353,6 +287058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -284448,6 +287154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -284543,6 +287250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -284638,6 +287346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -284733,6 +287442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -284828,6 +287538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -284923,6 +287634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -285018,6 +287730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -285113,6 +287826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -285208,6 +287922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -285303,6 +288018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -285398,6 +288114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -285493,6 +288210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -285588,6 +288306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -285683,6 +288402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -285778,6 +288498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -285873,6 +288594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -285968,6 +288690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -286063,6 +288786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -286158,6 +288882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -286253,6 +288978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -286348,6 +289074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -286443,6 +289170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -286538,6 +289266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -286633,6 +289362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -286728,6 +289458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -286823,6 +289554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -286918,6 +289650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -287013,6 +289746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -287108,6 +289842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -287203,6 +289938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -287298,6 +290034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -287393,6 +290130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -287488,6 +290226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -287583,6 +290322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -287678,6 +290418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -287773,6 +290514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -287868,6 +290610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -287963,6 +290706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -288058,6 +290802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -288153,6 +290898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -288248,6 +290994,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -288343,6 +291090,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -288438,6 +291186,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -288533,6 +291282,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -288628,6 +291378,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -288723,6 +291474,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -288818,6 +291570,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -288913,6 +291666,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -289008,6 +291762,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -289103,6 +291858,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -289198,6 +291954,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -289293,6 +292050,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -289388,6 +292146,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -289483,6 +292242,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -289578,6 +292338,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -289673,6 +292434,7 @@
"ItemStatsRef": "MediumHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -289768,6 +292530,7 @@
"ItemStatsRef": "MediumChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -289863,6 +292626,7 @@
"ItemStatsRef": "MediumHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -289958,6 +292722,7 @@
"ItemStatsRef": "MediumLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -290053,6 +292818,7 @@
"ItemStatsRef": "MediumFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -290148,6 +292914,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -290243,6 +293010,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -290338,6 +293106,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -290433,6 +293202,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -290528,6 +293298,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -290623,6 +293394,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -290718,6 +293490,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -290813,6 +293586,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -290908,6 +293682,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -291003,6 +293778,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -291098,6 +293874,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -291193,6 +293970,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -291288,6 +294066,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -291383,6 +294162,7 @@
"ItemStatsRef": "1hShieldAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -291478,6 +294258,7 @@
"ItemStatsRef": "1hShieldBT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -291573,6 +294354,7 @@
"ItemStatsRef": "1hShieldDT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -291668,6 +294450,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -291763,6 +294546,7 @@
"ItemStatsRef": "VoidGauntletT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -291858,6 +294642,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -291953,6 +294738,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -292048,6 +294834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -292066,7 +294853,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -292143,6 +294930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -292161,7 +294949,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -292238,6 +295026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -292256,7 +295045,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -292333,6 +295122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -292351,7 +295141,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -292428,6 +295218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -292446,7 +295237,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -292523,6 +295314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -292541,7 +295333,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -292618,6 +295410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -292636,7 +295429,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -292713,6 +295506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -292731,7 +295525,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -292808,6 +295602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -292826,7 +295621,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -292903,6 +295698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -292921,7 +295717,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -292998,6 +295794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -293016,7 +295813,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -293093,6 +295890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -293111,7 +295909,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -293188,6 +295986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -293206,7 +296005,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -293283,6 +296082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -293301,7 +296101,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -293378,6 +296178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -293396,7 +296197,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -293473,6 +296274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -293491,7 +296293,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -293568,6 +296370,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -293586,7 +296389,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -293663,6 +296466,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -293681,7 +296485,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -293758,6 +296562,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -293776,7 +296581,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -293853,6 +296658,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -293871,7 +296677,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -293948,6 +296754,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -293966,7 +296773,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -294043,6 +296850,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -294061,7 +296869,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -294138,6 +296946,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -294156,7 +296965,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -294233,6 +297042,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -294251,7 +297061,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -294328,6 +297138,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -294346,7 +297157,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -294423,6 +297234,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -294441,7 +297253,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -294518,6 +297330,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -294536,7 +297349,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -294613,6 +297426,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -294631,7 +297445,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -294708,6 +297522,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -294726,7 +297541,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -294803,6 +297618,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -294821,7 +297637,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -294898,6 +297714,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -294916,7 +297733,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -294993,6 +297810,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -295011,7 +297829,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -295088,6 +297906,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -295106,7 +297925,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -295183,6 +298002,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -295201,7 +298021,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -295278,6 +298098,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -295296,7 +298117,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -295373,6 +298194,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -295391,7 +298213,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -295468,6 +298290,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -295486,7 +298309,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -295563,6 +298386,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -295581,7 +298405,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -295658,6 +298482,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -295676,7 +298501,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -295753,6 +298578,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -295771,7 +298597,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -295848,6 +298674,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -295866,7 +298693,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -295943,6 +298770,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -295961,7 +298789,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -296038,6 +298866,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -296056,7 +298885,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -296133,6 +298962,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -296151,7 +298981,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -296228,6 +299058,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -296246,7 +299077,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -296323,6 +299154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -296341,7 +299173,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -296418,6 +299250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -296436,7 +299269,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -296513,6 +299346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -296531,7 +299365,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -296608,6 +299442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -296626,7 +299461,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -296703,6 +299538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -296721,7 +299557,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -296798,6 +299634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -296816,7 +299653,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -296893,6 +299730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -296911,7 +299749,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -296988,6 +299826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -297006,7 +299845,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -297083,6 +299922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -297101,7 +299941,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -297178,6 +300018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -297196,7 +300037,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -297273,6 +300114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -297291,7 +300133,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -297368,6 +300210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -297386,7 +300229,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -297463,6 +300306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -297481,7 +300325,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -297558,6 +300402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -297576,7 +300421,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -297653,6 +300498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -297671,7 +300517,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -297748,6 +300594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -297766,7 +300613,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -297843,6 +300690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -297861,7 +300709,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -297938,6 +300786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -297956,7 +300805,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -298033,6 +300882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -298051,7 +300901,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -298128,6 +300978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -298146,7 +300997,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -298223,6 +301074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -298241,7 +301093,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -298318,6 +301170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -298336,7 +301189,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -298413,6 +301266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -298431,7 +301285,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -298508,6 +301362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -298526,7 +301381,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -298603,6 +301458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -298621,7 +301477,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -298698,6 +301554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -298716,7 +301573,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -298793,6 +301650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -298811,7 +301669,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -298888,6 +301746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -298906,7 +301765,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -298983,6 +301842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -299001,7 +301861,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -299078,6 +301938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -299096,7 +301957,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -299173,6 +302034,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -299191,7 +302053,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -299268,6 +302130,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -299286,7 +302149,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -299363,6 +302226,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -299381,7 +302245,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -299458,6 +302322,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -299476,7 +302341,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -299553,6 +302418,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -299571,7 +302437,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -299648,6 +302514,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -299666,7 +302533,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -299743,6 +302610,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -299761,7 +302629,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -299838,6 +302706,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -299856,7 +302725,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -299933,6 +302802,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -299951,7 +302821,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -300028,6 +302898,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": false,
"CanReplaceGem": null,
"Perk1": "",
@@ -300046,7 +302917,7 @@
"UseMaterialAffix": false,
"UseMagicAffix": false,
"IconCaptureGroup": "",
- "UiItemClass": "UI_Material",
+ "UiItemClass": "UI_Rewards",
"RDyeSlotDisabled": null,
"GDyeSlotDisabled": null,
"BDyeSlotDisabled": null,
@@ -300123,6 +302994,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -300218,6 +303090,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -300313,6 +303186,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -300408,6 +303282,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -300503,6 +303378,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -300598,6 +303474,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -300693,6 +303570,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -300788,6 +303666,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -300883,6 +303762,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -300978,6 +303858,7 @@
"ItemStatsRef": "1hShieldAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -301073,6 +303954,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -301168,6 +304050,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -301263,6 +304146,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -301358,6 +304242,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -301453,6 +304338,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -301548,6 +304434,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -301643,6 +304530,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -301738,6 +304626,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -301833,6 +304722,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -301928,6 +304818,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -302023,6 +304914,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -302118,6 +305010,7 @@
"ItemStatsRef": "1hShieldBT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -302213,6 +305106,7 @@
"ItemStatsRef": "1hShieldAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -302308,6 +305202,7 @@
"ItemStatsRef": "1hShieldDT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -302403,6 +305298,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -302498,6 +305394,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -302593,6 +305490,7 @@
"ItemStatsRef": "VoidGauntletT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -302688,6 +305586,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -302783,6 +305682,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -302878,6 +305778,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -302973,6 +305874,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -303068,6 +305970,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -303163,6 +306066,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -303258,6 +306162,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -303353,6 +306258,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -303448,6 +306354,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -303543,6 +306450,7 @@
"ItemStatsRef": "1hShieldAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -303638,6 +306546,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -303733,6 +306642,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -303828,6 +306738,7 @@
"ItemStatsRef": "VoidGauntletT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -303923,6 +306834,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -304018,6 +306930,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -304113,6 +307026,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -304208,6 +307122,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -304303,6 +307218,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -304398,6 +307314,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -304493,6 +307410,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -304588,6 +307506,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -304683,6 +307602,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -304778,6 +307698,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -304873,6 +307794,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -304968,6 +307890,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -305063,6 +307986,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -305158,6 +308082,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -305253,6 +308178,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -305348,6 +308274,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -305443,6 +308370,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -305538,6 +308466,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -305633,6 +308562,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -305728,6 +308658,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -305823,6 +308754,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -305918,6 +308850,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -306013,6 +308946,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -306108,6 +309042,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -306203,6 +309138,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -306298,6 +309234,7 @@
"ItemStatsRef": "MediumChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -306393,6 +309330,7 @@
"ItemStatsRef": "MediumFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -306488,6 +309426,7 @@
"ItemStatsRef": "MediumHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -306583,6 +309522,7 @@
"ItemStatsRef": "MediumHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -306678,6 +309618,7 @@
"ItemStatsRef": "MediumLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -306773,6 +309714,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -306868,6 +309810,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -306963,6 +309906,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -307058,6 +310002,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -307153,6 +310098,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -307248,6 +310194,7 @@
"ItemStatsRef": "MediumChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -307343,6 +310290,7 @@
"ItemStatsRef": "MediumFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -307438,6 +310386,7 @@
"ItemStatsRef": "MediumHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -307533,6 +310482,7 @@
"ItemStatsRef": "MediumHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -307628,6 +310578,7 @@
"ItemStatsRef": "MediumLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -307723,6 +310674,7 @@
"ItemStatsRef": "MediumChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -307818,6 +310770,7 @@
"ItemStatsRef": "MediumFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -307913,6 +310866,7 @@
"ItemStatsRef": "MediumHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -308008,6 +310962,7 @@
"ItemStatsRef": "MediumHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -308103,6 +311058,7 @@
"ItemStatsRef": "MediumLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -308198,6 +311154,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -308293,6 +311250,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -308388,6 +311346,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -308483,6 +311442,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -308578,6 +311538,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -308673,6 +311634,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -308768,6 +311730,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -308863,6 +311826,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -308958,6 +311922,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -309053,6 +312018,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -309148,6 +312114,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -309243,6 +312210,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -309338,6 +312306,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -309433,6 +312402,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -309528,6 +312498,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -309623,6 +312594,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -309718,6 +312690,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -309813,6 +312786,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -309908,6 +312882,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -310003,6 +312978,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -310098,6 +313074,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -310193,6 +313170,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -310288,6 +313266,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -310383,6 +313362,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -310478,6 +313458,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -310573,6 +313554,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -310668,6 +313650,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -310763,6 +313746,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -310858,6 +313842,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -310953,6 +313938,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -311048,6 +314034,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -311143,6 +314130,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -311238,6 +314226,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -311333,6 +314322,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -311428,6 +314418,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -311523,6 +314514,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -311618,6 +314610,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -311713,6 +314706,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -311808,6 +314802,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -311903,6 +314898,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -311998,6 +314994,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -312093,6 +315090,7 @@
"ItemStatsRef": "VoidGauntletT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -312188,6 +315186,7 @@
"ItemStatsRef": "1hShieldAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -312208,8 +315207,8 @@
"IconCaptureGroup": "RoundShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
"ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
@@ -312283,6 +315282,7 @@
"ItemStatsRef": "1hShieldBT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -312302,8 +315302,8 @@
"UseMagicAffix": true,
"IconCaptureGroup": "KiteShield",
"UiItemClass": "UI_Weapon",
- "RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
+ "RDyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
"BDyeSlotDisabled": true,
"ADyeSlotDisabled": true,
"ArmorAppearanceM": "",
@@ -312378,6 +315378,7 @@
"ItemStatsRef": "1hShieldDT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -312398,9 +315399,9 @@
"IconCaptureGroup": "TowerShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
- "ADyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
+ "ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
"WeaponAppearanceOverride": "1hTowerShieldT5",
@@ -312473,6 +315474,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -312568,6 +315570,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -312663,6 +315666,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -312758,6 +315762,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -312853,6 +315858,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -312948,6 +315954,7 @@
"ItemStatsRef": "MediumHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -313043,6 +316050,7 @@
"ItemStatsRef": "MediumChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -313138,6 +316146,7 @@
"ItemStatsRef": "MediumHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -313233,6 +316242,7 @@
"ItemStatsRef": "MediumLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -313328,6 +316338,7 @@
"ItemStatsRef": "MediumFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -313423,6 +316434,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -313518,6 +316530,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -313613,6 +316626,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -313708,6 +316722,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -313803,6 +316818,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -313898,6 +316914,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -313993,6 +317010,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -314088,6 +317106,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": true,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "",
@@ -314183,6 +317202,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -314278,6 +317298,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -314373,6 +317394,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -314468,6 +317490,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -314563,6 +317586,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -314658,6 +317682,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -314753,6 +317778,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -314848,6 +317874,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -314943,6 +317970,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -315038,6 +318066,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -315133,6 +318162,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -315228,6 +318258,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -315323,6 +318354,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -315418,6 +318450,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -315513,6 +318546,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -315608,6 +318642,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -315703,6 +318738,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -315798,6 +318834,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -315893,6 +318930,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -315988,6 +319026,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -316083,6 +319122,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -316178,6 +319218,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -316273,6 +319314,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -316368,6 +319410,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -316463,6 +319506,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -316558,6 +319602,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -316653,6 +319698,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -316748,6 +319794,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -316843,6 +319890,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -316938,6 +319986,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -317033,6 +320082,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -317128,6 +320178,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -317223,6 +320274,7 @@
"ItemStatsRef": "",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": null,
"CanReplaceGem": null,
"Perk1": "",
@@ -317318,6 +320370,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -317413,6 +320466,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -317508,6 +320562,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -317603,6 +320658,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -317698,6 +320754,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -317793,6 +320850,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -317888,6 +320946,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -317983,6 +321042,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -318078,6 +321138,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -318173,6 +321234,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -318268,6 +321330,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -318363,6 +321426,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -318458,6 +321522,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -318553,6 +321618,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -318648,6 +321714,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -318743,6 +321810,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -318838,6 +321906,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -318933,6 +322002,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -319028,6 +322098,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -319123,6 +322194,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -319218,6 +322290,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -319313,6 +322386,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -319408,6 +322482,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -319503,6 +322578,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -319598,6 +322674,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -319693,6 +322770,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -319788,6 +322866,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -319883,6 +322962,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -319978,6 +323058,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -320073,6 +323154,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -320168,6 +323250,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -320263,6 +323346,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -320358,6 +323442,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -320453,6 +323538,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -320548,6 +323634,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -320643,6 +323730,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -320738,6 +323826,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -320833,6 +323922,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -320928,6 +324018,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -321023,6 +324114,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -321118,6 +324210,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -321213,6 +324306,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -321308,6 +324402,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -321403,6 +324498,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -321498,6 +324594,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -321593,6 +324690,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandSoldier",
@@ -321688,6 +324786,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -321783,6 +324882,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -321878,6 +324978,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -321973,6 +325074,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -322068,6 +325170,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -322163,6 +325266,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -322258,6 +325362,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -322353,6 +325458,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -322448,6 +325554,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -322543,6 +325650,7 @@
"ItemStatsRef": "1hShieldAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandSoldier",
@@ -322563,8 +325671,8 @@
"IconCaptureGroup": "RoundShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
"ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
@@ -322638,6 +325746,7 @@
"ItemStatsRef": "1hShieldBT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandSoldier",
@@ -322657,8 +325766,8 @@
"UseMagicAffix": true,
"IconCaptureGroup": "KiteShield",
"UiItemClass": "UI_Weapon",
- "RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
+ "RDyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
"BDyeSlotDisabled": true,
"ADyeSlotDisabled": true,
"ArmorAppearanceM": "",
@@ -322733,6 +325842,7 @@
"ItemStatsRef": "1hShieldDT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandSoldier",
@@ -322753,9 +325863,9 @@
"IconCaptureGroup": "TowerShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
- "ADyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
+ "ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
"WeaponAppearanceOverride": "1hTowerShieldT5",
@@ -322828,6 +325938,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -322923,6 +326034,7 @@
"ItemStatsRef": "VoidGauntletT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSoldier",
@@ -322969,8 +326081,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageSmall_LeatherT5",
- "CraftingRecipe": "SalvageSmall_LeatherT5",
+ "RepairRecipe": "SalvageLarge_LeatherT5",
+ "CraftingRecipe": "SalvageLarge_LeatherT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -323018,6 +326130,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -323113,6 +326226,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -323208,6 +326322,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -323303,6 +326418,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -323398,6 +326514,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -323493,6 +326610,7 @@
"ItemStatsRef": "MediumHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -323588,6 +326706,7 @@
"ItemStatsRef": "MediumChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -323683,6 +326802,7 @@
"ItemStatsRef": "MediumHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -323778,6 +326898,7 @@
"ItemStatsRef": "MediumLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -323873,6 +326994,7 @@
"ItemStatsRef": "MediumFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -323968,6 +327090,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -324063,6 +327186,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -324158,6 +327282,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -324253,6 +327378,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -324348,6 +327474,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -324443,6 +327570,7 @@
"ItemStatsRef": "HeavyHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -324538,6 +327666,7 @@
"ItemStatsRef": "HeavyChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -324633,6 +327762,7 @@
"ItemStatsRef": "HeavyHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -324728,6 +327858,7 @@
"ItemStatsRef": "HeavyLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -324823,6 +327954,7 @@
"ItemStatsRef": "HeavyFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -324918,6 +328050,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -325013,6 +328146,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -325108,6 +328242,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -325203,6 +328338,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -325298,6 +328434,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -325393,6 +328530,7 @@
"ItemStatsRef": "LightHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -325488,6 +328626,7 @@
"ItemStatsRef": "LightChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -325583,6 +328722,7 @@
"ItemStatsRef": "LightHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -325678,6 +328818,7 @@
"ItemStatsRef": "LightLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -325773,6 +328914,7 @@
"ItemStatsRef": "LightFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -325868,6 +329010,7 @@
"ItemStatsRef": "HeavyHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -325963,6 +329106,7 @@
"ItemStatsRef": "HeavyChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -326058,6 +329202,7 @@
"ItemStatsRef": "HeavyHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -326153,6 +329298,7 @@
"ItemStatsRef": "HeavyLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -326248,6 +329394,7 @@
"ItemStatsRef": "HeavyFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -326343,6 +329490,7 @@
"ItemStatsRef": "MediumHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -326438,6 +329586,7 @@
"ItemStatsRef": "MediumChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -326533,6 +329682,7 @@
"ItemStatsRef": "MediumHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -326628,6 +329778,7 @@
"ItemStatsRef": "MediumLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -326723,6 +329874,7 @@
"ItemStatsRef": "MediumFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -326818,6 +329970,7 @@
"ItemStatsRef": "LightHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -326913,6 +330066,7 @@
"ItemStatsRef": "LightChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -327008,6 +330162,7 @@
"ItemStatsRef": "LightHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -327103,6 +330258,7 @@
"ItemStatsRef": "LightLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -327198,6 +330354,7 @@
"ItemStatsRef": "LightFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSoldier",
@@ -327293,6 +330450,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -327388,6 +330546,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -327483,6 +330642,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -327578,6 +330738,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -327673,6 +330834,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -327768,6 +330930,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -327863,6 +331026,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -327958,6 +331122,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -328053,6 +331218,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -328148,6 +331314,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -328243,6 +331410,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -328338,6 +331506,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -328433,6 +331602,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -328528,6 +331698,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -328623,6 +331794,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -328718,6 +331890,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -328813,6 +331986,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -328908,6 +332082,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -329003,6 +332178,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -329098,6 +332274,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -329193,6 +332370,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -329288,6 +332466,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -329383,6 +332562,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -329478,6 +332658,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -329573,6 +332754,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -329668,6 +332850,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -329763,6 +332946,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -329858,6 +333042,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -329953,6 +333138,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -330048,6 +333234,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -330143,6 +333330,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -330238,6 +333426,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -330333,6 +333522,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -330428,6 +333618,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -330523,6 +333714,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -330618,6 +333810,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -330713,6 +333906,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -330808,6 +334002,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -330903,6 +334098,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -330998,6 +334194,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -331093,6 +334290,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -331188,6 +334386,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -331283,6 +334482,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -331378,6 +334578,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -331473,6 +334674,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -331568,6 +334770,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandRanger",
@@ -331663,6 +334866,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -331758,6 +334962,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -331853,6 +335058,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -331948,6 +335154,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -332043,6 +335250,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -332138,6 +335346,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -332233,6 +335442,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -332328,6 +335538,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -332423,6 +335634,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -332518,6 +335730,7 @@
"ItemStatsRef": "1hShieldAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandRanger",
@@ -332538,8 +335751,8 @@
"IconCaptureGroup": "RoundShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
"ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
@@ -332613,6 +335826,7 @@
"ItemStatsRef": "1hShieldBT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandRanger",
@@ -332632,8 +335846,8 @@
"UseMagicAffix": true,
"IconCaptureGroup": "KiteShield",
"UiItemClass": "UI_Weapon",
- "RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
+ "RDyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
"BDyeSlotDisabled": true,
"ADyeSlotDisabled": true,
"ArmorAppearanceM": "",
@@ -332708,6 +335922,7 @@
"ItemStatsRef": "1hShieldDT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandRanger",
@@ -332728,9 +335943,9 @@
"IconCaptureGroup": "TowerShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
- "ADyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
+ "ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
"WeaponAppearanceOverride": "1hTowerShieldT5",
@@ -332803,6 +336018,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -332898,6 +336114,7 @@
"ItemStatsRef": "VoidGauntletT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandRanger",
@@ -332944,8 +336161,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageSmall_LeatherT5",
- "CraftingRecipe": "SalvageSmall_LeatherT5",
+ "RepairRecipe": "SalvageLarge_LeatherT5",
+ "CraftingRecipe": "SalvageLarge_LeatherT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -332993,6 +336210,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -333088,6 +336306,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -333183,6 +336402,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -333278,6 +336498,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -333373,6 +336594,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -333468,6 +336690,7 @@
"ItemStatsRef": "MediumHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -333563,6 +336786,7 @@
"ItemStatsRef": "MediumChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -333658,6 +336882,7 @@
"ItemStatsRef": "MediumHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -333753,6 +336978,7 @@
"ItemStatsRef": "MediumLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -333848,6 +337074,7 @@
"ItemStatsRef": "MediumFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -333943,6 +337170,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -334038,6 +337266,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -334133,6 +337362,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -334228,6 +337458,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -334323,6 +337554,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -334418,6 +337650,7 @@
"ItemStatsRef": "HeavyHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -334513,6 +337746,7 @@
"ItemStatsRef": "HeavyChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -334608,6 +337842,7 @@
"ItemStatsRef": "HeavyHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -334703,6 +337938,7 @@
"ItemStatsRef": "HeavyLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -334798,6 +338034,7 @@
"ItemStatsRef": "HeavyFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -334893,6 +338130,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -334988,6 +338226,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -335083,6 +338322,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -335178,6 +338418,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -335273,6 +338514,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -335368,6 +338610,7 @@
"ItemStatsRef": "LightHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -335463,6 +338706,7 @@
"ItemStatsRef": "LightChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -335558,6 +338802,7 @@
"ItemStatsRef": "LightHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -335653,6 +338898,7 @@
"ItemStatsRef": "LightLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -335748,6 +338994,7 @@
"ItemStatsRef": "LightFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -335843,6 +339090,7 @@
"ItemStatsRef": "HeavyHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -335938,6 +339186,7 @@
"ItemStatsRef": "HeavyChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -336033,6 +339282,7 @@
"ItemStatsRef": "HeavyHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -336128,6 +339378,7 @@
"ItemStatsRef": "HeavyLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -336223,6 +339474,7 @@
"ItemStatsRef": "HeavyFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -336318,6 +339570,7 @@
"ItemStatsRef": "MediumHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -336413,6 +339666,7 @@
"ItemStatsRef": "MediumChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -336508,6 +339762,7 @@
"ItemStatsRef": "MediumHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -336603,6 +339858,7 @@
"ItemStatsRef": "MediumLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -336698,6 +339954,7 @@
"ItemStatsRef": "MediumFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -336793,6 +340050,7 @@
"ItemStatsRef": "LightHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -336888,6 +340146,7 @@
"ItemStatsRef": "LightChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -336983,6 +340242,7 @@
"ItemStatsRef": "LightHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -337078,6 +340338,7 @@
"ItemStatsRef": "LightLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -337173,6 +340434,7 @@
"ItemStatsRef": "LightFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorRanger",
@@ -337268,6 +340530,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -337363,6 +340626,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -337458,6 +340722,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -337553,6 +340818,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -337648,6 +340914,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -337743,6 +341010,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -337838,6 +341106,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -337933,6 +341202,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -338028,6 +341298,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -338123,6 +341394,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -338218,6 +341490,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -338313,6 +341586,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -338408,6 +341682,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -338503,6 +341778,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -338598,6 +341874,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -338693,6 +341970,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -338788,6 +342066,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -338883,6 +342162,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -338978,6 +342258,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -339073,6 +342354,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -339168,6 +342450,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -339263,6 +342546,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -339358,6 +342642,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -339453,6 +342738,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -339548,6 +342834,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -339643,6 +342930,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -339738,6 +343026,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -339833,6 +343122,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -339928,6 +343218,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -340023,6 +343314,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -340118,6 +343410,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -340213,6 +343506,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -340308,6 +343602,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -340403,6 +343698,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -340498,6 +343794,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -340593,6 +343890,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -340688,6 +343986,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -340783,6 +344082,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -340878,6 +344178,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -340973,6 +344274,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -341068,6 +344370,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -341163,6 +344466,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -341258,6 +344562,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -341353,6 +344658,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -341448,6 +344754,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -341543,6 +344850,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandScholar",
@@ -341638,6 +344946,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -341733,6 +345042,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -341828,6 +345138,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -341923,6 +345234,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -342018,6 +345330,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -342113,6 +345426,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -342208,6 +345522,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -342303,6 +345618,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -342398,6 +345714,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -342493,6 +345810,7 @@
"ItemStatsRef": "1hShieldAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandScholar",
@@ -342513,8 +345831,8 @@
"IconCaptureGroup": "RoundShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
"ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
@@ -342588,6 +345906,7 @@
"ItemStatsRef": "1hShieldBT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandScholar",
@@ -342607,8 +345926,8 @@
"UseMagicAffix": true,
"IconCaptureGroup": "KiteShield",
"UiItemClass": "UI_Weapon",
- "RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
+ "RDyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
"BDyeSlotDisabled": true,
"ADyeSlotDisabled": true,
"ArmorAppearanceM": "",
@@ -342683,6 +346002,7 @@
"ItemStatsRef": "1hShieldDT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandScholar",
@@ -342703,9 +346023,9 @@
"IconCaptureGroup": "TowerShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
- "ADyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
+ "ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
"WeaponAppearanceOverride": "1hTowerShieldT5",
@@ -342778,6 +346098,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -342873,6 +346194,7 @@
"ItemStatsRef": "VoidGauntletT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandScholar",
@@ -342919,8 +346241,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageSmall_LeatherT5",
- "CraftingRecipe": "SalvageSmall_LeatherT5",
+ "RepairRecipe": "SalvageLarge_LeatherT5",
+ "CraftingRecipe": "SalvageLarge_LeatherT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -342968,6 +346290,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -343063,6 +346386,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -343158,6 +346482,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -343253,6 +346578,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -343348,6 +346674,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -343443,6 +346770,7 @@
"ItemStatsRef": "MediumHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -343538,6 +346866,7 @@
"ItemStatsRef": "MediumChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -343633,6 +346962,7 @@
"ItemStatsRef": "MediumHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -343728,6 +347058,7 @@
"ItemStatsRef": "MediumLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -343823,6 +347154,7 @@
"ItemStatsRef": "MediumFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -343918,6 +347250,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -344013,6 +347346,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -344108,6 +347442,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -344203,6 +347538,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -344298,6 +347634,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -344393,6 +347730,7 @@
"ItemStatsRef": "HeavyHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -344488,6 +347826,7 @@
"ItemStatsRef": "HeavyChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -344583,6 +347922,7 @@
"ItemStatsRef": "HeavyHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -344678,6 +348018,7 @@
"ItemStatsRef": "HeavyLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -344773,6 +348114,7 @@
"ItemStatsRef": "HeavyFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -344868,6 +348210,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -344963,6 +348306,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -345058,6 +348402,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -345153,6 +348498,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -345248,6 +348594,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -345343,6 +348690,7 @@
"ItemStatsRef": "LightHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -345438,6 +348786,7 @@
"ItemStatsRef": "LightChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -345533,6 +348882,7 @@
"ItemStatsRef": "LightHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -345628,6 +348978,7 @@
"ItemStatsRef": "LightLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -345723,6 +349074,7 @@
"ItemStatsRef": "LightFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -345818,6 +349170,7 @@
"ItemStatsRef": "HeavyHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -345913,6 +349266,7 @@
"ItemStatsRef": "HeavyChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -346008,6 +349362,7 @@
"ItemStatsRef": "HeavyHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -346103,6 +349458,7 @@
"ItemStatsRef": "HeavyLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -346198,6 +349554,7 @@
"ItemStatsRef": "HeavyFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -346293,6 +349650,7 @@
"ItemStatsRef": "MediumHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -346388,6 +349746,7 @@
"ItemStatsRef": "MediumChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -346483,6 +349842,7 @@
"ItemStatsRef": "MediumHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -346578,6 +349938,7 @@
"ItemStatsRef": "MediumLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -346673,6 +350034,7 @@
"ItemStatsRef": "MediumFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -346768,6 +350130,7 @@
"ItemStatsRef": "LightHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -346863,6 +350226,7 @@
"ItemStatsRef": "LightChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -346958,6 +350322,7 @@
"ItemStatsRef": "LightHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -347053,6 +350418,7 @@
"ItemStatsRef": "LightLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -347148,6 +350514,7 @@
"ItemStatsRef": "LightFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorScholar",
@@ -347243,6 +350610,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -347338,6 +350706,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -347433,6 +350802,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -347528,6 +350898,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -347623,6 +350994,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -347718,6 +351090,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -347813,6 +351186,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -347908,6 +351282,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -348003,6 +351378,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -348098,6 +351474,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -348193,6 +351570,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -348288,6 +351666,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -348383,6 +351762,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -348478,6 +351858,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -348573,6 +351954,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -348668,6 +352050,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -348763,6 +352146,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -348858,6 +352242,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -348953,6 +352338,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -349048,6 +352434,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -349143,6 +352530,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -349238,6 +352626,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -349333,6 +352722,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -349428,6 +352818,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -349523,6 +352914,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -349618,6 +353010,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -349713,6 +353106,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -349808,6 +353202,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -349903,6 +353298,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -349998,6 +353394,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -350093,6 +353490,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -350188,6 +353586,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -350283,6 +353682,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -350378,6 +353778,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -350473,6 +353874,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -350568,6 +353970,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -350663,6 +354066,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -350758,6 +354162,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -350853,6 +354258,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -350948,6 +354354,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -351043,6 +354450,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -351138,6 +354546,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -351233,6 +354642,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -351328,6 +354738,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -351423,6 +354834,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -351518,6 +354930,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandSage",
@@ -351613,6 +355026,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -351708,6 +355122,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -351803,6 +355218,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -351898,6 +355314,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -351993,6 +355410,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -352088,6 +355506,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -352183,6 +355602,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -352278,6 +355698,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -352373,6 +355794,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -352468,6 +355890,7 @@
"ItemStatsRef": "1hShieldAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandSage",
@@ -352488,8 +355911,8 @@
"IconCaptureGroup": "RoundShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
"ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
@@ -352563,6 +355986,7 @@
"ItemStatsRef": "1hShieldBT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandSage",
@@ -352582,8 +356006,8 @@
"UseMagicAffix": true,
"IconCaptureGroup": "KiteShield",
"UiItemClass": "UI_Weapon",
- "RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
+ "RDyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
"BDyeSlotDisabled": true,
"ADyeSlotDisabled": true,
"ArmorAppearanceM": "",
@@ -352658,6 +356082,7 @@
"ItemStatsRef": "1hShieldDT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandSage",
@@ -352678,9 +356103,9 @@
"IconCaptureGroup": "TowerShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
- "ADyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
+ "ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
"WeaponAppearanceOverride": "1hTowerShieldT5",
@@ -352753,6 +356178,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -352848,6 +356274,7 @@
"ItemStatsRef": "VoidGauntletT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSage",
@@ -352894,8 +356321,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageSmall_LeatherT5",
- "CraftingRecipe": "SalvageSmall_LeatherT5",
+ "RepairRecipe": "SalvageLarge_LeatherT5",
+ "CraftingRecipe": "SalvageLarge_LeatherT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -352943,6 +356370,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -353038,6 +356466,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -353133,6 +356562,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -353228,6 +356658,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -353323,6 +356754,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -353418,6 +356850,7 @@
"ItemStatsRef": "MediumHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -353513,6 +356946,7 @@
"ItemStatsRef": "MediumChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -353608,6 +357042,7 @@
"ItemStatsRef": "MediumHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -353703,6 +357138,7 @@
"ItemStatsRef": "MediumLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -353798,6 +357234,7 @@
"ItemStatsRef": "MediumFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -353893,6 +357330,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -353988,6 +357426,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -354083,6 +357522,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -354178,6 +357618,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -354273,6 +357714,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -354368,6 +357810,7 @@
"ItemStatsRef": "HeavyHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -354463,6 +357906,7 @@
"ItemStatsRef": "HeavyChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -354558,6 +358002,7 @@
"ItemStatsRef": "HeavyHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -354653,6 +358098,7 @@
"ItemStatsRef": "HeavyLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -354748,6 +358194,7 @@
"ItemStatsRef": "HeavyFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -354843,6 +358290,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -354938,6 +358386,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -355033,6 +358482,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -355128,6 +358578,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -355223,6 +358674,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -355318,6 +358770,7 @@
"ItemStatsRef": "LightHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -355413,6 +358866,7 @@
"ItemStatsRef": "LightChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -355508,6 +358962,7 @@
"ItemStatsRef": "LightHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -355603,6 +359058,7 @@
"ItemStatsRef": "LightLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -355698,6 +359154,7 @@
"ItemStatsRef": "LightFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -355793,6 +359250,7 @@
"ItemStatsRef": "HeavyHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -355888,6 +359346,7 @@
"ItemStatsRef": "HeavyChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -355983,6 +359442,7 @@
"ItemStatsRef": "HeavyHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -356078,6 +359538,7 @@
"ItemStatsRef": "HeavyLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -356173,6 +359634,7 @@
"ItemStatsRef": "HeavyFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -356268,6 +359730,7 @@
"ItemStatsRef": "MediumHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -356363,6 +359826,7 @@
"ItemStatsRef": "MediumChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -356458,6 +359922,7 @@
"ItemStatsRef": "MediumHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -356553,6 +360018,7 @@
"ItemStatsRef": "MediumLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -356648,6 +360114,7 @@
"ItemStatsRef": "MediumFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -356743,6 +360210,7 @@
"ItemStatsRef": "LightHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -356838,6 +360306,7 @@
"ItemStatsRef": "LightChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -356933,6 +360402,7 @@
"ItemStatsRef": "LightHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -357028,6 +360498,7 @@
"ItemStatsRef": "LightLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -357123,6 +360594,7 @@
"ItemStatsRef": "LightFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSage",
@@ -357218,6 +360690,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -357313,6 +360786,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -357408,6 +360882,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -357503,6 +360978,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -357598,6 +361074,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -357693,6 +361170,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -357788,6 +361266,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -357883,6 +361362,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -357978,6 +361458,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -358073,6 +361554,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -358168,6 +361650,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -358263,6 +361746,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -358358,6 +361842,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -358453,6 +361938,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -358548,6 +362034,7 @@
"ItemStatsRef": "AmuletCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -358643,6 +362130,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -358738,6 +362226,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -358833,6 +362322,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -358928,6 +362418,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -359023,6 +362514,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -359118,6 +362610,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -359213,6 +362706,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -359308,6 +362802,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -359403,6 +362898,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -359498,6 +362994,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -359593,6 +363090,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -359688,6 +363186,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -359783,6 +363282,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -359878,6 +363378,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -359973,6 +363474,7 @@
"ItemStatsRef": "RingCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -360068,6 +363570,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -360163,6 +363666,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -360258,6 +363762,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -360353,6 +363858,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -360448,6 +363954,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -360543,6 +364050,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -360638,6 +364146,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -360733,6 +364242,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -360828,6 +364338,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -360923,6 +364434,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -361018,6 +364530,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -361113,6 +364626,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -361208,6 +364722,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -361303,6 +364818,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -361398,6 +364914,7 @@
"ItemStatsRef": "EarringCONT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": false,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -361493,6 +365010,7 @@
"ItemStatsRef": "SwordT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandSentry",
@@ -361588,6 +365106,7 @@
"ItemStatsRef": "RapierT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSentry",
@@ -361683,6 +365202,7 @@
"ItemStatsRef": "HatchetT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSentry",
@@ -361778,6 +365298,7 @@
"ItemStatsRef": "2HHammerT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSentry",
@@ -361873,6 +365394,7 @@
"ItemStatsRef": "2HAxeT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSentry",
@@ -361968,6 +365490,7 @@
"ItemStatsRef": "SpearT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSentry",
@@ -362063,6 +365586,7 @@
"ItemStatsRef": "BowT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSentry",
@@ -362158,6 +365682,7 @@
"ItemStatsRef": "MusketT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSentry",
@@ -362253,6 +365778,7 @@
"ItemStatsRef": "FireStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSentry",
@@ -362348,6 +365874,7 @@
"ItemStatsRef": "LifeStaffT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSentry",
@@ -362443,6 +365970,7 @@
"ItemStatsRef": "1hShieldAT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandSentry",
@@ -362463,8 +365991,8 @@
"IconCaptureGroup": "RoundShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
"ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
@@ -362538,6 +366066,7 @@
"ItemStatsRef": "1hShieldBT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandSentry",
@@ -362557,8 +366086,8 @@
"UseMagicAffix": true,
"IconCaptureGroup": "KiteShield",
"UiItemClass": "UI_Weapon",
- "RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
+ "RDyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
"BDyeSlotDisabled": true,
"ADyeSlotDisabled": true,
"ArmorAppearanceM": "",
@@ -362633,6 +366162,7 @@
"ItemStatsRef": "1hShieldDT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_OneHandSentry",
@@ -362653,9 +366183,9 @@
"IconCaptureGroup": "TowerShield",
"UiItemClass": "UI_Weapon",
"RDyeSlotDisabled": false,
- "GDyeSlotDisabled": false,
- "BDyeSlotDisabled": false,
- "ADyeSlotDisabled": true,
+ "GDyeSlotDisabled": true,
+ "BDyeSlotDisabled": true,
+ "ADyeSlotDisabled": false,
"ArmorAppearanceM": "",
"ArmorAppearanceF": "",
"WeaponAppearanceOverride": "1hTowerShieldT5",
@@ -362728,6 +366258,7 @@
"ItemStatsRef": "1hElementalGauntlet_IceT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSentry",
@@ -362823,6 +366354,7 @@
"ItemStatsRef": "VoidGauntletT5",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_TwoHandSentry",
@@ -362869,8 +366401,8 @@
"SalvageResources": true,
"IsRepairable": true,
"RepairDustModifier": 4,
- "RepairRecipe": "SalvageSmall_LeatherT5",
- "CraftingRecipe": "SalvageSmall_LeatherT5",
+ "RepairRecipe": "SalvageLarge_LeatherT5",
+ "CraftingRecipe": "SalvageLarge_LeatherT5",
"RepairGameEventID": "",
"SalvageGameEventID": "",
"SalvageAchievement": "",
@@ -362918,6 +366450,7 @@
"ItemStatsRef": "HeavyHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -363013,6 +366546,7 @@
"ItemStatsRef": "HeavyChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -363108,6 +366642,7 @@
"ItemStatsRef": "HeavyHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -363203,6 +366738,7 @@
"ItemStatsRef": "HeavyLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -363298,6 +366834,7 @@
"ItemStatsRef": "HeavyFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -363393,6 +366930,7 @@
"ItemStatsRef": "MediumHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -363488,6 +367026,7 @@
"ItemStatsRef": "MediumChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -363583,6 +367122,7 @@
"ItemStatsRef": "MediumHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -363678,6 +367218,7 @@
"ItemStatsRef": "MediumLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -363773,6 +367314,7 @@
"ItemStatsRef": "MediumFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -363868,6 +367410,7 @@
"ItemStatsRef": "LightHead_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -363963,6 +367506,7 @@
"ItemStatsRef": "LightChest_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -364058,6 +367602,7 @@
"ItemStatsRef": "LightHands_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -364153,6 +367698,7 @@
"ItemStatsRef": "LightLegs_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -364248,6 +367794,7 @@
"ItemStatsRef": "LightFeet_Balanced",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -364343,6 +367890,7 @@
"ItemStatsRef": "HeavyHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -364438,6 +367986,7 @@
"ItemStatsRef": "HeavyChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -364533,6 +368082,7 @@
"ItemStatsRef": "HeavyHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -364628,6 +368178,7 @@
"ItemStatsRef": "HeavyLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -364723,6 +368274,7 @@
"ItemStatsRef": "HeavyFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -364818,6 +368370,7 @@
"ItemStatsRef": "MediumHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -364913,6 +368466,7 @@
"ItemStatsRef": "MediumChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -365008,6 +368562,7 @@
"ItemStatsRef": "MediumHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -365103,6 +368658,7 @@
"ItemStatsRef": "MediumLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -365198,6 +368754,7 @@
"ItemStatsRef": "MediumFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -365293,6 +368850,7 @@
"ItemStatsRef": "LightHead_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -365388,6 +368946,7 @@
"ItemStatsRef": "LightChest_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -365483,6 +369042,7 @@
"ItemStatsRef": "LightHands_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -365578,6 +369138,7 @@
"ItemStatsRef": "LightLegs_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -365673,6 +369234,7 @@
"ItemStatsRef": "LightFeet_Physical",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -365768,6 +369330,7 @@
"ItemStatsRef": "HeavyHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -365863,6 +369426,7 @@
"ItemStatsRef": "HeavyChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -365958,6 +369522,7 @@
"ItemStatsRef": "HeavyHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -366053,6 +369618,7 @@
"ItemStatsRef": "HeavyLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -366148,6 +369714,7 @@
"ItemStatsRef": "HeavyFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -366243,6 +369810,7 @@
"ItemStatsRef": "MediumHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -366338,6 +369906,7 @@
"ItemStatsRef": "MediumChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -366433,6 +370002,7 @@
"ItemStatsRef": "MediumHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -366528,6 +370098,7 @@
"ItemStatsRef": "MediumLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -366623,6 +370194,7 @@
"ItemStatsRef": "MediumFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -366718,6 +370290,7 @@
"ItemStatsRef": "LightHead_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -366813,6 +370386,7 @@
"ItemStatsRef": "LightChest_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -366908,6 +370482,7 @@
"ItemStatsRef": "LightHands_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -367003,6 +370578,7 @@
"ItemStatsRef": "LightLegs_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
@@ -367098,6 +370674,7 @@
"ItemStatsRef": "LightFeet_Elemental",
"GrantsHWMBump": "",
"IgnoreNameChanges": null,
+ "IgnoreHWMScaling": "",
"CanHavePerks": true,
"CanReplaceGem": true,
"Perk1": "PerkID_Stat_ArmorSentry",
diff --git a/NewWorldCompanion.Services/Data/javelindata_itemdefinitions_master.loc.xml b/NewWorldCompanion.Services/Data/javelindata_itemdefinitions_master.loc.xml
index 9c9c265..cf46d1b 100644
--- a/NewWorldCompanion.Services/Data/javelindata_itemdefinitions_master.loc.xml
+++ b/NewWorldCompanion.Services/Data/javelindata_itemdefinitions_master.loc.xml
@@ -943,6 +943,8 @@
A leather-bound notebook, filled with pages of detailed drawings, intricate notes, and calculations.
Satchel of Samples
A organized, yet random, assortment of leaves, twigs, and rocks.
+ Maddix's Report
+ Head Scout Maddix's final notes during the defense of Bullrush Wash
Cooper's Soil
A bag full of soil collected from Cooper's Ranch.
Merrill's Soil
@@ -2096,7 +2098,7 @@
An Ice Gauntlet that has been used by the Lost for some time.
Forsaken Ice Gauntlet
A weapon won through Outpost Rush.
- Outpost Ice Gauntlet
+ Rusher Ice Gauntlet
You can feel the cold hand of death reaching for the bones.
Primordial Ice Gauntlet
"The Siren's haunting voice echoes in your mind, her frozen tones ring out brittly."
@@ -2542,13 +2544,13 @@
The crushing strength of the deepest void.
Fist of Midnight Depths
"Wet dog smells great compared to wet, deceased pirate."
- Soaked Ice Gauntlet
+ Soaked Void Gauntlet
"Wet dog smells great compared to wet, deceased pirate."
- Soaked Ice Gauntlet
+ Soaked Void Gauntlet
"Wet dog smells great compared to wet, deceased pirate."
- Soaked Ice Gauntlet
+ Soaked Void Gauntlet
"Wet dog smells great compared to wet, deceased pirate."
- Soaked Ice Gauntlet
+ Soaked Void Gauntlet
A Void Gauntlet found in the depths of Amrine Temple.
Amrine Temple Void Gauntlet
A Void Gauntlet found in the Shattered Obelisk.
@@ -2578,7 +2580,7 @@
A weapon that seems to have been wielded by the Lost at some point in its history.
Forsaken Void Gauntlet
A weapon won through Outpost Rush.
- Outpost Void Gauntlet
+ Rusher Void Gauntlet
"The strong bones it's shaped from hints at the power within"
Primordial Void Gauntlet
The Siren's haunting voice echoes in your mind, a reminder of what you've lost by coming to Aeternum
@@ -5320,7 +5322,6 @@
Starmetal Logging Axe
2-Handed. A Logging Axe made of Orichalcum. Used to gather trees.
Orichalcum Logging Axe
- "A true warrior would have immediately asked about the little red lever on the side of the gun."
"Particularly good at piercing knee armor."
Adventurer's Bane
Alvar's heartpiercing bow. Reliable and accurate.
@@ -7551,7 +7552,7 @@
"Karl never gave orders without having his Appointed Negotiator around. It never failed to stop arguments before they started."
Appointed Negotiator
"Aeternum is an archaeologist's paradise with ruins galore to explore."
- Archaelogist's Defender
+ Archaeologist's Defender
"Mages specialize in a variety of magics, but those who favor frost have found spears to be an effective conduit for their spells."
Archon's Frozen Spear
"Brimming with pure azoth infusion, this spear is bursting at the seams with raw energy."
@@ -10074,6 +10075,12 @@
A recipe for plant food
A bloody report on the invaders, for Survivalist Riches
Scout Desdemona's Report
+ Varangian Activity Report
+ Detailed notes regarding deployment and logistics for the Varangian groups throughout the island
+ Scout Romac's Pack
+ A traveling satchel filled with an assortment of useful tools for any situation
+ Scout Romac's Notebook
+ Loose-bound pages with detailed notes on ruins, artifacts, and writings found on Aeternum
Crafting item with an attunement to the Durable perk.
Sliver of Adamant
Crafting item with an attunement to the Durable perk.
@@ -10251,7 +10258,7 @@
Earned through stalwart action in outpost contests.
Outpost Amulet
Earned through stalwart action in outpost contests.
- Outpost Amulet
+ Rusher Amulet
"Distilled from thoughts and beliefs over a lifetime, and frozen in stone."
Purified Sentiment
A well-made amulet. It will serve you as well as it served its previous wearer.
@@ -11044,12 +11051,12 @@
Campfire T2
USE: Place a Portable Workbench that is able to craft ammunitiion, basic potions, and repair any items here.
Portable Workbench
- A warm and cozy haven.
- Fine Cloth Camp Skin
- Protect yourself from the icy winters of Aeternum in a standing tent.
- Winter Star
- Enjoy the view in elegant style with this standing tent.
- Winter Opulence
+ A warm and cozy haven.
+ Fine Cloth Camp Skin
+ Protect yourself from the icy winters of Aeternum in a standing tent.
+ Winter Star
+ Enjoy the view in elegant style with this standing tent.
+ Winter Opulence
Craft basic supplies and create a respawn point here.
Camp Tier <font face="lyshineui/fonts/CaslonAnt.font">1</font>
Craft basic supplies and create a respawn point here.
@@ -12180,7 +12187,7 @@
Coin
Crafting item with an attunement to the Blessed perk.
Sliver of Crystalized Azoth
- Crafting item with an attunement to the Blessed perk.
+ Crafting item with an attunement to the Divine perk.
Shard of Crystalized Azoth
Crafting item with an attunement to the Mortal Lifesteal perk.
Chunk of Crystalized Azoth
@@ -12972,7 +12979,7 @@
Earned through stalwart action in outpost contests.
Outpost Earring
Earned through stalwart action in outpost contests.
- Outpost Earring
+ Rusher Earring
"A petal from the flower of the sword tree"
Pedal
"Be the chaos you want to see in the world."
@@ -13197,7 +13204,7 @@
Misty Kismet Charm
Rudiger's Sail Hook
Seeker's Found Mascot
- Starbound Rememberence Charm
+ Starbound Rememberence Charm
Tarot's Ritual Trinket
The Ad Ventura's Charm
The Beast in the Bulrush Trinket
@@ -13582,11 +13589,11 @@
Strong Lost Coating
USE: Apply to currently drawn weapon. Gives +13% damage against Lost. Lasts for {[ConsumableItemDefinitions.CoatingLostT4.DurationOverrides / 60]} minutes or upon unequip, whichever comes first. Only one Coating may be applied to a weapon at a time.
Powerful Lost Coating
- USE: Restore a {[StatusEffects.PotionHealT2.Health]} health + {[StatusEffects.PotionHealT2.HealthModifierPercent * 100]}% of your max health.
+ USE: Restore {[StatusEffects.PotionHealT2.Health]} health + {[StatusEffects.PotionHealT2.HealthModifierPercent * 100]}% of your max health.
Common Healing Elixir
- USE: Restore a {[StatusEffects.PotionHealT3.Health]} health + {[StatusEffects.PotionHealT3.HealthModifierPercent * 100]}% of your max health.
+ USE: Restore {[StatusEffects.PotionHealT3.Health]} health + {[StatusEffects.PotionHealT3.HealthModifierPercent * 100]}% of your max health.
Strong Healing Elixir
- USE: Restore a {[StatusEffects.PotionHealT4.Health]} health + {[StatusEffects.PotionHealT4.HealthModifierPercent * 100]}% of your max health.
+ USE: Restore {[StatusEffects.PotionHealT4.Health]} health + {[StatusEffects.PotionHealT4.HealthModifierPercent * 100]}% of your max health.
Powerful Healing Elixir
USE: Restore a moderate portion of your Mana.
Common Mana Elixir
@@ -18675,7 +18682,7 @@
Molten Rune
A fancy shell used to craft a Siren Tuning Orb and can be found on creatures around Siren's Stand in Reekwater.
Fancy Shell
- This Tuning Orb grants acces to any Mutated Expedition in Aeternum.
+ This Tuning Orb grants access to any Mutated Expedition in Aeternum.
Mutated Expedition Tuning Orb
A pure energy core. This item is used to craft Tuning Orb to allow access to expeditions.
Energy Core
@@ -24284,7 +24291,7 @@
Ursine Summoning Stone
Summons a Bear Guardian.
Brute Summoning Stone
- Summons an Undead Brute Guardian.
+ Summons a Corrupted Brute Guardian.
Wraith Summoning Stone
Summons a Wraith Guardian.
A sweet citrus fruit.
@@ -25837,7 +25844,7 @@
Earned through stalwart action in outpost contests.
Outpost Ring
Earned through stalwart action in outpost contests.
- Outpost Ring
+ Rusher Ring
A ring made of petrified…something…
Petrified Ring
"Only truth can stop propergration of false ideas."
@@ -26115,8 +26122,7 @@
Saint Hernigus' Crystal Signet
Saint's Pilgramage Hoop
The Incubus Hoop
- Signet Ring of the Forger
- The Ring of the Forger's Signet
+ Signet Ring of the Forger
Thrifter's Lost Diamond
Herald's Finger Curse
Traveller's Solace Band
@@ -26509,7 +26515,7 @@
The armor seems to sculpt itself against the wearer's body like a second skin for ultimate stealth.
Jadeite Assassin Chestpiece
For those unafraid of getting their gloves dirty with the salt of the earth.
- Mining Master's Hat
+ Mining Master's Apron
"One last thing before you go… your purse."
Robin Hood Coat
Cloaked in red and gold, the specter of the grave seeks hearts to collect.
@@ -26522,7 +26528,7 @@
The Royal Fisher Coat
For those who find themselves lost in frequent bouts of admiration and swooning.
Fool For Love Chest
- Upon donning this armor your chest swells with the urge to protect the innocent, the unguarded, and the lovers of the world.
+ Upon donning this armor, your chest swells with the urge to protect the innocent, the unguarded, and the lovers of the world.
Knight of Devotion Chest
True art is never understood in its own time.
Court Couture Tunic
@@ -26570,7 +26576,7 @@
The Royal Fisher Shoes
For those who find themselves lost in frequent bouts of admiration and swooning.
Fool For Love Feet
- Upon donning this armor your chest swells with the urge to protect the innocent, the unguarded, and the lovers of the world.
+ Upon donning this armor, your chest swells with the urge to protect the innocent, the unguarded, and the lovers of the world.
Knight of Devotion Feet
True art is never understood in its own time.
Court Couture Shoes
@@ -26624,7 +26630,7 @@
The Royal Fisher Gloves
For those who find themselves lost in frequent bouts of admiration and swooning.
Fool For Love Gloves
- Upon donning this armor your chest swells with the urge to protect the innocent, the unguarded, and the lovers of the world.
+ Upon donning this armor, your chest swells with the urge to protect the innocent, the unguarded, and the lovers of the world.
Knight of Devotion Gloves
True art is never understood in its own time.
Court Couture Lofe
@@ -26663,7 +26669,7 @@
The armor seems to sculpt itself against the wearer's body like a second skin for ultimate stealth.
Jadeite Assassin Hat
For those unafraid of getting their gloves dirty with the salt of the earth.
- Mining Master's Apron
+ Mining Master's Hat
"One last thing before you go… your purse."
Robin Hood Helm
Cloaked in red and gold, the specter of the grave seeks hearts to collect.
@@ -26676,7 +26682,7 @@
The Royal Fisher Hat
For those who find themselves lost in frequent bouts of admiration and swooning.
Fool For Love Hat
- Upon donning this armor your chest swells with the urge to protect the innocent, the unguarded, and the lovers of the world.
+ Upon donning this armor, your chest swells with the urge to protect the innocent, the unguarded, and the lovers of the world.
Knight of Devotion Helm
True art is never understood in its own time.
Court Couture Hat
@@ -26774,7 +26780,7 @@
The Royal Fisher Pants
For those who find themselves lost in frequent bouts of admiration and swooning.
Fool For Love Pants
- Upon donning this armor your chest swells with the urge to protect the innocent, the unguarded, and the lovers of the world.
+ Upon donning this armor, your chest swells with the urge to protect the innocent, the unguarded, and the lovers of the world.
Knight of Devotion Pants
True art is never understood in its own time.
Court Couture Hose
@@ -26826,7 +26832,7 @@
Harvest's Wealth
A knife for dressing the animals of Aeternum in style.
Resplendent Ripper
- Darkness lies within the glint of gold.
+ "Darkness lies within the glint of gold."
Void's Golden Touch
Energy currents run through this piece of facial wear, giving the wearer the apperance of being a little more magical than they really are.
Elemental Mask
@@ -26932,7 +26938,7 @@
Lavender Blossom
"A blossoming bulwark for defending against all blows."
Gaia Disc
- "To protect from wickedness and champion purity one must have a proper shield."
+ "To protect from wickedness and champion purity, one must have a proper shield."
Angelic Bulwark
"A guard as mighty and florid as a palace garden wall."
Garden Wall
@@ -27262,7 +27268,7 @@
Toadpot
The fringe from the edge of a toadstool, carefully scraped.
Toadstool Fringe
- One of the many resources unique to Aeternum, this metal is to brittle to use as the basis for a weapon or armor. However, as a cutting edge or a weighted core it is unmatched.
+ One of the many resources unique to Aeternum, this metal is too brittle to use as the basis for a weapon or armor. However, as a cutting edge or a weighted core it is unmatched.
Tolvium
The most savory fruit.
Tomato
@@ -27581,7 +27587,7 @@
Umbral Crystal
Open this Geode to receive the powerful contents within.
Umbral Geode
- An Azoth shard that pulses with a dark energy. It doesn't seem to be corrupted…but is it? Drag and drop onto a piece of equipment that is 590 Gear Score or higher.
+ An Azoth shard that can be used to upgrade any piece of equipment that is 590 Gear Score or higher.\n\nTo use: Select the item to upgrade and click the <font color="#eaeaea">Upgrade</font> button.
Umbral Shard
Unarmed
Unarmed
@@ -27785,7 +27791,7 @@
Whisperwood
"Power corrupts. The Wicked Tyrant gets you that kind of power."
Wicked Tyrant
- Wildwood got its name because it doesn't just grow up, it grows in everydirection.
+ Wildwood got its name because it doesn't just grow up, it grows in every direction.
Wildwood
Tier 2 Grain Mill. Refines Grain into animal Feed.
Grain Mill T2
@@ -28372,5 +28378,47 @@
A bag filled with coins and berries
Juniper Berry
A dark blue berry with a strong spicey smell.
+ Ficus Breastplate
+ You feel ready to refulgently repose on a radiant rock.
+ Ficus Breastplate
+ You feel ready to refulgently repose on a radiant rock.
+ Ficus Breastplate
+ You feel ready to refulgently repose on a radiant rock.
+ Ficus Breastplate
+ You feel ready to refulgently repose on a radiant rock.
+ Ficus Breastplate
+ You feel ready to refulgently repose on a radiant rock.
+ REPLACEME
+ REPLACEME
+ REPLACEME
+ REPLACEME
+ REPLACEME
+ REPLACEME
+ REPLACEME
+ REPLACEME
+ Cultist's Dress
+ With heavy hands and a heavier heart you clothe yourself in sin.
+ Cultist's Work Gloves
+ Hardened leather keeps your hands protected while performing your duties.
+ Cultist Talisman
+ A symbolic talisman worn on the ear so as to be easily seen. This signifies your status in the Cult of Renewal
+ The Mine's Spoils
+ Open this to receive a few items you... liberated, on your way out of the mine.
+ Your cut
+ A small payment for an expensive silence.
+ Your Payment
+ You feel it dragging you down.
+ Mushroomy Box
+ A few treats you grabbed from a box of mushrooms and mushroom accessories.
+ Mushroom Gift
+ A gift given from a friend with a mycelical profundity.
+ Bag of Herbs
+ A gift given for rescuing a waylaid traveler.
+ Dirty Coin bag
+ A small bag filled with dirty coins.
+ Angry Earth's Warning
+ What was previously a standard hunter's bow has been warped by the Land. It serves as a reminder to its wielder to fear the Earth.
+ Royal Executioner's Axe
+ With the fall of this blade I pray that this sinner be redeemed.
diff --git a/NewWorldCompanion.Services/HttpClientHandler.cs b/NewWorldCompanion.Services/HttpClientHandler.cs
new file mode 100644
index 0000000..02881f7
--- /dev/null
+++ b/NewWorldCompanion.Services/HttpClientHandler.cs
@@ -0,0 +1,71 @@
+using NewWorldCompanion.Interfaces;
+using Prism.Events;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net.Http;
+using System.Net.Http.Headers;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace NewWorldCompanion.Services
+{
+ public class HttpClientHandler : IHttpClientHandler
+ {
+ private readonly IEventAggregator _eventAggregator;
+
+ // HttpClient is intended to be instantiated once per application, rather than per-use.
+ static readonly HttpClient _client = new HttpClient();
+
+ // Start of Constructor region
+
+ #region Constructor
+
+ public HttpClientHandler(IEventAggregator eventAggregator)
+ {
+ // Init IEventAggregator
+ _eventAggregator = eventAggregator;
+
+ // Config client
+ //_client.DefaultRequestHeaders.Clear();
+ //_client.DefaultRequestHeaders.Add("Cache-Control", "no-cache");
+ _client.DefaultRequestHeaders.CacheControl = new CacheControlHeaderValue
+ {
+ NoCache = true
+ };
+ _client.DefaultRequestHeaders.Add("X-Requested-With", "XMLHttpRequest");
+ }
+
+ #endregion
+
+ // Start of Properties region
+
+ #region Properties
+
+ #endregion
+
+ // Start of Events region
+
+ #region Events
+
+ #endregion
+
+ // Start of Methods region
+
+ #region Methods
+
+ public async Task GetRequest(string uri)
+ {
+ try
+ {
+ return await _client.GetStringAsync(uri);
+ }
+ catch (Exception)
+ {
+ return string.Empty;
+ }
+ }
+
+ #endregion
+ }
+}
diff --git a/NewWorldCompanion.Services/NewWorldCompanion.Services.csproj b/NewWorldCompanion.Services/NewWorldCompanion.Services.csproj
index 26b778d..79904ee 100644
--- a/NewWorldCompanion.Services/NewWorldCompanion.Services.csproj
+++ b/NewWorldCompanion.Services/NewWorldCompanion.Services.csproj
@@ -17,6 +17,7 @@
+
diff --git a/NewWorldCompanion.Services/CraftingRecipeStore.cs b/NewWorldCompanion.Services/NewWorldDataStore.cs
similarity index 81%
rename from NewWorldCompanion.Services/CraftingRecipeStore.cs
rename to NewWorldCompanion.Services/NewWorldDataStore.cs
index 0e44d45..4d27928 100644
--- a/NewWorldCompanion.Services/CraftingRecipeStore.cs
+++ b/NewWorldCompanion.Services/NewWorldDataStore.cs
@@ -1,30 +1,32 @@
-using NewWorldCompanion.Entities;
+using NewWorldCompanion.Entities;
+using NewWorldCompanion.Helpers;
using NewWorldCompanion.Interfaces;
using Prism.Events;
using System;
using System.Collections.Generic;
-using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
+using System.Text;
using System.Text.Json;
+using System.Threading.Tasks;
using System.Xml.Linq;
namespace NewWorldCompanion.Services
{
- public class CraftingRecipeStore : ICraftingRecipeStore
+ public class NewWorldDataStore : INewWorldDataStore
{
private readonly IEventAggregator _eventAggregator;
- private List _craftingRecipesJson = new List();
private List _masterItemDefinitionsCraftingJson = new List();
+ private List _craftingRecipesJson = new List();
private Dictionary _itemDefinitionsLocalisation = new Dictionary();
// Start of Constructor region
#region Constructor
- public CraftingRecipeStore(IEventAggregator eventAggregator)
+ public NewWorldDataStore(IEventAggregator eventAggregator)
{
// Init IEventAggregator
_eventAggregator = eventAggregator;
@@ -39,7 +41,7 @@ public CraftingRecipeStore(IEventAggregator eventAggregator)
#region Properties
- //public List CraftingRecipes { get => _craftingRecipes; set => _craftingRecipes = value; }
+
#endregion
@@ -52,29 +54,37 @@ private void UpdateStoreData()
var assembly = Assembly.GetExecutingAssembly();
string resourcePath = string.Empty;
- // CraftingRecipe Json
- _craftingRecipesJson.Clear();
- resourcePath = "CraftingRecipes.json";
+ // MasterItemDefinitionsCrafting Json
+ _masterItemDefinitionsCraftingJson.Clear();
+ resourcePath = "MasterItemDefinitions_Crafting.json";
resourcePath = assembly.GetManifestResourceNames().Single(str => str.EndsWith(resourcePath));
using (Stream? stream = assembly.GetManifestResourceStream(resourcePath))
{
if (stream != null)
{
- _craftingRecipesJson = JsonSerializer.Deserialize>(stream) ?? new List();
- _craftingRecipesJson.RemoveAll(r => string.IsNullOrWhiteSpace(r.RequiredAchievementID));
+ // create the options
+ var options = new JsonSerializerOptions()
+ {
+ WriteIndented = true
+ };
+ // register the converter
+ options.Converters.Add(new BoolConverter());
+
+ _masterItemDefinitionsCraftingJson = JsonSerializer.Deserialize>(stream, options) ?? new List();
+ _masterItemDefinitionsCraftingJson.RemoveAll(item => item.BindOnPickup);
}
}
- // MasterItemDefinitionsCrafting Json
- _masterItemDefinitionsCraftingJson.Clear();
- resourcePath = "MasterItemDefinitions_Crafting.json";
+ // CraftingRecipe Json
+ _craftingRecipesJson.Clear();
+ resourcePath = "CraftingRecipes.json";
resourcePath = assembly.GetManifestResourceNames().Single(str => str.EndsWith(resourcePath));
using (Stream? stream = assembly.GetManifestResourceStream(resourcePath))
{
if (stream != null)
{
- _masterItemDefinitionsCraftingJson = JsonSerializer.Deserialize>(stream) ?? new List();
- _masterItemDefinitionsCraftingJson.RemoveAll(d => !_craftingRecipesJson.Any(r => r.RequiredAchievementID.Equals(d.SalvageAchievement, StringComparison.OrdinalIgnoreCase)));
+ _craftingRecipesJson = JsonSerializer.Deserialize>(stream) ?? new List();
+ _craftingRecipesJson.RemoveAll(r => string.IsNullOrWhiteSpace(r.RequiredAchievementID));
}
}
@@ -99,6 +109,7 @@ private void UpdateStoreData()
if (_masterItemDefinitionsCraftingJson.Any(d => d.Name?.Equals("@" + key, StringComparison.OrdinalIgnoreCase) ?? false))
{
_itemDefinitionsLocalisation.Add(key.ToLower(), value);
+
}
}
}
@@ -116,7 +127,7 @@ public List GetCraftingRecipes()
string localisationId = _masterItemDefinitionsCraftingJson.FirstOrDefault(d => d.SalvageAchievement.Equals(craftingRecipeJson.RequiredAchievementID, StringComparison.OrdinalIgnoreCase))?.Name ?? string.Empty;
string localisation = _itemDefinitionsLocalisation.GetValueOrDefault(localisationId.Trim(new char[] { '@' }).ToLower()) ?? localisationId.Trim(new char[] { '@' });
- if (!string.IsNullOrWhiteSpace(id) && !string.IsNullOrWhiteSpace(tradeskill) &&
+ if (!string.IsNullOrWhiteSpace(id) && !string.IsNullOrWhiteSpace(tradeskill) &&
!string.IsNullOrWhiteSpace(itemId) && !string.IsNullOrWhiteSpace(localisationId) && !string.IsNullOrWhiteSpace(localisation))
{
craftingRecipes.Add(new CraftingRecipe
@@ -125,13 +136,26 @@ public List GetCraftingRecipes()
ItemID = itemId,
Localisation = localisation,
Tradeskill = tradeskill
- });
+ });
}
}
return craftingRecipes;
}
+ public bool IsBindOnPickup(string itemName)
+ {
+ var localisationId = _itemDefinitionsLocalisation.FirstOrDefault(x => x.Value.Equals(itemName, StringComparison.OrdinalIgnoreCase)).Key;
+ var item = _masterItemDefinitionsCraftingJson.FirstOrDefault(i => i.Name.Equals($"@{localisationId}", StringComparison.OrdinalIgnoreCase));
+ if (item != null)
+ {
+ return item.BindOnPickup;
+ }
+ return true;
+ }
+
#endregion
+
+
}
}
diff --git a/NewWorldCompanion.Services/OcrHandler.cs b/NewWorldCompanion.Services/OcrHandler.cs
index b2adcdc..247667e 100644
--- a/NewWorldCompanion.Services/OcrHandler.cs
+++ b/NewWorldCompanion.Services/OcrHandler.cs
@@ -53,8 +53,7 @@ private void HandleOcrImageReadyEvent()
{
try
{
- //Image image = _screenProcessHandler.OcrImage;
- Image image = Image.FromFile(@"ocrimages\latest.png");
+ Image image = Image.FromFile(@"ocrimages\itemname.png");
Tesseract tesseract = new Tesseract();
OcrText = tesseract.Read(image).Trim().Replace('\n', ' ');
@@ -62,6 +61,7 @@ private void HandleOcrImageReadyEvent()
tesseract.Dispose();
_eventAggregator.GetEvent().Publish();
+ _eventAggregator.GetEvent().Publish();
}
catch (Exception)
{
diff --git a/NewWorldCompanion.Services/OverlayHandler.cs b/NewWorldCompanion.Services/OverlayHandler.cs
new file mode 100644
index 0000000..085687c
--- /dev/null
+++ b/NewWorldCompanion.Services/OverlayHandler.cs
@@ -0,0 +1,260 @@
+using GameOverlay.Drawing;
+using GameOverlay.Windows;
+using NewWorldCompanion.Entities;
+using NewWorldCompanion.Events;
+using NewWorldCompanion.Interfaces;
+using Prism.Events;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Threading;
+
+namespace NewWorldCompanion.Services
+{
+ public class OverlayHandler : IOverlayHandler
+ {
+ private readonly IEventAggregator _eventAggregator;
+ private readonly ICraftingRecipeManager _craftingRecipeManager;
+ private readonly INewWorldDataStore _newWorldDataStore;
+ private readonly IOcrHandler _ocrHandler;
+ private readonly IPriceManager _priceManager;
+ private readonly IScreenProcessHandler _screenProcessHandler;
+
+ private DispatcherTimer _timer = new();
+
+ private readonly GraphicsWindow _window;
+ private readonly Dictionary _brushes;
+ private readonly Dictionary _fonts;
+
+ private string _itemName = string.Empty;
+ private string _itemNamePrevious = string.Empty;
+ private int _overlayX = 0;
+ private int _overlayY = 0;
+ private int _overlayWidth = 0;
+ private int _overlayHeigth = 0;
+
+ // Start of Constructor region
+
+ #region Constructor
+
+ public OverlayHandler(IEventAggregator eventAggregator, ICraftingRecipeManager craftingRecipeManager, INewWorldDataStore newWorldDataStore,
+ IOcrHandler ocrHandler, IPriceManager priceManager, IScreenProcessHandler screenProcessHandler)
+ {
+ // Init IEventAggregator
+ _eventAggregator = eventAggregator;
+ _eventAggregator.GetEvent().Subscribe(HandleOcrTextReadyEvent);
+ _eventAggregator.GetEvent().Subscribe(HandleOverlayHideEvent);
+ _eventAggregator.GetEvent().Subscribe(HandleOverlayShowEvent);
+ _eventAggregator.GetEvent().Subscribe(HandleRoiImageReadyEvent);
+
+ // Init services
+ _craftingRecipeManager = craftingRecipeManager;
+ _newWorldDataStore = newWorldDataStore;
+ _ocrHandler = ocrHandler;
+ _priceManager = priceManager;
+ _screenProcessHandler = screenProcessHandler;
+
+ _brushes = new Dictionary();
+ _fonts = new Dictionary();
+
+ var gfx = new Graphics()
+ {
+ MeasureFPS = true,
+ PerPrimitiveAntiAliasing = true,
+ TextAntiAliasing = true
+ };
+
+ _window = new GraphicsWindow(0, 0, 400, 100, gfx)
+ {
+ FPS = 60,
+ IsTopmost = true,
+ IsVisible = true
+ };
+
+ _window.DestroyGraphics += DestroyGraphics;
+ _window.DrawGraphics += DrawGraphics;
+ _window.SetupGraphics += SetupGraphics;
+
+ // Start overlay task
+ _timer = new DispatcherTimer
+ {
+ Interval = TimeSpan.FromMilliseconds(100),
+ IsEnabled = true
+ };
+ _timer.Tick += Timer_Tick; ;
+ }
+
+ #endregion
+
+ // Start of Properties region
+
+ #region Properties
+
+ #endregion
+
+ // Start of Events region
+
+ #region Events
+
+ private void DestroyGraphics(object? sender, DestroyGraphicsEventArgs e)
+ {
+ foreach (var pair in _brushes) pair.Value.Dispose();
+ foreach (var pair in _fonts) pair.Value.Dispose();
+ }
+
+ private void DrawGraphics(object? sender, DrawGraphicsEventArgs e)
+ {
+ _window.X = _overlayX;
+ _window.Y = _overlayY;
+ _window.Width = _overlayWidth;
+ _window.Height = _overlayHeigth;
+
+ string itemName = _itemName;
+ // Workaround for recipe item names with three lines of text. Change back to Equals instead of StartsWith when OCR works with three lines.
+ var craftingRecipe = _craftingRecipeManager.CraftingRecipes.FirstOrDefault(r => r.Localisation.StartsWith(itemName, StringComparison.OrdinalIgnoreCase));
+
+ if (craftingRecipe != null)
+ {
+ DrawGraphicsRecipe(e, craftingRecipe);
+ }
+ else
+ {
+ DrawGraphicsItem(e, itemName);
+ }
+ }
+
+ private void DrawGraphicsItem(DrawGraphicsEventArgs e, string itemName)
+ {
+ NwmarketpriceJson nwmarketpriceJson = _priceManager.GetPriceData(itemName);
+
+ string infoItemName = itemName;
+ string infoPrice = string.IsNullOrWhiteSpace(nwmarketpriceJson.item_name) ? "Price: Loading..." : $"Price: {nwmarketpriceJson.recent_lowest_price}";
+ string infoPriceDate = string.IsNullOrWhiteSpace(nwmarketpriceJson.item_name) ? string.Empty : nwmarketpriceJson.last_checked;
+
+ // Do not show Bind on pickup items.
+ if (!_newWorldDataStore.IsBindOnPickup(itemName))
+ {
+ var gfx = e.Graphics;
+ gfx.ClearScene(_brushes["background"]);
+ gfx.DrawText(_fonts["consolas"], _brushes["text"], 20, 20, infoItemName);
+ gfx.DrawText(_fonts["consolas"], _brushes["text"], 20, 40, infoPrice);
+ gfx.DrawText(_fonts["consolas"], _brushes["text"], 20, 60, infoPriceDate);
+ gfx.DrawRectangle(_brushes["border"], 0, 0, _overlayWidth, _overlayHeigth, 1);
+ }
+ else
+ {
+ _window.Hide();
+ }
+ }
+
+ private void DrawGraphicsRecipe(DrawGraphicsEventArgs e, CraftingRecipe craftingRecipe)
+ {
+ NwmarketpriceJson nwmarketpriceJson = _priceManager.GetPriceData(craftingRecipe.Localisation);
+
+ bool learnedStatus = craftingRecipe.Learned;
+ string infoItemName = craftingRecipe.Localisation;
+ string infoLearned = $"Learned: {learnedStatus}";
+ string infoPrice = string.IsNullOrWhiteSpace(nwmarketpriceJson.item_name) ? "Price: Loading..." : $"Price: {nwmarketpriceJson.recent_lowest_price}";
+ string infoPriceDate = string.IsNullOrWhiteSpace(nwmarketpriceJson.item_name) ? string.Empty : nwmarketpriceJson.last_checked;
+
+ var gfx = e.Graphics;
+ gfx.ClearScene(_brushes["background"]);
+ gfx.DrawText(_fonts["consolas"], _brushes["text"], 20, 20, infoItemName);
+ gfx.DrawText(_fonts["consolas"], _brushes["text"], 20, 40, infoLearned);
+ gfx.DrawText(_fonts["consolas"], _brushes["text"], 20, 60, infoPrice);
+ gfx.DrawText(_fonts["consolas"], _brushes["text"], 20, 80, infoPriceDate);
+ gfx.DrawRectangle(_brushes["border"], 0, 0, _overlayWidth, _overlayHeigth, 1);
+ }
+
+ private void SetupGraphics(object? sender, SetupGraphicsEventArgs e)
+ {
+ var gfx = e.Graphics;
+
+ if (e.RecreateResources)
+ {
+ foreach (var pair in _brushes) pair.Value.Dispose();
+ }
+
+ _brushes["black"] = gfx.CreateSolidBrush(0, 0, 0);
+ _brushes["white"] = gfx.CreateSolidBrush(255, 255, 255);
+ _brushes["red"] = gfx.CreateSolidBrush(255, 0, 0);
+ _brushes["green"] = gfx.CreateSolidBrush(0, 255, 0);
+ _brushes["blue"] = gfx.CreateSolidBrush(0, 0, 255);
+ _brushes["background"] = gfx.CreateSolidBrush(25, 25, 25);
+ _brushes["border"] = gfx.CreateSolidBrush(75, 75, 75);
+ _brushes["text"] = gfx.CreateSolidBrush(200, 200, 200);
+
+ if (e.RecreateResources) return;
+
+ _fonts["arial"] = gfx.CreateFont("Arial", 12);
+ _fonts["consolas"] = gfx.CreateFont("Consolas", 14);
+ }
+
+ private void Timer_Tick(object? sender, EventArgs e)
+ {
+ (sender as DispatcherTimer)?.Stop();
+ StartOverlay();
+ }
+
+ private void HandleOcrTextReadyEvent()
+ {
+ _itemName = _ocrHandler.OcrText;
+ if (!_itemName.Equals(_itemNamePrevious))
+ {
+ _priceManager.UpdatePriceData(_itemName);
+ _itemNamePrevious = _itemName;
+ }
+ }
+
+ private void HandleOverlayShowEvent()
+ {
+ // Event is triggered when OCR text is ready
+ if (_window.IsInitialized)
+ {
+ // Only show when item is valid.
+ // - Recipes
+ // - Tradable items
+ string itemName = _itemName;
+ var craftingRecipe = _craftingRecipeManager.CraftingRecipes.FirstOrDefault(r => r.Localisation.StartsWith(itemName, StringComparison.OrdinalIgnoreCase));
+ if (craftingRecipe != null || !_newWorldDataStore.IsBindOnPickup(itemName))
+ {
+ _window.Show();
+ }
+ }
+ }
+
+ private void HandleOverlayHideEvent()
+ {
+ if (_window.IsInitialized)
+ {
+ _window.Hide();
+ }
+ }
+
+ private void HandleRoiImageReadyEvent()
+ {
+ _overlayX = _screenProcessHandler.OverlayX;
+ _overlayY = _screenProcessHandler.OverlayY;
+ _overlayWidth = _screenProcessHandler.OverlayWidth;
+ _overlayHeigth = _screenProcessHandler.OverlayHeigth;
+ }
+
+ #endregion
+
+ // Start of Methods region
+ #region Methods
+
+ private async void StartOverlay()
+ {
+ await Task.Run(() =>
+ {
+ _window.Create();
+ _window.Join();
+ });
+ }
+
+ #endregion
+ }
+}
diff --git a/NewWorldCompanion.Services/PriceManager.cs b/NewWorldCompanion.Services/PriceManager.cs
new file mode 100644
index 0000000..7981afa
--- /dev/null
+++ b/NewWorldCompanion.Services/PriceManager.cs
@@ -0,0 +1,155 @@
+using NewWorldCompanion.Entities;
+using NewWorldCompanion.Interfaces;
+using Prism.Events;
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Linq;
+using System.Net.Http;
+using System.Text;
+using System.Text.Json;
+using System.Threading.Tasks;
+
+namespace NewWorldCompanion.Services
+{
+ public class PriceManager : IPriceManager
+ {
+ private readonly IEventAggregator _eventAggregator;
+ private readonly ISettingsManager _settingsManager;
+ private readonly IHttpClientHandler _httpClientHandler;
+
+ private Dictionary _itemMappings = new Dictionary();
+ private Dictionary _priceCache = new Dictionary();
+ private List _priceRequestQueue = new List();
+ private bool _priceRequestQueueBusy = false;
+ private List _servers = new List();
+
+ // Start of Constructor region
+
+ #region Constructor
+
+ public PriceManager(IEventAggregator eventAggregator, ISettingsManager settingsManager, IHttpClientHandler httpClientHandler)
+ {
+ // Init IEventAggregator
+ _eventAggregator = eventAggregator;
+
+ // Init services
+ _settingsManager = settingsManager;
+ _httpClientHandler = httpClientHandler;
+
+ // Init servers
+ _servers.Add(new PriceServer()
+ {
+ Id = "1",
+ Name = "Camelot"
+ });
+ _servers.Add(new PriceServer()
+ {
+ Id = "2",
+ Name = "El Dorado"
+ });
+
+ Task.Run(async () =>
+ {
+ try
+ {
+ string json = await _httpClientHandler.GetRequest("https://nwmarketprices.com/cn/") ?? string.Empty;
+ var root = JsonSerializer.Deserialize(json);
+ var mappings = JsonSerializer.Deserialize>>(root?.cn ?? string.Empty) ?? new List>();
+ foreach (var mapping in mappings)
+ {
+ string key = ((JsonElement)mapping[0]).GetString() ?? string.Empty;
+ int value = ((JsonElement)mapping[1]).GetInt32();
+
+ if (!string.IsNullOrWhiteSpace(key))
+ {
+ _itemMappings.TryAdd(key, value);
+ }
+ }
+ }
+ catch (Exception)
+ {
+
+ }
+ });
+ }
+
+ #endregion
+
+ // Start of Properties region
+
+ #region Properties
+
+ public string ServerId { get => _settingsManager.Settings.ServerId; }
+ public List Servers { get => _servers; set => _servers = value; }
+
+ #endregion
+
+ // Start of Events region
+
+ #region Events
+
+ #endregion
+
+ // Start of Methods region
+
+ #region Methods
+
+ public NwmarketpriceJson GetPriceData(string itemName)
+ {
+ var nwmarketpriceJson = new NwmarketpriceJson();
+ return _priceCache.GetValueOrDefault(itemName, nwmarketpriceJson); ;
+ }
+
+ public void UpdatePriceData(string itemName)
+ {
+ if (!_priceCache.ContainsKey(itemName))
+ {
+ if (!_priceRequestQueue.Contains(itemName)) _priceRequestQueue.Add(itemName);
+ if (!_priceRequestQueueBusy)
+ {
+ _priceRequestQueueBusy = true;
+ Task task = Task.Run(async () =>
+ {
+ bool isValid = _itemMappings.TryGetValue(itemName, out var itemId);
+ if (isValid)
+ {
+ try
+ {
+ string uri = $"https://nwmarketprices.com/{itemId}/{ServerId}?cn_id={itemId}";
+ string json = await _httpClientHandler.GetRequest(uri) ?? string.Empty;
+
+ var nwmarketpriceJson = JsonSerializer.Deserialize(json);
+ if (nwmarketpriceJson != null)
+ {
+ Debug.WriteLine($"item_name: {nwmarketpriceJson.item_name}");
+ Debug.WriteLine($"recent_lowest_price: {nwmarketpriceJson.recent_lowest_price}");
+ Debug.WriteLine($"last_checked: {nwmarketpriceJson.last_checked}");
+
+ _priceCache[itemName] = nwmarketpriceJson;
+ }
+ }
+ catch (Exception){};
+ }
+
+ // Always remove from queue, even with exceptions.
+ _priceRequestQueue.RemoveAll(item => item.Equals(itemName));
+ _priceRequestQueueBusy = false;
+ if (_priceRequestQueue.Any())
+ {
+ Task.Delay(100).Wait();
+ UpdatePriceData(_priceRequestQueue.First());
+ }
+ });
+ }
+ }
+ }
+
+ #endregion
+
+ private class RootCn
+ {
+ public string cn { get; set; } = string.Empty;
+ }
+ }
+}
diff --git a/NewWorldCompanion.Services/ScreenCaptureHandler.cs b/NewWorldCompanion.Services/ScreenCaptureHandler.cs
index 3d124a9..3c48190 100644
--- a/NewWorldCompanion.Services/ScreenCaptureHandler.cs
+++ b/NewWorldCompanion.Services/ScreenCaptureHandler.cs
@@ -19,9 +19,11 @@ public class ScreenCaptureHandler : IScreenCaptureHandler
private DispatcherTimer _captureTimer = new();
private DispatcherTimer _coordinatesTimer = new();
private Bitmap? _currentScreen = null;
- private int _delay = 200;
+ private int _delay = 100;
private int _delayCoordinates = 100;
private bool _isActive = true;
+ private int _offsetX = 0;
+ private int _offsetY = 0;
private ScreenCapture _screenCapture = new ScreenCapture();
// Start of Constructor region
@@ -62,6 +64,8 @@ public ScreenCaptureHandler(IEventAggregator eventAggregator)
public bool IsActive { get => _isActive; set => _isActive = value; }
public string MouseCoordinates { get; set; } = string.Empty;
public string MouseCoordinatesScaled { get; set; } = string.Empty;
+ public int OffsetX { get => _offsetX; set => _offsetX = value; }
+ public int OffsetY { get => _offsetY; set => _offsetY = value; }
#endregion
@@ -98,6 +102,8 @@ private async void StartCoordinatesTask()
private void ScreenCapture()
{
+ bool valid = false;
+
if (IsActive)
{
try
@@ -111,8 +117,9 @@ private void ScreenCapture()
if (windowHandle.ToInt64() > 0)
{
- _currentScreen = _screenCapture.GetScreenCaptureMouse(windowHandle) ?? _currentScreen;
+ _currentScreen = _screenCapture.GetScreenCaptureMouse(windowHandle, ref _offsetX, ref _offsetY) ?? _currentScreen;
_eventAggregator.GetEvent().Publish();
+ valid = true;
_captureTimer.Interval = TimeSpan.FromMilliseconds(Delay);
}
@@ -132,6 +139,11 @@ private void ScreenCapture()
_captureTimer.Interval = TimeSpan.FromMilliseconds(Delay * 10);
_captureTimer.Start();
}
+
+ if (!valid)
+ {
+ _eventAggregator.GetEvent().Publish();
+ }
}
private void UpdateCoordinates()
diff --git a/NewWorldCompanion.Services/ScreenProcessHandler.cs b/NewWorldCompanion.Services/ScreenProcessHandler.cs
index 370689d..d07073b 100644
--- a/NewWorldCompanion.Services/ScreenProcessHandler.cs
+++ b/NewWorldCompanion.Services/ScreenProcessHandler.cs
@@ -27,6 +27,11 @@ public class ScreenProcessHandler : IScreenProcessHandler
private Bitmap? _processedImage = null;
private Bitmap? _roiImage = null;
+ private int _overlayX = 0;
+ private int _overlayY = 0;
+ private int _overlayWidth = 0;
+ private int _overlayHeigth = 0;
+
// Start of Constructor region
#region Constructor
@@ -57,6 +62,10 @@ public ScreenProcessHandler(IEventAggregator eventAggregator, ISettingsManager s
public Bitmap? ProcessedImage { get => _processedImage; set => _processedImage = value; }
public Bitmap? RoiImage { get => _roiImage; set => _roiImage = value; }
public Bitmap? OcrImage { get => _roiImage; set => _roiImage = value; }
+ public int OverlayX { get => _overlayX; set => _overlayX = value; }
+ public int OverlayY { get => _overlayY; set => _overlayY = value; }
+ public int OverlayWidth { get => _overlayWidth; set => _overlayWidth = value; }
+ public int OverlayHeigth { get => _overlayHeigth; set => _overlayHeigth = value; }
#endregion
@@ -141,7 +150,12 @@ private void ProcessImage(Mat img)
((rec.Center.X - rotatedRec.Center.X > -2 && rec.Center.X - rotatedRec.Center.X < 2) || (rotatedRec.Center.X - rec.Center.X > -2 && rotatedRec.Center.X - rec.Center.X < 2)) &&
((rec.Center.Y - rotatedRec.Center.Y > -2 && rec.Center.Y - rotatedRec.Center.Y < 2) || (rotatedRec.Center.Y - rec.Center.Y > -2 && rotatedRec.Center.Y - rec.Center.Y < 2))))
{
- rectangleList.Add(rotatedRec);
+ // We only want squares
+ float ratio = rotatedRec.Size.Width / rotatedRec.Size.Height;
+ if (ratio > 0.8 && ratio < 1.2)
+ {
+ rectangleList.Add(rotatedRec);
+ }
}
}
}
@@ -169,6 +183,12 @@ private void ProcessImage(Mat img)
rectangleList[0].MinAreaRect().Height - 25
);
+ // Update overlay position
+ OverlayX = _screenCaptureHandler.OffsetX + rectangleList[0].MinAreaRect().X;
+ OverlayY = _screenCaptureHandler.OffsetY + rectangleList[0].MinAreaRect().Y - (rectangleList[0].MinAreaRect().Height + 12);
+ OverlayWidth = rectangleList[0].MinAreaRect().Width + (int)(rectangleList[0].MinAreaRect().Width * 3.25);
+ OverlayHeigth = rectangleList[0].MinAreaRect().Height;
+
try
{
crop = new Mat(img, roiRectangle);
@@ -176,7 +196,14 @@ private void ProcessImage(Mat img)
_eventAggregator.GetEvent().Publish();
ProcessImageOCR(crop);
}
- catch (Exception) { }
+ catch (Exception)
+ {
+ _eventAggregator.GetEvent().Publish();
+ }
+ }
+ else
+ {
+ _eventAggregator.GetEvent().Publish();
}
}
@@ -207,7 +234,7 @@ private void ProcessImageOCR(Mat img)
}
OcrImage = imgFilter.ToBitmap();
- imgFilter.Save(@"ocrimages\latest.png");
+ imgFilter.Save(@"ocrimages\itemname.png");
_eventAggregator.GetEvent().Publish();
}
catch (Exception) { }
diff --git a/NewWorldCompanion/App.xaml.cs b/NewWorldCompanion/App.xaml.cs
index eef3355..8528a0c 100644
--- a/NewWorldCompanion/App.xaml.cs
+++ b/NewWorldCompanion/App.xaml.cs
@@ -22,10 +22,13 @@ protected override void RegisterTypes(IContainerRegistry containerRegistry)
{
// Register services
containerRegistry.RegisterSingleton();
- containerRegistry.RegisterSingleton();
+ containerRegistry.RegisterSingleton();
containerRegistry.RegisterSingleton();
containerRegistry.RegisterSingleton();
+ containerRegistry.RegisterSingleton();
containerRegistry.RegisterSingleton();
+ containerRegistry.RegisterSingleton();
+ containerRegistry.RegisterSingleton();
containerRegistry.RegisterSingleton();
}
diff --git a/NewWorldCompanion/Converters/BooleanToVisibilityConverter.cs b/NewWorldCompanion/Converters/BooleanToVisibilityConverter.cs
new file mode 100644
index 0000000..5c2e1e0
--- /dev/null
+++ b/NewWorldCompanion/Converters/BooleanToVisibilityConverter.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Windows;
+using System.Windows.Data;
+
+namespace NewWorldCompanion.Converters
+{
+ [ValueConversion(typeof(bool), typeof(Visibility))]
+ public class BooleanToVisibilityConverter : IValueConverter
+ {
+ static BooleanToVisibilityConverter()
+ {
+ Instance = new BooleanToVisibilityConverter();
+ }
+
+ public static BooleanToVisibilityConverter Instance { get; private set; }
+
+ public object Convert(object aValue, Type aTargetType, object aParameter, System.Globalization.CultureInfo aCultureInfo)
+ {
+ return aValue != null && ((bool)aValue) ? Visibility.Visible : Visibility.Collapsed;
+ }
+
+ public object ConvertBack(object aValue, Type aTargetType, object aParameter, System.Globalization.CultureInfo aCultureInfo)
+ {
+ throw new NotImplementedException();
+ }
+ }
+}
\ No newline at end of file
diff --git a/NewWorldCompanion/ViewModels/MainWindowViewModel.cs b/NewWorldCompanion/ViewModels/MainWindowViewModel.cs
index 78d4c86..b1ac07c 100644
--- a/NewWorldCompanion/ViewModels/MainWindowViewModel.cs
+++ b/NewWorldCompanion/ViewModels/MainWindowViewModel.cs
@@ -1,30 +1,47 @@
-using Prism.Mvvm;
+using NewWorldCompanion.Interfaces;
+using Prism.Events;
+using Prism.Mvvm;
+using System;
+using System.Diagnostics;
+using System.Threading.Tasks;
namespace NewWorldCompanion.ViewModels
{
- internal class MainWindowViewModel : BindableBase
- {
- // Start of Constructor region
+ public class MainWindowViewModel : BindableBase
+ {
+ private readonly IEventAggregator _eventAggregator;
+ private readonly ISettingsManager _settingsManager;
+ private readonly IOverlayHandler _overlayHandler;
- #region Constructor
+ // Start of Constructor region
- public MainWindowViewModel()
- {
- }
+ #region Constructor
+
+ public MainWindowViewModel(IEventAggregator eventAggregator, ISettingsManager settingsManager, IOverlayHandler overlayHandler)
+ {
+ // Init IEventAggregator
+ _eventAggregator = eventAggregator;
- #endregion
+ // Init services
+ _settingsManager = settingsManager;
+ _overlayHandler = overlayHandler;
+ }
- // Start of Properties region
+ #endregion
- #region Properties
+ // Start of Properties region
- #endregion
+ #region Properties
- // Start of Methods region
+ public bool DebugModeActive { get => _settingsManager.Settings.DebugModeActive; }
- #region Methods
+ #endregion
- #endregion
+ // Start of Methods region
- }
+ #region Methods
+
+ #endregion
+
+ }
}
diff --git a/NewWorldCompanion/ViewModels/Tabs/Config/ConfigOverlayViewModel.cs b/NewWorldCompanion/ViewModels/Tabs/Config/ConfigOverlayViewModel.cs
new file mode 100644
index 0000000..e27f181
--- /dev/null
+++ b/NewWorldCompanion/ViewModels/Tabs/Config/ConfigOverlayViewModel.cs
@@ -0,0 +1,95 @@
+using NewWorldCompanion.Entities;
+using NewWorldCompanion.Interfaces;
+using Prism.Events;
+using Prism.Mvvm;
+using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace NewWorldCompanion.ViewModels.Tabs.Config
+{
+ public class ConfigOverlayViewModel : BindableBase
+ {
+ private readonly IEventAggregator _eventAggregator;
+ private readonly ISettingsManager _settingsManager;
+ private readonly IPriceManager _priceManager;
+
+ private ObservableCollection _servers = new ObservableCollection();
+
+ private int _serverIndex = 0;
+
+ // Start of Constructor region
+
+ #region Constructor
+
+ public ConfigOverlayViewModel(IEventAggregator eventAggregator, ISettingsManager settingsManager, IPriceManager priceManager)
+ {
+ // Init IEventAggregator
+ _eventAggregator = eventAggregator;
+
+ // Init services
+ _settingsManager = settingsManager;
+ _priceManager = priceManager;
+
+ // Init servers
+ updateServerList();
+ }
+
+ #endregion
+
+ // Start of Properties region
+
+ #region Properties
+
+ public ObservableCollection Servers { get => _servers; set => _servers = value; }
+
+ public int ServerIndex
+ {
+ get
+ {
+ return _serverIndex;
+ }
+ set
+ {
+ _serverIndex = value;
+ RaisePropertyChanged(nameof(ServerIndex));
+
+ if (_serverIndex >= 0 && Servers.Count > _serverIndex)
+ {
+ _settingsManager.Settings.ServerId = Servers[value].Id;
+ _settingsManager.SaveSettings();
+ }
+ }
+ }
+
+ #endregion
+
+ // Start of Events region
+
+ #region Events
+
+ #endregion
+
+ // Start of Methods region
+
+ #region Methods
+
+
+ private void updateServerList()
+ {
+ Servers.Clear();
+ Servers.AddRange(_priceManager.Servers);
+
+ int serverIndex = Servers.ToList().FindIndex(s => s.Id == _settingsManager.Settings.ServerId);
+ if (serverIndex != -1)
+ {
+ ServerIndex = serverIndex;
+ }
+ }
+
+ #endregion
+ }
+}
diff --git a/NewWorldCompanion/ViewModels/Tabs/Debug/DebugScreenProcessViewModel.cs b/NewWorldCompanion/ViewModels/Tabs/Debug/DebugScreenProcessViewModel.cs
index a7d5bc1..fe02014 100644
--- a/NewWorldCompanion/ViewModels/Tabs/Debug/DebugScreenProcessViewModel.cs
+++ b/NewWorldCompanion/ViewModels/Tabs/Debug/DebugScreenProcessViewModel.cs
@@ -57,6 +57,7 @@ public int AreaLower
RaisePropertyChanged(nameof(AreaLower));
}
}
+
public int AreaUpper
{
get => _settingsManager.Settings.EmguAreaUpper;
diff --git a/NewWorldCompanion/Views/MainWindow.xaml b/NewWorldCompanion/Views/MainWindow.xaml
index 3a4666e..c2f9b19 100644
--- a/NewWorldCompanion/Views/MainWindow.xaml
+++ b/NewWorldCompanion/Views/MainWindow.xaml
@@ -6,6 +6,7 @@
xmlns:local="clr-namespace:NewWorldCompanion"
xmlns:prism="http://prismlibrary.com/"
xmlns:mah="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
+ xmlns:converters="clr-namespace:NewWorldCompanion.Converters"
mc:Ignorable="d"
Title="New World Companion" Height="450" Width="800"
WindowStartupLocation="CenterScreen">
@@ -18,9 +19,12 @@
-
+
+
+
+
-
+
\ No newline at end of file
diff --git a/NewWorldCompanion/Views/MainWindow.xaml.cs b/NewWorldCompanion/Views/MainWindow.xaml.cs
index 43faff8..8a2a972 100644
--- a/NewWorldCompanion/Views/MainWindow.xaml.cs
+++ b/NewWorldCompanion/Views/MainWindow.xaml.cs
@@ -1,5 +1,6 @@
using MahApps.Metro.Controls;
using NewWorldCompanion.Views.Tabs;
+using NewWorldCompanion.Views.Tabs.Config;
using NewWorldCompanion.Views.Tabs.Debug;
using Prism.Regions;
using System;
@@ -39,6 +40,10 @@ public MainWindow(IRegionManager regionManager)
regionManager.RegisterViewWithRegion("DebugScreenCaptureView", typeof(DebugScreenCaptureView));
regionManager.RegisterViewWithRegion("DebugScreenProcessView", typeof(DebugScreenProcessView));
regionManager.RegisterViewWithRegion("DebugScreenOCRView", typeof(DebugScreenOCRView));
+ regionManager.RegisterViewWithRegion("ConfigView", typeof(ConfigView));
+ regionManager.RegisterViewWithRegion("ConfigOverlayView", typeof(ConfigOverlayView));
+ regionManager.RegisterViewWithRegion("ConfigScreenProcessView", typeof(DebugScreenProcessView));
+ regionManager.RegisterViewWithRegion("ConfigScreenOCRView", typeof(DebugScreenOCRView));
}
}
}
diff --git a/NewWorldCompanion/Views/Tabs/Config/ConfigOverlayView.xaml b/NewWorldCompanion/Views/Tabs/Config/ConfigOverlayView.xaml
new file mode 100644
index 0000000..27234fb
--- /dev/null
+++ b/NewWorldCompanion/Views/Tabs/Config/ConfigOverlayView.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/NewWorldCompanion/Views/Tabs/Config/ConfigOverlayView.xaml.cs b/NewWorldCompanion/Views/Tabs/Config/ConfigOverlayView.xaml.cs
new file mode 100644
index 0000000..58bfa69
--- /dev/null
+++ b/NewWorldCompanion/Views/Tabs/Config/ConfigOverlayView.xaml.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace NewWorldCompanion.Views.Tabs.Config
+{
+ ///
+ /// Interaction logic for ConfigOverlayView.xaml
+ ///
+ public partial class ConfigOverlayView : UserControl
+ {
+ public ConfigOverlayView()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/NewWorldCompanion/Views/Tabs/ConfigView.xaml b/NewWorldCompanion/Views/Tabs/ConfigView.xaml
new file mode 100644
index 0000000..405883c
--- /dev/null
+++ b/NewWorldCompanion/Views/Tabs/ConfigView.xaml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/NewWorldCompanion/Views/Tabs/ConfigView.xaml.cs b/NewWorldCompanion/Views/Tabs/ConfigView.xaml.cs
new file mode 100644
index 0000000..dd4a38d
--- /dev/null
+++ b/NewWorldCompanion/Views/Tabs/ConfigView.xaml.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace NewWorldCompanion.Views.Tabs
+{
+ ///
+ /// Interaction logic for ConfigView.xaml
+ ///
+ public partial class ConfigView : UserControl
+ {
+ public ConfigView()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/NewWorldCompanion/common.props b/NewWorldCompanion/common.props
index 55c8beb..4cc4511 100644
--- a/NewWorldCompanion/common.props
+++ b/NewWorldCompanion/common.props
@@ -1,7 +1,7 @@
- 1.0.0.0
- 1.0.0.0
+ 1.0.1.0
+ 1.0.1.0
Copyright © 2022
\ No newline at end of file